

/* ---------- Google Fonts: warm serif + clean sans ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Brand colors */
  --primary: #1CA9E0;
  --primary-dark: #0E7AAB;
  --primary-light: #5CC8F0;
  --primary-tint: #EAF7FC;
  --primary-tint-2: #D4ECF7;

  --black: #0A0A0A;
  --black-soft: #141414;
  --black-card: #1A1A1A;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D1D1D1;
  --gray-400: #A0A0A0;
  --gray-500: #707070;
  --gray-600: #505050;

  --success: #2ECC71;
  --warning: #F39C12;
  --error: #E74C3C;

  /* Typography */
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing (8px system) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.6s var(--ease-out);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 40px rgba(28, 169, 224, 0.25);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.loader-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}
/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Section Base ---------- */
.section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--primary-tint);
  color: var(--black);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 2.5rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: translateY(-50%);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: -1rem 0 var(--space-2xl);
}

.section-dark .section-sub {
  color: var(--gray-400);
}

/* ---------- Wave Divider ---------- */
.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.wave-bottom svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ============================================
   PAGE LOADER
   ============================================ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-wave {
  width: 200px;
  margin: 0 auto 1.5rem;
  animation: loaderFloat 2s var(--ease) infinite;
}

.loader-wave .wave-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: waveDraw 1.5s var(--ease-out) forwards;
}

@keyframes waveDraw {
  to { stroke-dashoffset: 0; }
}

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

.loader-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition), padding var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition);
}

#navbar.scrolled .nav-container {
  padding: 0.75rem 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.logo-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--white);
}

.logo-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--primary);
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition), left var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
  left: 20%;
}

.nav-btn {
  margin-left: 0.5rem;
  padding: 0.6rem 1.4rem !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--primary);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--primary);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: var(--black-soft);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(28, 169, 224, 0.2);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-link {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition), padding-left var(--transition);
  opacity: 0;
  transform: translateX(30px);
}

.mobile-menu.open .mobile-link {
  animation: slideInLink 0.4s var(--ease-out) forwards;
}

.mobile-menu.open .mobile-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu.open .mobile-link:nth-child(6) { animation-delay: 0.35s; }
.mobile-menu.open .mobile-link:nth-child(7) { animation-delay: 0.4s; }
.mobile-menu.open .mobile-link:nth-child(8) { animation-delay: 0.45s; }

@keyframes slideInLink {
  to { opacity: 1; transform: translateX(0); }
}

.mobile-link:hover {
  color: var(--primary);
  padding-left: 0.75rem;
}

.mobile-donate {
  margin-top: 1rem;
  color: var(--primary) !important;
  font-weight: 700 !important;
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-align: center;
  padding: 0.85rem !important;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  backdrop-filter: blur(4px);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(28, 169, 224, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(28, 169, 224, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(28, 169, 224, 0.08);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

/* Ripple effect */
.ripple-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  /* Ken Burns slow zoom */
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.55) 50%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero-heading .line {
  display: block;
  overflow: hidden;
}

.hero-heading .line span {
  display: inline-block;
}

.line-1 {
  opacity: 0;
  transform: translateY(100%);
  animation: lineReveal 0.9s var(--ease-out) 0.3s forwards;
}

.line-2 {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  opacity: 0;
  transform: translateY(100%);
  animation: lineReveal 0.9s var(--ease-out) 0.5s forwards;
}

@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Reveal text animation (hero) */
.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) forwards;
}

.hero-eyebrow { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.7s; }
.hero-ctas { animation-delay: 0.9s; }
.hero-stats { animation-delay: 1.1s; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
}

.about-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about-text strong {
  color: var(--primary);
  font-weight: 600;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--black-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 169, 224, 0.1);
  transition: transform var(--transition), border-color var(--transition);
}

.pillar:hover {
  transform: translateX(8px);
  border-color: rgba(28, 169, 224, 0.4);
}

.pillar-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 169, 224, 0.1);
  border-radius: var(--radius-sm);
}

