/* ============================================================
   Woogle Africa — Modern Design System
   A self-contained stylesheet. No frameworks required.
   ============================================================ */

/* ---- Fonts (with graceful system fallback) ---- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  /* Brand palette (from the Woogle logo) */
  --navy: #002147;
  --navy-800: #0a2f5c;
  --navy-700: #133c70;
  --blue: #1a73e8;
  --blue-600: #1557b0;
  --yellow: #fbbc05;
  --green: #34a853;
  --red: #ea4335;

  /* Neutrals */
  --ink: #0f1b2d;
  --body: #47566b;
  --muted: #7a879b;
  --line: #e7ecf3;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-tint: #eef4fb;

  /* Effects */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(15, 27, 45, .06);
  --shadow: 0 18px 40px rgba(15, 27, 45, .10);
  --shadow-lg: 0 30px 70px rgba(15, 27, 45, .16);
  --ring: 0 0 0 4px rgba(26, 115, 232, .15);

  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-head: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;

  --container: 1180px;
  --nav-h: 84px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; font-weight: 700; }
section { position: relative; }

/* ---- Layout helpers ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-navy { background: var(--navy); color: #cdd8e8; }
.text-center { text-align: center; }
.grid { display: grid; gap: 28px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue);
  background: var(--bg-tint);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.bg-navy .eyebrow { background: rgba(255,255,255,.08); color: var(--yellow); }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 17px; }
.bg-navy .section-head h2 { color: #fff; }
.bg-navy .section-head p { color: #a9bad2; }

.lead { font-size: 18px; color: var(--body); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
  padding: 15px 28px; border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 26px rgba(26,115,232,.32); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(26,115,232,.4); }
.btn-accent { background: var(--yellow); color: var(--navy); box-shadow: 0 12px 26px rgba(251,188,5,.35); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(251,188,5,.45); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 6px 24px rgba(15,27,45,.08);
  height: 70px;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; border-radius: 10px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-family: var(--font-head); font-size: 20px; color: var(--navy); font-weight: 800; letter-spacing: -.01em; }
.brand-name span { font-size: 11px; letter-spacing: .28em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 600; font-size: 15.5px; color: var(--ink);
  padding: 10px 16px; border-radius: 999px; position: relative;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--bg-tint); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 14.5px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Hero-over-nav: white text before scroll on home */
