/* ═══════════════════════════════════════════════════
   NextGen Skills Foundation — Stylesheet v2.1
   Author: Future Media Designs / Prince
   Version: 2.1 — Full Responsive Consistency Fix
   Changes from v2.0:
   - Mobile-first rewrite of all breakpoints
   - Fixed hero text overflow on small screens
   - Fixed float cards clipping on mobile
   - Fixed problem-quote left-border on mobile
   - Fixed skills-grid collapsing incorrectly
   - Fixed founder section stacking on tablet
   - Fixed impact metrics wrapping and spacing
   - Fixed contact form-row on tablet
   - Fixed footer 4-col collapsing properly
   - Fixed section padding scaling smoothly
   - Fixed font sizes that were too large on mobile
   - Fixed buttons overflowing on narrow screens
   - Fixed email addresses truncating on mobile
   - Removed hero-br-mobile hack, used CSS instead
   - Consistent section-label appearance everywhere
═══════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #F5F7FA;
  color: #1F2937;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── VARIABLES ─── */
:root {
  --navy:        #0A2540;
  --blue:        #3B82F6;
  --blue-dark:   #2563EB;
  --light-bg:    #F5F7FA;
  --white:       #FFFFFF;
  --text:        #1F2937;
  --muted:       #6B7280;
  --border:      rgba(0,0,0,0.07);
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.11);
  --shadow-blue: 0 8px 32px rgba(59,130,246,0.28);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
  --icon-grad:   linear-gradient(135deg, #3B82F6, #2563EB);

  /* Responsive section padding — scales with screen */
  --sy: clamp(60px, 8vw, 120px);

  /* Responsive container padding */
  --cx: clamp(20px, 5vw, 80px);
}

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-heading {
  font-size: clamp(24px, 3.5vw, 44px);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
  max-width: 100%;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(59,130,246,0.3);
}
.btn-primary:hover {
  background: var(--blue-dark); border-color: var(--blue-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-blue);
}
.btn-secondary {
  background: transparent; color: var(--navy);
  border-color: rgba(10,37,64,0.2);
}
.btn-secondary:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy); transform: translateY(-2px);
}
.btn-white {
  background: var(--white); color: var(--navy); border-color: var(--white);
}
.btn-white:hover {
  background: transparent; color: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25); transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ─── ICON SYSTEM ─── */
