/* ═══════════════════════════════════════════
   UMANG 2026 — Mobile-First Stylesheet
   JAY · Jain Association of Youth
   ═══════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #F7941D;
  --teal:   #00B4C8;
  --purple: #7B2D8B;
  --dark:   #12122A;
  --mid:    #5A5A7A;
  --light:  #F0EBF8;
  --bg:     #FFF9F4;
  --bg2:    #F3EEF9;
  --white:  #FFFFFF;
  --r:      14px;
  --r-lg:   20px;
  --sh:     0 4px 20px rgba(0,0,0,0.08);
  --sh-lg:  0 12px 40px rgba(0,0,0,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ── Global text utilities ── */
.g-text {
  background: linear-gradient(90deg, var(--orange) 0%, #E040A0 45%, var(--purple) 65%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247,148,29,0.10);
  border: 1px solid rgba(247,148,29,0.25);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 28px;
}

/* ── Buttons ── */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--purple) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 6px 22px rgba(247,148,29,0.38);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-main:hover, .btn-main:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(247,148,29,0.45);
}


/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255,249,244,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(247,148,29,0.10);
  gap: 12px;
  transition: padding 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  padding: 8px 20px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

/* JAY wordmark */
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.jay-wordmark {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1;
}

.jay-wordmark .j { color: #0097A7; }
.jay-wordmark .a { color: #E53935; }
.jay-wordmark .y { color: #7B2D8B; }

.jay-sub {
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.04em;
  margin-top: 1px;
}

/* Desktop nav links */
.nav-links {
  display: none;
  gap: 2px;
}

.nav-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--mid);
  padding: 7px 13px;
  border-radius: 999px;
  transition: background 0.18s, color 0.18s;
}
.nav-link:hover { background: rgba(247,148,29,0.10); color: var(--orange); }
.nav-link.active { color: var(--orange); background: rgba(247,148,29,0.10); }

/* Desktop register button — glass */
.btn-nav-cta {
  display: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  background: rgba(247,148,29,0.10);
  color: var(--orange);
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(247,148,29,0.38);
  white-space: nowrap;
  transition: background 0.22s, border-color 0.22s, transform 0.2s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
}
.btn-nav-cta:hover {
  background: rgba(247,148,29,0.18);
  border-color: rgba(247,148,29,0.60);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
  flex-shrink: 0;
  border-radius: 8px;
  transition: background 0.15s;
}
.hamburger:hover { background: rgba(0,0,0,0.05); }

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.68,-0.55,0.265,1.55), opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.nav-overlay.show { display: block; }

/* Mobile nav drawer */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(80vw, 280px);
  background: var(--white);
  padding: 80px 24px 32px;
  z-index: 1000;
  gap: 4px;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  animation: slideInRight 0.28s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

.nav-links.mobile-open .nav-link {
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--dark);
  font-weight: 600;
}
.nav-links.mobile-open .nav-link:hover { background: rgba(247,148,29,0.10); color: var(--orange); }

/* mobile register CTA inside drawer */
.nav-reg-item { display: none; }

.nav-links.mobile-open .nav-reg-item {
  display: block;
  margin-top: auto;
  padding-top: 16px;
}

.nav-reg-btn {
  display: block;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 20px;
  border-radius: 999px;
  text-align: center;
  transition: opacity 0.2s;
}
.nav-reg-btn:hover { opacity: 0.88; }


/* ═══════════════════════════════════════════
   HERO — Mobile first
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 80px;
  background: linear-gradient(160deg, #FFF4E8 0%, #F5EAFF 50%, #E8F8FF 100%);
  overflow: hidden;
  text-align: center;
}

/* Floating paint blobs */
.blob {
  position: absolute;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  pointer-events: none;
  z-index: 0;
  animation: blobFloat 10s ease-in-out infinite;
}
.blob-1 {
  width: 220px; height: 200px;
  background: radial-gradient(circle at 40% 40%, rgba(247,148,29,0.35), rgba(247,148,29,0.08) 70%);
  top: -30px; right: -40px;
  border-radius: 71% 29% 61% 39% / 44% 63% 37% 56%;
  animation-duration: 9s;
}
.blob-2 {
  width: 160px; height: 150px;
  background: radial-gradient(circle at 40% 40%, rgba(0,180,200,0.28), rgba(0,180,200,0.06) 70%);
  bottom: 120px; left: -30px;
  border-radius: 44% 56% 35% 65% / 60% 40% 60% 40%;
  animation-duration: 13s; animation-direction: reverse;
}
.blob-3 {
  width: 130px; height: 140px;
  background: radial-gradient(circle at 40% 40%, rgba(123,45,139,0.22), rgba(123,45,139,0.05) 70%);
  top: 25%; left: -20px;
  border-radius: 55% 45% 45% 55% / 40% 60% 40% 60%;
  animation-duration: 11s; animation-delay: 2s;
}
.blob-4 {
  width: 100px; height: 90px;
  background: radial-gradient(circle at 40% 40%, rgba(0,229,255,0.2), transparent 70%);
  bottom: 200px; right: 20px;
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  animation-duration: 15s; animation-direction: alternate;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  33%       { transform: translate(12px,-18px) rotate(4deg); }
  66%       { transform: translate(-10px,10px) rotate(-4deg); }
}

