/* ═══════════════════════════════════════════════════════════════
   FABIA HANNAN MONE — PORTFOLIO
   Modern Academic Portfolio Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  /* Colour Palette */
  --deep:        #08121f;
  --navy:        #0d2035;
  --ocean:       #1a3d6e;
  --slate:       #2b4a72;
  --teal:        #0e8c7f;
  --teal-light:  #19b0a0;
  --emerald:     #10b981;
  --gold:        #c9862a;
  --gold-light:  #e0a84b;
  --warm-white:  #f8f9fc;
  --white:       #ffffff;
  --text:        #1a2535;
  --text-muted:  #5a6a80;
  --text-light:  #8899ae;
  --border:      #e2e8f2;
  --border-dark: #c8d4e2;

  /* Typography */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Inter', sans-serif;

  /* Spacing */
  --section-pad:  100px;
  --container:    1180px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl:    0 24px 60px rgba(0,0,0,0.16);

  /* Border Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  /* Transitions */
  --transition:  all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.16s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; cursor: pointer; background: none; }

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.18); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14,140,127,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(14,140,127,0); }
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(8,18,31,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-first { color: #fff; }
.logo-last  { color: var(--teal-light); margin-left: 5px; }
.logo-dot   {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  margin-left: 4px;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 6px 14px;
  border-radius: 8px;
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(14,140,127,0.35);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,140,127,0.5);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--emerald) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(14,140,127,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(14,140,127,0.55);
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-dark);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn-icon {
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.btn-icon:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 20px; font-size: 0.82rem; }

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--deep) 0%, var(--navy) 45%, #122c50 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,140,127,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: floatY 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,134,42,0.12) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  animation: floatY 12s ease-in-out infinite reverse;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-content { animation: fadeInLeft 0.8s ease-out both; }

/* Badge Row */
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.gold-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  box-shadow: 0 4px 12px rgba(201,134,42,0.4);
}
.teal-badge {
  background: rgba(14,140,127,0.15);
  border: 1px solid rgba(14,140,127,0.4);
  color: var(--teal-light);
}

/* Name */
.hero-name {
  font-family: var(--font-serif);
  line-height: 1.05;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.name-fabia {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  font-style: italic;
}
.name-mone {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--teal-light) 50%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

.hero-credentials {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
}
.hero-tagline {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-tagline em {
  color: var(--teal-light);
  font-style: normal;
  font-weight: 500;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 28px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.stat-number {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  text-align: center;
  max-width: 110px;
  line-height: 1.3;
}

/* CTA Row */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero Image */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}
.hero-image-frame {
  position: relative;
  width: 360px;
  height: 440px;
}
.hero-image-ring {
  position: absolute;
  border-radius: 50%;
  animation: pulse-ring 3.5s ease-out infinite;
}
.ring-1 {
  inset: -12px;
  border: 2px solid rgba(14,140,127,0.3);
  animation-delay: 0s;
}
.ring-2 {
  inset: -28px;
  border: 1px solid rgba(14,140,127,0.15);
  animation-delay: 1s;
}
.ring-3 {
  inset: -44px;
  border: 1px solid rgba(14,140,127,0.07);
  animation-delay: 2s;
}
.hero-image-container {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(14,140,127,0.12), rgba(26,61,110,0.2));
  border: 2px solid rgba(14,140,127,0.25);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(14,140,127,0.2);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.hero-image-frame:hover .hero-photo { transform: scale(1.03); }

.hero-image-badge {
  position: absolute;
  bottom: -18px;
  left: -20px;
  background: rgba(8,18,31,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14,140,127,0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: floatY 6s ease-in-out infinite;
}
.image-badge-icon { font-size: 1.4rem; }
.image-badge-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.image-badge-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.hero-scroll-hint:hover { color: rgba(255,255,255,0.7); }
.scroll-chevron {
  animation: floatY 2s ease-in-out infinite;
}

/* ════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════ */
.section {
  padding: var(--section-pad) 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(14,140,127,0.08);
  border: 1px solid rgba(14,140,127,0.2);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: start;
}

/* Bio */
.about-bio {
  position: relative;
}
.about-quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--teal);
  opacity: 0.12;
  position: absolute;
  top: -20px; left: -10px;
  line-height: 1;
  pointer-events: none;
}
.about-bio-text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 18px;
  position: relative;
}
.about-bio-text strong { color: var(--navy); font-weight: 700; }
.about-bio-text em { color: var(--teal); font-style: normal; font-weight: 500; }

