/* ────────────────────────────────────────
   DESIGN TOKENS
──────────────────────────────────────── */
:root {
  --bg:           #070b14;
  --bg2:          #0d1224;
  --bg3:          #111827;
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glass-hover:  rgba(255,255,255,0.07);
  --accent:       #6366f1;
  --accent2:      #22d3ee;
  --accent3:      #a855f7;
  --grad:         linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #22d3ee 100%);
  --grad-text:    linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #22d3ee 100%);
  --text:         #f1f5f9;
  --text2:        #94a3b8;
  --text3:        #64748b;
  --nav-h:        72px;
  --radius:       16px;
  --radius-lg:    24px;
  --shadow:       0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.5);
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── UTILITY ── */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.glass-card:hover {
  border-color: rgba(99,102,241,0.3);
  background: var(--glass-hover);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}
section { padding: 100px 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--grad);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(99,102,241,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(99,102,241,0.6);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 1.5px solid var(--glass-border);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(99,102,241,0.1);
  transform: translateY(-2px);
}
.full-width { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(7,11,20,0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo .dot { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text2);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.btn-nav {
  padding: 9px 22px;
  background: var(--grad);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(99,102,241,0.35);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(99,102,241,0.5); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: float 8s ease-in-out infinite;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6366f1, transparent);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #a855f7, transparent);
  top: 50%; right: -100px;
  animation-delay: -3s;
}
.orb3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #22d3ee, transparent);
  bottom: -100px; left: 30%;
  animation-delay: -5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent2);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,211,238,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34,211,238,0); }
}
.hero-name {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-roles {
  font-size: 1.1rem;
  color: var(--text2);
  margin-bottom: 24px;
  min-height: 1.8em;
}
.role-static { color: var(--text2); }
#typewriter {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.cursor-blink {
  color: var(--accent);
  animation: blink 1s infinite;
  font-weight: 300;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-desc {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-desc strong { color: var(--text); }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* ── AVATAR ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.avatar-ring {
  position: relative;
  width: 340px;
  height: 340px;
}
.avatar-glow {
  position: absolute;
  inset: -20px;
  background: conic-gradient(from 0deg, #6366f1, #a855f7, #22d3ee, #6366f1);
  border-radius: 50%;
  animation: spin 6s linear infinite;
  opacity: 0.5;
  filter: blur(20px);
}
@keyframes spin { to { transform: rotate(360deg); } }
.avatar-img {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg2);
  z-index: 2;
}
.avatar-orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  animation: orbitSpin 12s linear infinite;
  z-index: 3;
}
.orbit1 { animation-duration: 10s; }
.orbit2 { animation-duration: 14s; animation-direction: reverse; }
.orbit3 { animation-duration: 8s; }
.orbit4 { animation-duration: 16s; animation-direction: reverse; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.orbit-icon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  background: var(--bg3);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  animation: counterSpin 10s linear infinite;
  backdrop-filter: blur(8px);
  cursor: default;
}
.orbit2 .orbit-icon { animation-duration: 14s; animation-direction: normal; }
.orbit3 .orbit-icon { animation-duration: 8s; animation-direction: reverse; }
.orbit4 .orbit-icon { animation-duration: 16s; animation-direction: normal; }
@keyframes counterSpin { to { transform: translateX(-50%) rotate(-360deg); } }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  z-index: 10;
  animation: cardFloat 4s ease-in-out infinite;
}
.card-left { bottom: 20px; left: -80px; animation-delay: -2s; }
.card-right { top: 30px; right: -80px; }
.card-bottom-right { bottom: -10px; right: -70px; animation-delay: -1s; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-icon { font-size: 1.6rem; }
.fc-title { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.fc-sub { font-size: 0.72rem; color: var(--text3); }

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid var(--text3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel { 0%,100%{transform:translateY(0);opacity:1} 80%{transform:translateY(8px);opacity:0} }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── ABOUT ── */
#about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.about-card { padding: 40px; }
.about-bio p {
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-bio strong { color: var(--text); }
.about-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  transition: var(--transition);
}
.detail-row:hover { background: rgba(255,255,255,0.06); }
.detail-icon { font-size: 1rem; }
.detail-label {
  font-size: 0.78rem;
  color: var(--text3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 90px;
}
.detail-val { font-size: 0.9rem; color: var(--text); }
.detail-val a { color: var(--accent2); transition: color var(--transition); }
.detail-val a:hover { color: var(--accent); }

.about-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-card { padding: 28px; transition: transform var(--transition); }
.bento-card:hover { transform: translateY(-4px); }
.bento-icon { font-size: 2rem; margin-bottom: 12px; }
.bento-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.bento-card p { font-size: 0.85rem; color: var(--text2); line-height: 1.6; }
.bento-big { grid-column: 1 / -1; background: rgba(99,102,241,0.06); border-color: rgba(99,102,241,0.15); }
.bento-wide { grid-column: 1 / -1; background: rgba(34,211,238,0.04); border-color: rgba(34,211,238,0.12); }

/* ── SKILLS ── */
#skills { background: var(--bg); }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.skill-category { padding: 32px; }
.skill-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.skill-cat-icon { font-size: 1.6rem; }
.skill-cat-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.skill-bars { display: flex; flex-direction: column; gap: 16px; }
.skill-bar-item {}
.skill-bar-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.88rem;
}
.skill-bar-info span:first-child { color: var(--text2); }
.pct-label { color: var(--accent2); font-weight: 600; }
.skill-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: 0;
  background: var(--grad);
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.skill-fill.animate { width: var(--pct); }

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.badge {
  padding: 8px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text2);
  transition: var(--transition);
  cursor: default;
}
.badge:hover {
  background: rgba(99,102,241,0.1);
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}

/* ── EXPERIENCE / TIMELINE ── */
#experience { background: var(--bg2); }
.timeline { position: relative; display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  position: relative;
}
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 28px;
}
.marker-dot {
  width: 16px; height: 16px;
  background: var(--bg3);
  border: 2px solid var(--text3);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
  z-index: 1;
}
.active-item .marker-dot {
  background: var(--grad);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(99,102,241,0.6);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(99,102,241,0); }
}
.marker-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, var(--glass-border) 100%);
  margin-top: 8px;
  min-height: 40px;
}
.timeline-card {
  padding: 32px;
  margin-bottom: 32px;
  transition: transform var(--transition);
}
.timeline-card:hover { transform: translateX(4px); }
.tl-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.tl-company-logo {
  font-size: 2.2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tl-role {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.tl-company {
  font-size: 0.9rem;
  color: var(--accent2);
  font-weight: 500;
  margin-bottom: 6px;
}
.tl-period {
  font-size: 0.8rem;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.period-badge {
  padding: 2px 10px;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.25);
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--accent2);
  font-weight: 600;
}
.tl-designation-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}
.tl-duties {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.tl-duties li {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  padding-left: 4px;
}
.tl-duties strong { color: var(--text); }
.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tl-tag {
  padding: 4px 12px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}

/* ── EDUCATION ── */
#education { background: var(--bg); }
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.edu-card {
  padding: 32px;
  transition: transform var(--transition);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.edu-card:hover { transform: translateY(-6px); }
.edu-icon { font-size: 2.4rem; flex-shrink: 0; }
.edu-badge {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--accent3);
  font-weight: 600;
  margin-bottom: 10px;
}
.edu-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}
.edu-school { font-size: 0.85rem; color: var(--accent2); margin-bottom: 4px; }
.edu-year { font-size: 0.78rem; color: var(--text3); margin-bottom: 12px; }
.edu-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
}
.result-label { font-size: 0.72rem; color: var(--text3); font-weight: 600; }
.result-val { font-size: 0.85rem; color: var(--text); font-weight: 700; }