/* Mandala bg */
.mandala {
  position: absolute;
  inset: 0;
  background-image:
    repeating-conic-gradient(from 0deg at 50% 50%,
      rgba(247,148,29,0.025) 0deg 5deg,
      transparent 5deg 12deg),
    radial-gradient(circle at 50% 50%,
      transparent 30%, rgba(247,148,29,0.04) 30.5%, transparent 31.5%,
      transparent 42%, rgba(123,45,139,0.03) 42.5%, transparent 43.5%,
      transparent 54%, rgba(0,180,200,0.03) 54.5%, transparent 55.5%
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  width: 100%;
}

/* Wrapper around all hero text content (used for desktop 2-col layout). On mobile, just renders inline as a normal block. */
.hero-content {
  display: contents;
}

/* Org pill */
.org-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
  animation: fadeDown 0.6s ease 0.1s both;
}
.pill-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--purple));
}

/* Full emblem — hidden on mobile, shown md+ */
.emblem { display: none; }

/* Mobile lotus */
.mobile-lotus {
  font-size: 3.2rem;
  margin-bottom: 4px;
  animation: pop 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.2s both;
  filter: drop-shadow(0 4px 12px rgba(247,148,29,0.25));
}

/* UMANG title */
.umang-title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 22vw, 10rem);
  line-height: 0.9;
  letter-spacing: -3px;
  background: linear-gradient(90deg, var(--orange) 0%, #E040A0 35%, var(--purple) 58%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 6px 20px rgba(247,148,29,0.18));
  margin-bottom: 8px;
  animation: pop 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
}

.umang-sub {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  color: var(--mid);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
  animation: fadeUp 0.6s ease 0.5s both;
}

.umang-year {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 7vw, 3.2rem);
  background: linear-gradient(90deg, var(--purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  animation: fadeUp 0.6s ease 0.6s both;
}

.umang-hashtag {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.1rem, 4vw, 1.7rem);
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.7s both;
}

/* Hero meta (date + location) */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.8s both;
}
.hero-meta-item { display: flex; align-items: center; gap: 5px; }
.hero-meta-sep  { color: var(--light); font-size: 1.2rem; }

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.9s both;
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 340px;
  background: linear-gradient(135deg, var(--orange) 0%, #E040A0 50%, var(--purple) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(247,148,29,0.42);
  transition: transform 0.22s, box-shadow 0.22s;
  letter-spacing: 0.01em;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(247,148,29,0.52); }

.btn-hero-ghost {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mid);
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(123,45,139,0.25);
  transition: all 0.2s;
}
.btn-hero-ghost:hover { background: rgba(123,45,139,0.06); color: var(--purple); }

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid);
  animation: fadeUp 0.6s ease 1s both;
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0; z-index: 1;
}
.hero-wave svg { display: block; width: 100%; }


/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-sec {
  background: var(--bg);
  padding: 60px 0;
  text-align: center;
}

.about-body {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.85;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.stat {
  background: var(--white);
  border: 2px solid color-mix(in srgb, var(--c) 25%, transparent);
  border-radius: 16px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: var(--sh);
  transition: transform 0.2s;
}
.stat:hover { transform: translateY(-3px); }

.stat b {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--c, var(--orange));
  line-height: 1;
}

.stat span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid);
}


/* ═══════════════════════════════════════════
   CLASSES — redesigned
═══════════════════════════════════════════ */
.classes-sec {
  background: var(--bg2);
  padding: 60px 0;
}

.classes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Class Card */
.cls-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cls-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.13);
}

/* Banner */
.cls-banner {
  height: 120px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cls-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 38%, rgba(255,255,255,0.20) 0%, transparent 55%);
}

.cls-num {
  position: absolute;
  right: 14px;
  bottom: 4px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 5rem;
  color: rgba(255,255,255,0.14);
  line-height: 1;
  user-select: none;
  letter-spacing: -3px;
}

.cls-emoji {
  font-size: 3.4rem;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.22));
  position: relative;
  z-index: 1;
}

/* Body */
.cls-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.cls-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cls-name {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--dark);
  line-height: 1.2;
}

.cls-type {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--mid);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.cls-fee {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--c1);
  border: 1.5px solid var(--c1);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Chips */
.cls-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mid);
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 999px;
  padding: 4px 11px;
  white-space: nowrap;
}

/* Quote */
.cls-quote {
  font-style: italic;
  font-size: 0.8rem;
  color: var(--c1);
  border-left: 2px solid var(--c1);
  padding-left: 10px;
  line-height: 1.55;
  opacity: 0.8;
  margin: -2px 0;
}

/* Highlights list */
.cls-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cls-list li {
  font-size: 0.83rem;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.45;
}

.cls-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  flex-shrink: 0;
  margin-top: 5px;
}

/* Card footer */
.cls-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 14px;
  margin-top: auto;
}