.card-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--icon-grad);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(59,130,246,0.35);
}
.metric-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--icon-grad);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(59,130,246,0.4);
}
.skill-icon-wrap {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--icon-grad);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(59,130,246,0.35);
}
.ph-icon-wrap {
  width: 68px; height: 68px; border-radius: 18px;
  background: var(--icon-grad);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 8px 24px rgba(59,130,246,0.4);
}
.ph-green { background: linear-gradient(135deg,#10B981,#059669); box-shadow: 0 8px 24px rgba(16,185,129,0.4); }
.ph-teal  { background: linear-gradient(135deg,#06B6D4,#0891B2); box-shadow: 0 8px 24px rgba(6,182,212,0.4); }
.ph-navy  { background: linear-gradient(135deg,#334155,#0A2540); box-shadow: 0 8px 24px rgba(10,37,64,0.4); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: 72px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }

.nav-container {
  max-width: 1360px; margin: 0 auto;
  padding: 0 var(--cx); height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 38px; height: 38px; background: var(--navy); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 13px;
  letter-spacing: -1px; flex-shrink: 0;
}
.logo-n { color: #fff; }
.logo-g { color: var(--blue); }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); line-height: 1.2; }
.logo-sub  { font-size: 9px; font-weight: 500; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--muted);
  padding: 7px 12px; border-radius: 8px; transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--navy); background: rgba(0,0,0,0.04); }
.nav-link.nav-cta {
  background: var(--navy); color: var(--white);
  padding: 9px 18px; border-radius: 99px; font-weight: 600;
}
.nav-link.nav-cta:hover { background: var(--blue); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: var(--transition);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed; inset: 0; background: var(--navy);
  z-index: 2000; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.overlay-close {
  position: absolute; top: 20px; right: 20px;
  color: rgba(255,255,255,0.7); background: none; border: none;
  cursor: pointer; transition: var(--transition);
}
.overlay-close:hover { color: #fff; }
.overlay-links { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.overlay-links a {
  font-family: 'Poppins', sans-serif; font-size: clamp(22px, 6vw, 32px);
  font-weight: 700; color: rgba(255,255,255,0.75);
  transition: var(--transition); padding: 8px 24px;
}
.overlay-links a:hover { color: var(--white); }


/* ══════════════════════════════════════════
   1. HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex; flex-direction: column;
  background: var(--white); position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; pointer-events: none;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-top: clamp(40px, 8vw, 100px);
  padding-bottom: clamp(40px, 8vw, 100px);
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--blue);
  background: rgba(59,130,246,0.07); border: 1px solid rgba(59,130,246,0.2);
  padding: 7px 16px; border-radius: 99px; margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px; background: #10B981;
  border-radius: 50%; flex-shrink: 0;
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-heading {
  font-size: clamp(28px, 3.8vw, 56px);
  color: var(--navy); font-weight: 800;
  margin-bottom: 20px; line-height: 1.12;
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--muted); max-width: 480px;
  margin-bottom: 36px; line-height: 1.75;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px;
}

.hero-trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: var(--muted);
}
.trust-dot { width: 6px; height: 6px; background: #10B981; border-radius: 50%; flex-shrink: 0; animation: pulse-dot 2.2s infinite; }
.trust-sep { opacity: 0.4; }

/* Hero visual */
.hero-image-wrap { position: relative; }
.hero-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #DBEAFE 0%, #C7D2FE 55%, #DDD6FE 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(99,102,241,0.1);
  overflow: hidden; position: relative;
}
.placeholder-inner { text-align: center; padding: 20px; }
.placeholder-inner p {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; color: rgba(10,37,64,0.4); margin-bottom: 4px; margin-top: 10px;
}
.placeholder-inner span { font-size: 11px; color: rgba(10,37,64,0.3); }

.hero-float-card {
  position: absolute; background: var(--white); border-radius: 12px;
  padding: 10px 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.9);
  /* Keep cards inside the image on small screens */
  max-width: calc(50% - 8px);
}
.card-top    { top: 16px; left: 12px; animation: float-card 4s ease-in-out infinite; }
.card-bottom { bottom: 16px; right: 12px; animation: float-card 4s ease-in-out infinite reverse; animation-delay: 1s; }
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.fc-icon-wrap {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--icon-grad);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(59,130,246,0.4);
}
.fc-text { display: flex; flex-direction: column; min-width: 0; }
.fc-text strong { font-size: 12px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.fc-text span   { font-size: 10px; color: var(--muted); white-space: nowrap; }

/* Scroll cue */
.hero-scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding-bottom: 28px; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); position: relative; z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scroll-ln 1.8s ease-in-out infinite;
}
@keyframes scroll-ln { 0%,100%{opacity:0.3} 50%{opacity:1} }


/* ══════════════════════════════════════════
   2. WHY WE EXIST
══════════════════════════════════════════ */
.problem {
  padding: var(--sy) 0;
  background: var(--navy); position: relative; overflow: hidden;
}
.problem::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; pointer-events: none;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 65%);
}
.problem-inner {
  text-align: center; max-width: 800px;
  margin: 0 auto; position: relative; z-index: 1;
}
.problem-inner .section-label {
  color: #ffffff;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}
.problem-title {
  font-size: clamp(22px, 3vw, 38px); color: var(--white);
  margin-bottom: 28px; letter-spacing: -0.02em;
}
.problem-quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 2.2vw, 26px);
  font-weight: 600; color: var(--white);
  line-height: 1.4; margin-bottom: 28px;
  text-align: center;
  padding: 0 8px;
}
.problem-quote::before { content: '\201C'; color: var(--blue); font-size: 1.4em; line-height: 0; vertical-align: -0.2em; margin-right: 3px; }
.problem-quote::after  { content: '\201D'; color: var(--blue); font-size: 1.4em; line-height: 0; vertical-align: -0.2em; margin-left: 3px; }
.problem-body {
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 52px;
  text-align: center; opacity: 1;
}
.problem-stats {
  display: flex; align-items: center;
  justify-content: center; gap: 32px; flex-wrap: wrap;
}
.pstat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.pstat strong {
  font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; color: var(--white); letter-spacing: -0.02em;
}
.pstat span { font-size: 12px; color: rgba(255,255,255,0.45); }
.pstat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }


