/* ==========================================================
   Sathya Dharshan — Kids Third Eye Course
   Design system: deep purple + saffron/orange + lavender
   ========================================================== */

:root{
  --purple-950:#2a0e52;
  --purple-900:#331366;
  --purple-800:#3d1975;
  --purple-700:#4b1f8f;
  --purple-600:#5b21b6;
  --purple-500:#6d28d9;
  --purple-100:#efe7fb;
  --lavender-bg:#f6f1fb;
  --cream-bg:#fdfaf5;
  --body-bg:#fefcfa;
  --orange:#e08a1e;
  --orange-dark:#c9740f;
  --ink:#241a3a;
  --gray-600:#5b5468;
  --gray-500:#79728a;
  --white:#ffffff;
  --radius-lg:22px;
  --radius-md:14px;
  --radius-sm:10px;
  --shadow-soft:0 10px 30px rgba(61,25,117,.10);
  --shadow-card:0 6px 20px rgba(61,25,117,.08);
  --serif:'Playfair Display', Georgia, serif;
  --sans:'Poppins', 'Segoe UI', sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
svg{width:20px;height:20px;flex-shrink:0;}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--body-bg);
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{margin:0;padding:0;list-style:none;}
.container{max-width:1180px;margin:0 auto;padding:0 24px;}
section{padding:70px 0;}
.eyebrow{
  color:var(--purple-600);
  font-weight:700;
  letter-spacing:.12em;
  font-size:.8rem;
  text-transform:uppercase;
  margin-bottom:10px;
}
.section-title{
  font-family:var(--serif);
  font-size:2.1rem;
  color:var(--ink);
  margin:0 0 16px;
}
.section-head{text-align:center;max-width:640px;margin:0 auto 46px;}
.divider{
  width:80px;height:2px;background:var(--purple-200,#ddccf7);
  margin:16px auto;position:relative;opacity:.6;
}
.divider::after{
  content:"❁";
  position:absolute;top:-11px;left:50%;transform:translateX(-50%);
  color:var(--purple-600);font-size:14px;background:var(--white);padding:0 8px;
}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 26px;border-radius:50px;font-weight:600;
  font-size:.95rem;border:2px solid transparent;cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--purple-600);color:#fff;box-shadow:0 8px 20px rgba(91,33,182,.28);}