.cls-mentors {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.cav {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.cav-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cls-join {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.cls-join:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.20);
}

/* Classes section CTA row */
.classes-cta-row {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.limited-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--orange) 0%, #E040A0 100%);
  display: inline-block;
  padding: 7px 20px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════
   SCHEDULE
═══════════════════════════════════════════ */
.schedule-sec {
  background: var(--bg);
  padding: 60px 0;
}

.sched-list {
  display: flex;
  flex-direction: column;
}

.sched-item {
  display: grid;
  grid-template-columns: 62px 24px 1fr;
  align-items: flex-start;
  gap: 0 12px;
}

/* Time col */
.sched-time {
  text-align: right;
  padding-top: 6px;
  padding-bottom: 24px;
}
.sched-time strong {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--sc, #F7941D);
}
.sched-time span {
  font-size: 0.68rem;
  color: var(--mid);
  font-weight: 500;
}

/* Dot + line col */
.sched-line-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sched-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--sc, #F7941D);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--sc, #F7941D);
  flex-shrink: 0;
  margin-top: 8px;
}
.sched-line {
  width: 2px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(to bottom, var(--sc, #F7941D), transparent);
  margin: 4px 0;
}

/* Info col */
.sched-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0 24px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--sh);
  margin-bottom: 12px;
}

.sched-badge {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.14);
}

.sched-info > div:nth-child(2) {
  flex: 1;
  min-width: 0;
}
.sched-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
}
.sched-info span {
  font-size: 0.76rem;
  color: var(--mid);
}
.sched-fee {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--sc, #F7941D);
  flex-shrink: 0;
  white-space: nowrap;
}


/* ═══════════════════════════════════════════
   MENTORS
═══════════════════════════════════════════ */
.mentors-sec {
  background: var(--bg2);
  padding: 60px 0;
  text-align: center;
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.mcard {
  background: var(--white);
  border-radius: var(--r);
  padding: 24px 16px 20px;
  box-shadow: var(--sh);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}
.mcard:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.mav {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.mcard h4 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 3px;
}
.mcard p {
  font-size: 0.73rem;
  color: var(--mid);
  font-weight: 500;
}


/* ═══════════════════════════════════════════
   PAYMENT
═══════════════════════════════════════════ */
.pay-sec {
  background: var(--bg);
  padding: 60px 0;
}

.pay-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pay-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 24px 20px;
  box-shadow: var(--sh);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.pay-ico { font-size: 2rem; }

.pay-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
}
.pay-card p, .pay-card strong {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.6;
}
.pay-card strong { color: var(--dark); font-weight: 600; }
.pay-card a { color: var(--teal); font-weight: 600; text-decoration: underline; }