/* ══════════════════════════════════════════
   3. PROGRAMS
══════════════════════════════════════════ */
.programs { padding: var(--sy) 0; background: var(--light-bg); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.program-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative; display: flex; flex-direction: column;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-card.featured {
  border-color: var(--blue);
  background: linear-gradient(160deg,#EFF6FF 0%,#FFFFFF 55%);
}
.card-featured-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--blue); background: rgba(59,130,246,0.1);
  padding: 4px 10px; border-radius: 99px;
}
.program-card h3 { font-size: clamp(17px, 2vw, 21px); color: var(--navy); margin-bottom: 12px; }
.program-card p  { font-size: clamp(13px, 1.4vw, 15px); color: var(--muted); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.card-tags span {
  font-size: 11px; font-weight: 600; color: var(--blue);
  background: rgba(59,130,246,0.07); padding: 3px 10px; border-radius: 99px;
}
.card-link {
  font-size: 13px; font-weight: 600; color: var(--blue);
  display: inline-flex; align-items: center; gap: 5px; transition: var(--transition);
}
.card-link:hover { color: var(--blue-dark); gap: 8px; }


/* ══════════════════════════════════════════
   4. SCHOOL PROGRAM
══════════════════════════════════════════ */
.school-program { padding: var(--sy) 0; background: var(--white); }
.school-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.school-img-wrap { position: relative; }
.school-img-placeholder {
  width: 100%; aspect-ratio: 3/4; max-height: 300px;
  background: linear-gradient(135deg,#DBEAFE 0%,#EDE9FE 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); border: 1px solid rgba(147,51,234,0.1);
}
.school-accent-bar {
  position: absolute; bottom: -14px; left: 20px; right: 20px;
  height: 5px; background: linear-gradient(90deg,var(--blue),#06B6D4);
  border-radius: 99px; opacity: 0.5;
}
.school-content > p { font-size: clamp(14px, 1.6vw, 16px); color: var(--muted); line-height: 1.75; margin-bottom: 4px; }
.school-list { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.school-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--light-bg); border-radius: var(--radius-sm);
  border: 1px solid var(--border); transition: var(--transition);
}
.school-list li:hover { border-color: var(--blue); background: rgba(59,130,246,0.02); }
.sl-badge {
  font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--white); background: var(--navy);
  padding: 4px 9px; border-radius: 6px; white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.sl-text { display: flex; flex-direction: column; gap: 3px; }
.sl-text strong { font-size: 14px; color: var(--navy); font-weight: 600; }
.sl-text span { font-size: 12px; color: var(--muted); }


/* ══════════════════════════════════════════
   5. COMMUNITY TRAINING
══════════════════════════════════════════ */
.community { padding: var(--sy) 0; background: var(--light-bg); }
.community-inner { text-align: center; }
.community-img-placeholder {
  width: 100%; max-width: 680px; aspect-ratio: 16/7;
  background: linear-gradient(135deg,#CCFBF1 0%,#99F6E4 100%);
  border-radius: var(--radius-lg); margin: 40px auto;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); border: 1px solid rgba(16,185,129,0.15);
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 8px;
}
.skill-tile {
  background: var(--white); border-radius: var(--radius-md);
  padding: clamp(20px, 2.5vw, 28px) clamp(14px, 2vw, 20px);
  border: 1px solid var(--border); text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skill-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.skill-tile strong {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.5vw, 15px); color: var(--navy); margin-bottom: 8px;
}
.skill-tile span { font-size: clamp(12px, 1.3vw, 13px); color: var(--muted); line-height: 1.6; }


/* ══════════════════════════════════════════
   6. FOUNDER
══════════════════════════════════════════ */
.founder { padding: var(--sy) 0; background: var(--white); }
.founder-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.founder-img-wrap { position: relative; }
.founder-img-placeholder {
  width: 100%; aspect-ratio: 3/4; max-height: 500px;
  background: linear-gradient(160deg,#1E3A5F 0%,#0A2540 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.05);
}
.founder-img-placeholder .placeholder-inner p,
.founder-img-placeholder .placeholder-inner span { color: rgba(255,255,255,0.35); }
.founder-quote-chip {
  position: absolute; bottom: -16px; right: -12px;
  background: var(--white); border-radius: 12px; padding: 12px 16px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px; max-width: 190px;
}
.founder-quote-chip span { font-size: 11px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.founder-name { font-size: clamp(18px, 2.5vw, 28px); color: var(--navy); margin-bottom: 4px; }
.founder-title-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--blue); text-transform: uppercase; margin-bottom: 20px;
}
.founder-content > p { font-size: clamp(14px, 1.5vw, 16px); color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.founder-credentials {
  display: flex; flex-direction: column; gap: 10px; margin-top: 24px;
  padding: 20px; background: var(--light-bg);
  border-radius: var(--radius-md); border: 1px solid var(--border);
}
.cred-item { display: flex; align-items: center; gap: 10px; }
.cred-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(59,130,246,0.08); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cred-item span { font-size: 13px; color: var(--text); }


/* ══════════════════════════════════════════
   7. IMPACT VISION
══════════════════════════════════════════ */
.impact { padding: var(--sy) 0; background: var(--light-bg); }
.impact-metrics {
  display: flex; align-items: stretch; justify-content: center;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-bottom: 56px; flex-wrap: wrap;
}
.metric {
  flex: 1; min-width: 160px;
  padding: clamp(28px, 4vw, 50px) clamp(16px, 2.5vw, 28px);
  text-align: center;
}
.metric-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 800; color: var(--navy);
  letter-spacing: -0.03em; display: inline;
}
.metric-infinite { font-size: clamp(36px, 4.5vw, 62px); }
.metric-suffix {
  font-family: 'Poppins', sans-serif; font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; color: var(--blue); display: inline;
}
.metric-label { font-size: clamp(11px, 1.2vw, 13px); color: var(--muted); margin-top: 8px; font-weight: 500; }
.metric-divider { width: 1px; background: var(--border); flex-shrink: 0; }
.impact-quote {
  text-align: center; max-width: 640px; margin: 0 auto;
  padding: clamp(24px, 4vw, 48px); background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.iq-marks {
  font-family: Georgia, serif; font-size: clamp(48px, 8vw, 80px);
  color: rgba(59,130,246,0.15); line-height: 0.8; margin-bottom: 14px;
}
.impact-quote blockquote {
  font-family: 'Poppins', sans-serif; font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 500; color: var(--navy); line-height: 1.65; font-style: italic; margin-bottom: 16px;
}
.impact-quote cite { font-size: 12px; color: var(--blue); font-style: normal; font-weight: 700; }


/* ══════════════════════════════════════════
   8. PARTNERSHIP
══════════════════════════════════════════ */
.partners {
  padding: var(--sy) 0;
  background: var(--navy); position: relative; overflow: hidden;
}
.partners-bg { position: absolute; inset: 0; pointer-events: none; }
.partners-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}
.partners-glow-left {
  position: absolute; bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
}
.partners-glow-right {
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 65%);
}
.partners-inner { text-align: center; position: relative; z-index: 1; }
.partners-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 16px; border-radius: 99px; margin-bottom: 24px;
}
.partners-heading {
  font-size: clamp(26px, 4vw, 52px); color: var(--white);
  margin-bottom: 18px; letter-spacing: -0.025em;
}
.partners-body {
  font-size: clamp(14px, 1.8vw, 17px); color: rgba(255,255,255,0.6);
  max-width: 500px; margin: 0 auto 36px; line-height: 1.75;
}
.partners-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.partners-logos-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.partner-logo-placeholder {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px 24px;
  font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 600;
  letter-spacing: 0.05em; transition: var(--transition);
}
.partner-logo-placeholder:hover { background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.55); }


