/* ============================================================
   SKILLSAPLING — TYPOGRAPHY-FIRST CSS
   Fonts: Playfair Display (headings) + DM Sans (body)
   
   NAVBAR.PHP ke <head> mein ye Google Fonts link add karo:
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,600;1,700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&display=swap" rel="stylesheet">
============================================================ */

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --green:   #226e63;
  --yellow:  #ffcf00;
  --black:   #0B0B0B;
  --cream:   #FFF8E1;
  --white:   #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --fs-hero: clamp(36px, 6vw, 62px);
  --fs-h1:   clamp(30px, 5vw, 52px);
  --fs-h2:   clamp(24px, 3.5vw, 38px);
  --fs-h3:   clamp(17px, 2.5vw, 22px);
  --fs-body: 16px;
  --fs-sm:   14px;
  --fs-xs:   13px;
}

/* ============================================================
   RESET
============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ============================================================
   BASE
============================================================ */
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY HIERARCHY  (SEO-friendly)
   H1 → bold serif        — page keyword
   H2 → semibold serif    — section keywords
   H3 → bold sans         — card titles
   H4 → italic serif      — labels / sub-headings
   p  → normal sans       — readable body
   em → light italic sans — meta / supporting text
============================================================ */

h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 900;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

h3 {
  font-family: var(--font-body);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.35;
}

/* italic serif — warm, elegant labels */
h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
}

h5, h6 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.75;
  color: #333;
}

strong, b { font-weight: 700; color: var(--black); }

em, i {
  font-style: italic;
  font-weight: 300;
  color: #555;
}

a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: #1a5249; }

/* ============================================================
   CONTAINER
============================================================ */
.container { width: 92%; max-width: 1180px; margin: auto; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar { position: fixed; top: 0; left: 0; width: 100%; background: transparent; z-index: 1000; }

.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: #0b3d2e;
  text-decoration: none;
}

.brand img { height: 42px; width: auto; }

.nav-links { display: none; }

.hamburger {
  border: none;
  background: rgb(5,5,5);
  backdrop-filter: blur(8px);
  font-size: 26px;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0; right: -340px;
  width: 320px; height: 100vh;
  background: #226e63;
  z-index: 2001;
  transition: 0.35s ease;
  box-shadow: -10px 0 30px rgba(255,254,254,0.25);
  display: flex;
  flex-direction: column;
}

.sidebar.active { right: 0; }

.sidebar-header { display: flex; justify-content: flex-end; padding: 18px; }

.sidebar-header button {
  border: none; background: #000; color: #fff;
  font-size: 18px; padding: 6px 10px; border-radius: 8px; cursor: pointer;
}

.sidebar-links { padding: 0 24px; }

.sidebar-links a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #f5f3f3;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  letter-spacing: 0.2px;
  transition: 0.2s;
}

.sidebar-links a:hover { color: var(--yellow); font-style: italic; }

.sidebar-footer {
  margin-top: auto;
  padding: 20px 24px;
  font-size: var(--fs-sm);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.admin-link { display: block; margin-bottom: 10px; font-weight: 800; color: #fff; }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }

.nav-link {
  cursor: pointer;
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: #f5f3f3;
}

.dropdown-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  margin-top: 6px;
  overflow: hidden;
}

.dropdown-menu a {
  padding: 10px 14px;
  color: #0b3d2e;
  font-weight: 500;
  font-size: var(--fs-sm);
  text-decoration: none;
}

.dropdown-menu a:hover { background: #e8f6ef; }
.nav-dropdown:hover .dropdown-menu { display: flex; }

/* ============================================================
   HERO VIDEO
============================================================ */
.hero-video {
  position: relative;
  height: 90vh; min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
}

.bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: blur(0.5px);
  transform: scale(1.12);
}

.video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 2; }

.hero-content { position: relative; z-index: 3; color: var(--white); }

.hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 900;
  font-style: normal;
  line-height: 1.05;
  max-width: 900px;
  color: #fff;
}

/* tagline — italic serif, yellow — the memorable hook */
.hero-subtitle {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: rgba(255,207,0,0.95);
  letter-spacing: 0.3px;
}

/* description — light weight, creates breathing room */
.hero-desc {
  margin-top: 12px;
  max-width: 650px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  font-weight: 300;
}

.hero-buttons { display: flex; gap: 16px; margin-top: 22px; }
.hero-buttons a { text-decoration: none !important; font-family: var(--font-body); font-weight: 700; }

.hero-btn,
.hero-buttons .btn {
  display: inline-block;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none !important;
  transition: 0.25s ease;
}