.pay-card ul li {
  font-size: 0.86rem;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 6px;
}
.pay-card ul li::before {
  content: '·';
  color: var(--orange);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.pay-highlight {
  background: linear-gradient(135deg, var(--orange) 0%, var(--purple) 100%);
  align-items: center;
  text-align: center;
}
.pay-highlight h3, .pay-highlight p { color: rgba(255,255,255,0.95); }
.pay-highlight .btn-main {
  background: rgba(255,255,255,0.95);
  color: var(--purple);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  margin-top: 4px;
}
.pay-highlight .btn-main:hover { background: #fff; }


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer-wave svg { display: block; width: 100%; }
.footer-body { background: var(--dark); }

/* Rainbow accent strip */
.footer-accent-strip {
  height: 4px;
  background: linear-gradient(90deg, #F7941D 0%, #E040A0 32%, #7B2D8B 58%, #00B4C8 100%);
}

/* ── Top row: brand + CTA card ── */
.footer-top-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 0 32px;
}

.footer-jay {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 4px;
}
.footer-jay .j { color: #0097A7; }
.footer-jay .a { color: #E53935; }
.footer-jay .y { color: #7B2D8B; }

.footer-umang {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.ft-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  margin-bottom: 4px;
}

.f-hash {
  font-family: 'Dancing Script', cursive;
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 14px;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  background: rgba(225,48,108,0.14);
  border: 1.5px solid rgba(225,48,108,0.38);
  padding: 9px 16px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.22s, border-color 0.22s, transform 0.2s;
  margin-bottom: 16px;
}
.insta-btn:hover {
  background: rgba(225,48,108,0.26);
  border-color: rgba(225,48,108,0.60);
  transform: translateY(-1px);
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-chip {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  padding: 4px 12px;
}

/* CTA card */
.ft-cta-card {
  background: linear-gradient(135deg, rgba(247,148,29,0.10) 0%, rgba(123,45,139,0.10) 100%);
  border: 1.5px solid rgba(247,148,29,0.22);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ft-cta-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247,148,29,0.12);
  border: 1px solid rgba(247,148,29,0.28);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.ft-cta-title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}
.ft-cta-body {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.6;
  margin-bottom: 20px;
}
.ft-cta-card .btn-main {
  align-self: stretch;
  justify-content: center;
}

/* ── Mid row: 3 info columns ── */
.footer-mid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fm-col h4 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 14px;
}

.fm-col ul { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.fm-col li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.18s;
}
.fm-col li a:hover { color: var(--orange); }

.fm-col p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.55;
  margin-bottom: 8px;
}
.fm-col a { color: var(--teal); font-weight: 600; }
.fm-col a:hover { text-decoration: underline; }

.fm-pay {
  font-size: 0.74rem !important;
  color: rgba(255,255,255,0.32) !important;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
  margin-top: 6px !important;
}
.fm-pay a { font-size: 0.74rem; }

/* ── Bottom bar ── */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
}
.footer-dev { margin-top: 2px; }
.footer-dev a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-dev a:hover { color: var(--orange); }


/* ═══════════════════════════════════════════
   STICKY MOBILE CTA
═══════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  transition: opacity 0.3s, transform 0.3s;
}

.sticky-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

.btn-sticky {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--orange) 0%, #E040A0 50%, var(--purple) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(247,148,29,0.50), 0 2px 8px rgba(0,0,0,0.20);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-sticky:hover { transform: translateY(-2px) translateX(0); }


/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pop {
  from { opacity: 0; transform: scale(0.72); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ═══════════════════════════════════════════
   TABLET — 600px+
═══════════════════════════════════════════ */
@media (min-width: 600px) {
  .stats-row     { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
  .classes-grid  { grid-template-columns: repeat(2, 1fr); }
  .mentors-grid  { grid-template-columns: repeat(3, 1fr); }
  .pay-grid      { grid-template-columns: repeat(2, 1fr); }
  .pay-highlight { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
  .footer-mid-row { grid-template-columns: repeat(3, 1fr); }

  .hero-ctas { flex-direction: row; justify-content: center; }
  .btn-hero-primary { width: auto; }
}


/* ═══════════════════════════════════════════
   DESKTOP — 960px+ — flyer-maximalist redesign
═══════════════════════════════════════════ */
@media (min-width: 960px) {

  /* ── Navbar ── */
  .hamburger   { display: none; }
  .btn-nav-cta { display: flex; margin-left: auto; }
  .nav-overlay { display: none !important; }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 0;
    align-items: center;
    z-index: 1001;
    transition: padding 0.3s;
  }
  .navbar.scrolled + .nav-links { padding: 8px 0; }

  /* ── Section padding (compact, denser) ── */
  .about-sec     { padding: 70px 0 60px; }
  .classes-sec   { padding: 70px 0; }
  .schedule-sec  { padding: 70px 0; }
  .mentors-sec   { padding: 70px 0; }
  .pay-sec       { padding: 70px 0; }
  .faq-sec       { padding: 70px 0 80px; }

  /* ── Grid layouts ── */
  .classes-grid  { grid-template-columns: repeat(3, 1fr); }
  .mentors-grid  { grid-template-columns: repeat(4, 1fr); }
  .pay-grid      { grid-template-columns: repeat(3, 1fr); }
  .pay-highlight { grid-column: auto; flex-direction: column; text-align: center; }
  .footer-top-row { flex-direction: row; align-items: flex-start; gap: 60px; padding: 56px 0 44px; }
  .ft-brand { flex: 1; }
  .ft-cta-card { width: 290px; flex-shrink: 0; }
  .footer-mid-row { grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 36px 0; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }

  .sticky-cta { display: none; }

  /* ══════════════════════════════════════════════
     HERO — TWO-COLUMN dense flyer-maximalist
  ══════════════════════════════════════════════ */
  .hero {
    padding: 96px 48px 0;
    min-height: 100vh;
    background:
      radial-gradient(ellipse 50% 60% at 100% 0%,   rgba(247,148,29,0.18),  transparent 60%),
      radial-gradient(ellipse 60% 50% at 0%   100%, rgba(0,180,200,0.18),   transparent 60%),
      radial-gradient(ellipse 40% 40% at 80% 100%,  rgba(123,45,139,0.16),  transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 0%,    rgba(224,64,160,0.16),  transparent 60%),
      linear-gradient(160deg, #FFF1DD 0%, #F2E1FF 50%, #DEF5FA 100%);
  }

  .mobile-lotus-wrap { display: none; }

  .hero-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    text-align: left;
    max-width: 1240px;
    width: 100%;
  }

  .hero-content {
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(100% - 484px); /* 420px emblem + 64px gap */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .hero-content > * { max-width: 100%; }
  .hero-content .trust-strip {
    width: 100%;
    flex-wrap: wrap;
  }

  /* Emblem: right side, fixed-width */
  .emblem {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 420px;
    height: 420px;
    margin: 0;
    order: 2;
    animation: fadeUp 0.9s ease 0.2s both;
  }

  /* Mandala corners — full-bleed, vibrant */
  .mandala-tl, .mandala-br {
    width: 600px;
    height: 600px;
    opacity: 0.55;
  }
  .mandala-tl { top: -240px; left: -240px; }
  .mandala-br { bottom: -240px; right: -240px; }

  /* Sparkles relocated for 2-col layout */
  .sparkle-1 { top: 14%; left: 6%;  font-size: 1.1rem; }
  .sparkle-2 { top: 18%; right: 38%; font-size: 1.5rem; }
  .sparkle-3 { top: 50%; left: 4%;  font-size: 1rem; }
  .sparkle-4 { top: 12%; right: 6%;  font-size: 1.4rem; }
  .sparkle-5 { top: 78%; left: 8%;  font-size: 1.2rem; }
  .sparkle-6 { top: 70%; right: 4%;  font-size: 1.3rem; }
  .sparkle-7 { top: 35%; right: 30%; font-size: 1rem; }

  /* Emblem disc + glow — bigger, brighter */
  .emblem-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--orange), #E040A0, var(--purple), var(--teal), var(--orange));
    filter: blur(48px);
    opacity: 0.55;
    animation: spin 14s linear infinite;
  }

  .emblem-disc {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 35%, #FFFFFF 0%, #FFF4E0 100%);
    box-shadow:
      0 0 0 4px rgba(247,148,29,0.55),
      0 0 0 9px rgba(224,64,160,0.20),
      0 0 0 14px rgba(123,45,139,0.18),
      0 0 0 20px rgba(0,180,200,0.12),
      0 24px 70px rgba(123,45,139,0.30);
    display: flex; align-items: center; justify-content: center;
  }

  .emblem-disc::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
      var(--orange) 0deg 60deg,
      #E040A0 60deg 120deg,
      var(--purple) 120deg 180deg,
      #1B4F8C 180deg 240deg,
      var(--teal) 240deg 300deg,
      #1C6B45 300deg 360deg);
    z-index: -1;
    filter: blur(2px);
    opacity: 0.5;
  }

  .emblem-lotus {
    font-size: 7rem;
    z-index: 1;
    filter: drop-shadow(0 6px 22px rgba(247,148,29,0.6));
    animation: lotusPulse 3.5s ease-in-out infinite;
  }

  .ei {
    position: absolute;
    top: 50%; left: 50%;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18), 0 0 0 2px rgba(247,148,29,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    z-index: 2;
  }
  .ei-1 { transform: translate(-50%,-50%) rotate(0deg)   translateY(-180px) rotate(0deg); }
  .ei-2 { transform: translate(-50%,-50%) rotate(60deg)  translateY(-180px) rotate(-60deg); }
  .ei-3 { transform: translate(-50%,-50%) rotate(120deg) translateY(-180px) rotate(-120deg); }
  .ei-4 { transform: translate(-50%,-50%) rotate(180deg) translateY(-180px) rotate(-180deg); }
  .ei-5 { transform: translate(-50%,-50%) rotate(240deg) translateY(-180px) rotate(-240deg); }
  .ei-6 { transform: translate(-50%,-50%) rotate(300deg) translateY(-180px) rotate(-300deg); }

  /* Hero text — left-aligned, sized for 2-col */
  .org-pill {
    margin-bottom: 14px;
    font-size: 0.72rem;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(123,45,139,0.18);
    border-radius: 999px;
    padding: 7px 16px;
    backdrop-filter: blur(10px);
  }

  .umang-title {
    font-size: clamp(5.5rem, 9vw, 9rem);
    line-height: 0.85;
    letter-spacing: -4px;
    margin-bottom: 6px;
  }
  .brush-underline {
    width: min(85%, 380px);
    height: 22px;
    bottom: -8px;
    left: 0;
    transform: none;
  }

  .umang-sub      { font-size: 1.35rem; margin-bottom: 6px; }
  .umang-year     { font-size: 2.5rem; margin-bottom: 4px; }
  .umang-hashtag  { font-size: 1.55rem; margin-bottom: 16px; }

  .hero-meta {
    font-size: 0.92rem;
    gap: 12px;
    margin-bottom: 16px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247,148,29,0.18);
    border-radius: 14px;
    padding: 10px 16px;
  }
  .hero-meta-sep { display: none; }
  .hero-meta-item { font-weight: 700; color: var(--dark); }

  .countdown-wrap { text-align: left; margin: 0 0 18px; }
  .countdown {
    gap: 10px;
    padding: 14px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.7);
  }
  .cd-unit  { min-width: 56px; }
  .cd-num   { font-size: 2.1rem; }
  .cd-lbl   { font-size: 0.6rem; }
  .cd-sep   { font-size: 1.5rem; margin-bottom: 14px; }
  .countdown-label { text-align: left; }

  .hero-ctas {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }
  .btn-hero-primary {
    width: auto;
    font-size: 0.98rem;
    padding: 15px 30px;
  }

  .trust-strip {
    justify-content: flex-start;
    gap: 8px 18px;
    font-size: 0.78rem;
  }

  /* Hide hero wave — full background already richly colored */
  .hero-wave { display: none; }

  /* Compress hero blobs further on desktop (mandalas + sparkles do enough) */
  .blob { opacity: 0.55; }

  /* ══════════════════════════════════════════════
     ABOUT — compact, 2-col body+stats
  ══════════════════════════════════════════════ */
  .about-sec { text-align: left; }
  .about-sec .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 64px;
    align-items: center;
    max-width: 1100px;
  }
  .about-sec .section-ribbon,
  .about-sec .section-title,
  .about-sec .about-body {
    grid-column: 1;
    margin-left: 0;
    margin-right: 0;
    justify-self: start;
  }
  .about-sec .about-body {
    max-width: 100%;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.8;
  }
  .about-sec .stats-row {
    grid-column: 2;
    grid-row: 1 / 4;
    grid-template-columns: repeat(2, 1fr);
    align-self: center;
    max-width: 100%;
    margin: 0;
    gap: 16px;
  }
  .stat {
    padding: 22px 14px;
    border-radius: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
    border-color: var(--c, var(--orange));
  }
  .stat b    { font-size: 2.6rem; line-height: 1; }
  .stat span { font-size: 0.78rem; margin-top: 4px; }

  /* ══════════════════════════════════════════════
     CLASSES — denser, vibrant cards
  ══════════════════════════════════════════════ */
  .classes-sec {
    background:
      radial-gradient(ellipse 60% 40% at 0% 0%, rgba(247,148,29,0.10), transparent 60%),
      radial-gradient(ellipse 50% 50% at 100% 100%, rgba(0,180,200,0.08), transparent 60%),
      var(--bg2);
  }
  .classes-grid { gap: 24px; }
  .cls-card     { border: 1px solid rgba(0,0,0,0.04); }
  .cls-banner   { height: 140px; }
  .cls-num      { font-size: 6rem; right: 14px; bottom: -2px; }
  .cls-emoji    { font-size: 3.6rem; }
  .cls-body     { padding: 18px 20px 20px; gap: 12px; }
  .cls-name     { font-size: 1.18rem; }
  .cls-list     { font-size: 0.86rem; }
  .cls-foot     { margin-top: auto; }
  .classes-cta-row { margin-top: 36px; }

  /* ══════════════════════════════════════════════
     SCHEDULE — vibrant 3-column flyer grid
  ══════════════════════════════════════════════ */
  .schedule-sec {
    background:
      radial-gradient(ellipse 50% 40% at 100% 0%, rgba(123,45,139,0.10), transparent 60%),
      radial-gradient(ellipse 50% 40% at 0% 100%, rgba(247,148,29,0.10), transparent 60%),
      var(--bg);
  }
  .schedule-sec .container { max-width: 1200px; }

  .sched-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .sched-item {
    background: #fff;
    border-radius: 18px;
    padding: 22px 20px;
    grid-template-columns: 1fr;
    gap: 12px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
    border-top: 4px solid var(--sc, var(--orange));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
  }
  .sched-item::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--sc, var(--orange)) 22%, transparent), transparent 70%);
    pointer-events: none;
  }
  .sched-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.13);
  }
  .sched-time {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    text-align: left;
    gap: 8px;
    background: none;
    padding: 0;
  }
  .sched-time strong {
    display: inline-block;
    font-size: 1.7rem;
    color: var(--sc, var(--orange));
  }
  .sched-time span {
    font-size: 0.8rem;
    color: var(--mid);
  }
  .sched-line-col { display: none; }
  .sched-info {
    box-shadow: none;
    background: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .sched-info > div:nth-child(2) { flex: 1; }
  .sched-info strong { font-size: 1.05rem; }
  .sched-info span   { font-size: 0.78rem; }
  .sched-badge       { width: 48px; height: 48px; font-size: 1.5rem; border-radius: 14px; }
  .sched-fee         { font-size: 0.95rem; }

  /* ══════════════════════════════════════════════
     MENTORS — flyer-style avatars in a row
  ══════════════════════════════════════════════ */
  .mentors-sec {
    background:
      radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0,180,200,0.10), transparent 60%),
      var(--bg2);
  }
  .mentors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }
  .mcard {
    flex: 0 1 200px;
    max-width: 220px;
    padding: 24px 16px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .mcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.13);
  }
  .mav {
    width: 84px;
    height: 84px;
    font-size: 1.3rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .mcard:hover .mav { transform: scale(1.10) rotate(-4deg); }

  /* ══════════════════════════════════════════════
     FAQ — wider, balanced
  ══════════════════════════════════════════════ */
  .faq-list { max-width: 820px; }
  .faq-item summary {
    padding: 20px 24px;
    font-size: 1.05rem;
  }
  .faq-body { padding: 0 24px 22px; font-size: 0.98rem; }

  /* ══════════════════════════════════════════════
     PAY GRID — equal heights + lift
  ══════════════════════════════════════════════ */
  .pay-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .pay-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  }

  /* Section ribbons + titles slightly bigger */
  .section-ribbon { margin-bottom: 18px; padding: 0 24px; }
  .section-ribbon-inner {
    font-size: 0.84rem;
    padding: 9px 24px;
    letter-spacing: 0.16em;
  }
  .section-ribbon::before,
  .section-ribbon::after {
    width: 20px;
    height: 28px;
  }
  .section-title { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 10px; }
  .section-sub   { font-size: 0.95rem; margin-bottom: 28px; }
}