.nav:not(.scrolled).nav-onhero .nav-links a { color: #fff; }
.nav:not(.scrolled).nav-onhero .nav-links a:hover,
.nav:not(.scrolled).nav-onhero .nav-links a.active { background: rgba(255,255,255,.14); color: #fff; }
.nav:not(.scrolled).nav-onhero .brand-name b { color: #fff; }
.nav:not(.scrolled).nav-onhero .brand-name span { color: rgba(255,255,255,.7); }
.nav:not(.scrolled).nav-onhero .nav-toggle span { background: #fff; }

/* ============================================================
   HERO (rotating slides)
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.2s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(0,20,45,.92) 0%, rgba(0,33,71,.78) 42%, rgba(0,33,71,.35) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: var(--nav-h); }
.hero-inner { max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  padding: 8px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  backdrop-filter: blur(6px); margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(52,168,83,.3); }
.hero h1 {
  color: #fff; font-size: clamp(36px, 6vw, 66px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.05; margin-bottom: 22px;
}
.hero h1 .accent { color: var(--yellow); }
.hero h1 .g-b{color:var(--blue)} .hero h1 .g-r{color:var(--red)} .hero h1 .g-y{color:var(--yellow)} .hero h1 .g-g{color:var(--green)}
.hero p { font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,.9); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 36px; margin-top: 56px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stats .num { font-family: var(--font-head); font-size: 34px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stats .lbl { font-size: 13.5px; color: rgba(255,255,255,.75); margin-top: 6px; }

.hero-dots { position: absolute; bottom: 34px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 10px; }
.hero-dots button { width: 30px; height: 5px; border-radius: 999px; background: rgba(255,255,255,.35); transition: .3s; }
.hero-dots button.active { background: var(--yellow); width: 46px; }

/* Marquee strip below hero */
.trust {
  background: var(--navy); color: #cdd8e8; padding: 20px 0; overflow: hidden;
}
.trust .container { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.trust p { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: #8fa4c2; font-weight: 600; }

/* ============================================================
   FEATURE CARDS (about pillars)
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.about-copy h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -.02em; margin-bottom: 18px; }
.about-copy p { margin-bottom: 16px; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.about-media .pill {
  position: absolute; left: -18px; bottom: 26px;
  background: #fff; border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; max-width: 240px;
}
.about-media .pill .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-tint); display: grid; place-items: center; color: var(--blue); }
.about-media .pill b { color: var(--ink); font-family: var(--font-head); display: block; font-size: 22px; }
.about-media .pill span { font-size: 13px; color: var(--muted); }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 72px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature .fnum { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--blue); opacity: .5; }
.feature .ic {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  color: #fff; margin: 6px 0 18px;
}
.feature h3 { font-size: 20px; margin-bottom: 10px; }
.feature p { font-size: 15.5px; color: var(--muted); margin: 0; }
.feature.c1 .ic { background: linear-gradient(135deg, var(--blue), #3f92ff); }
.feature.c2 .ic { background: linear-gradient(135deg, var(--green), #57c777); }
.feature.c3 .ic { background: linear-gradient(135deg, var(--yellow), #ffd453); color: var(--navy); }

/* ============================================================
   COURSES
   ============================================================ */
.courses { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.course {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.course:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.course:hover .course-thumb img { transform: scale(1.06); }
.course-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,255,255,.95); color: var(--navy); font-weight: 700; font-size: 12.5px;
  padding: 7px 14px; border-radius: 999px; letter-spacing: .02em;
}
.course-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.course-body h3 { font-size: 22px; margin-bottom: 10px; }
.course-body p { color: var(--muted); font-size: 15.5px; margin-bottom: 18px; flex: 1; }
.course-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue); font-size: 15px; }
.course-more svg { transition: transform .2s ease; }
.course:hover .course-more svg { transform: translateX(4px); }

/* ============================================================
   STATS COUNTER (navy band)
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 12px; }
.stat .num { font-family: var(--font-head); font-size: clamp(38px, 5vw, 56px); font-weight: 800; color: #fff; line-height: 1; }
.stat .num .plus { color: var(--yellow); }
.stat .lbl { margin-top: 10px; color: #a9bad2; font-weight: 600; letter-spacing: .04em; }
.stat .bar { width: 40px; height: 4px; border-radius: 999px; background: var(--yellow); margin: 16px auto 0; }

/* ============================================================
   TEAM
   ============================================================ */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-tint); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 22px 18px 26px; }
.team-info h3 { font-size: 19px; margin-bottom: 4px; }
.team-info span { font-size: 13.5px; color: var(--muted); display: block; }
.team-info .role-line { width: 30px; height: 3px; background: var(--blue); border-radius: 999px; margin: 12px auto 0; }

.advisors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.advisor { text-align: center; }
.advisor-photo { aspect-ratio: 1/1; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); background: var(--bg-tint); }
.advisor-photo img { width: 100%; height: 100%; object-fit: cover; }
.advisor h3 { font-size: 17px; margin: 16px 0 6px; }
.advisor span { font-size: 13px; color: var(--muted); }

/* ============================================================
   EVENTS
   ============================================================ */
.events { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.event {
  display: flex; gap: 20px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; padding: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.event:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.event-thumb { position: relative; flex: 0 0 150px; border-radius: var(--radius-sm); overflow: hidden; }
.event-thumb img { width: 100%; height: 100%; object-fit: cover; min-height: 150px; }
.event-date {
  position: absolute; top: 10px; left: 10px; background: #fff; border-radius: 10px;
  text-align: center; padding: 6px 10px; box-shadow: var(--shadow-sm); line-height: 1;
}
.event-date .d { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--navy); }
.event-date .m { font-size: 11px; color: var(--red); font-weight: 700; text-transform: uppercase; }
.event-body { flex: 1; padding: 6px 6px 6px 0; }
.event-body h3 { font-size: 18px; margin-bottom: 8px; }
.event-body p { font-size: 14.5px; color: var(--muted); margin-bottom: 12px; }
.event-time { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--blue); font-weight: 600; }

/* ============================================================
   TESTIMONIALS (slider)
   ============================================================ */
.testi-wrap { max-width: 820px; margin: 0 auto; position: relative; }
.testi-track { overflow: hidden; }
.testi-slides { display: flex; transition: transform .5s ease; }
.testi {
  flex: 0 0 100%; padding: 8px;
}
.testi-inner {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 44px 46px; box-shadow: var(--shadow-sm); text-align: center;
}
.testi .quote { color: var(--yellow); font-size: 46px; line-height: 1; font-family: Georgia, serif; }
.testi .stars { color: var(--yellow); letter-spacing: 3px; margin: 6px 0 18px; }
.testi p { font-size: 18.5px; color: var(--ink); line-height: 1.6; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.testi-author b { display: block; color: var(--ink); font-family: var(--font-head); }
.testi-author span { font-size: 13.5px; color: var(--muted); }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.testi-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line);
  display: grid; place-items: center; color: var(--navy); transition: .2s; background: #fff;
}
.testi-nav button:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ============================================================
   VIDEO CTA
   ============================================================ */