.hero-btn.primary,  .hero-buttons .btn.primary  { background: #F7C600; color: #0B0B0B !important; }
.hero-btn.secondary,.hero-buttons .btn.secondary { border: 2px solid #F7C600; color: #F7C600 !important; background: transparent; }

.hero-btn.primary:hover,  .hero-buttons .btn.primary:hover  { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,0.25); }
.hero-btn.secondary:hover,.hero-buttons .btn.secondary:hover { background: #F7C600; color: #0B0B0B !important; }

/* ============================================================
   SECTIONS
============================================================ */
.section { padding: 70px 0; }

.section-head h2 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 700; color: var(--green); }
.section-head p  { margin-top: 8px; color: #555; font-weight: 300; font-style: italic; }

.section-heading { text-align: center; margin-bottom: 35px; }

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.3px;
}

.section-heading p {
  margin-top: 10px;
  color: #555;
  max-width: 650px;
  margin-left: auto; margin-right: auto;
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
}

/* ============================================================
   CARDS (generic)
============================================================ */
.grid { margin-top: 25px; display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }

.card { background: #fff; padding: 18px; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.card h3 { color: var(--green); margin-bottom: 6px; }
.card p  { color: #444; font-size: var(--fs-sm); }

/* ============================================================
   COURSES SECTION
============================================================ */
.courses-section { padding: 80px 0; background: var(--cream); }

.courses-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }

.course-card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; width: 100%; height: 6px;
  background: var(--yellow);
}

.course-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(0,0,0,0.12); }

.course-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(247,198,0,0.18);
  color: var(--green);
  font-size: 28px;
  margin-bottom: 14px;
}