/* ══════════════════════════════════════════
   9. CONTACT
══════════════════════════════════════════ */
.contact { padding: var(--sy) 0; background: var(--light-bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 80px); align-items: start;
}
.contact-info > p {
  font-size: clamp(14px, 1.6vw, 16px); color: var(--muted);
  margin-bottom: 32px; line-height: 1.75;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.ci-icon {
  width: 40px; height: 40px; background: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item > div:last-child { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-item strong { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; }
.contact-item a, .contact-item span {
  font-size: clamp(12px, 1.3vw, 14px); color: var(--muted);
  transition: var(--transition);
  /* Allow email to break on mobile */
  word-break: break-all;
  overflow-wrap: anywhere;
}
.contact-item a:hover { color: var(--blue); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px); border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.form-header { margin-bottom: 24px; }
.form-header h3 { font-size: clamp(17px, 2vw, 20px); color: var(--navy); margin-bottom: 4px; }
.form-header p { font-size: 13px; color: var(--muted); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px; font-weight: 700; color: var(--navy);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text);
  background: var(--light-bg); transition: var(--transition);
  outline: none; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9CA3AF; }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-success {
  display: none; align-items: center; justify-content: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: #059669;
  background: #D1FAE5; padding: 14px; border-radius: var(--radius-sm);
  border: 1px solid #A7F3D0; text-align: center;
}
.form-success.visible { display: flex; }


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--navy); padding: clamp(48px,6vw,80px) 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7;
  margin-bottom: 16px; max-width: 240px;
}
.footer-email { font-size: 13px; color: var(--blue); transition: var(--transition); word-break: break-all; }
.footer-email:hover { color: #60A5FA; }
.footer-nav h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }


/* ══════════════════════════════════════════
   TABLET — 768px to 1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Programs: 2 columns on tablet */
  .programs-grid { grid-template-columns: 1fr 1fr; }

  /* Skills: 2 columns on tablet */
  .skills-grid { grid-template-columns: 1fr 1fr; }

  /* Footer: 2 column on tablet */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Contact form-row stays 2 col on tablet — fine */
}