.video-cta {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 360px; display: grid; place-items: center; text-align: center; color: #fff;
  background-size: cover; background-position: center;
}
.video-cta::after { content:""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,20,45,.8), rgba(0,33,71,.55)); }
.video-cta > * { position: relative; z-index: 2; }
.play-btn {
  width: 84px; height: 84px; border-radius: 50%; background: var(--yellow); color: var(--navy);
  display: grid; place-items: center; margin: 0 auto 18px; box-shadow: 0 0 0 0 rgba(251,188,5,.6);
  animation: pulse 2.4s infinite;
}
.play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
.video-cta h3 { color: #fff; font-size: 26px; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(251,188,5,.55);} 70%{box-shadow:0 0 0 22px rgba(251,188,5,0);} 100%{box-shadow:0 0 0 0 rgba(251,188,5,0);} }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-group + .partners-group { margin-top: 48px; }
.partners-title { text-align: center; font-size: 15px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 26px; }
.partners { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.partner {
  width: 108px; height: 108px; border-radius: 20px; background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; padding: 16px; transition: .25s;
  filter: grayscale(1); opacity: .8;
}
.partner:hover { filter: none; opacity: 1; transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.partner img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-700) 60%, var(--blue-600) 130%);
  border-radius: var(--radius-lg); padding: 60px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content:""; position:absolute; border-radius:50%; opacity:.15;
}
.cta-banner::before { width:260px; height:260px; background: var(--yellow); top:-90px; right:-60px; }
.cta-banner::after { width:200px; height:200px; background: var(--green); bottom:-80px; left:-40px; }
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; letter-spacing: -.02em; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 540px; margin: 0 auto 28px; }
.cta-banner .hero-actions { justify-content: center; }

/* ============================================================
   CODE CAMP 2027 BANNER
   ============================================================ */