.course-card h3 { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.course-card p  { font-size: var(--fs-sm); line-height: 1.65; color: #555; font-weight: 400; margin-bottom: 16px; }

.course-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  background: var(--green);
  color: var(--white);
  transition: 0.2s;
}
.course-btn:hover { background: var(--yellow); color: var(--black); }

/* ============================================================
   BIRTHDAY WALL
============================================================ */
.birthday-wall { padding: 80px 0; background: #fff; }

.birthday-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 22px; justify-items: center; }

.birthday-card {
  width: 100%; max-width: 280px;
  background: #fff7d6;
  border-radius: 18px; padding: 18px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  border: 2px solid rgba(247,198,0,0.35);
}

.birthday-photo { width: 95px; height: 95px; border-radius: 50%; object-fit: cover; border: 4px solid #f7c600; margin-bottom: 12px; }

/* birthday name — italic serif, festive warmth */
.birthday-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; font-style: italic; color: #0B3D2E; margin-bottom: 8px; }

.wish       { font-size: var(--fs-sm); font-weight: 700; color: #222; margin: 8px 0; }
.wish-small { font-size: 13px; color: #666; font-style: italic; }
.no-bday    { text-align: center; font-size: 16px; font-weight: 500; font-style: italic; color: #0B3D2E; }

/* ============================================================
   WEEKLY CHALLENGE
============================================================ */
.weekly-challenge { padding: 80px 0; background: linear-gradient(180deg,#fff8e1 0%,#ffffff 100%); }

.challenge-grid { margin-top: 35px; display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }

.challenge-card {
  background: #fff;
  border-radius: 18px; padding: 18px;
  border: 2px solid rgba(247,198,0,0.28);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  transition: 0.25s;
  position: relative; overflow: hidden;
}

.challenge-card:hover { transform: translateY(-6px); box-shadow: 0 14px 26px rgba(0,0,0,0.12); }

.challenge-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 12px; }

.challenge-badge {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 7px 10px; border-radius: 999px;
  color: #fff; background: var(--green);
}

.challenge-badge.coding { background: #0B3D2E; }
.challenge-badge.soft   { background: #145a3f; }
.challenge-badge.art    { background: #1b6b4c; }
.challenge-badge.yoga   { background: #0f4e38; }
.challenge-badge.dance  { background: #0a3a2b; }

.challenge-level {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 6px 10px; border-radius: 10px;
  border: 2px solid rgba(0,0,0,0.10);
  background: #fff; color: var(--black);
}

.challenge-level.easy   { border-color: rgba(0,160,90,0.35); }
.challenge-level.medium { border-color: rgba(247,198,0,0.65); }
.challenge-level.hard   { border-color: rgba(255,60,60,0.55); }

.challenge-card h3 { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--green); margin-bottom: 8px; }

.challenge-desc { font-size: var(--fs-sm); line-height: 1.65; color: #444; min-height: 68px; font-weight: 400; }

/* meta — italic, lighter — supporting info */
.challenge-meta { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; font-size: var(--fs-xs); color: #666; font-style: italic; font-weight: 400; }

.challenge-btn {
  margin-top: 14px;
  display: inline-block; width: 100%; text-align: center;
  padding: 12px 14px; border-radius: 14px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  text-decoration: none; background: var(--yellow); color: var(--black);
  transition: 0.2s;
}
.challenge-btn:hover { filter: brightness(0.95); transform: translateY(-2px); }

/* ============================================================
   COURSE FINDER
============================================================ */
.course-finder { padding: 90px 0; background: #fff; }

.finder-box { margin-top: 35px; display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 18px; align-items: start; }

.finder-left { background: #fff8e1; border: 2px solid rgba(247,198,0,0.25); border-radius: 20px; padding: 22px; box-shadow: 0 10px 22px rgba(0,0,0,0.06); }

.q-card { background: #fff; border-radius: 16px; padding: 16px; border: 1px solid rgba(0,0,0,0.08); margin-bottom: 14px; }

.q-card h3 { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 10px; }

.options { display: grid; gap: 10px; }

.options label {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 12px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  font-family: var(--font-body); font-weight: 500; font-size: 14px; color: #222;
  transition: 0.2s;
}
.options label:hover { border-color: rgba(247,198,0,0.7); transform: translateY(-1px); }
.options input { accent-color: var(--yellow); }

.finder-actions { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }

.finder-right { position: sticky; top: 90px; }

.result-card { background: var(--green); color: #fff; border-radius: 20px; padding: 22px; box-shadow: 0 12px 24px rgba(0,0,0,0.14); border: 2px solid rgba(247,198,0,0.25); }

/* italic serif inside result — elegant contrast on dark bg */
.result-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; font-style: italic; margin-bottom: 6px; color: #fff; }

.result-sub { color: rgba(255,255,255,0.75); font-size: var(--fs-xs); font-style: italic; margin-bottom: 16px; }

.result-output { background: rgba(255,255,255,0.12); border-radius: 16px; padding: 18px; border: 1px solid rgba(255,255,255,0.18); }

.result-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: rgba(247,198,0,0.25); font-size: 26px; margin-bottom: 12px; }

.result-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--yellow); }

.result-desc { color: rgba(255,255,255,0.85); font-size: var(--fs-sm); line-height: 1.65; font-weight: 300; }

..result-cta a {color: #ffffff};

.result-cta a:hover {
  color: var(--yellow);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { padding: 90px 0; background: var(--cream); }

.testimonial-wrap { position: relative; margin-top: 35px; }

.testimonial-slider { display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth; padding: 12px 6px; scrollbar-width: none; }
.testimonial-slider::-webkit-scrollbar { display: none; }

.t-card { min-width: 320px; max-width: 320px; background: #fff; border-radius: 20px; padding: 18px; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 10px 24px rgba(0,0,0,0.06); transition: 0.25s; }
.t-card:hover { transform: translateY(-6px); border-color: rgba(247,198,0,0.55); }

.t-stars { color: var(--yellow); font-size: 16px; letter-spacing: 1px; margin-bottom: 10px; }

/* review text — italic serif = authenticity signal for Google */
.t-msg { font-family: var(--font-display); font-size: 14px; font-style: italic; font-weight: 400; line-height: 1.8; color: #2b2b2b; margin-bottom: 14px; }

.t-user { display: flex; gap: 12px; align-items: center; }

.t-avatar { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(247,198,0,0.18); font-size: 22px; }

.t-user h4 { font-family: var(--font-body); font-size: 14px; font-weight: 700; font-style: normal; color: var(--green); margin: 0; }
.t-user span { font-size: 12px; color: #888; font-style: italic; }

.t-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 14px; border: none; cursor: pointer; font-size: 26px; font-weight: 900; color: var(--black); background: var(--yellow); box-shadow: 0 12px 22px rgba(0,0,0,0.18); transition: 0.2s; z-index: 10; }
.t-btn:hover { filter: brightness(0.95); transform: translateY(-50%) scale(1.03); }
.t-btn.prev { left: -10px; }
.t-btn.next { right: -10px; }

.t-dots { margin-top: 16px; display: flex; justify-content: center; gap: 8px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,0.18); cursor: pointer; transition: 0.2s; }
.t-dot.active { background: var(--green); transform: scale(1.2); }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--green); color: var(--white); padding: 70px 0 0; margin-top: 90px; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; }

.footer-logo { font-family: var(--font-display); font-size: 24px; font-weight: 700; font-style: italic; color: var(--yellow); margin-bottom: 10px; }

.footer-col h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; font-style: normal; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; color: var(--yellow); }

.footer-text { color: rgba(255,255,255,0.80); line-height: 1.75; font-size: var(--fs-sm); font-weight: 300; max-width: 320px; }

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.80); font-size: var(--fs-sm); font-weight: 400; transition: 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }

.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.footer-social a { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: rgba(247,198,0,0.18); color: var(--yellow); font-size: 18px; text-decoration: none; transition: 0.2s; }
.footer-social a:hover { background: var(--yellow); color: var(--black); transform: translateY(-3px); }

.footer-mini { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.6); font-style: italic; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 16px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.7); }

.footer-bottom .made { font-family: var(--font-display); font-style: italic; color: rgba(247,198,0,0.95); font-weight: 600; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.aboutPageHero, .about-hero { background: var(--green); color: white; padding: 80px 0; }
.aboutHeroWrap, .about-hero-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 22px; align-items: center; }

.aboutHeroText h1 { font-family: var(--font-display); font-size: clamp(34px,5vw,52px); font-weight: 900; line-height: 1.05; }

.aboutHeroText p, .about-hero-sub { margin-top: 14px; color: rgba(255,255,255,0.85); line-height: 1.75; max-width: 650px; font-weight: 300; }

.aboutHeroBtns, .about-hero-btns { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }

.about-stats { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }

.stat { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); padding: 12px 14px; border-radius: 16px; min-width: 120px; }
.stat h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--yellow); }
.stat p  { font-size: 12px; color: rgba(255,255,255,0.80); font-weight: 300; font-style: italic; }

.aboutSection, .about-section { padding: 80px 0; }

.aboutGrid3 { margin-top: 25px; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.aboutCard { background: white; border-radius: 18px; padding: 18px; box-shadow: 0 10px 22px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.08); line-height: 1.7; color: #222; }

.aboutAlt { background: #fff; }

.aboutGrid2, .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }

.mvBox, .mv-card { background: #fff8e1; border: 2px solid rgba(247,198,0,0.25); border-radius: 20px; padding: 18px; }

.mvBox h2, .mv-card h2 { font-family: var(--font-display); color: var(--green); font-weight: 700; margin-bottom: 10px; }
.mvBox p,  .mv-card p  { color: #444; line-height: 1.75; font-weight: 300; }

.mv-card.vision-box { height: fit-content; }
.mv-points { margin-top: 10px; padding-left: 11px; list-style-position: inside; }
.mv-points li { margin-bottom: 10px; line-height: 1.65; font-size: 15px; color: #222; }
.mv-intro    { margin-top: 8px; line-height: 1.65; color: #333; }
.mv-subtitle { margin-top: 10px; font-weight: 600; font-style: italic; color: #111; }

.why-grid { margin-top: 25px; display: grid; grid-template-columns: repeat(2,2fr); gap: 16px; }
.why-card { background: #fff; border-radius: 18px; padding: 18px; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 10px 22px rgba(0,0,0,0.06); }

.offer-grid { margin-top: 25px; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.offer-card { background: #fff; padding: 14px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.08); font-weight: 700; }

/* TRAINERS */
.trainer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }

.trainer-card { background: white; padding: 30px; border-radius: 15px; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: all 0.3s ease; border: 2px solid transparent; }
.trainer-card:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(42,168,121,0.2); border-color: #2aa879; }

.trainer-img { width: 180px; height: 180px; margin: 0 auto 20px; overflow: hidden; border-radius: 12px; border: 4px solid #2aa879; background: #f0f0f0; }
.trainer-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* trainer name — italic serif, personal feel */
.trainer-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; font-style: italic; color: #333; margin-bottom: 8px; }
.trainer-subject  { font-size: 14px; color: #2aa879; font-weight: 600; font-style: italic; margin-bottom: 10px; }
.trainer-desc     { font-size: var(--fs-sm); color: #555; line-height: 1.65; font-weight: 300; }

/* FOUNDER */
.founder-section { margin: 40px 0; padding: 20px 0; }

.founder-card { display: flex; align-items: center; gap: 30px; background: #dff7ea; padding: 30px; border-radius: 18px; border: 2px solid #2aa879; box-shadow: 0 6px 15px rgba(0,0,0,0.08); max-width: 1100px; margin: 0 auto; }

.founder-img { order: 2; flex-shrink: 0; }
.founder-img img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 5px solid #2aa879; background: white; display: block; }

.founder-text { flex: 1; order: 1; }
.founder-text h2 { font-family: var(--font-display); margin: 0 0 15px; color: #0b5c3b; font-size: 28px; font-weight: 700; }
.founder-text p  { margin-bottom: 12px; line-height: 1.75; color: #1a1a1a; font-size: 15px; font-weight: 400; }
.founder-text h4 { margin-top: 15px; font-family: var(--font-display); font-style: italic; color: #2aa879; font-size: 17px; }

.founder-box   { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; background: #fff; border-radius: 20px; padding: 20px; box-shadow: 0 10px 22px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.08); }
.founder-badge { background: #fff8e1; border-radius: 18px; padding: 18px; border: 2px solid rgba(247,198,0,0.25); }
.founder-badge ul { margin-top: 10px; padding-left: 18px; }

/* ============================================================
   COURSE PAGES
============================================================ */
.courses-hero, .contact-hero, .certificate-hero {
  background: #2aa879;
  color: white; padding: 60px 0; text-align: center;
}

.courses-hero h1, .contact-hero h1, .certificate-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px,5vw,42px); font-weight: 700; margin-bottom: 10px;
}

.courses-hero p, .contact-hero p, .certificate-hero p {
  font-size: 15px; opacity: 0.92; font-weight: 300; font-style: italic;
}

.course-hero { padding: 60px 0; color: white; position: relative; }

.coding-hero { background: linear-gradient(135deg,#2aa879,#0b5c3b); }
.soft-hero   { background: linear-gradient(135deg,#3db6a2,#126b5c); }
.yoga-hero   { background: linear-gradient(135deg,#48c9b0,#196f3d); }
.dance-hero  { background: linear-gradient(135deg,#ff5f7e,#ffb84d); }
.art-hero    { background: linear-gradient(135deg,#7b5cff,#ff5fa2); }
.zumba-hero  { background: linear-gradient(135deg,#ff3d6e,#ffb84d); }
.gym-hero    { background: linear-gradient(135deg,#00c6ff,#0072ff); padding: 90px 0 60px; }

.course-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; align-items: center; }

.course-hero h1, .course-hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(30px,5vw,48px); font-weight: 900; margin-bottom: 10px; color: #fff;
}

.course-hero p, .course-subtitle { font-size: 15px; max-width: 520px; line-height: 1.7; opacity: 0.92; font-weight: 300; font-style: italic; }

.hero-actions, .course-btns, .hero-badges { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero-badges span, .course-tags span { background: rgba(255,255,255,0.18); color: #fff; padding: 7px 12px; border-radius: 999px; font-size: 12px; font-style: italic; border: 1px solid rgba(255,255,255,0.25); }

.btn-outline { display: inline-block; padding: 12px 16px; border-radius: 12px; border: 2px solid rgba(255,255,255,0.8); color: white; text-decoration: none; font-weight: 700; }

.course-hero-card, .snapshot-card { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25); padding: 18px; border-radius: 18px; backdrop-filter: blur(6px); }
.course-hero-card h3, .snapshot-card h3 { font-family: var(--font-display); font-style: italic; font-weight: 600; color: #fff; margin-bottom: 12px; }

.snapshot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.snap { background: rgba(255,255,255,0.12); border-radius: 14px; padding: 12px; }
.snap-title { font-size: 12px; opacity: 0.85; font-style: italic; }
.snap-val, .snap h4 { font-weight: 700; margin-top: 4px; color: #fff; font-size: 15px; }

.course-page, .course-section { padding: 55px 0; }
.light-bg { background: #f7fafc; }

.course-section-title { text-align: center; margin-bottom: 20px; }
.course-section-title h2 { font-family: var(--font-display); font-size: 30px; color: #0b5c3b; font-weight: 700; }
.course-section-title p  { color: #555; font-style: italic; font-weight: 300; }

.course-grid, .learn-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.course-box, .learn-card { background: white; border-radius: 18px; padding: 18px; box-shadow: 0 6px 15px rgba(0,0,0,0.07); }
.course-box h3, .learn-card h3 { color: #0b5c3b; margin-bottom: 6px; font-weight: 700; }
.course-box p,  .learn-card p  { color: #444; line-height: 1.65; font-size: var(--fs-sm); font-weight: 300; }

.curriculum-grid { margin-top: 35px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.curriculum-card { background: #fff; border-radius: 16px; padding: 20px; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.curriculum-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; font-style: italic; margin-bottom: 12px; color: #0b3d2e; }
.curriculum-card ul { padding-left: 18px; margin: 0; }
.curriculum-card li { margin-bottom: 8px; color: #333; line-height: 1.5; font-size: var(--fs-sm); }

.after-grid { margin-top: 35px; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.after-card { background: #fff; padding: 18px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.after-card h3 { margin-bottom: 8px; font-size: 15px; font-weight: 700; color: #111; }
.after-card p  { margin: 0; font-size: var(--fs-sm); color: #555; line-height: 1.6; font-weight: 300; }

.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi-card { background: white; border-radius: 18px; padding: 18px; box-shadow: 0 6px 15px rgba(0,0,0,0.08); }
.testi-card p  { font-family: var(--font-display); font-size: var(--fs-sm); font-style: italic; color: #333; line-height: 1.7; }
.testi-card h4 { margin-top: 10px; color: #0b5c3b; font-size: 13px; font-style: normal; font-weight: 700; }

.faq-box { max-width: 900px; margin: 20px auto 0; }
.faq-box details { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; padding: 12px 14px; margin-bottom: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.faq-box summary  { cursor: pointer; font-family: var(--font-body); font-weight: 700; color: #0b3d2e; }
.faq-box p        { margin-top: 10px; color: #444; line-height: 1.7; font-size: var(--fs-sm); font-weight: 300; }

.course-steps { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 950px; margin: auto; }
.step-card { background: white; border-radius: 18px; padding: 18px; box-shadow: 0 6px 15px rgba(0,0,0,0.08); }
.step-card h3 { color: #0b5c3b; margin-bottom: 6px; }
.step-card p  { color: #444; line-height: 1.65; font-size: var(--fs-sm); font-weight: 300; }

.course-cta { padding: 70px 0; background: linear-gradient(135deg,#0b3d2e,#2bb673); color: white; text-align: center; }

.cta-box { text-align: center; padding: 30px 18px; border-radius: 18px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); }
.cta-box h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.cta-box p  { opacity: 0.85; margin-bottom: 18px; font-weight: 300; font-style: italic; }

.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-btns .btn        { padding: 12px 18px; border-radius: 12px; font-weight: 700; }
.cta-btns .btn.primary{ background: #ffc107; color: #111; }
.cta-btns .btn.outline{ border: 2px solid rgba(255,255,255,0.9); color: #fff; background: transparent; }

.course-detail-card { background: #fff; padding: 25px; border-radius: 18px; box-shadow: 0 6px 15px rgba(0,0,0,0.08); margin-bottom: 25px; border-left: 6px solid #2aa879; }
.course-detail-card h2 { font-family: var(--font-display); color: #0b5c3b; margin-bottom: 6px; font-weight: 700; }
.one-liner { color: #444; margin-bottom: 15px; font-weight: 600; font-style: italic; }
.course-info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; background: #dff7ea; padding: 12px; border-radius: 14px; margin-bottom: 15px; }
.course-detail-card ul { margin-left: 18px; line-height: 1.75; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section { padding: 55px 0; }
.contact-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }

.contact-card { background: white; padding: 25px; border-radius: 18px; box-shadow: 0 6px 15px rgba(0,0,0,0.08); width: 100%; }
.contact-card h2 { font-family: var(--font-display); color: #0b5c3b; margin-bottom: 6px; font-size: 22px; font-weight: 700; }
.contact-sub { font-size: var(--fs-sm); color: #666; font-style: italic; margin-bottom: 15px; }

.contact-form .form-group { margin-bottom: 14px; }
.contact-form label { display: block; font-weight: 700; margin-bottom: 6px; color: #222; font-size: var(--fs-sm); }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; border-radius: 14px; border: 1px solid rgba(0,0,0,0.12); outline: none; font-family: var(--font-body); font-size: var(--fs-sm); }
.contact-form input:focus, .contact-form textarea:focus { border-color: #2aa879; }

.full-btn { width: 100%; border: none; cursor: pointer; margin-top: 10px; padding: 12px; border-radius: 14px; font-weight: 700; }

.quick-contact { margin-top: 18px; background: #dff7ea; padding: 14px; border-radius: 14px; font-size: var(--fs-sm); line-height: 1.7; }

.map-box { overflow: hidden; border-radius: 18px; border: 2px solid #2aa879; width: 100%; }
.map-box iframe { width: 100%; height: 350px; display: block; }

/* ============================================================
   CERTIFICATE PAGE
============================================================ */
.certificate-section { padding: 50px 0; background: #fff8dc; }
.certificate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; align-items: flex-start; }

.certificate-card { background: #fff; border-radius: 18px; padding: 25px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.05); }
.certificate-card h2 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; color: #1b4d3e; font-weight: 700; }
.certificate-sub { font-size: var(--fs-sm); color: #666; font-style: italic; margin-bottom: 18px; }

.certificate-form .form-group { margin-bottom: 15px; }
.certificate-form label { display: block; font-weight: 700; font-size: var(--fs-sm); margin-bottom: 6px; color: #222; }
.certificate-form input, .certificate-form textarea, .certificate-form select { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.15); outline: none; font-family: var(--font-body); font-size: var(--fs-sm); background: #fff; }
.certificate-form input:focus, .certificate-form textarea:focus, .certificate-form select:focus { border-color: #2daa7b; }

.form-note { margin-top: 12px; font-size: 12px; color: #666; font-style: italic; }
.info-card { background: #eafff5; border: 1px solid rgba(45,170,123,0.25); }
.certificate-steps { margin-top: 15px; padding-left: 18px; line-height: 1.8; color: #222; font-size: var(--fs-sm); }
.certificate-help { margin-top: 18px; padding: 15px; border-radius: 14px; background: #fff; border: 1px dashed rgba(45,170,123,0.5); }
.certificate-help h3 { margin-bottom: 8px; font-size: 16px; color: #1b4d3e; }

/* ============================================================
   GALLERY PAGE
============================================================ */
.page-hero { background: linear-gradient(135deg,#0b3d2e,#2bb673); padding: 70px 0; text-align: center; color: #fff; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(26px,5vw,42px); font-weight: 900; margin-bottom: 10px; }
.page-hero p  { opacity: 0.85; font-size: 15px; font-style: italic; font-weight: 300; }

.gallery-section { padding: 70px 0; background: #fff8e6; }
.gallery-filters  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 30px 0 40px; }

.filter-btn { padding: 10px 16px; border-radius: 999px; border: 2px solid #2bb673; background: transparent; font-family: var(--font-body); font-weight: 700; font-size: 13px; cursor: pointer; transition: 0.2s ease; }
.filter-btn.active, .filter-btn:hover { background: #2bb673; color: white; }

.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

.gallery-item { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; box-shadow: 0 10px 25px rgba(0,0,0,0.08); transition: 0.2s ease; }
.gallery-item img { width: 100%; height: 230px; object-fit: cover; display: block; transition: 0.3s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; background: linear-gradient(180deg,transparent,rgba(0,0,0,0.75)); color: #fff; }
.gallery-overlay h4 { font-family: var(--font-display); font-style: italic; margin: 0; font-weight: 600; font-size: 15px; }
.gallery-overlay p  { margin: 4px 0 0; font-size: 12px; opacity: 0.85; font-weight: 300; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.8); display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: 0.2s ease; z-index: 9999; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90%; max-height: 80%; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 22px; color: #fff; cursor: pointer; }

/* ============================================================
   BUTTONS & TAGS (shared)
============================================================ */
.btn-primary { background: #2aa879; color: white; padding: 10px 14px; border-radius: 12px; text-decoration: none; font-family: var(--font-body); font-weight: 700; font-size: var(--fs-sm); transition: 0.3s; }
.btn-primary:hover { background: #218b62; }

.btn-whatsapp { display: inline-block; margin-top: 12px; background: #25D366; color: white; padding: 12px 18px; border-radius: 14px; text-decoration: none; font-family: var(--font-body); font-weight: 700; }
.btn-whatsapp:hover { opacity: 0.9; }

.course-footer  { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 10px; }
.course-duration{ font-size: var(--fs-xs); color: #666; font-style: italic; }
.course-tag     { background: #dff7ea; color: #0b5c3b; padding: 6px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.course-level   { background: #fff3d6; color: #7a4a00; padding: 6px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }

/* ============================================================
   COURSE MODAL
============================================================ */
.course-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.55); justify-content: center; align-items: center; padding: 15px; }

.course-modal-content { background: #fff; width: 100%; max-width: 520px; padding: 25px; border-radius: 18px; box-shadow: 0 8px 25px rgba(0,0,0,0.2); position: relative; text-align: center; }
.course-modal-content h2 { font-family: var(--font-display); margin-bottom: 6px; color: #0b5c3b; font-weight: 700; }
.course-modal-content p  { color: #555; font-size: var(--fs-sm); font-style: italic; }

.close-modal { position: absolute; right: 15px; top: 10px; font-size: 28px; cursor: pointer; color: #333; }

.interest-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 18px 0; }
.interest-btn  { background: #dff7ea; border: 2px solid #2aa879; padding: 12px; border-radius: 14px; cursor: pointer; font-family: var(--font-body); font-weight: 700; color: #0b5c3b; transition: 0.2s; }
.interest-btn:hover { background: #2aa879; color: white; }

.age-title { margin-top: 10px; font-size: 16px; color: #111; font-style: italic; }
.age-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin: 14px 0; }
.age-btn   { background: #fff3d6; border: 2px solid #ffb84d; padding: 10px; border-radius: 12px; cursor: pointer; font-weight: 700; font-size: 13px; transition: 0.2s; }
.age-btn:hover { background: #ffb84d; color: #111; }
.note-text { font-size: 12px; opacity: 0.75; font-style: italic; }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; width: 62px; height: 62px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 10px 25px rgba(0,0,0,0.25); z-index: 99999; transition: 0.25s ease; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ============================================================
   AGE MODAL
============================================================ */
.age-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: none; align-items: center; justify-content: center; z-index: 3000; }
.age-modal.active { display: flex; }

.age-box { background: #fff; padding: 30px; border-radius: 20px; text-align: center; width: 90%; max-width: 380px; }
.age-box h2 { font-family: var(--font-display); margin: 0 0 8px; font-size: 22px; font-weight: 700; }
.age-box p  { color: #666; font-size: var(--fs-sm); font-style: italic; }

.age-actions { display: flex; gap: 14px; margin-top: 20px; }
.age-btn.kids  { background: #2bb673; }
.age-btn.adult { background: #f7c600; color: #000; }
.age-close { margin-top: 18px; background: none; border: none; font-weight: 700; color: #888; cursor: pointer; font-style: italic; font-family: var(--font-body); }

/* ============================================================
   ADMIN
============================================================ */
.success-box { background: #eafff1; border: 1px solid #19b36b; padding: 12px 14px; border-radius: 10px; margin: 12px 0; color: #0f6b3d; font-weight: 600; font-size: var(--fs-sm); }
.admin-content { padding: 30px; }
.page-header   { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.count-badge   { background: #e9fff3; padding: 6px 14px; border-radius: 20px; font-weight: 700; color: #1e7f5c; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 10px; border-bottom: 1px solid #eee; font-size: var(--fs-sm); }
.admin-table th { background: #f3fdf9; color: #155c42; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; font-size: 12px; }

.status.new    { background: #fff4cc; color: #a07c00; }
.status.called { background: #e8fff1; color: #1e7f5c; }

.btn-sm         { padding: 6px 10px; font-size: 12px; border-radius: 8px; text-decoration: none; font-weight: 700; }
.btn-sm.success { background: #1e7f5c; color: #fff; }
.btn-sm.danger  { background: #ff4d4f; color: #fff; margin-left: 6px; }

/* ============================================================
   FORM (generic)
============================================================ */
.contact-box { margin-top: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form { display: flex; flex-direction: column; gap: 10px; }
.form input, .form textarea { padding: 12px; border-radius: 12px; border: 1px solid #ddd; outline: none; font-family: var(--font-body); }
.form textarea { min-height: 90px; }
.full { width: 100%; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width:1200px) { .courses-grid, .challenge-grid { grid-template-columns: repeat(3,1fr); } }

@media(max-width:980px) {
  .hero-content h1 { font-size: 42px; }
  .grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .aboutHeroWrap, .about-hero-inner { grid-template-columns: 1fr; }
  .aboutGrid3 { grid-template-columns: repeat(2,1fr); }
  .aboutGrid2, .mv-grid { grid-template-columns: 1fr; }
  .finder-box { grid-template-columns: 1fr; }
  .finder-right { position: relative; top: 0; }
  .course-hero-grid { grid-template-columns: 1fr; }
  .course-grid, .learn-grid, .curriculum-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .after-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .certificate-grid { grid-template-columns: 1fr; }
  .course-steps { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: repeat(2,1fr); }
  .snapshot-grid { grid-template-columns: 1fr; }
}

@media(max-width:760px) {
  .hamburger { display: block; }
  .nav-links  { display: none; }
  .hero-video { height: 85vh; min-height: 480px; }
  .hero-content h1 { font-size: 30px; }
  .hero-subtitle { font-size: 16px; }
  .contact-box { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .courses-grid, .challenge-grid { grid-template-columns: 1fr; }
  .section-heading h2 { font-size: 26px; }
  .t-btn.prev { left: 6px; } .t-btn.next { right: 6px; }
  .t-card { min-width: 280px; max-width: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .trainer-grid { grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 20px; }
  .trainer-img  { width: 150px; height: 150px; }
  .why-grid { grid-template-columns: 1fr; }
  .course-grid, .curriculum-grid, .after-grid, .testi-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
  .founder-card { flex-direction: column; text-align: center; }
  .founder-img { order: 1; } .founder-text { order: 2; }
  .founder-img img { width: 180px; height: 180px; }
  .aboutGrid3 { grid-template-columns: 1fr; }
  .aboutHeroText h1 { font-size: 32px; }
}

@media(max-width:600px) {
  .container { width: 95%; max-width: 100%; padding-left: 12px; padding-right: 12px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .certificate-grid { grid-template-columns: 1fr; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 56px; height: 56px; }
  .trainer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 26px; }
}