@media (max-width: 900px) {
  /* School and founder: stack earlier */
  .school-grid  { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }

  /* Founder chip stays inside card on small tablets */
  .founder-quote-chip { right: 8px; bottom: -12px; max-width: 170px; }
  .founder-img-placeholder { aspect-ratio: 16/9; max-height: 280px; }
}

@media (max-width: 820px) {
  /* Contact: stack on smaller tablets */
  .contact-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════
   MOBILE — under 640px
══════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero: single column, image on top */
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 32px; padding-bottom: 32px; gap: 28px;
  }
  .hero-visual { order: -1; }

  /* Hero actions: full width buttons */
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }

  /* Float cards: inside the image, compact */
  .card-top    { top: 10px; left: 8px; }
  .card-bottom { bottom: 10px; right: 8px; }

  /* Programs: 1 column */
  .programs-grid { grid-template-columns: 1fr; }

  /* Skills: 2 column on mobile */
  .skills-grid { grid-template-columns: 1fr 1fr; }

  /* Problem stats: vertical */
  .problem-stats { flex-direction: column; gap: 20px; }
  .pstat-divider { width: 36px; height: 1px; }

  /* Impact metrics: stack vertically */
  .impact-metrics { flex-direction: column; }
  .metric-divider { width: 50%; height: 1px; margin: 0 auto; }

  /* Partners actions: stack */
  .partners-actions { flex-direction: column; align-items: center; }
  .partners-actions .btn { width: 100%; max-width: 280px; }

  /* Contact form row: 1 col */
  .form-row { grid-template-columns: 1fr; }

  /* Footer: 1 column */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  /* Founder chip: tighter on mobile */
  .founder-quote-chip { right: 4px; bottom: -10px; max-width: 155px; padding: 10px 12px; }
}

/* ══════════════════════════════════════════
   VERY SMALL MOBILE — under 400px
══════════════════════════════════════════ */
@media (max-width: 400px) {
  /* Skills: 1 column on very small screens */
  .skills-grid { grid-template-columns: 1fr; }

  /* Hide float cards on tiny screens to prevent overflow */
  .hero-float-card { display: none; }

  /* Partner logos: 2 per row */
  .partners-logos-row { gap: 8px; }
  .partner-logo-placeholder { padding: 12px 16px; font-size: 10px; }
}


/* ══════════════════════════════════════════
   v2.2 ADDITIONS — Multi-page + New Components
══════════════════════════════════════════ */