.btn-primary:hover{background:var(--purple-700);}
.btn-outline{border-color:var(--purple-600);color:var(--purple-600);background:#fff;}
.btn-outline:hover{background:var(--purple-100);}
.btn-outline-white{border-color:rgba(255,255,255,.6);color:#fff;background:transparent;}
.btn-outline-white:hover{background:rgba(255,255,255,.12);}
.btn svg{width:16px;height:16px;}

/* ---------- Top bar ---------- */
.topbar{
  background:var(--purple-950);
  color:#e9e1fb;
  font-size:.83rem;
}
.topbar .container{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:9px;padding-bottom:9px;flex-wrap:wrap;gap:8px;
}
.topbar-left{display:flex;align-items:center;gap:8px;}
.topbar-right{display:flex;gap:22px;align-items:center;}
.topbar-right a{display:flex;align-items:center;gap:7px;color:#fff;font-weight:500;}
.topbar-right svg{width:15px;height:15px;}

/* ---------- Nav ---------- */
.navbar{
  background:#fff;
  border-bottom:1px solid #f0ecf9;
  position:sticky;top:0;z-index:50;
}
.navbar .container{display:flex;align-items:center;justify-content:space-between;padding-top:12px;padding-bottom:12px;flex-wrap:nowrap;gap:12px;}
.brand{display:flex;align-items:center;gap:12px;min-width:0;}
.brand img, .brand .logo-fallback{
  width:54px;height:54px;border-radius:14px;object-fit:contain;background:#fff;
  border:1px solid #f0ecf9;flex-shrink:0;padding:4px;
}
.logo-fallback{
  background:linear-gradient(135deg,var(--purple-600),var(--orange));
  display:flex;align-items:center;justify-content:center;color:#fff;
}
.logo-fallback svg{width:28px;height:28px;}
.brand-text .name{font-family:var(--serif);font-size:1.4rem;color:var(--purple-700);font-weight:700;line-height:1.1;}
.brand-text .tag{color:var(--orange-dark);font-weight:600;font-size:.95rem;}
.nav-links{display:flex;gap:22px;align-items:center;flex-wrap:nowrap;}
.nav-links a{font-weight:500;color:var(--gray-600);padding-bottom:4px;border-bottom:2px solid transparent;white-space:nowrap;transition:color .15s ease,border-color .15s ease;}
.nav-links a.active,.nav-links a:hover{color:var(--purple-600);border-color:var(--purple-600);}
.nav-toggle{display:none;background:none;border:none;font-size:1.6rem;color:var(--purple-700);cursor:pointer;flex-shrink:0;}

/* ---------- Hero ---------- */
.hero-banner{
  position:relative;overflow:hidden;
  min-height:640px;display:flex;align-items:center;
  padding:150px 0 90px;
}
.hero-slides{
  position:absolute;inset:0;z-index:1;
  background:var(--purple-950); /* fallback so gaps between slide fades show purple, not white */
}
.hero-slide{
  position:absolute;inset:0;background-size:cover;background-position:center;
  opacity:0;
}
.hero-slide-fallback{
  opacity:1;
  background:radial-gradient(circle at 70% 30%, #4b1f8f 0%, #2a0e52 55%, #170a33 100%);
}
.hero-slide:not(.is-animated):not(.hero-slide-fallback){opacity:1;}
.hero-slide.is-animated{animation:heroFade 15s ease-in-out infinite;}
@keyframes heroFade{
  0%{opacity:0;}
  4%{opacity:1;}
  30%{opacity:1;}
  36%{opacity:0;}
  100%{opacity:0;}
}
.hero-overlay{
  position:absolute;inset:0;z-index:2;
  background:none; /* overlay tint removed per request */
}
.hero-content{position:relative;z-index:3;max-width:640px;margin-left:48px;}
.hero-title{font-family:var(--serif);font-size:3.1rem;color:#fff;margin:0;line-height:1.15;text-shadow:0 2px 12px rgba(23,10,51,.55);}
.hero-subtitle{font-family:var(--serif);font-size:2.1rem;color:var(--orange);margin:4px 0 0;font-weight:700;text-shadow:0 2px 12px rgba(23,10,51,.55);}
.divider-light::after{background:transparent;color:#fff;}
.divider-light{background:rgba(255,255,255,.25);margin-left:0;}
.hero-desc{color:#e8dffa;font-size:1.08rem;max-width:480px;margin:22px 0 30px;line-height:1.7;text-shadow:0 1px 8px rgba(23,10,51,.5);}
.hero-features{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:34px;max-width:520px;}
.hero-feature{text-align:center;}
.hero-feature .icon-circle{
  width:54px;height:54px;margin:0 auto 10px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.12);color:#fff;border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(4px);
}
.hero-feature .icon-circle svg{width:24px;height:24px;}
.hero-feature span{font-size:.82rem;color:#e8dffa;font-weight:500;display:block;line-height:1.3;text-shadow:0 1px 6px rgba(23,10,51,.5);}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;}

/* ---------- Trust strip ---------- */
.trust-strip-section{padding:0;margin-top:-56px;position:relative;z-index:6;}
.trust-strip{
  background:linear-gradient(90deg,var(--purple-900),var(--purple-700));
  border-radius:var(--radius-lg);
  padding:36px 20px;
  box-shadow:var(--shadow-soft);
}
.trust-strip .grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:20px;
}
.trust-item{text-align:center;color:#fff;padding:0 6px;}
.trust-item svg{width:30px;height:30px;margin-bottom:12px;color:#fff;}
.trust-item h4{margin:0 0 6px;font-size:1rem;line-height:1.3;}
.trust-item p{margin:0;font-size:.82rem;color:#d9cdf5;line-height:1.4;}

/* ---------- Benefits / Classes ---------- */
.benefits{background:var(--lavender-bg);padding-top:90px;}
.benefit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.benefit-card{
  background:#fff;border-radius:var(--radius-md);overflow:hidden;text-align:center;
  box-shadow:var(--shadow-card);transition:transform .18s ease, box-shadow .18s ease;
}
.benefit-card:hover{transform:translateY(-5px);box-shadow:0 16px 32px rgba(61,25,117,.14);}
.benefit-img{width:100%;height:170px;overflow:hidden;background:var(--lavender-bg);}
.benefit-img img{width:100%;height:100%;object-fit:cover;}
.benefit-body{padding:28px 24px;}
.benefit-icon{
  width:64px;height:64px;border-radius:50%;margin:0 auto 18px;
  display:flex;align-items:center;justify-content:center;
}
.benefit-icon svg{width:28px;height:28px;}
.benefit-card h3{font-size:1.05rem;margin:0 0 8px;}
.benefit-card p{color:var(--gray-500);font-size:.9rem;margin:0;}
.benefit-meta{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:16px;}
.meta-chip{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 13px;border-radius:20px;font-size:.78rem;font-weight:600;
}
.meta-chip svg{width:14px;height:14px;}
.meta-time{background:var(--purple-100);color:var(--purple-600);}
.meta-price{background:#fdf1de;color:var(--orange-dark);}

/* ---------- Programme / About ---------- */
.programme{background:#fdfbff;}
.programme .container{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
.programme-visual{
  border-radius:var(--radius-lg);overflow:hidden;position:relative;
  aspect-ratio:1/1;width:100%;
  background:linear-gradient(160deg,#efe7fb,#f9f0e3);
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-card);
}
.programme-visual img{width:100%;height:100%;object-fit:cover;object-position:center;position:absolute;inset:0;}

/* Right side (text) — course.jpg as full, clearly visible background */
.programme-text{
  position:relative;
  border-radius:var(--radius-lg);
  padding:40px 34px;
  overflow:hidden;
  background:url('/uploads/course.jpg') center/cover no-repeat;
  box-shadow:var(--shadow-card);
}
/* Subtle dark gradient just for text legibility — image stays fully visible */
.programme-text::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(23,10,51,.35) 0%, rgba(23,10,51,.55) 100%);
  z-index:0;
}
.programme-text > *{position:relative;z-index:1;}
.programme-text .eyebrow{color:var(--orange);}
.programme-text .section-title{margin-bottom:14px;color:#fff;}
.programme-text p{color:#f0e9fb;}
.check-list{margin:22px 0 30px;}
.check-list li{display:flex;gap:12px;align-items:flex-start;margin-bottom:12px;color:#fff;font-size:.96rem;}
.check-list svg{width:19px;height:19px;color:var(--orange);flex-shrink:0;margin-top:2px;}

/* ---------- Philosophy ---------- */
.philosophy{background:var(--cream-bg);}
.philosophy-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:56px;align-items:start;}
.philosophy-desc p{color:var(--gray-600);margin:0 0 14px;}
.philosophy-stats{display:flex;flex-direction:column;gap:18px;}
.stat-item{
  display:flex;align-items:center;gap:16px;background:var(--lavender-bg);
  border-radius:var(--radius-md);padding:18px 22px;
}
.stat-num{
  font-family:var(--serif);font-size:1.6rem;color:var(--orange);font-weight:700;flex-shrink:0;
}
.stat-label{font-weight:600;color:var(--ink);}

/* ---------- Brain Power ---------- */
.brainpower{background:var(--lavender-bg);}
.brainpower-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
.brainpower-card{
  background:#fff;border-radius:var(--radius-md);padding:32px;box-shadow:var(--shadow-card);position:relative;
  border-left:4px solid var(--purple-600);
}
.bp-num{
  font-family:var(--serif);font-size:2.2rem;color:var(--purple-100);font-weight:700;
  position:absolute;top:14px;right:22px;
}
.brainpower-card h3{margin:0 0 10px;font-size:1.1rem;color:var(--purple-700);position:relative;}
.brainpower-card p{margin:0;color:var(--gray-600);font-size:.92rem;position:relative;}

/* ---------- Key Features ---------- */
.keyfeatures{background:var(--cream-bg);}
.keyfeatures-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:50px;align-items:center;}
.feature-list li{display:flex;gap:12px;align-items:flex-start;margin-bottom:14px;font-size:.96rem;}
.feature-list svg{width:19px;height:19px;color:var(--purple-600);flex-shrink:0;margin-top:2px;}
.transform-card{
  background:linear-gradient(160deg,var(--purple-900),var(--purple-600));
  border-radius:var(--radius-lg);padding:44px 30px;text-align:center;color:#fff;
}
.transform-before{font-size:1.3rem;text-decoration:line-through;color:#d6c6f7;font-weight:600;}
.transform-arrow{font-size:1.6rem;margin:8px 0;color:var(--orange);}
.transform-after{font-family:var(--serif);font-size:2.4rem;font-weight:700;color:#fff;margin-bottom:14px;}
.transform-card p{color:#e3d9fa;font-size:.92rem;margin:0;}

/* ---------- Community ---------- */
.community{
  background:linear-gradient(135deg,var(--purple-950),var(--purple-700));
  color:#fff;text-align:center;
}
.community-heading{font-family:'Noto Sans Tamil',var(--serif);font-size:1.8rem;margin:0 0 16px;}
.community-quote{font-family:'Noto Sans Tamil',var(--sans);font-size:1.05rem;color:#e3d9fa;max-width:700px;margin:0 auto 12px;font-style:italic;}
.community-note{font-family:'Noto Sans Tamil',var(--sans);color:#c6b6ea;font-size:.9rem;margin:0 0 30px;}
.community-actions{display:flex;justify-content:center;gap:20px;flex-wrap:wrap;}
.community-btn{
  display:flex;align-items:center;gap:14px;background:rgba(255,255,255,.08);
  border:1.5px solid rgba(255,255,255,.25);border-radius:var(--radius-md);
  padding:16px 26px;min-width:260px;text-align:left;transition:background .15s;
}
.community-btn:hover{background:rgba(255,255,255,.16);}
.community-btn .cb-icon{
  width:42px;height:42px;border-radius:50%;background:#fff;color:var(--purple-700);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1.1rem;
}
.community-btn strong{display:block;font-size:1rem;}
.community-btn em{display:block;font-style:normal;font-size:.8rem;color:#d6c6f7;margin-top:2px;font-family:'Noto Sans Tamil',var(--sans);}

/* ---------- Courses (Apply Now cards) ---------- */
.courses{background:var(--lavender-bg);}
.course-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.course-card{
  background:#fff;border-radius:var(--radius-md);overflow:hidden;
  box-shadow:var(--shadow-card);display:flex;flex-direction:column;
  transition:transform .18s ease, box-shadow .18s ease;
}
.course-card:hover{transform:translateY(-5px);box-shadow:0 16px 32px rgba(61,25,117,.14);}
.course-img{aspect-ratio:16/9;overflow:hidden;}
.course-img img{width:100%;height:100%;object-fit:cover;}
.course-body{padding:26px 24px 24px;display:flex;flex-direction:column;flex:1;}
.course-badge{
  display:inline-block;align-self:flex-start;padding:5px 14px;border-radius:50px;
  font-size:.72rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;margin-bottom:12px;
}
.course-body h3{font-family:var(--serif);font-size:1.25rem;margin:0 0 10px;color:var(--ink);}
.course-duration{
  display:inline-flex;align-items:center;gap:6px;color:var(--purple-600);
  font-weight:600;font-size:.85rem;margin-bottom:10px;
}
.course-duration svg{width:16px;height:16px;}
.course-note{
  display:flex;align-items:flex-start;gap:8px;background:var(--purple-100);
  color:var(--purple-700);border-radius:var(--radius-sm);padding:9px 12px;
  font-size:.82rem;margin-bottom:14px;
}
.course-note svg{width:16px;height:16px;flex-shrink:0;margin-top:1px;}
.course-desc{color:var(--gray-600);font-size:.92rem;margin:0 0 14px;}
.course-bullets{margin:0 0 18px;display:flex;flex-direction:column;gap:8px;}
.course-bullets li{display:flex;align-items:flex-start;gap:8px;font-size:.88rem;color:var(--gray-600);}
.course-bullets svg{width:17px;height:17px;color:var(--purple-600);flex-shrink:0;margin-top:2px;}
.course-apply{margin-top:auto;justify-content:center;width:100%;}

/* ---------- Vision & Mission ---------- */
.vision-mission{background:var(--lavender-bg);}
.vision-visual-full{
  width:100%;margin-bottom:44px;
  box-shadow:0 6px 24px rgba(30,10,60,.1);
}
.vision-visual-full img{width:100%;height:auto;display:block;}
.vm-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.vm-card{background:#fff;border-radius:var(--radius-md);padding:34px;box-shadow:var(--shadow-card);}
.vm-icon{
  width:52px;height:52px;border-radius:14px;background:var(--purple-100);color:var(--purple-600);
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}
.vm-icon svg{width:24px;height:24px;}
.vm-card h3{font-family:var(--serif);font-size:1.3rem;margin:0 0 10px;color:var(--ink);}
.vm-card p{color:var(--gray-600);margin:0;}

/* ---------- CTA bar ---------- */
.cta-bar{background:linear-gradient(90deg,var(--purple-900),var(--purple-700));color:#fff;}
.cta-bar .container{
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;padding:34px 24px;
}
.cta-left{display:flex;align-items:center;gap:18px;}
.cta-left .icon-circle{
  width:56px;height:56px;border-radius:50%;background:#fff;color:var(--purple-700);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.cta-left .icon-circle svg{width:24px;height:24px;}
.cta-left h4{margin:0 0 4px;font-size:1.15rem;}
.cta-left p{margin:0;color:#d9cdf5;font-size:.9rem;}
.cta-right{display:flex;gap:12px;flex-wrap:wrap;}

/* ---------- Footer ---------- */
footer{background:var(--purple-950);color:#cabce8;padding:46px 0 20px;font-size:.9rem;}
footer .container{display:flex;justify-content:space-between;flex-wrap:wrap;gap:20px;}
footer a{color:#cabce8;}
footer .foot-bottom{
  text-align:center;margin-top:30px;padding-top:20px;border-top:1px solid rgba(255,255,255,.08);
  font-size:.8rem;color:#9a8cc0;position:relative;
}
.foot-admin-link{margin-left:14px;}
.foot-admin-link a{color:#6d5a99;font-size:.78rem;border-bottom:1px dotted #6d5a99;}
.foot-admin-link a:hover{color:#cabce8;}

/* ---------- Gallery ---------- */
.gallery-preview{background:var(--cream-bg);}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.gallery-grid-full{grid-template-columns:repeat(4,1fr);}
.gallery-item{
  position:relative;display:block;border-radius:var(--radius-sm);overflow:hidden;
  aspect-ratio:4/3;box-shadow:var(--shadow-card);
}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .25s ease;}
.gallery-item:hover img{transform:scale(1.06);}
.gallery-caption{
  position:absolute;left:0;right:0;bottom:0;padding:10px 12px 8px;
  background:linear-gradient(to top, rgba(42,14,82,.85), transparent);
  color:#fff;font-size:.82rem;font-weight:600;
}

/* ---------- Apply / registration page ---------- */
.apply-hero{
  background:linear-gradient(120deg,var(--purple-900),var(--purple-600));
  color:#fff;padding:130px 0 50px;text-align:center;
}
.apply-hero h1{font-family:var(--serif);font-size:2rem;margin:0 0 8px;}
.apply-hero p{color:#e3d9fa;margin:0;}
.apply-card{
  background:#fff;border-radius:var(--radius-md);box-shadow:var(--shadow-card);
  padding:34px;margin-top:-40px;position:relative;
}
.apply-field{margin-bottom:18px;}
.apply-field label{display:block;font-weight:600;font-size:.88rem;margin-bottom:6px;color:var(--ink);}
.apply-field input, .apply-field textarea{
  width:100%;padding:12px 14px;border-radius:var(--radius-sm);border:1.5px solid #e4dcf5;
  font-family:var(--sans);font-size:.95rem;background:#fdfbff;
}
.apply-field input:focus, .apply-field textarea:focus{outline:none;border-color:var(--purple-500);}
.alert{padding:14px 16px;border-radius:var(--radius-sm);margin-bottom:20px;font-size:.9rem;}
.alert-error{background:#fdecec;color:#b3261e;border:1px solid #f6c6c2;}
.alert-success{background:#e6f6ec;color:#1e8e5a;border:1px solid #bfe8cf;}
.apply-success{text-align:center;}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float{
  position:fixed;bottom:24px;right:24px;z-index:999;
  width:58px;height:58px;border-radius:50%;
  background:#25D366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(37,211,102,.45);
  transition:transform .18s ease, box-shadow .18s ease;
  animation:wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg{width:30px;height:30px;}
.whatsapp-float:hover{transform:scale(1.08);box-shadow:0 10px 30px rgba(37,211,102,.6);}
@keyframes wa-pulse{
  0%,100%{box-shadow:0 8px 24px rgba(37,211,102,.45);}
  50%{box-shadow:0 8px 24px rgba(37,211,102,.45), 0 0 0 10px rgba(37,211,102,.12);}
}
@media (max-width:720px){
  .whatsapp-float{width:52px;height:52px;bottom:18px;right:18px;}
  .whatsapp-float svg{width:26px;height:26px;}
}

/* ---------- Responsive ---------- */
@media (max-width: 960px){
  .hero-banner{min-height:560px;padding:130px 0 70px;}
  .hero-content{margin-left:24px;}
  .programme .container{grid-template-columns:1fr;}
  .programme-visual{aspect-ratio:16/10;}
  .trust-strip .grid{grid-template-columns:repeat(3,1fr);}
  .benefit-grid{grid-template-columns:repeat(2,1fr);}
  .philosophy-grid{grid-template-columns:1fr;}
  .brainpower-grid{grid-template-columns:1fr;}
  .keyfeatures-grid{grid-template-columns:1fr;}
  .vm-grid{grid-template-columns:1fr;}
  .course-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-grid-full{grid-template-columns:repeat(3,1fr);}
}
@media (max-width: 1150px){
  .nav-links{
    position:absolute;top:100%;left:0;right:0;background:#fff;flex-direction:column;
    padding:16px 24px;gap:14px;display:none;border-bottom:1px solid #eee;
    box-shadow:0 12px 24px rgba(30,10,60,.08);
  }
  .nav-links.open{display:flex;}
  .nav-links a{white-space:normal;}
  .nav-toggle{display:block;}
}
@media (max-width: 720px){
  .hero-banner{min-height:520px;padding:120px 0 60px;}
  .hero-content{margin-left:0;}
  .hero-title{font-size:2.1rem;}
  .hero-subtitle{font-size:1.5rem;}
  .hero-desc{font-size:.96rem;}
  .hero-features{grid-template-columns:repeat(2,1fr);max-width:100%;}
  .trust-strip .grid{grid-template-columns:repeat(2,1fr);}
  .benefit-grid{grid-template-columns:1fr;}
  .cta-bar .container{flex-direction:column;text-align:center;}
  .cta-left{flex-direction:column;text-align:center;}
  .community-btn{min-width:100%;}
  .course-grid{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-grid-full{grid-template-columns:repeat(2,1fr);}
  .apply-hero{padding:110px 0 40px;}
  .apply-card{padding:24px;}
}