.camp-banner {
  background: linear-gradient(130deg, #062a55 0%, var(--navy) 45%, #0c3f7e 115%);
  border-radius: var(--radius-lg); padding: 60px 56px; color: #fff;
  position: relative; overflow: hidden; text-align: center;
}
.camp-banner::before { content:""; position:absolute; width:300px; height:300px; border-radius:50%; background:var(--yellow); opacity:.12; top:-120px; right:-80px; }
.camp-banner::after { content:""; position:absolute; width:230px; height:230px; border-radius:50%; background:var(--green); opacity:.14; bottom:-100px; left:-70px; }
.camp-banner > * { position: relative; z-index: 2; }
.camp-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--navy);
  font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
}
.camp-banner h2 { color: #fff; font-size: clamp(30px, 5.4vw, 54px); letter-spacing: -.025em; line-height: 1.05; margin-bottom: 14px; }
.camp-banner h2 span { color: var(--yellow); }
.camp-lead { color: rgba(255,255,255,.86); max-width: 620px; margin: 0 auto 34px; font-size: 18px; }

.camp-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 34px; }
.camp-meta-item {
  display: flex; align-items: center; gap: 12px; text-align: left;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  padding: 14px 20px; border-radius: 14px; backdrop-filter: blur(4px);
}
.camp-meta-item svg { color: var(--yellow); flex: 0 0 22px; }
.camp-meta-item .k { display: block; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: #a9bad2; font-weight: 700; }
.camp-meta-item .v { display: block; font-weight: 700; color: #fff; font-size: 15.5px; font-family: var(--font-head); }

.camp-tracks-label { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: #a9bad2; font-weight: 700; margin-bottom: 16px; }
.camp-tracks { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 30px; }
.camp-track {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: 11px 20px; border-radius: 999px;
}
.camp-track i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.camp-track.t1 i { background: var(--blue); } .camp-track.t2 i { background: var(--red); }
.camp-track.t3 i { background: var(--yellow); } .camp-track.t4 i { background: var(--green); }

.camp-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin-bottom: 34px; }
.camp-perks span { display: inline-flex; align-items: center; gap: 9px; font-size: 15.5px; color: #dce6f5; font-weight: 600; }
.camp-perks svg { color: var(--yellow); flex: 0 0 20px; }

.camp-offer {
  display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 26px;
  background: rgba(251,188,5,.13); border: 1.5px dashed rgba(251,188,5,.6);
  padding: 16px 26px; border-radius: 16px; margin-bottom: 30px;
}
.camp-offer span { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15.5px; color: #fff; }
.camp-offer svg { color: var(--yellow); flex: 0 0 20px; }
.camp-offer .hot { color: var(--yellow); font-family: var(--font-head); }

/* ============================================================
   ONLINE LEARNING PLATFORM
   ============================================================ */
.learn-band {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 52px; align-items: center;
  background: linear-gradient(125deg, var(--navy) 0%, var(--navy-700) 55%, var(--blue-600) 135%);
  border-radius: var(--radius-lg); padding: 56px; color: #fff; position: relative; overflow: hidden;
}
.learn-band::before { content:""; position:absolute; width:280px; height:280px; border-radius:50%; background:var(--yellow); opacity:.12; top:-100px; right:-70px; }
.learn-band::after { content:""; position:absolute; width:200px; height:200px; border-radius:50%; background:var(--green); opacity:.14; bottom:-90px; left:-50px; }
.learn-copy { position: relative; z-index: 2; }
.learn-copy .eyebrow { background: rgba(255,255,255,.08); color: var(--yellow); }
.learn-copy h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.02em; margin-bottom: 14px; }
.learn-copy p { color: rgba(255,255,255,.85); margin-bottom: 4px; }
.learn-features { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 22px 0 28px; }
.learn-features span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: #dce6f5; }
.learn-features svg { color: var(--green); flex: 0 0 18px; }

.browser { position: relative; z-index: 2; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.15); }
.browser-bar { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: #eef2f8; border-bottom: 1px solid var(--line); }
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser-dots i:nth-child(1){ background:#ff5f57; } .browser-dots i:nth-child(2){ background:#febc2e; } .browser-dots i:nth-child(3){ background:#28c840; }
.browser-url { flex: 1; background: #fff; border-radius: 8px; padding: 7px 12px; font-size: 13px; color: var(--body); display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); font-family: var(--font-body); }
.browser-url svg { color: var(--green); flex: 0 0 14px; }
.browser img { width: 100%; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: #a9bad2; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer .brand-name b { color: #fff; }
.footer p { font-size: 15px; margin: 18px 0; color: #97a9c4; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 20px; letter-spacing: .02em; }
.footer-links a { display: block; padding: 7px 0; color: #a9bad2; font-size: 15px; transition: .2s; }
.footer-links a:hover { color: var(--yellow); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; padding: 8px 0; font-size: 15px; align-items: flex-start; }
.footer-contact svg { flex: 0 0 20px; color: var(--yellow); margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #cdd8e8; transition: .25s;
}
.socials a:hover { background: var(--yellow); color: var(--navy); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 14px; color: #8093ad;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 70px) 0 70px; color: #fff; text-align: center; position: relative;
  background: linear-gradient(120deg, rgba(0,20,45,.9), rgba(0,33,71,.7)), var(--navy);
  background-size: cover; background-position: center;
}
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); letter-spacing: -.02em; }
.crumb { display: flex; justify-content: center; gap: 8px; margin-top: 14px; color: rgba(255,255,255,.7); font-size: 14.5px; }
.crumb a:hover { color: var(--yellow); }
.crumb .sep { opacity: .5; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-grid .g-item {
  break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius-sm); overflow: hidden;
  position: relative; cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-grid .g-item img { width: 100%; display: block; transition: transform .5s ease; }
.gallery-grid .g-item::after {
  content: "+"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 40px; color: #fff; background: rgba(0,33,71,.45);
  opacity: 0; transition: .3s; font-family: var(--font-head);
}
.gallery-grid .g-item:hover::after { opacity: 1; }
.gallery-grid .g-item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(3,12,26,.94); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; color: #fff; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); display: grid; place-items: center; font-size: 24px; transition: .2s;
}
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox button:hover { background: var(--yellow); color: var(--navy); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex; gap: 16px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; align-items: center; transition: .25s;
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--bg-tint); color: var(--blue); display: grid; place-items: center; flex: 0 0 52px; }
.contact-card h4 { font-size: 16px; margin-bottom: 3px; }
.contact-card span { color: var(--muted); font-size: 15px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 24px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  font-family: inherit; font-size: 15.5px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px;
  background: var(--bg-soft); transition: .2s; width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 130px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* Scroll-to-top */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transform: translateY(12px); transition: .3s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--blue-600); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .features, .team, .advisors { grid-template-columns: repeat(2, 1fr); }
  .courses, .events { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .learn-band { grid-template-columns: 1fr; gap: 38px; padding: 44px 30px; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 16px; box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .35s ease; z-index: 99;
  }
  .nav-links.open { transform: none; }
  .nav-links a { color: var(--ink) !important; background: transparent !important; padding: 14px 16px; border-radius: 12px; }
  .nav-links a:hover { background: var(--bg-tint) !important; }
  .cta-banner { padding: 40px 24px; }
  .camp-banner { padding: 44px 24px; }
  .camp-meta-item { flex: 1 1 100%; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .hero-stats { gap: 26px; }
  .about-media .pill { left: 12px; }
}

@media (max-width: 560px) {
  .features, .team, .advisors, .partners { grid-template-columns: 1fr; }
  .team, .advisors { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 1; }
  .event { flex-direction: column; }
  .event-thumb { flex: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .testi-inner { padding: 32px 22px; }
}