/* ═══════════════════════════════════════════
   LARGE DESKTOP — 1280px+
═══════════════════════════════════════════ */
@media (min-width: 1280px) {
  .container { padding: 0 32px; }

  .hero { padding: 96px 64px 0; }
  .hero-inner { max-width: 1280px; column-gap: 80px; }

  .emblem        { width: 460px; height: 460px; }
  .emblem-disc   { width: 380px; height: 380px; }
  .emblem-lotus  { font-size: 7.6rem; }
  .ei            { width: 60px; height: 60px; font-size: 1.7rem; }
  .ei-1 { transform: translate(-50%,-50%) rotate(0deg)   translateY(-200px) rotate(0deg); }
  .ei-2 { transform: translate(-50%,-50%) rotate(60deg)  translateY(-200px) rotate(-60deg); }
  .ei-3 { transform: translate(-50%,-50%) rotate(120deg) translateY(-200px) rotate(-120deg); }
  .ei-4 { transform: translate(-50%,-50%) rotate(180deg) translateY(-200px) rotate(-180deg); }
  .ei-5 { transform: translate(-50%,-50%) rotate(240deg) translateY(-200px) rotate(-240deg); }
  .ei-6 { transform: translate(-50%,-50%) rotate(300deg) translateY(-200px) rotate(-300deg); }

  .mandala-tl, .mandala-br {
    width: 720px;
    height: 720px;
    opacity: 0.55;
  }
  .mandala-tl { top: -300px; left: -300px; }
  .mandala-br { bottom: -300px; right: -300px; }

  .classes-grid { gap: 28px; }
}


