/* ============================================
   SVAJA FOUNDATION - Modern Website Styles
   ============================================ */

/* === CSS Variables - Logo Matched === */
:root {
  --primary: #2E3192;
  --primary-dark: #1a1d5e;
  --primary-light: #4246b0;
  --accent: #F5941E;
  --accent-light: #f8b054;
  --accent-dark: #d97a0a;
  --accent-glow: rgba(245, 148, 30, 0.12);
  --dark: #111132;
  --text: #2d3748;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-alt: #f0f4f8;
  --bg-warm: #fffaf5;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --success: #059669;
  --gradient-primary: linear-gradient(135deg, #2E3192 0%, #4246b0 50%, #2E3192 100%);
  --gradient-accent: linear-gradient(135deg, #F5941E 0%, #f8b054 50%, #F5941E 100%);
  --gradient-hero: linear-gradient(160deg, #0d0f2e 0%, #1a1d5e 30%, #2E3192 70%, #3a3eb0 100%);
  --gradient-warm: linear-gradient(135deg, #fffaf5 0%, #fff5eb 100%);
  --gradient-subtle: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  --shadow-xs: 0 1px 2px rgba(46, 49, 146, 0.04);
  --shadow-sm: 0 2px 8px rgba(46, 49, 146, 0.06);
  --shadow-md: 0 4px 24px rgba(46, 49, 146, 0.08);
  --shadow-lg: 0 12px 48px rgba(46, 49, 146, 0.1);
  --shadow-xl: 0 24px 64px rgba(46, 49, 146, 0.14);
  --shadow-accent: 0 8px 30px rgba(245, 148, 30, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  letter-spacing: -0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 48px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
}

.section-title {
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 650px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  color: var(--accent);
}

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 148, 30, 0.4);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-light {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--accent);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn i { font-size: 1.1em; }

/* === Header / Navigation === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-text span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: var(--accent-glow);
}

.nav-link i {
  font-size: 0.7em;
  transition: var(--transition);
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--bg-alt);
  color: var(--accent);
  padding-left: 20px;
}

.dropdown a i {
  font-size: 1.1rem;
  color: var(--accent);
  width: 20px;
  text-align: center;
}

/* Nav CTA */
.nav-cta {
  margin-left: 12px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active span::after { top: 0; transform: rotate(-45deg); }

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232, 113, 42, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(42, 74, 138, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(232, 113, 42, 0.05) 0%, transparent 50%);
}

/* Animated Gradient Mesh Background */
.hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  filter: blur(60px);
  pointer-events: none;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.mesh-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 148, 30, 0.3) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation: blob-float 25s ease-in-out infinite;
}

.mesh-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(66, 70, 176, 0.25) 0%, transparent 70%);
  bottom: -15%;
  right: 10%;
  animation: blob-float 30s ease-in-out infinite reverse;
  animation-delay: -10s;
}

.mesh-blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 148, 30, 0.15) 0%, transparent 70%);
  top: 40%;
  right: 30%;
  animation: blob-float 20s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes blob-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -50px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(40px, 30px) scale(1.05);
  }
}

/* Floating Icon Orbs */
.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-float-el {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: float-orb 8s ease-in-out infinite;
}

.el-1 { top: 18%; right: 22%; animation-delay: 0s; }
.el-2 { top: 55%; right: 8%; animation-delay: -2s; }
.el-3 { bottom: 22%; left: 12%; animation-delay: -4s; }
.el-4 { top: 32%; left: 6%; animation-delay: -6s; }

@keyframes float-orb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero Word-by-Word Reveal */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: text-reveal-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-word:nth-child(1) { animation-delay: 0.15s; }
.hero-word:nth-child(2) { animation-delay: 0.35s; }
.hero-word:nth-child(3) { animation-delay: 0.55s; }
.hero-word:nth-child(4) { animation-delay: 0.75s; }