/* ─── ACTIVE NAV LINK ─── */
.nav-link.active {
  color: var(--navy) !important;
  font-weight: 700;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy);
  padding: calc(72px + clamp(48px,8vw,100px)) 0 clamp(48px,7vw,90px);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,130,246,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero-inner .section-label { color:#fff; background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.3); }
.page-hero-heading {
  font-size: clamp(28px, 4vw, 52px); color: var(--white);
  font-weight: 800; margin-bottom: 16px; letter-spacing: -0.025em;
}
.page-hero-sub { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 560px; }

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,80px); align-items: start;
}
.about-content > p { font-size: clamp(14px,1.6vw,16px); color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-mv { display: flex; flex-direction: column; gap: 16px; }

.mv-card {
  background: var(--white); border-radius: var(--radius-md); padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mv-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--icon-grad);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; box-shadow: 0 4px 14px rgba(59,130,246,0.35);
}
.mv-icon-teal { background: linear-gradient(135deg,#06B6D4,#0891B2); box-shadow: 0 4px 14px rgba(6,182,212,0.4); }
.mv-icon-navy { background: linear-gradient(135deg,#334155,#0A2540); box-shadow: 0 4px 14px rgba(10,37,64,0.3); }
.mv-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.mv-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Registration Card */
.reg-card {
  background: var(--light-bg); border-radius: var(--radius-md);
  border: 1px solid var(--border); overflow: hidden; margin-top: 32px;
}
.reg-card-header {
  background: var(--navy); color: var(--white); padding: 14px 20px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 10px;
}
.reg-rows { display: flex; flex-direction: column; }
.reg-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 12px 20px; border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.reg-row:last-child { border-bottom: none; }
.reg-row span { color: var(--muted); min-width: 140px; flex-shrink: 0; }
.reg-row strong { color: var(--navy); font-weight: 600; }
.status-active { color: #059669 !important; }

/* Board */
.board-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.board-card {
  background: var(--light-bg); border-radius: var(--radius-md);
  padding: 28px 24px; border: 1px solid var(--border); text-align: center;
  transition: var(--transition);
}
.board-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.board-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--icon-grad); color: var(--white);
  font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; box-shadow: 0 4px 14px rgba(59,130,246,0.35);
}
.board-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.board-role { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.board-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── PROGRAMS PAGE ─── */
.prog-overview-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px,5vw,80px); align-items: start;
}
.prog-overview-content > p { font-size: clamp(14px,1.6vw,16px); color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.prog-overview-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.prog-stat-card {
  background: var(--light-bg); border-radius: var(--radius-md); padding: 24px 18px;
  border: 1px solid var(--border); text-align: center;
}
.prog-stat-icon {
  width: 44px; height: 44px; border-radius: 11px; background: var(--icon-grad);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; box-shadow: 0 4px 12px rgba(59,130,246,0.35);
}
.prog-stat-card strong { display: block; font-family:'Poppins',sans-serif; font-size: clamp(20px,2.5vw,28px); font-weight: 800; color: var(--navy); }
.prog-stat-card span { font-size: 12px; color: var(--muted); }

/* Curriculum */
.curriculum-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.curriculum-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.curriculum-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.featured-curr { border-color: var(--blue); }
.curr-header {
  background: var(--light-bg); padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.featured-curr .curr-header { background: linear-gradient(135deg,#EFF6FF,#E0EFFE); }
.curr-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--white); background: var(--navy);
  padding: 4px 10px; border-radius: 6px; margin-bottom: 8px;
}
.curr-badge-blue { background: var(--blue); }
.curr-badge-navy { background: var(--navy); }
.curr-header h3 { font-size: 18px; color: var(--navy); }
.curr-body { padding: 24px; }
.curr-body p { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }
.curr-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.curr-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); }
.curr-outcome {
  background: var(--light-bg); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 13px; color: var(--muted); line-height: 1.6;
  border-left: 3px solid var(--blue);
}
.curr-outcome strong { color: var(--navy); }

/* Delivery model */
.delivery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.delivery-card {
  background: var(--white); border-radius: var(--radius-md); padding: 28px 20px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.delivery-num {
  font-family: 'Poppins',sans-serif; font-size: 36px; font-weight: 800;
  color: rgba(59,130,246,0.15); margin-bottom: 10px; line-height: 1;
}
.delivery-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.delivery-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Growth model */
.growth-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.growth-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 36px 32px; text-align: center;
  flex: 1; min-width: 180px;
}
.growth-card-mid {
  background: rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.4);
  transform: scale(1.03);
}
.growth-year { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.growth-num { font-family: 'Poppins',sans-serif; font-size: clamp(40px,5vw,64px); font-weight: 800; color: var(--white); line-height: 1; }
.growth-label { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.growth-students { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.growth-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); background: rgba(59,130,246,0.15); padding: 4px 10px; border-radius: 99px; display: inline-block; }
.growth-arrow { font-size: 24px; color: rgba(255,255,255,0.3); flex-shrink: 0; }

/* ─── PARTNERSHIPS PAGE ─── */
.partner-opps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.partner-opp-card {
  background: var(--white); border-radius: var(--radius-md); padding: 32px 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-opp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.featured-opp { border-color: var(--blue); background: linear-gradient(160deg,#EFF6FF,#fff); }
.partner-opp-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 700; color: var(--blue);
  background: rgba(59,130,246,0.1); padding: 4px 10px; border-radius: 99px;
}
.partner-opp-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--icon-grad);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; box-shadow: 0 5px 16px rgba(59,130,246,0.35);
}
.partner-opp-card h3 { font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.partner-opp-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.partner-opp-impact { font-size: 12px; font-weight: 700; color: #059669; background: #D1FAE5; padding: 6px 12px; border-radius: 99px; display: inline-block; }

.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.value-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; background: var(--light-bg); border-radius: var(--radius-md); border: 1px solid var(--border);
}
.value-icon {
  width: 36px; height: 36px; border-radius: 9px; background: rgba(59,130,246,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.value-item strong { font-size: 15px; color: var(--navy); display: block; margin-bottom: 4px; }
.value-item p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Partners announce text */
.partners-announce { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 16px; font-style: italic; }

/* ─── CONTACT PAGE ─── */
.whatsapp-contact-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: var(--white);
  padding: 14px 24px; border-radius: 99px; font-weight: 600; font-size: 15px;
  margin-top: 28px; margin-bottom: 28px;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.whatsapp-contact-btn:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

.org-mini-card {
  background: var(--light-bg); border-radius: var(--radius-md);
  border: 1px solid var(--border); overflow: hidden;
}
.org-mini-row { display: flex; gap: 16px; padding: 10px 16px; border-bottom: 1px solid var(--border); font-size: 13px; }
.org-mini-row:last-child { border-bottom: none; }
.org-mini-row span { color: var(--muted); min-width: 100px; flex-shrink: 0; }
.org-mini-row strong { color: var(--navy); font-weight: 600; word-break: break-all; }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

/* ─── SOCIAL ICONS ─── */
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); transition: var(--transition);
}
.social-icon:hover { background: rgba(255,255,255,0.14); color: var(--white); }

/* ─── RESPONSIVE ADDITIONS ─── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .prog-overview-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr 1fr; }
  .board-grid { grid-template-columns: repeat(3,1fr); }
  .partner-opps-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .curriculum-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .prog-overview-stats { grid-template-columns: 1fr 1fr; }
  .delivery-grid { grid-template-columns: 1fr 1fr; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .partner-opps-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .growth-grid { flex-direction: column; align-items: stretch; }
  .growth-arrow { transform: rotate(90deg); text-align: center; }
  .growth-card-mid { transform: none; }
  .reg-row { flex-direction: column; gap: 4px; }
  .reg-row span { min-width: auto; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

@media (max-width: 400px) {
  .board-grid { grid-template-columns: 1fr; }
  .prog-overview-stats { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════
   v2.3 PATCH — CSS & Responsive Fixes
   Author: Future Media Designs / Prince
   Fixes: navbar overlap, section spacing, image display,
          partner text color, WhatsApp, mobile grids,
          growth section mobile, contact form gap,
          school image container, about/programs stacking
══════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────
   FIX 1: NAVBAR OVERLAP — ALL PAGES
   The hero handles its own top padding via padding-top:72px
   All other pages use .page-hero which already includes
   calc(72px + ...). Body padding-top prevents ANY overlap
   on sub-pages that don't start with .hero or .page-hero.
───────────────────────────────────────────────────── */
body {
  padding-top: 72px; /* match navbar height exactly */
}

/* Hero and page-hero already include their own offset,
   so we undo body padding-top for those */
.hero,
.page-hero {
  margin-top: -72px; /* cancel body padding so they still reach top */
}

/* ─────────────────────────────────────────────────────
   FIX 2: SECTION PADDING CONSISTENCY
   Standardise all inline-style sections on sub-pages
   that used ad-hoc padding values
───────────────────────────────────────────────────── */
main > section {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
}

/* Don't double-pad sections that already define their own */
.hero,
.page-hero,
.problem,
.programs,
.school-program,
.community,
.founder,
.impact,
.partners,
.contact,
.footer {
  /* These already use var(--sy) — no override needed */
}


/* ─────────────────────────────────────────────────────
   FIX 3: SCHOOL IMAGE CONTAINER — ensure image shows
───────────────────────────────────────────────────── */
.school-img-placeholder {
  min-height: 300px;
  overflow: hidden;
}

.school-img-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

/* Community image container fix */
.community-img-placeholder {
  min-height: 240px;
  overflow: hidden;
}

.community-img-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

/* Hero image container fix */
.hero-img-placeholder {
  overflow: hidden;
}

.hero-img-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

/* Founder image container fix */
.founder-img-placeholder {
  overflow: hidden;
}

.founder-img-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: inherit;
}


/* ─────────────────────────────────────────────────────
   FIX 4: PARTNER INSTITUTIONS TEXT — force white on dark
───────────────────────────────────────────────────── */
.partners-announce {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 13px;
  font-style: italic;
  margin-top: 16px;
  text-align: center;
}

/* Any stray partner text inside dark sections */
.partners p,
.partners span:not(.badge-dot):not(.trust-sep) {
  color: rgba(255, 255, 255, 0.6);
}


/* ─────────────────────────────────────────────────────
   FIX 5: WHATSAPP BUTTON — correct number + always visible
───────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999; /* above everything */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  display: block;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────────────
   FIX 6: ABOUT PAGE — spacing and stacking
───────────────────────────────────────────────────── */
.about-section {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
}

/* Registration card rows — better mobile readability */
.reg-row {
  flex-wrap: wrap;
}

.reg-row span {
  min-width: 120px;
}


/* ─────────────────────────────────────────────────────
   FIX 7: PROGRAMS PAGE — curriculum + delivery grids
───────────────────────────────────────────────────── */

/* Curriculum cards — ensure equal height */
.curriculum-card {
  display: flex;
  flex-direction: column;
}

.curr-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.curr-outcome {
  margin-top: auto;
}

/* Delivery cards — equal height */
.delivery-card {
  display: flex;
  flex-direction: column;
}


/* ─────────────────────────────────────────────────────
   FIX 8: GROWTH / SCALING SECTION — mobile fix
───────────────────────────────────────────────────── */
.growth-grid {
  align-items: stretch;
}

.growth-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


/* ─────────────────────────────────────────────────────
   FIX 9: CONTACT FORM — consistent gap
───────────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* ─────────────────────────────────────────────────────
   FIX 10: MAX-WIDTH CONSISTENCY — all containers
───────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}


/* ════════════════════════════════════════════════════
   TABLET FIXES — 768px to 1024px
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* About grid */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Programs overview */
  .prog-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Curriculum — 2 cols on tablet */
  .curriculum-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Delivery — 2 cols on tablet */
  .delivery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Partner opps — 2 cols on tablet */
  .partner-opps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Value grid — 2 cols */
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Board — 3 cols fine on tablet */
  .board-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Growth — horizontal still fine */
  .growth-grid {
    gap: 12px;
  }

  .growth-card {
    padding: 28px 20px;
  }

  /* Page hero text */
  .page-hero-heading {
    font-size: clamp(26px, 4vw, 42px);
  }
}


/* ════════════════════════════════════════════════════
   MOBILE FIXES — under 768px
════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Global spacing ── */
  :root {
    --sy: clamp(52px, 8vw, 80px);
    --cx: 20px;
  }

  /* ── Navbar ── */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* ── About grid ── */
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* ── Board ── */
  .board-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* ── Programs overview stats ── */
  .prog-overview-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* ── Curriculum: 1 col ── */
  .curriculum-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* ── Delivery model: 1 col ── */
  .delivery-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* ── Growth / Scaling section ── */
  .growth-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .growth-arrow {
    transform: rotate(90deg);
    text-align: center;
    font-size: 20px;
    opacity: 0.5;
  }

  .growth-card-mid {
    transform: none; /* remove scale on mobile */
  }

  /* ── Partner opps: 1 col ── */
  .partner-opps-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* ── Value grid: 1 col ── */
  .value-grid {
    grid-template-columns: 1fr;
  }

  /* ── Contact grid ── */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* ── Form row: 1 col ── */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* ── Contact form wrap padding ── */
  .contact-form-wrap {
    padding: 24px 16px;
  }

  /* ── Footer ── */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* ── Page hero ── */
  .page-hero {
    padding-top: calc(72px + 40px);
    padding-bottom: 40px;
  }

  .page-hero-heading {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-hero-sub {
    font-size: 15px;
  }

  /* ── Registration card rows ── */
  .reg-row {
    flex-direction: column;
    gap: 3px;
  }

  .reg-row span {
    min-width: auto;
    font-size: 11px;
  }

  .reg-row strong {
    font-size: 13px;
  }

  /* ── Org mini card ── */
  .org-mini-row {
    flex-direction: column;
    gap: 2px;
  }

  .org-mini-row span {
    min-width: auto;
    font-size: 11px;
  }

  /* ── WhatsApp button ── */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  /* ── WhatsApp contact button ── */
  .whatsapp-contact-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 14px 20px;
  }

  /* ── Impact metrics ── */
  .impact-metrics {
    flex-direction: column;
  }

  .metric-divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
  }

  /* ── Problem stats ── */
  .problem-stats {
    flex-direction: column;
    gap: 20px;
  }

  .pstat-divider {
    width: 40px;
    height: 1px;
  }

  /* ── Hero ── */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-visual { order: -1; }

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

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

  /* ── School and founder stacking ── */
  .school-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
    /* ── School and founder stacking ── */
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ── Founder image on mobile ── */
  .founder-img-placeholder {
    aspect-ratio: 1 / 1;
    max-height: 360px;
  }

  .founder-quote-chip {
    right: 8px;
    bottom: -12px;
    max-width: 160px;
    padding: 10px 12px;
  }

  .founder-quote-chip span {
    font-size: 11px;
  }

  /* ── Programs grid ── */
  .programs-grid {
    grid-template-columns: 1fr;
  }

  /* ── Skills grid ── */
  .skills-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* ── Partners actions ── */
  .partners-actions {
    flex-direction: column;
    align-items: center;
  }

  .partners-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  /* ── School list ── */
  .school-list li {
    align-items: flex-start;
  }
}


/* ════════════════════════════════════════════════════
   VERY SMALL MOBILE — under 420px
════════════════════════════════════════════════════ */
@media (max-width: 420px) {

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

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

  .prog-overview-stats { grid-template-columns: 1fr; }

  .hero-float-card { display: none; }

  .growth-num {
    font-size: 48px;
  }

  .section-heading {
    font-size: clamp(22px, 6vw, 32px);
  }

  .btn {
    font-size: 13px;
    padding: 13px 22px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 14px;
    right: 14px;
  }
}

.form-success {
  margin-top: 15px;
  padding: 12px;
  background: #d4edda;
  color: #155724;
  border-radius: 6px;
}

.form-error {
  margin-top: 15px;
  padding: 12px;
  background: #f8d7da;
  color: #721c24;
  border-radius: 6px;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