/* ═══════════════════════════════════════════
   COUNTDOWN
═══════════════════════════════════════════ */
.countdown-wrap {
  margin: 0 auto 20px;
  text-align: center;
}

.countdown-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(247,148,29,0.22);
  border-radius: 20px;
  padding: 14px 20px;
  box-shadow: 0 4px 20px rgba(247,148,29,0.12);
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.cd-num {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.15s ease;
}

.cd-num.tick { transform: scale(1.15); }

.cd-lbl {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 3px;
}

.cd-sep {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: rgba(247,148,29,0.4);
  margin-bottom: 12px;
  line-height: 1;
}

.countdown-done {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 10px 20px;
}


.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  border: 1.5px solid rgba(0,180,200,0.30);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
  background: rgba(0,180,200,0.08);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.directions-btn:hover {
  background: rgba(0,180,200,0.18);
  border-color: rgba(0,180,200,0.50);
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.faq-sec {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, #FFF9F4 0%, #FFF3E6 100%);
}
.faq-list {
  max-width: 760px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(123, 45, 139, 0.12);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: rgba(247, 148, 29, 0.45);
  box-shadow: 0 8px 24px rgba(123, 45, 139, 0.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 700;
  color: #F7941D;
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}
.faq-body {
  padding: 0 22px 20px;
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-body p { margin: 0 0 8px; }
.faq-body ul {
  margin: 8px 0 0;
  padding-left: 20px;
}
.faq-body li { margin: 4px 0; }
.faq-body a {
  color: #00B4C8;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .faq-item summary {
    padding: 16px 18px;
    font-size: 0.95rem;
  }
  .faq-body { padding: 0 18px 18px; }
}


/* ═══════════════════════════════════════════════════
   PAGE-LOAD SPLASH — lotus bloom
   ═══════════════════════════════════════════════════ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: radial-gradient(ellipse at 50% 40%, #FFF4E8 0%, #F5EAFF 55%, #E8F8FF 100%);
  pointer-events: none;
  animation: splashOut 0.8s ease 1.6s forwards;
}
.splash.done { display: none; }

.splash-bloom {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splash-petal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 64px;
  background: linear-gradient(180deg, #F7941D, #E040A0 60%, #7B2D8B);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform-origin: 50% 100%;
  transform: translate(-50%, -100%) rotate(0deg) scale(0);
  opacity: 0;
  animation: petalBloom 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  filter: drop-shadow(0 4px 10px rgba(247,148,29,0.35));
}
.splash-petal.p1 { transform: translate(-50%, -100%) rotate(0deg)   scale(0); animation-delay: 0.05s; }
.splash-petal.p2 { transform: translate(-50%, -100%) rotate(45deg)  scale(0); animation-delay: 0.10s; }
.splash-petal.p3 { transform: translate(-50%, -100%) rotate(90deg)  scale(0); animation-delay: 0.15s; }
.splash-petal.p4 { transform: translate(-50%, -100%) rotate(135deg) scale(0); animation-delay: 0.20s; }
.splash-petal.p5 { transform: translate(-50%, -100%) rotate(180deg) scale(0); animation-delay: 0.25s; }
.splash-petal.p6 { transform: translate(-50%, -100%) rotate(225deg) scale(0); animation-delay: 0.30s; }
.splash-petal.p7 { transform: translate(-50%, -100%) rotate(270deg) scale(0); animation-delay: 0.35s; }
.splash-petal.p8 { transform: translate(-50%, -100%) rotate(315deg) scale(0); animation-delay: 0.40s; }

@keyframes petalBloom {
  0%   { opacity: 0; transform: translate(-50%, -100%) rotate(var(--r, 0deg)) scale(0); }
  100% { opacity: 1; transform: translate(-50%, -100%) rotate(var(--r, 0deg)) scale(1); }
}
/* per-petal rotation — fallback since we can't pass var per petal cleanly */
.splash-petal.p1 { --r:   0deg; }
.splash-petal.p2 { --r:  45deg; }
.splash-petal.p3 { --r:  90deg; }
.splash-petal.p4 { --r: 135deg; }
.splash-petal.p5 { --r: 180deg; }
.splash-petal.p6 { --r: 225deg; }
.splash-petal.p7 { --r: 270deg; }
.splash-petal.p8 { --r: 315deg; }

.splash-lotus {
  position: relative;
  z-index: 1;
  font-size: 3.4rem;
  opacity: 0;
  transform: scale(0.4);
  animation: lotusPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
  filter: drop-shadow(0 6px 18px rgba(247,148,29,0.45));
}
@keyframes lotusPop {
  to { opacity: 1; transform: scale(1); }
}

.splash-text {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #F7941D, #E040A0 50%, #7B2D8B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(8px);
  animation: splashTextIn 0.5s ease 0.9s forwards;
}
.splash-text span {
  background: linear-gradient(90deg, #7B2D8B, #00B4C8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes splashTextIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes splashOut {
  to { opacity: 0; visibility: hidden; }
}

/* Don't animate for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .splash { animation: splashOut 0.2s ease forwards; }
  .splash-petal, .splash-lotus, .splash-text { animation-duration: 0.2s; animation-delay: 0s; }
}


/* ═══════════════════════════════════════════════════
   HERO — flyer-style upgrades
   ═══════════════════════════════════════════════════ */

/* Mandala corner motifs */
.mandala-corner {
  position: absolute;
  width: 280px;
  height: 280px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
  filter: blur(0.2px);
}
.mandala-tl {
  top: -90px;
  left: -90px;
  animation: mandalaSpin 60s linear infinite;
}
.mandala-br {
  bottom: -90px;
  right: -90px;
  animation: mandalaSpin 70s linear infinite reverse;
}
@keyframes mandalaSpin {
  to { transform: rotate(360deg); }
}

/* Sparkle stars */
.sparkle {
  position: absolute;
  font-size: 1.2rem;
  color: #F7941D;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  text-shadow: 0 0 14px rgba(247,148,29,0.6);
  animation: sparkleTwinkle 4s ease-in-out infinite;
}
.sparkle-1 { top: 14%; left: 10%;  font-size: 1rem;   color: #F7941D; animation-delay: 0.0s; }
.sparkle-2 { top: 22%; right: 12%; font-size: 1.4rem; color: #E040A0; animation-delay: 0.7s; }
.sparkle-3 { top: 42%; left: 8%;   font-size: 0.9rem; color: #00B4C8; animation-delay: 1.4s; }
.sparkle-4 { top: 60%; right: 9%;  font-size: 1.2rem; color: #7B2D8B; animation-delay: 2.1s; }
.sparkle-5 { top: 78%; left: 14%;  font-size: 1rem;   color: #00B4C8; animation-delay: 2.8s; }
.sparkle-6 { top: 8%;  right: 28%; font-size: 0.85rem; color: #F7941D; animation-delay: 0.4s; }
.sparkle-7 { top: 70%; right: 22%; font-size: 1.1rem; color: #E040A0; animation-delay: 1.8s; }

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0;   transform: scale(0.6) rotate(0deg); }
  40%      { opacity: 1;   transform: scale(1.1) rotate(20deg); }
  60%      { opacity: 0.9; transform: scale(1)   rotate(-15deg); }
}

/* Mobile lotus wrap with sun-ray burst */
.mobile-lotus-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 960px) {
  .mobile-lotus-wrap { display: none !important; }
}
.sun-rays {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(247,148,29,0.4));
}
.sun-rays-spin {
  transform-origin: 0 0;
  animation: raySpin 28s linear infinite;
}
@keyframes raySpin {
  to { transform: rotate(360deg); }
}
.mobile-lotus-wrap .mobile-lotus {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 4.4rem;
  filter: drop-shadow(0 4px 20px rgba(247,148,29,0.55));
  animation: lotusPulse 3.5s ease-in-out infinite;
}
@keyframes lotusPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

/* UMANG title — relative position for brush underline */
.umang-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.brush-underline {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: min(85%, 360px);
  height: 22px;
  pointer-events: none;
}
.brush-path {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: brushDraw 1.2s ease 1.0s forwards;
  filter: drop-shadow(0 2px 4px rgba(247,148,29,0.45));
}
@keyframes brushDraw {
  to { stroke-dashoffset: 0; }
}

/* ═══════════════════════════════════════════════════
   SECTION RIBBON (banner-style label)
   ═══════════════════════════════════════════════════ */
.section-ribbon {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  padding: 0 22px;
  filter: drop-shadow(0 4px 10px rgba(123, 45, 139, 0.18));
}
.section-ribbon::before,
.section-ribbon::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 26px;
  background: linear-gradient(135deg, #C57A1D 0%, #7B2D8B 100%);
  transform: translateY(-50%);
  z-index: 0;
}
.section-ribbon::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 50% 50%);
}
.section-ribbon::after {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 50% 50%, 100% 100%, 0 100%, 0 50%);
}
.section-ribbon-inner {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: linear-gradient(135deg, #F7941D 0%, #E040A0 50%, #7B2D8B 100%);
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -2px 4px rgba(0,0,0,0.15);
}
@media (max-width: 480px) {
  .section-ribbon-inner {
    font-size: 0.7rem;
    padding: 7px 16px;
    letter-spacing: 0.12em;
  }
  .section-ribbon::before,
  .section-ribbon::after {
    width: 14px;
    height: 22px;
  }
}

/* ═══════════════════════════════════════════════════
   CLASS CARD — 3D tilt + sheen sweep
   ═══════════════════════════════════════════════════ */
.cls-card {
  position: relative;
  transform-style: preserve-3d;
  perspective: 900px;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.25s ease;
  will-change: transform;
}
.cls-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255,255,255,0.55) 48%,
    rgba(255,255,255,0.15) 52%,
    transparent 70%);
  background-size: 220% 100%;
  background-position: 200% 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, background-position 0.7s ease;
  mix-blend-mode: overlay;
}
.cls-card:hover::after {
  opacity: 1;
  background-position: -50% 0;
}
.cls-card:hover .cls-emoji {
  animation: emojiBounce 0.6s ease;
}
@keyframes emojiBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  35%      { transform: translateY(-6px) scale(1.1); }
  70%      { transform: translateY(2px)  scale(0.97); }
}

@media (prefers-reduced-motion: reduce) {
  .mandala-tl, .mandala-br, .sun-rays-spin,
  .sparkle, .mobile-lotus-wrap .mobile-lotus {
    animation: none !important;
  }
  .brush-path { stroke-dashoffset: 0; animation: none; }
}

/* Counter — slight emphasis when ticking */
.stat b.counting {
  transition: transform 0.06s linear;
  transform: translateY(-2px);
}


