/* ============================================================
   SKILLSAPLING — RESPONSIVE 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">
============================================================ */

:root {
  --green:        #1a5c52;
  --green-dark:   #0b3d2e;
  --green-mid:    #226e63;
  --yellow:       #e6b800;
  --yellow-bg:    #fff3cc;
  --black:        #0B0B0B;
  --cream:        #FFF8E1;
  --white:        #ffffff;
  --text-dark:    #111111;
  --text-mid:     #333333;
  --text-light:   #555555;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --fs-hero: clamp(28px, 5vw, 58px);
  --fs-h1:   clamp(26px, 4.5vw, 50px);
  --fs-h2:   clamp(22px, 3.5vw, 36px);
  --fs-h3:   clamp(16px, 2.2vw, 21px);
  --fs-body: 16px;
  --fs-sm:   14px;
  --fs-xs:   13px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

h1 { font-family: var(--font-display); font-size: var(--fs-h1); font-weight: 900; line-height: 1.1; letter-spacing: -0.5px; }
h2 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 700; 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; }
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: var(--text-mid); }
strong, b { font-weight: 700; color: var(--text-dark); }
em, i { font-style: italic; font-weight: 300; color: var(--text-light); }
a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-dark); }

.container { width: 92%; max-width: 1180px; margin: auto; padding-left: 16px; padding-right: 16px; }