@keyframes text-reveal-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(245, 148, 30, 0.1);
  border: 1px solid rgba(245, 148, 30, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge i {
  font-size: 0.8em;
}

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero h1 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* hero-stats removed - stats shown in impact-section instead */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image-wrapper img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  top: -20px;
  right: -30px;
}

.hero-floating-card.card-2 {
  bottom: 30px;
  left: -40px;
  animation-delay: -3s;
}

.hero-floating-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.hero-floating-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.hero-floating-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* === About Preview Section === */
.about-preview {
  padding: 120px 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-accent-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gradient-accent);
  color: #fff;
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-accent-box h3 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.about-accent-box p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-content .section-label { margin-bottom: 12px; }

.about-content .section-title { margin-bottom: 24px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

.about-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* === Mission / Vision / Belief === */
.mvb-section {
  padding: 120px 0;
  background: var(--bg-soft);
  position: relative;
}

.mvb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mvb-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.mvb-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.mvb-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transition: height 0.3s ease;
}

.mvb-card:hover::before {
  height: 6px;
}

.mvb-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(46, 49, 146, 0.08) 0%, rgba(245, 148, 30, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}

.mvb-card:hover .mvb-icon {
  background: var(--gradient-accent);
  color: #fff;
  transform: scale(1.05);
}

.mvb-card h3 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.mvb-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* === Programs / Work Section === */
.programs-section {
  padding: 120px 0;
  background: var(--bg);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.program-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-card-image img {
  transform: scale(1.08);
}

.program-card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 36, 0.6) 0%, transparent 60%);
}

.program-card-image .program-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.program-card-body {
  padding: 28px 24px;
}

.program-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.program-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.program-card-body .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}

.program-card-body .btn-link i {
  transition: var(--transition);
}

.program-card-body .btn-link:hover i {
  transform: translateX(4px);
}

/* === SDG Section === */
.sdg-section {
  padding: 100px 0;
  background: var(--gradient-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.sdg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232, 113, 42, 0.08) 0%, transparent 50%);
}

.sdg-section .container {
  position: relative;
  z-index: 2;
}

.sdg-section .section-label {
  color: var(--accent-light);
}

.sdg-section .section-label::before {
  background: var(--accent-light);
}

.sdg-section .section-title {
  color: #fff;
}

.sdg-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.sdg-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.sdg-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
}

.sdg-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: 8px;
}

.sdg-card h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

/* === Values Section (Redesigned Timeline) === */
.values-redesign {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  overflow: hidden;
}

.vr-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.vr-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateX(-50%);
  border-radius: 3px;
}

.vr-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  padding-right: calc(50% + 40px);
}

.vr-item--right {
  padding-right: 0;
  padding-left: calc(50% + 40px);
  flex-direction: row-reverse;
}

.vr-item:last-child {
  margin-bottom: 0;
}

.vr-number {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(46, 49, 146, 0.3);
}

.vr-number span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.vr-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 49, 146, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  width: 100%;
}

.vr-card::before {
  content: '';
  position: absolute;
  top: 24px;
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.vr-item:not(.vr-item--right) .vr-card::before {
  right: -30px;
}

.vr-item--right .vr-card::before {
  left: -30px;
}

.vr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46, 49, 146, 0.12);
}

.vr-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(46, 49, 146, 0.08) 0%, rgba(245, 148, 30, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: var(--transition);
}

.vr-card:hover .vr-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transform: scale(1.1);
}

.vr-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.vr-card-content p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* Old values grid kept for homepage */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 36px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(46, 49, 146, 0.06) 0%, rgba(245, 148, 30, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
  border: 2px solid transparent;
}