.pillar strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.pillar span {
  font-size: 0.88rem;
  color: var(--gray-400);
}


.about-images {
  position: relative;
  margin-bottom: var(--space-2xl);
}

.img-stack {
  position: relative;
  height: 500px;
}

.img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 70%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--black);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.founder-img-wrap {
  position: relative;
}

.founder-img-bg {
  position: absolute;
  inset: -20px -20px 20px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  opacity: 0.15;
}

.founder-img {
  position: relative;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.founder-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--primary-tint);
}

.founder-badge strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.founder-badge span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.founder-quote {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
  border-left: 4px solid var(--primary);
}

.founder-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: var(--space-sm);
}

.founder-quote footer {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.founder-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.founder-role {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: var(--space-md) !important;
}

.founder-role em {
  font-family: var(--font-heading);
}

.founder-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.founder-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.award-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--primary-tint-2);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(28, 169, 224, 0.3);
}

/* ============================================
   IMPACT COUNTERS
   ============================================ */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.counter-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--black-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(28, 169, 224, 0.15);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.counter-card:hover {
  transform: translateY(-8px);
  border-color: rgba(28, 169, 224, 0.5);
  box-shadow: var(--shadow-glow);
}

.counter-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.counter-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.counter-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: var(--space-xl);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 4px solid var(--primary-tint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(28, 169, 224, 0.2);
  z-index: 1;
  transition: transform var(--transition);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.timeline-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.timeline-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.timeline-card.highlight {
  border-color: var(--primary);
  border-width: 2px;
  background: linear-gradient(135deg, var(--white), var(--primary-tint));
}

.timeline-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--black);
}

.timeline-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.timeline-badge {
  display: inline-block;
  margin-top: var(--space-sm);
  padding: 0.3rem 0.85rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   PROGRAMS
   ============================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.program-card {
  perspective: 1000px;
  height: 340px;
  cursor: pointer;
}

.program-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
  transform-style: preserve-3d;
}

.program-card:hover .program-card-inner,
.program-card:focus .program-card-inner {
  transform: rotateY(180deg);
}

.program-front,
.program-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.program-front {
  background: var(--black-card);
  border: 1px solid rgba(28, 169, 224, 0.15);
  justify-content: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.program-card:hover .program-front,
.program-card:focus .program-front {
  border-color: rgba(28, 169, 224, 0.4);
}

.program-back {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: rotateY(180deg);
  justify-content: center;
}

.program-icon {
  margin-bottom: var(--space-md);
}

.program-front h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.program-front p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
  flex-grow: 1;
}

.card-hover-hint {
  font-size: 0.78rem;
  color: var(--primary);
  margin-top: var(--space-sm);
  font-weight: 500;
}

.program-back h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.program-back ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.program-back ul li {
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.program-back ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--white);
  font-size: 0.8rem;
}

/* ============================================
   AWARDS
   ============================================ */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.award-card {
  position: relative;
  background: var(--white);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.award-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(28, 169, 224, 0.25), transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.award-card:hover .award-glow {
  transform: translate(-50%, -50%) scale(2.5);
  opacity: 1;
}

.award-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.award-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.award-card h3 {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--black);
}

.award-card p {
  position: relative;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.award-year {
  position: relative;
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--primary-tint);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

   .testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: var(--space-xl);
  overflow: hidden;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-slide blockquote {
  position: relative;
  text-align: center;
  padding: var(--space-lg) var(--space-xl);
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: var(--space-sm);
}

.testimonial-slide blockquote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

.testimonial-slide footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-slide footer cite {
  font-style: normal;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.testimonial-slide footer span {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black-card);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(28, 169, 224, 0.3);
  transition: all var(--transition);
}

.testimonial-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.testimonial-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   GALLERY
   ============================================ */

   .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border: 2px solid var(--white);
  border-radius: 50px;
  transform: translateY(10px);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
  background: var(--primary);
  border-color: var(--primary);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox-img {
  position: relative;
  max-width: 85%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.95rem;
  max-width: 600px;
  text-align: center;
  padding: 0 1.5rem;
  opacity: 0.85;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition);
  z-index: 1;
}