/* ============================================================
   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: 16px 22px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; font-weight: 700; font-style: italic; color: #fff; text-decoration: none; }
.brand img { height: 42px; width: auto; }
.nav-links { display: none; }
.hamburger { border: none; background: rgba(5,5,5,0.85); backdrop-filter: blur(8px); font-size: 24px; color: #fff; padding: 10px 14px; border-radius: 12px; cursor: pointer; line-height: 1; }

.sidebar { position: fixed; top: 0; right: -340px; width: 300px; height: 100vh; background: var(--green-dark); z-index: 2001; transition: 0.35s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.3); display: flex; flex-direction: column; overflow-y: auto; }
.sidebar.active { right: 0; }
.sidebar-header { display: flex; justify-content: flex-end; padding: 16px; }
.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: 13px 0; font-family: var(--font-body); font-size: 15px; font-weight: 500; color: #f0f0f0; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.12); transition: 0.2s; }
.sidebar-links a:hover { color: var(--yellow); padding-left: 4px; }
.sidebar-footer { margin-top: auto; padding: 20px 24px; font-size: var(--fs-sm); border-top: 1px solid rgba(255,255,255,0.15); }
.sidebar-footer p { color: rgba(255,255,255,0.9); margin-bottom: 6px; }
.admin-link { display: block; margin-bottom: 10px; font-weight: 800; color: #fff; }

.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 — MAIN FIX
   align-items: center = desktop (content centred vertically)
   Mobile override: align-items: flex-start + padding-top
============================================================ */
.hero-video {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.08;
  max-width: 820px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-subtitle {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  font-style: italic;
  color: #FFE066;
  letter-spacing: 0.3px;
}

.hero-desc {
  margin-top: 12px;
  max-width: 620px;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
}

.hero-buttons { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.hero-buttons a { text-decoration: none !important; font-family: var(--font-body); font-weight: 700; }

.hero-btn,
.hero-buttons .btn {
  display: inline-block;
  padding: 13px 24px;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none !important;
  transition: 0.25s ease;
  white-space: nowrap;
}
.hero-btn.primary,
.hero-buttons .btn.primary  { background: #e6b800; color: #0B0B0B !important; }
.hero-btn.secondary,
.hero-buttons .btn.secondary { border: 2px solid #fff; color: #fff !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.3); }
.hero-btn.secondary:hover,
.hero-buttons .btn.secondary:hover { background: #fff; color: #0B0B0B !important; }

/* ============================================================
   SECTIONS
============================================================ */
.section { padding: 70px 0; }
.section-heading { text-align: center; margin-bottom: 35px; }
.section-heading h2 { font-family: var(--font-display); font-size: clamp(24px, 4vw, 36px); font-weight: 700; color: var(--green-dark); letter-spacing: -0.3px; }
.section-heading p { margin-top: 10px; color: var(--text-light); max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.75; font-weight: 400; font-style: italic; }
.section-head h2 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 700; color: var(--green-dark); }
.section-head p  { margin-top: 8px; color: var(--text-light); font-style: italic; }

/* ============================================================
   CARDS
============================================================ */
.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-dark); margin-bottom: 6px; }
.card p  { color: var(--text-mid); 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: 5px; 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(230,184,0,0.15); font-size: 28px; margin-bottom: 14px; }
.course-card h3 { font-size: 17px; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.course-card p  { font-size: var(--fs-sm); line-height: 1.65; color: var(--text-mid); margin-bottom: 16px; }
.course-btn { display: inline-block; padding: 10px 14px; border-radius: 12px; font-weight: 700; font-size: 13px; text-decoration: none; background: var(--green-dark); color: #fff; transition: 0.2s; }
.course-btn:hover { background: var(--yellow); color: var(--text-dark); }

/* ============================================================
   BIRTHDAY WALL
============================================================ */
.birthday-wall { padding: 80px 0; background: #fff; }
.birthday-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,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(230,184,0,0.4); }
.birthday-photo { width: 95px; height: 95px; border-radius: 50%; object-fit: cover; border: 4px solid var(--yellow); margin-bottom: 12px; }
.birthday-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; font-style: italic; color: var(--green-dark); margin-bottom: 8px; }
.wish       { font-size: var(--fs-sm); font-weight: 700; color: var(--text-dark); margin: 8px 0; }
.wish-small { font-size: 13px; color: var(--text-light); font-style: italic; }
.no-bday    { text-align: center; font-size: 16px; font-weight: 500; font-style: italic; color: var(--green-dark); }

/* ============================================================
   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(230,184,0,0.3); 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: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.challenge-badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 6px 10px; border-radius: 999px; color: #fff; }
.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: 5px 10px; border-radius: 10px; border: 2px solid rgba(0,0,0,0.12); background: #fff; color: var(--text-dark); }
.challenge-level.easy   { border-color: rgba(0,140,70,0.45); color: #005c2e; }
.challenge-level.medium { border-color: rgba(180,140,0,0.6); color: #7a5c00; }
.challenge-level.hard   { border-color: rgba(200,40,40,0.5); color: #9c1a1a; }
.challenge-card h3 { font-size: 16px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.challenge-desc { font-size: var(--fs-sm); line-height: 1.65; color: var(--text-mid); font-weight: 400; }
.challenge-meta { display: flex; flex-direction: column; gap: 5px; margin-top: 12px; font-size: var(--fs-xs); color: var(--text-light); font-style: italic; }
.challenge-btn { margin-top: 14px; display: block; width: 100%; text-align: center; padding: 12px 14px; border-radius: 14px; font-weight: 700; font-size: 13px; text-decoration: none; background: var(--yellow); color: var(--text-dark); transition: 0.2s; }
.challenge-btn:hover { filter: brightness(0.92); 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: 20px; align-items: start; }
.finder-left { background: #fff8e1; border: 2px solid rgba(230,184,0,0.3); 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-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.options { display: grid; gap: 10px; }
.options label { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; background: #fff; border: 1px solid rgba(0,0,0,0.09); cursor: pointer; font-weight: 500; font-size: 14px; color: var(--text-dark); transition: 0.2s; }
.options label:hover { border-color: rgba(230,184,0,0.7); background: #fffbe8; }
.options input { accent-color: var(--yellow); }
.finder-right { position: sticky; top: 90px; }
.result-card { background: var(--green-dark); color: #fff; border-radius: 20px; padding: 22px; box-shadow: 0 12px 24px rgba(0,0,0,0.18); border: 2px solid rgba(230,184,0,0.3); }
.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.85); 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.2); }
.result-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: rgba(230,184,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: #FFE066; }
.result-desc  { color: rgba(255,255,255,0.92); font-size: var(--fs-sm); line-height: 1.65; font-weight: 400; }
.result-cta a { color: #yellow; font-weight: 700; }
.result-cta a:hover { color: #fff; }

/* ============================================================
   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: 300px; max-width: 300px; 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(230,184,0,0.55); }
.t-stars { color: #b8860b; font-size: 16px; letter-spacing: 1px; margin-bottom: 10px; }
.t-msg { font-family: var(--font-display); font-size: 14px; font-style: italic; font-weight: 400; line-height: 1.8; color: #1a1a1a; 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(230,184,0,0.2); font-size: 22px; flex-shrink: 0; }
.t-user h4 { font-size: 14px; font-weight: 700; color: var(--green-dark); margin: 0; }
.t-user span { font-size: 12px; color: var(--text-light); 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(--text-dark); background: var(--yellow); box-shadow: 0 8px 20px rgba(0,0,0,0.18); transition: 0.2s; z-index: 10; }
.t-btn:hover { filter: brightness(0.92); transform: translateY(-50%) scale(1.05); }
.t-btn.prev { left: -10px; }
.t-btn.next { right: -10px; }
.t-dots { margin-top: 18px; display: flex; justify-content: center; gap: 8px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,0.2); cursor: pointer; transition: 0.2s; }
.t-dot.active { background: var(--green-dark); transform: scale(1.2); }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--green-dark); color: #fff; 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: #FFE066; margin-bottom: 10px; }
.footer-col h4 { font-size: 11px; font-weight: 700; font-style: normal; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; color: #FFE066; }
.footer-text { color: rgba(255,255,255,0.88); line-height: 1.75; font-size: var(--fs-sm); font-weight: 400; 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 { color: rgba(255,255,255,0.85); font-size: var(--fs-sm); font-weight: 400; transition: 0.2s; }
.footer-col ul li a:hover { color: #FFE066; }
.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(255,255,255,0.12); color: #FFE066; font-size: 18px; text-decoration: none; transition: 0.2s; }
.footer-social a:hover { background: #FFE066; color: var(--text-dark); transform: translateY(-3px); }
.footer-mini { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.75); 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.85); }
.footer-bottom .made { font-family: var(--font-display); font-style: italic; color: #FFE066; font-weight: 600; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.aboutPageHero, .about-hero { background: #8A7650; 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-size: clamp(28px,5vw,50px); font-weight: 900; line-height: 1.05; color: #fff; }
.aboutHeroText p, .about-hero-sub { margin-top: 14px; color: rgba(255,255,255,0.9); line-height: 1.75; max-width: 650px; font-weight: 400; }
.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.2); padding: 12px 14px; border-radius: 16px; min-width: 110px; }
.stat h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #FFE066; }
.stat p  { font-size: 12px; color: rgba(255,255,255,0.88); font-weight: 400; 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: var(--text-dark); }
.aboutGrid2, .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.mvBox, .mv-card { background: #fff8e1; border: 2px solid rgba(230,184,0,0.3); border-radius: 20px; padding: 18px; }
.mvBox h2, .mv-card h2 { font-family: var(--font-display); color: var(--green-dark); font-weight: 700; margin-bottom: 10px; }
.mvBox p,  .mv-card p  { color: var(--text-mid); line-height: 1.75; font-weight: 400; }
.mv-points { margin-top: 10px; padding-left: 14px; list-style-position: outside; }
.mv-points li { margin-bottom: 10px; line-height: 1.65; font-size: 15px; color: var(--text-dark); }
.mv-intro    { margin-top: 8px; line-height: 1.65; color: var(--text-mid); }
.mv-subtitle { margin-top: 10px; font-weight: 600; font-style: italic; color: var(--text-dark); }
.why-grid { margin-top: 25px; display: grid; grid-template-columns: 1fr 1fr; 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; color: var(--text-dark); }

/* TRAINERS */
.trainer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 28px; max-width: 1200px; margin: 0 auto; }
.trainer-card { background: white; padding: 28px; border-radius: 15px; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: 0.3s ease; border: 2px solid transparent; }
.trainer-card:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(26,92,82,0.2); border-color: var(--green-mid); }
.trainer-img { width: 160px; height: 160px; margin: 0 auto 20px; overflow: hidden; border-radius: 12px; border: 4px solid var(--green-mid); background: #f0f0f0; }
.trainer-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trainer-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; font-style: italic; color: #1a1a1a; margin-bottom: 8px; }
.trainer-subject { font-size: 14px; color: var(--green-dark); font-weight: 600; font-style: italic; margin-bottom: 10px; }
.trainer-desc    { font-size: var(--fs-sm); color: var(--text-mid); line-height: 1.65; }

/* 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 var(--green-mid); 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 var(--green-mid); background: white; display: block; }
.founder-text { flex: 1; order: 1; }
.founder-text h2 { font-family: var(--font-display); margin: 0 0 14px; color: var(--green-dark); font-size: 26px; font-weight: 700; }
.founder-text p  { margin-bottom: 12px; line-height: 1.75; color: #111; font-size: 15px; }
.founder-text h4 { margin-top: 14px; font-family: var(--font-display); font-style: italic; color: var(--green-mid); font-size: 16px; }
.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); }
.founder-badge { background: #fff8e1; border-radius: 18px; padding: 18px; border: 2px solid rgba(230,184,0,0.3); }
.founder-badge ul { margin-top: 10px; padding-left: 18px; }

/* ============================================================
   COURSE PAGES
============================================================ */
.courses-hero, .contact-hero, .certificate-hero { background: var(--green-dark); 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(26px,5vw,40px); font-weight: 700; margin-bottom: 10px; color: #fff; }
.courses-hero p, .contact-hero p, .certificate-hero p { font-size: 15px; color: rgba(255,255,255,0.9); font-weight: 400; font-style: italic; }
.course-hero { padding: 60px 0; color: white; position: relative; }
.coding-hero { background: linear-gradient(135deg,#1a6b4a,#0b3d2e); }
.soft-hero   { background: linear-gradient(135deg,#1e8a7a,#0d5248); }
.yoga-hero   { background: linear-gradient(135deg,#1e8870,#0d4a30); }
.dance-hero  { background: linear-gradient(135deg,#c0324e,#d4700a); }
.art-hero    { background: linear-gradient(135deg,#5a3acc,#c0307a); }
.zumba-hero  { background: linear-gradient(135deg,#c0254e,#c07020); }
.gym-hero    { background: linear-gradient(135deg,#0070cc,#0040aa); 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(26px,5vw,46px); font-weight: 900; margin-bottom: 10px; color: #fff; }
.course-hero p, .course-subtitle { font-size: 15px; max-width: 520px; line-height: 1.7; color: rgba(255,255,255,0.92); font-weight: 400; 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.2); color: #fff; padding: 7px 12px; border-radius: 999px; font-size: 12px; font-style: italic; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline { display: inline-block; padding: 12px 16px; border-radius: 12px; border: 2px solid rgba(255,255,255,0.9); color: white; text-decoration: none; font-weight: 700; }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.course-hero-card, .snapshot-card { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.28); 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.14); border-radius: 14px; padding: 12px; }
.snap-title { font-size: 12px; color: rgba(255,255,255,0.88); font-style: italic; }
.snap-val, .snap h4 { font-weight: 700; margin-top: 4px; color: #fff; font-size: 15px; font-style: normal; }
.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: 28px; color: var(--green-dark); font-weight: 700; }
.course-section-title p  { color: var(--text-light); font-style: italic; }
.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: var(--green-dark); margin-bottom: 6px; font-weight: 700; }
.course-box p,  .learn-card p  { color: var(--text-mid); line-height: 1.65; font-size: var(--fs-sm); }
.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: var(--green-dark); }
.curriculum-card ul { padding-left: 18px; margin: 0; }
.curriculum-card li { margin-bottom: 8px; color: var(--text-dark); 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: var(--text-dark); }
.after-card p  { margin: 0; font-size: var(--fs-sm); color: var(--text-mid); line-height: 1.6; }
.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: #1a1a1a; line-height: 1.7; }
.testi-card h4 { margin-top: 10px; color: var(--green-dark); 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.07); border-radius: 14px; padding: 14px; margin-bottom: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.faq-box summary  { cursor: pointer; font-weight: 700; color: var(--green-dark); font-size: 15px; }
.faq-box p        { margin-top: 10px; color: var(--text-mid); line-height: 1.7; font-size: var(--fs-sm); }
.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: var(--green-dark); margin-bottom: 6px; }
.step-card p  { color: var(--text-mid); line-height: 1.65; font-size: var(--fs-sm); }
.course-cta { padding: 70px 0; background: linear-gradient(135deg,var(--green-dark),#1e7c4a); 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; color: #fff; }
.cta-box p  { color: rgba(255,255,255,0.92); margin-bottom: 18px; font-weight: 400; 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: var(--yellow); color: var(--text-dark); }
.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 var(--green-mid); }
.course-detail-card h2 { font-family: var(--font-display); color: var(--green-dark); margin-bottom: 6px; font-weight: 700; }
.one-liner { color: var(--text-mid); 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: var(--green-dark); margin-bottom: 6px; font-size: 22px; font-weight: 700; }
.contact-sub { font-size: var(--fs-sm); color: var(--text-light); 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: var(--text-dark); font-size: var(--fs-sm); }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; border-radius: 14px; border: 1.5px solid rgba(0,0,0,0.14); outline: none; font-family: var(--font-body); font-size: var(--fs-sm); color: var(--text-dark); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green-mid); }
.full-btn { width: 100%; border: none; cursor: pointer; margin-top: 10px; padding: 13px; border-radius: 14px; font-weight: 700; font-size: 15px; background: var(--green-dark); color: #fff; }
.full-btn:hover { background: var(--green-mid); }
.quick-contact { margin-top: 18px; background: #dff7ea; padding: 14px; border-radius: 14px; font-size: var(--fs-sm); line-height: 1.7; color: var(--text-dark); }
.map-box { overflow: hidden; border-radius: 18px; border: 2px solid var(--green-mid); 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); }
.certificate-card h2 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; color: var(--green-dark); font-weight: 700; }
.certificate-sub { font-size: var(--fs-sm); color: var(--text-light); 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: var(--text-dark); }
.certificate-form input, .certificate-form textarea, .certificate-form select { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid rgba(0,0,0,0.15); outline: none; font-family: var(--font-body); font-size: var(--fs-sm); background: #fff; color: var(--text-dark); }
.certificate-form input:focus, .certificate-form textarea:focus, .certificate-form select:focus { border-color: var(--green-mid); }
.form-note { margin-top: 12px; font-size: 12px; color: var(--text-light); font-style: italic; }
.info-card { background: #eafff5; border: 1px solid rgba(45,170,123,0.3); }
.certificate-steps { margin-top: 15px; padding-left: 18px; line-height: 1.8; color: var(--text-dark); 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: var(--green-dark); }

/* ============================================================
   GALLERY PAGE
============================================================ */
.page-hero { background: linear-gradient(135deg,var(--green-dark),#1e7c4a); padding: 70px 0; text-align: center; color: #fff; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(24px,5vw,40px); font-weight: 900; margin-bottom: 10px; color: #fff; }
.page-hero p  { color: rgba(255,255,255,0.92); font-size: 15px; font-style: italic; }
.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 var(--green-dark); background: transparent; font-weight: 700; font-size: 13px; cursor: pointer; transition: 0.2s ease; color: var(--green-dark); }
.filter-btn.active, .filter-btn:hover { background: var(--green-dark); 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: 220px; 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.8)); color: #fff; }
.gallery-overlay h4 { font-family: var(--font-display); font-style: italic; margin: 0; font-weight: 600; font-size: 14px; color: #fff; }
.gallery-overlay p  { margin: 4px 0 0; font-size: 12px; color: rgba(255,255,255,0.9); }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.85); 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; }
.lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 32px; color: #fff; cursor: pointer; }

/* ============================================================
   BUTTONS & TAGS
============================================================ */
.btn-primary { background: var(--green-dark); color: white; padding: 10px 16px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: var(--fs-sm); transition: 0.3s; display: inline-block; }
.btn-primary:hover { background: var(--green-mid); }
.btn-whatsapp { display: inline-block; margin-top: 12px; background: #25D366; color: #000; padding: 12px 18px; border-radius: 14px; text-decoration: none; font-weight: 700; }
.btn-whatsapp:hover { background: #1ebe5a; }
.course-footer  { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.course-duration{ font-size: var(--fs-xs); color: var(--text-light); font-style: italic; }
.course-tag     { background: #c8f0dc; color: #073d1e; padding: 6px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.course-level   { background: #fff0c4; color: #5c3a00; 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.6); 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: var(--green-dark); font-weight: 700; }
.course-modal-content p  { color: var(--text-light); font-size: var(--fs-sm); font-style: italic; }
.close-modal { position: absolute; right: 15px; top: 8px; font-size: 28px; cursor: pointer; color: var(--text-dark); }
.interest-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 18px 0; }
.interest-btn  { background: #dff7ea; border: 2px solid var(--green-mid); padding: 12px; border-radius: 14px; cursor: pointer; font-weight: 700; color: var(--green-dark); transition: 0.2s; }
.interest-btn:hover { background: var(--green-dark); color: white; }
.age-title { margin-top: 10px; font-size: 16px; color: var(--text-dark); font-style: italic; }
.age-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin: 14px 0; }
.note-text { font-size: 12px; color: var(--text-light); font-style: italic; }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; width: 60px; height: 60px; background: #25D366; color: #000; 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; font-size: 28px; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ============================================================
   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; color: var(--text-dark); }
.age-box p  { color: var(--text-light); font-size: var(--fs-sm); font-style: italic; }
.age-actions { display: flex; gap: 14px; margin-top: 20px; }
.age-btn.kids  { background: #1a7a4a; color: #fff; }
.age-btn.adult { background: #b38a00; color: #fff; }
.age-close { margin-top: 18px; background: none; border: none; font-weight: 700; color: var(--text-light); 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: #084d26; 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; flex-wrap: wrap; gap: 10px; }
.count-badge   { background: #e9fff3; padding: 6px 14px; border-radius: 20px; font-weight: 700; color: #084d26; }
.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: #073d20; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; font-size: 12px; }
.status.new    { background: #fff4cc; color: #7a5200; padding: 4px 8px; border-radius: 6px; font-size: 12px; font-weight: 700; }
.status.called { background: #e8fff1; color: #084d26; padding: 4px 8px; border-radius: 6px; font-size: 12px; font-weight: 700; }
.btn-sm         { padding: 6px 10px; font-size: 12px; border-radius: 8px; text-decoration: none; font-weight: 700; display: inline-block; }
.btn-sm.success { background: #0b5c3b; color: #fff; }
.btn-sm.danger  { background: #cc2222; color: #fff; margin-left: 6px; }

/* ============================================================
   FORM
============================================================ */
.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: 1.5px solid #ccc; outline: none; font-family: var(--font-body); color: var(--text-dark); }
.form textarea { min-height: 90px; }
.full { width: 100%; }

/* ============================================================
   RESPONSIVE — TABLET (max 980px)
============================================================ */
@media(max-width: 980px) {
  .grid              { grid-template-columns: repeat(2,1fr); }
  .courses-grid      { grid-template-columns: repeat(3,1fr); }
  .challenge-grid    { grid-template-columns: repeat(3,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; }
  .gallery-grid      { grid-template-columns: repeat(3,1fr); }
  .founder-box       { grid-template-columns: 1fr; }
  .contact-box       { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 760px)
   KEY FIX: align-items: flex-start so content starts from top
============================================================ */
@media(max-width: 760px) {

  /* HERO — THE MAIN FIX */
  .hero-video {
    min-height: 100svh;
    align-items: flex-start;   /* content starts at top, not middle */
  }
  .bg-video {
    object-fit: cover;
    object-position: center;
    transform: none;           /* removes any accidental scale */
  }
  .hero-content {
    padding-top: 100px;        /* navbar height ~70px + 30px gap */
    padding-bottom: 40px;
  }
  .hero-content h1  { font-size: clamp(22px, 7vw, 28px); line-height: 1.15; }
  .hero-subtitle    { font-size: 15px; margin-top: 8px; }
  .hero-desc        { font-size: 14px; line-height: 1.65; }
  .hero-buttons     { gap: 10px; }
  .hero-buttons .btn{ padding: 11px 18px; font-size: 14px; }

  /* Nav */
  .hamburger { display: block; }
  .nav-links  { display: none; }

  /* Grids */
  .grid, .courses-grid, .challenge-grid { grid-template-columns: 1fr; }
  .course-grid, .learn-grid, .curriculum-grid, .after-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Testimonials */
  .t-card     { min-width: 270px; max-width: 270px; }
  .t-btn.prev { left: 4px; }
  .t-btn.next { right: 4px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2,1fr); }

  /* Trainers */
  .trainer-grid { grid-template-columns: 1fr; }
  .trainer-img  { width: 140px; height: 140px; }

  /* About */
  .aboutGrid3       { grid-template-columns: 1fr; }
  .aboutHeroText h1 { font-size: 28px; }

  /* Founder */
  .founder-card { flex-direction: column; text-align: center; }
  .founder-img  { order: 1; }
  .founder-text { order: 2; }
  .founder-img img { width: 160px; height: 160px; }

  /* Misc */
  .section-heading h2 { font-size: 24px; }
  .birthday-wall, .weekly-challenge, .course-finder, .testimonials { padding: 50px 0; }
  .course-hero { padding: 40px 0 30px; }
  .courses-hero, .contact-hero { padding: 50px 0; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
============================================================ */
@media(max-width: 480px) {
  .container { width: 96%; padding-left: 12px; padding-right: 12px; }
  .gallery-grid, .certificate-grid { grid-template-columns: 1fr; }
  .whatsapp-float { right: 12px; bottom: 12px; width: 52px; height: 52px; font-size: 24px; }
  .hero-content h1 { font-size: 21px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; text-align: center; padding: 12px 18px; }
  .t-btn { display: none; }
  .age-actions { flex-direction: column; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 40px 0; }
  .footer { margin-top: 50px; padding: 50px 0 0; }
  .challenge-top { flex-direction: column; align-items: flex-start; }
  .course-steps { grid-template-columns: 1fr; }
}