.about-meta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.about-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.about-meta-item svg { color: var(--teal); flex-shrink: 0; }
.about-meta-item a {
  color: var(--teal);
  transition: var(--transition-fast);
}
.about-meta-item a:hover { color: var(--teal-light); text-decoration: underline; }

/* Focus Areas */
.focus-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.focus-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
  cursor: default;
}
.focus-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(14,140,127,0.15);
}
.focus-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.focus-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.focus-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Skills Tags */
.skills-section {
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.skills-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}
.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.skill-tag {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ocean);
  background: rgba(26,61,110,0.06);
  border: 1px solid rgba(26,61,110,0.15);
  padding: 6px 16px;
  border-radius: 30px;
  transition: var(--transition-fast);
  cursor: default;
}
.skill-tag:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   EXPERIENCE SECTION
════════════════════════════════════════ */
.experience-section { background: var(--warm-white); }

/* Filter Bar */
.exp-filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(14,140,127,0.3);
}

/* Timeline */
.timeline-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 19px; top: 6px; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--border) 100%);
}
.timeline-item {
  position: relative;
  padding-left: 64px;
  margin-bottom: 40px;
  transition: var(--transition);
}
.timeline-item.hidden { display: none; }
.timeline-dot {
  position: absolute;
  left: 11px; top: 20px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal);
  z-index: 1;
  transition: var(--transition);
}
.dot-active { background: var(--teal); animation: dot-pulse 2.5s ease-in-out infinite; }
.timeline-item:hover .timeline-dot { transform: scale(1.2); }

/* Timeline Card */
.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: var(--transition);
  position: relative;
}
.timeline-card:hover {
  border-color: rgba(14,140,127,0.35);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.tcard-featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, rgba(14,140,127,0.03), var(--white));
}
.tcard-featured-label {
  position: absolute;
  top: -12px; right: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
}
.tcard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.tcard-org-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}
.badge-teal  { background: rgba(14,140,127,0.1);  color: var(--teal); }
.badge-navy  { background: rgba(13,32,53,0.08);   color: var(--navy); }
.badge-gold  { background: rgba(201,134,42,0.1);  color: var(--gold); }
.badge-who   { background: linear-gradient(135deg, var(--teal), var(--emerald)); color: #fff; padding: 4px 12px; }
.tcard-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  white-space: nowrap;
}
.tcard-role {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  line-height: 1.3;
}
.tcard-org {
  font-size: 0.83rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}
.tcard-points {
  margin-bottom: 16px;
}
.tcard-points li {
  font-size: 0.875rem;
  color: #475569;
  padding: 3px 0 3px 18px;
  position: relative;
  line-height: 1.6;
}
.tcard-points li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.tcard-points li strong { color: var(--navy); }
.tcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tcard-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(14,140,127,0.07);
  color: var(--teal);
  border: 1px solid rgba(14,140,127,0.15);
}

/* ════════════════════════════════════════
   EDUCATION SECTION
════════════════════════════════════════ */
.education-section {
  background: linear-gradient(160deg, var(--navy) 0%, #122c50 100%);
}
.education-section .section-label { color: var(--teal-light); background: rgba(14,140,127,0.15); border-color: rgba(14,140,127,0.3); }
.education-section .section-title { color: #fff; }
.education-section .section-subtitle { color: rgba(255,255,255,0.55); }

.edu-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 64px;
}
.edu-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.edu-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(14,140,127,0.35);
  transform: translateX(6px);
}
.edu-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.edu-phd-icon  { background: linear-gradient(135deg, var(--teal), var(--emerald)); box-shadow: 0 4px 14px rgba(14,140,127,0.4); }
.edu-msc-icon  { background: linear-gradient(135deg, var(--ocean), var(--slate)); box-shadow: 0 4px 14px rgba(26,61,110,0.4); }
.edu-ma-icon   { background: linear-gradient(135deg, #7c3aed, #a855f7); box-shadow: 0 4px 14px rgba(124,58,237,0.4); }
.edu-mbbs-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); box-shadow: 0 4px 14px rgba(201,134,42,0.4); }

.edu-year-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(14,140,127,0.15);
  border: 1px solid rgba(14,140,127,0.25);
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.edu-degree {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}
.edu-institution {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.edu-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.edu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.edu-tags span {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Memberships */
.memberships-section {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.memberships-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  text-align: center;
}
.memberships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.membership-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.membership-card:hover {
  background: rgba(14,140,127,0.1);
  border-color: rgba(14,140,127,0.3);
  transform: translateY(-4px);
}
.mem-icon { font-size: 1.8rem; margin-bottom: 10px; }
.mem-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
  line-height: 1.3;
}
.mem-abbr {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--teal-light);
}