.value-card:hover .value-icon {
  background: var(--gradient-accent);
  color: #fff;
  border-color: rgba(245, 148, 30, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.value-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

/* === CTA Section === */
.cta-section {
  padding: 100px 0;
  background: var(--bg);
}

.cta-box {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232, 113, 42, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(42, 74, 138, 0.2) 0%, transparent 50%);
}

.cta-box > * { position: relative; z-index: 2; }

.cta-box h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Gallery Section === */
.gallery-section {
  padding: 120px 0;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 36, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(15, 23, 36, 0.3);
}

.gallery-item .gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  z-index: 2;
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
  transform: translate(-50%, -50%) scale(1);
}

/* Large items */
.gallery-item.large {
  grid-row: span 2;
  grid-column: span 2;
  aspect-ratio: auto;
}

/* === Contact Section === */
.contact-section {
  padding: 120px 0;
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-soft);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: #fff;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* === Footer === */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--accent);
  color: #fff;
}

.footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* === Page Header (Internal Pages) === */
.page-header {
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(232, 113, 42, 0.06) 0%, transparent 50%);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb span { color: rgba(255, 255, 255, 0.3); }

.breadcrumb .current { color: var(--accent-light); }

/* === Generic Section Spacing === */
.section {
  padding: 100px 0;
}

/* === Content Pages === */
.content-section {
  padding: 100px 0;
}

.content-section.alt,
.section-gray {
  background: var(--bg-soft);
}

/* === Blockquote === */
blockquote.quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin-bottom: 24px;
  background: var(--accent-glow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Initiative Cards */
.initiative-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  margin-bottom: 28px;
}

.initiative-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.initiative-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.initiative-card .initiative-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.initiative-header {
  margin-bottom: 16px;
}

.initiative-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

.initiative-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.initiative-card ul {
  margin-top: 12px;
  padding-left: 0;
}

.initiative-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.initiative-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* === Engage Page === */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.engage-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.engage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.engage-card:hover::before {
  transform: scaleX(1);
}

.engage-card:hover {
  box-shadow: var(--shadow-md);
}

.engage-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.engage-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.engage-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* === Partners Section === */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.partner-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.partner-card img {
  height: 60px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* === Map Section === */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 60px;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* === Leadership Page (Redesigned) === */
.leader-showcase {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}

.ls-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

/* Left column — photo + stats */
.ls-left {
  text-align: center;
  position: sticky;
  top: 120px;
}

.ls-photo-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
}

.ls-photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--accent)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ring-spin 8s linear infinite;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.ls-photo-wrap img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.ls-name-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.ls-role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}

.ls-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ls-stat { text-align: center; }

.ls-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ls-stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ls-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.ls-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(46, 49, 146, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.ls-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Right column — bio + details */
.ls-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ls-right h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ls-right h4 i {
  color: var(--accent);
  font-size: 0.9rem;
}

.ls-bio p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 1rem;
}

.ls-org-chips,
.ls-collab-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ls-org-chips span {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(46, 49, 146, 0.08), rgba(46, 49, 146, 0.04));
  color: var(--primary);
  border: 1px solid rgba(46, 49, 146, 0.12);
  transition: var(--transition);
}

.ls-org-chips span:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.ls-collab-chips span {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(245, 148, 30, 0.08);
  color: var(--accent-dark, #c47410);
  border: 1px solid rgba(245, 148, 30, 0.15);
  transition: var(--transition);
}

.ls-collab-chips span:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.ls-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ls-focus-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.ls-focus-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(245, 148, 30, 0.1);
  transform: translateY(-2px);
}

.ls-focus-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(46, 49, 146, 0.08), rgba(245, 148, 30, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--primary);
  flex-shrink: 0;
}

.ls-focus-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