.lightbox-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 169, 224, 0.1);
  border-radius: var(--radius-sm);
}

.contact-list strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.contact-list span,
.contact-list a {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-list a:hover {
  color: var(--primary);
}

.social-links h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black-card);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(28, 169, 224, 0.2);
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  color: var(--white);
}

/* Contact form */
.contact-form-wrap {
  background: var(--black-card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(28, 169, 224, 0.15);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28, 169, 224, 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231CA9E0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select option {
  background: var(--black);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form validation states */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
  animation: shake 0.4s ease;
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  border-color: var(--success);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 0.3rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity var(--transition), transform var(--transition);
  height: 0;
  overflow: hidden;
}

.form-group.has-error .form-error {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  margin-top: 0.4rem;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid var(--success);
  border-radius: var(--radius-sm);
  color: var(--success);
  animation: fadeUp 0.5s var(--ease-out);
}

.form-success.show {
  display: flex;
}

.form-success p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding-top: 5rem;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 60px;
  display: block;
  transform: scaleY(-1);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem var(--space-xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  display: block;
}

.footer-tagline-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--primary);
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.footer-contact p,
.footer-contact a {
  display: block;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: var(--space-sm);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(28, 169, 224, 0.2);
  transition: all var(--transition);
  margin: 0;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-md) 1.5rem;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
}

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

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(28, 169, 224, 0.5);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

   .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

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

/* Stagger delays for grid children */
.counters-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.counters-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.counters-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.counters-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.counters-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

.programs-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.programs-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.programs-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.programs-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.programs-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

.awards-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.awards-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.awards-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.awards-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.awards-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

.gallery-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.gallery-grid .reveal:nth-child(6) { transition-delay: 0.25s; }
.gallery-grid .reveal:nth-child(7) { transition-delay: 0.3s; }
.gallery-grid .reveal:nth-child(8) { transition-delay: 0.35s; }

/* Timeline sequential animation */

.timeline-item.visible .timeline-card {
  animation: timelineSlideIn 0.3s var(--ease-out) forwards;
}