/* ════════════════════════════════════════
   AWARDS SECTION
════════════════════════════════════════ */
.awards-section { background: var(--white); }
.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.award-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.award-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--emerald));
}
.award-card:nth-child(2)::before { background: linear-gradient(90deg, var(--ocean), var(--teal)); }
.award-card:nth-child(3)::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.award-card:nth-child(4)::before { background: linear-gradient(90deg, #10b981, #34d399); }
.award-card:nth-child(5)::before { background: linear-gradient(90deg, var(--navy), var(--ocean)); }

.award-card:hover {
  border-color: rgba(14,140,127,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.award-featured {
  grid-column: span 2;
  background: linear-gradient(160deg, var(--navy) 0%, #1a3a5c 100%);
  border-color: rgba(201,134,42,0.3);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.award-featured::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.award-featured .award-name,
.award-featured .award-desc { color: #fff; }
.award-featured .award-name { color: #fff; }
.award-featured .award-desc { color: rgba(255,255,255,0.7); }
.award-featured .award-year-tag {
  background: rgba(201,134,42,0.2);
  border: 1px solid rgba(201,134,42,0.35);
  color: var(--gold-light);
}
.award-featured .award-category-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}
.award-trophy {
  font-size: 3rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(201,134,42,0.4));
}
.award-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.award-icon-teal { filter: drop-shadow(0 3px 6px rgba(14,140,127,0.3)); }
.award-icon-gold { filter: drop-shadow(0 3px 6px rgba(201,134,42,0.3)); }
.award-icon-green { filter: drop-shadow(0 3px 6px rgba(16,185,129,0.3)); }
.award-icon-navy { filter: drop-shadow(0 3px 6px rgba(13,32,53,0.3)); }

.award-year-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(14,140,127,0.08);
  border: 1px solid rgba(14,140,127,0.2);
  color: var(--teal);
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.award-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.award-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.award-category-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(14,140,127,0.07);
  color: var(--teal);
  border: 1px solid rgba(14,140,127,0.15);
}

/* ════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */
.contact-section { background: var(--warm-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}
.contact-info-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.contact-topics {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-topics li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.topic-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-topics strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.contact-topics p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-grid.no-form-grid {
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
}

/* Direct Channels */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.channel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.channel-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(14,140,127,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.channel-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.channel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.channel-value {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: var(--transition-fast);
}
a.channel-value:hover {
  color: var(--teal);
  text-decoration: underline;
}
.channel-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.channel-btn {
  flex-shrink: 0;
}
.location-card {
  background: linear-gradient(160deg, rgba(14,140,127,0.03), var(--white));
  border-color: rgba(14,140,127,0.2);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 0;
}
.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 48px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-logo { margin-bottom: 8px; }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--teal-light); }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.78rem;
}

/* ════════════════════════════════════════
   SCROLL REVEAL ANIMATION
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-image-wrapper { order: -1; }
  .hero-image-frame { width: 280px; height: 340px; margin: 0 auto; }
  .hero-cta-row { justify-content: center; }
  .hero-badge-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .awards-grid { grid-template-columns: 1fr; }
  .award-featured { grid-column: span 1; flex-direction: column; }
  .memberships-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-social { flex-direction: row; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Mobile Nav */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,18,31,0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-serif);
  }

  .hero { padding: 100px 0 60px; }
  .hero-name .name-fabia { font-size: 2rem; }
  .hero-name .name-mone  { font-size: 2.5rem; }
  .hero-stats { flex-direction: column; width: 100%; border-radius: var(--radius-md); }
  .hero-stat { width: 100%; }
  .hero-stat-divider { width: 100%; height: 1px; }

  .focus-grid { grid-template-columns: 1fr; }
  .timeline-line { left: 9px; }
  .timeline-item { padding-left: 40px; }
  .timeline-dot { left: 1px; width: 14px; height: 14px; }

  .awards-grid { grid-template-columns: 1fr; }
  .award-featured { flex-direction: column; }

  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-social { flex-direction: row; }

  .channel-card { flex-wrap: wrap; padding: 18px; }
}

@media (max-width: 480px) {
  .hero-stats { font-size: 0.85rem; }
  .hero-badge-row { gap: 6px; }
  .hero-badge { font-size: 0.65rem; }
  .tcard-header { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 1.6rem; }
  .channel-btn { width: 100%; justify-content: center; }
}