/* === Lightbox === */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* === Scroll Animations === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === Back to Top === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .hero-floaters { display: none; }
  .hero-mesh { filter: blur(80px); }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-accent-box { position: relative; bottom: 0; right: 0; display: inline-block; margin-top: 16px; }

  .mvb-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .leader-card { grid-template-columns: 1fr; }
  .ls-profile { grid-template-columns: 1fr; gap: 40px; }
  .ls-left { position: static; }
  .ls-focus-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse { direction: ltr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero { padding: 140px 0 80px; }
  .hero-badge { font-size: 0.65rem; }
  .page-header { padding: 130px 0 60px; }
  .page-header h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }

  .header {
    overflow: visible;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 80px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    transform: translateX(100%);
    transition: var(--transition);
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .menu-toggle { display: flex; }

  .nav-link { padding: 14px 16px; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    display: none;
  }

  .nav-item.open .dropdown { display: block; }

  .nav-cta { margin: 16px 0 0; }

  .programs-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-row: span 1; grid-column: span 1; }
  .engage-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .cta-box { padding: 60px 30px; }
  .hero-mesh { display: none; }
  .about-features { grid-template-columns: 1fr; }

  /* Values timeline → stacked */
  .vr-line { left: 24px; }
  .vr-item,
  .vr-item--right {
    padding-left: 64px;
    padding-right: 0;
    flex-direction: row;
  }
  .vr-number {
    left: 24px;
    top: 20px;
    width: 44px;
    height: 44px;
  }
  .vr-number span { font-size: 0.95rem; }
  .vr-card::before { display: none; }
  .vr-card { padding: 24px; }
  .vr-card-content h3 { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .sdg-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .ls-focus-grid { grid-template-columns: 1fr; }
  .ls-photo-wrap, .ls-photo-wrap img { width: 180px; height: 180px; }
}

/* ============================================
   PREMIUM ENHANCEMENTS
   ============================================ */

/* === Impact Stats Banner === */
.impact-section {
  padding: 80px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245, 148, 30, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(66, 70, 176, 0.12) 0%, transparent 60%);
}

.impact-section .container { position: relative; z-index: 2; }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.impact-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.impact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.impact-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.impact-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

/* === Testimonial / Quote Section === */
.quote-section {
  padding: 100px 0;
  background: var(--gradient-warm);
  position: relative;
}

.quote-section::before {
  content: '\201C';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 12rem;
  color: rgba(46, 49, 146, 0.04);
  line-height: 1;
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 28px;
}

.quote-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
}

.quote-author span {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* === Initiatives Horizontal Timeline === */
.initiatives-timeline {
  padding: 100px 0;
  background: var(--bg);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--primary), var(--accent), transparent);
  opacity: 0.2;
}

.timeline-item {
  text-align: center;
  padding: 24px;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--primary);
  position: relative;
  z-index: 2;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.timeline-item:hover .timeline-icon {
  background: var(--gradient-accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.1);
}

.timeline-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* === Enhanced About Accent === */
.about-accent-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gradient-accent);
  color: #fff;
  padding: 28px 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-accent);
}

/* === Header Enhancement === */
.header {
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(46, 49, 146, 0.06);
  box-shadow: 0 2px 20px rgba(46, 49, 146, 0.06);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(46, 49, 146, 0.06);
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  .hero-word { animation: none; opacity: 1; transform: none; }
  .mesh-blob { animation: none; }
  .hero-float-el { animation: none; }
}

/* === Footer Enhancement === */
.footer {
  background: linear-gradient(180deg, var(--dark) 0%, #0a0b24 100%);
}

.footer-socials a:hover {
  background: var(--gradient-accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

/* === Enhanced CTA === */
.cta-box {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(66, 70, 176, 0.15);
}

/* === Page Header Refinement === */
.page-header {
  padding: 160px 0 90px;
  background: var(--gradient-hero);
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

/* === Premium Scrollbar === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* === Selection Color === */
::selection {
  background: rgba(46, 49, 146, 0.15);
  color: var(--primary);
}

/* === Smooth Focus Styles === */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === Responsive for new sections === */
@media (max-width: 1024px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid::before { display: none; }
}

@media (max-width: 768px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: 1fr; }
  .quote-text { font-size: 1.3rem; }
}