@keyframes timelineSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
   @media (max-width: 968px) {
  .section { padding: var(--space-2xl) 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .about-images { max-width: 500px; margin: 0 auto; }
  .founder-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .founder-img { height: 360px; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .footer-brand { grid-column: 1 / -1; }

  .img-stack {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: static;
  }

  .img-main,
  .img-accent {
    position: static;
    width: 100%;
    height: 260px;
    border: none;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
  .section {
    padding: var(--space-xl) 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .nav-container {
    padding: 1rem 1.25rem;
  }

  .logo-name {
    font-size: 0.9rem;
  }

  .logo-tagline {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 90vh;
    padding: 5rem 1.25rem 3rem;
  }

  .hero-heading {
    font-size: 2.3rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }

  .img-stack {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: static;
  margin-bottom: var(--space-xl);
} 

.img-main,
.img-accent {
  position: static;
  width: 100%;
  height: 220px;
  border: none;
}

  .founder-img {
    height: 280px;
  }

  .founder-badge {
    width: 80px;
    height: 80px;
    right: -10px;
    bottom: -10px;
  }

  .founder-badge strong {
    font-size: 1.2rem;
  }

  .counters-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

.program-card {
  height: 310px;
}

.program-front,
.program-back {
  padding: var(--space-lg);
}

.program-front p {
  font-size: 0.88rem;
  line-height: 1.5;
}

  .awards-grid {
    grid-template-columns: 1fr;
  }

 
  .gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
  margin-bottom: var(--space-xl);
}

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .testimonial-slide blockquote {
  padding: var(--space-md) var(--space-sm);
}
  .testimonial-slide blockquote p {
    font-size: 1.1rem;
  }

  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ============================================
   ABOUT PAGE — page-specific styles
   Builds on top of style.css (same design system)
   ============================================ */

/* ---------- Page Hero (shorter banner than home) ---------- */
.page-hero {
  min-height: 68vh;
  padding: 9rem 1.5rem 5rem;
}

.page-hero .hero-heading {
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .crumb-sep { color: var(--primary); }
.breadcrumb .crumb-current { color: var(--primary); font-weight: 700; }

/* ---------- Who We Are + Quick Facts ---------- */
.who-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.who-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: var(--space-md);
}

.who-text p {
  color: var(--gray-600);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.who-text strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.facts-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(28, 169, 224, 0.3);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 110px;
}

.facts-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(28, 169, 224, 0.25);
}

.facts-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.facts-list li:last-child { border-bottom: none; }

.fact-label { color: var(--gray-400); flex-shrink: 0; }

.fact-value {
  color: var(--white);
  font-weight: 600;
  text-align: right;
  line-height: 1.4;
}

.fact-value.accent { color: var(--primary); }

/* ---------- Mission & Vision panels ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.mv-panel {
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(28, 169, 224, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.mv-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.mv-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(28, 169, 224, 0.5);
  box-shadow: var(--shadow-glow);
}

.mv-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.mv-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.mv-panel p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-size: 0.98rem;
}

/* ---------- Core Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.value-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-tint);
  border: 1px solid rgba(28, 169, 224, 0.25);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  transition: transform var(--transition), background var(--transition);
}

.value-card:hover .value-icon {
  transform: scale(1.08);
  background: var(--primary-tint-2);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.value-card p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ---------- The Challenge ---------- */
.challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.challenge-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
}

.challenge-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.challenge-text strong { color: var(--primary); font-weight: 600; }

.barrier-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.barrier {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--black-card);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--transition), border-color var(--transition);
}

.barrier:hover {
  transform: translateX(8px);
  border-color: rgba(231, 76, 60, 0.55);
}

.barrier-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 76, 60, 0.12);
  border-radius: var(--radius-sm);
}

.barrier strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.barrier span {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ---------- Founder (short note) ---------- */
.founder-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  font-weight: 600;
  color: var(--primary-dark);
  transition: gap var(--transition), color var(--transition);
}

.founder-more:hover {
  color: var(--primary);
  gap: 0.85rem;
}

/* ---------- How We Work ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.approach-item {
  background: var(--black-card);
  border: 1px solid rgba(28, 169, 224, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.approach-item:hover {
  transform: translateY(-6px);
  border-color: rgba(28, 169, 224, 0.5);
  box-shadow: var(--shadow-glow);
}

.step-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.approach-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.approach-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--black);
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--primary-dark); }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.4rem 1.25rem;
}

.faq-answer p {
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ---------- CTA ---------- */
.cta-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-wrap .section-label { padding-left: 0; }
.cta-wrap .section-label::before { display: none; }

.cta-wrap .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.cta-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 968px) {
  .page-hero {
    min-height: 58vh;
    padding: 8rem 1.5rem 4rem;
  }

  .who-grid,
  .challenge-grid,
  .mv-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .facts-card {
    position: static;
    max-width: 520px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
  .page-hero {
    min-height: 55vh;
    padding: 7rem 1.25rem 3.5rem;
  }

  .breadcrumb { font-size: 0.75rem; }

  .values-grid { grid-template-columns: 1fr; }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn { width: 100%; }
}

/* ---------- Programs page CTA outline-btn on light bg ---------- */
.section-light .btn-outline {
  color: var(--black);
  border-color: rgba(10, 10, 10, 0.3);
}
.section-light .btn-outline:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(28, 169, 224, 0.08);
}

/* ---------- Programs page: text visibility on light sections ---------- */
.section-light .challenge-lead {
  color: var(--black);
}

.section-light .challenge-text p {
  color: var(--gray-600);
}

.section-light .challenge-text strong {
  color: var(--primary-dark);
}