.cert-section {}
.cert-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cert-card {
  padding: 22px 18px;
  text-align: center;
  transition: transform var(--transition);
}
.cert-card:hover { transform: translateY(-4px); }
.cert-icon { font-size: 1.8rem; margin-bottom: 10px; }
.cert-name { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.4; }
.cert-issuer { font-size: 0.73rem; color: var(--text3); }

/* ── AWARDS ── */
#awards { background: var(--bg2); }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.award-card {
  padding: 32px;
  text-align: center;
  transition: transform var(--transition);
  position: relative;
  overflow: hidden;
}
.award-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity var(--transition);
}
.award-card:hover { transform: translateY(-6px); }
.award-card:hover::before { opacity: 1; }
.featured-award {
  background: rgba(99,102,241,0.06);
  border-color: rgba(99,102,241,0.2);
}
.award-icon { font-size: 2.5rem; margin-bottom: 12px; }
.award-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent2);
  margin-bottom: 10px;
  background: rgba(34,211,238,0.08);
  padding: 3px 10px;
  border-radius: 20px;
}
.award-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.award-card p { font-size: 0.85rem; color: var(--text2); line-height: 1.6; margin-bottom: 14px; }
.award-card p strong { color: var(--text); }
.award-org {
  font-size: 0.75rem;
  color: var(--text3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── CONTACT ── */
#contact { background: var(--bg); }
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}
.contact-info {
  padding: 40px;
}
.contact-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.contact-info strong { color: var(--text); }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  transition: var(--transition);
  cursor: pointer;
}
.contact-item:hover {
  background: rgba(99,102,241,0.08);
  transform: translateX(4px);
}
.ci-icon {
  font-size: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-label { font-size: 0.75rem; color: var(--text3); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.ci-val { font-size: 0.9rem; color: var(--text); font-weight: 500; margin-top: 2px; }
.contact-form {
  padding: 40px;
}
.contact-form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(99,102,241,0.06);
}
.form-success {
  margin-top: 16px;
  text-align: center;
  color: var(--accent2);
  font-weight: 600;
  padding: 12px;
  background: rgba(34,211,238,0.08);
  border-radius: 10px;
}

/* ── FOOTER ── */
#footer {
  background: var(--bg2);
  border-top: 1px solid var(--glass-border);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.footer-logo .dot { color: var(--accent); }
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text2);
  margin-bottom: 8px;
}
.footer-copy { font-size: 0.8rem; color: var(--text3); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { gap: 48px; }
  .about-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .floating-card { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 72px 0; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text { order: 2; }
  .hero-visual { order: 1; }
  .avatar-ring { width: 220px; height: 220px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }
  .skills-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .about-bento { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 30px 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .awards-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .hero-name { font-size: 2rem; }
}

/* ── AWARD IMAGES & LIGHTBOX ── */
.award-img-wrapper {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  position: relative;
  aspect-ratio: 1 / 1;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}
.award-img-wrapper:hover {
  transform: translateY(-2px);
  border-color: rgba(99,102,241,0.4);
}
.award-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.award-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 20, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}
.award-img-wrapper:hover .award-img-overlay {
  opacity: 1;
}
.zoom-icon {
  font-size: 1.5rem;
  color: #fff;
  transform: scale(0.8);
  transition: transform var(--transition);
}
.award-img-wrapper:hover .zoom-icon {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(7, 11, 20, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.show {
  display: flex;
  opacity: 1;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.5rem;
  color: var(--text2);
  cursor: pointer;
  transition: color var(--transition);
}
.lightbox-close:hover {
  color: var(--text);
}
.lightbox-content-wrapper {
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox-caption {
  margin-top: 16px;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
}

