*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --blue:        #5a8fd8;
  --blue-lt:     #7aaee8;
  --blue-dk:     #3a6fb8;
  --navy:        #0c1a44;
  --navy-deep:   #070f28;
  --navy-card:   #101e4a;
  --navy-light:  #162354;
  --white:       #ffffff;
  --off-white:   #f4f7fc;
  --muted:       rgba(255,255,255,0.55);
  --muted-dark:  #64748b;
  --border:      rgba(90,143,216,0.18);
  --border-lt:   rgba(255,255,255,0.07);
  --border-dark: #e2e8f4;
  --blue-glow:   rgba(90,143,216,0.15);
  --blue-dim:    rgba(90,143,216,0.1);
  --body-font:    "DM Sans", Helvetica, Arial, sans-serif;
  --heading-font: "Urbanist", Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--body-font);
  background: var(--white);
  color: #1e293b;
  overflow-x: hidden;
  line-height: 1.6;
}

   /* HERO */

.st-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 24px 72px;
  overflow: hidden;
  background: linear-gradient(160deg, #060e2a 0%, #0c1a44 55%, #0a1638 100%);
}
.st-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(90,143,216,.28) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(90,143,216,.12) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 90% 70%, rgba(90,143,216,.10) 0%, transparent 60%);
  pointer-events: none;
}
.st-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(90,143,216,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,143,216,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, black, transparent);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: .45;
}
.hero-orb-1 {
  width: 480px; 
  height: 480px;
  top: -120px; 
  left: -80px;
  background: radial-gradient(circle, rgba(90,143,216,.3), transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 360px; height: 360px;
  bottom: -60px; right: -60px;
  background: radial-gradient(circle, rgba(90,143,216,.2), transparent 70%);
  animation: orbFloat 16s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(28px,-28px); }
}

.st-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

/* eyebrow */
.st-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(90,143,216,.12);
  border: 1px solid rgba(90,143,216,.3);
  border-radius: 100px;
  padding: 6px 20px 6px 8px;
  margin-bottom: 30px;
  animation: fadeUp .5s ease both;
  margin-top: 60px;
}
.eyebrow-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue);
  display: grid; place-items: center;
  font-size: 11px; color: #fff;
  animation: spinSun 8s linear infinite;
}
@keyframes spinSun { to { transform: rotate(360deg); } }
.eyebrow-text {
  font-family: var(--body-font);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-lt);
}
.eyebrow-year { font-size: 12px; color: rgba(255,255,255,.5); }

/* headline */
.st-hero-h1 {
  font-family: var(--heading-font);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700 !important;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 22px;
  animation: fadeUp .6s .08s ease both;
}

.st-hero-sub {
  font-size: 16px;
  line-height: 1.78;
  color: rgba(255,255,255,.62);
  max-width: 1300px;
  margin: 0 auto 38px;
  animation: fadeUp .6s .16s ease both;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp .6s .24s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5a8fd8;
  color: #fff;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 36px rgba(90,143,216,.38);
  transition: transform .22s, box-shadow .22s, background .22s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--blue-lt);
  box-shadow: 0 18px 44px rgba(90,143,216,.52);
  color: #fff;
}
.btn-primary .arr {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: grid; place-items: center;
  font-size: 12px;
  transition: transform .22s;
}
.btn-primary:hover .arr { 
  transform: translateX(3px); 
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.82);
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition: border-color .22s, color .22s, background .22s;
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue-dim);
}

/* pills */
.hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeUp .6s .32s ease both;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
}
.hero-pill i { color: var(--blue-lt); font-size: 11px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 
   STATS BAR */

.stats-bar {
  background: var(--navy-card);
  border-top: 1px solid rgba(90,143,216,.15);
  border-bottom: 1px solid rgba(90,143,216,.15);
  padding: 32px 24px;
}
.stats-bar .container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.stat-item { 
  text-align: center; 
}
.stat-num {
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.stat-num em {
   color: #fff; 
   font-style: normal;
   }
.stat-lbl { 
  font-size: 13px; 
  color: rgba(255,255,255,.55);
 }


   /* SHARED SECTION WRAPPERS */

.section-dark      {
   background: var(--navy);     
   /* padding: 80px 24px;  */
  }
.section-white     { 
  background: var(--white);    
  padding: 80px 24px;
}
.section-offwhite  { 
  background: var(--off-white);
  padding: 80px 24px;
 }
.section-navy-deep { 
  background: var(--navy-deep);
  padding: 80px 24px;
 }

/* gap between modules section and offer section */
.modules-to-offer-gap { 
  padding-top: 24px; 
}

.section-inner  { 
  max-width: 1200px;
   margin: 0 auto; 
  }

.section-header {
   text-align: center;
   margin-bottom: 52px;
   }

.section-label {
  font-family: var(--body-font);
  font-size: 11px; 
  font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.section-label.light { 
  color: var(--blue-lt); 
}
.section-label.dark  { 
  color: var(--blue);
 }

.section-h2 {
  font-family: var(--heading-font);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-h2.light { color: #fff; }
.section-h2.dark  { color: #0f172a; }
.section-h2 span { color: #0f172a; }
.section-h2.dark span { color: #0f172a; }

.section-sub {
  font-size: 15px;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}
.section-sub.light { color: rgba(255,255,255,.55); }
.section-sub.dark  { color: var(--muted-dark); }


   /* OFFER   */

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;   /* slightly wider text col */
  gap: 56px;
  align-items: center;
}
.why-text p {
  font-size: 14.5px;
  color: var(--muted-dark);
  line-height: 1.8;
  margin-bottom: 22px;
}

.offer-card {
  background: var(--navy);
  border: 1px solid rgba(90,143,216,.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(12,26,68,.22);
  position: relative;
}
.offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue-lt), transparent);
}

.offer-top {
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(90,143,216,.15);
  border: 1px solid rgba(90,143,216,.3);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 11px; font-weight: 600;
  color: var(--blue-lt);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.offer-title {
  font-family: var(--heading-font);
  font-size: 17px; 
  font-weight: 500;
  color: #fff; margin-bottom: 4px;
}
.offer-sub { font-size: 12.5px; color: rgba(255,255,255,.5); }


.price-block {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.price-label {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.price-old {
  font-family: var(--body-font);
  font-size: 17px;
  color: rgba(255,255,255,.28);
  text-decoration: line-through;
}
.price-new {
  font-family: var(--heading-font);
  font-size: 38px; 
  font-weight: 500;
  color: var(--blue-lt);
  line-height: 1;
}
.price-new sup { 
  font-size: 18px; 
  vertical-align: super; 
}

.price-save-pill {
  background: var(--blue);
  color: #fff;
  font-size: 11px; 
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  align-self: flex-start;
  margin-top: 6px;
}
.price-note-text { 
  font-size: 11px; 
  color: rgba(255,255,255,.35); 
  margin-top: 2px;
 }

.offer-inc { 
  padding: 16px 24px 20px;
 }
.inc-title {
  font-size: 10.5px; 
  font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 10px;
}
.inc-list { display: flex; flex-direction: column; gap: 8px; }
.inc-item {
  display: flex; align-items: center;
  gap: 9px; font-size: 13px;
  color: rgba(255,255,255,.8);
}
.inc-item i { color: var(--blue-lt); font-size: 11px; width: 14px; }

/* CTA */
.offer-cta { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 8px; }
.btn-offer {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-family: var(--body-font);
  font-weight: 500; 
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(90,143,216,.3);
  transition: transform .22s, box-shadow .22s, background .22s;
}
.btn-offer:hover {
  transform: translateY(-2px);
  background: #0d6efd;
  box-shadow: 0 14px 38px rgba(90,143,216,.45);
  color: #fff;
}
.offer-foot-note {
  font-size: 11px; color: rgba(255,255,255,.3);
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.offer-foot-note i { color: var(--blue-lt); }

.section-modules-gap {
  padding-top: 60px;
  padding-bottom: 60px;
}



   /* COMBO OFFER BANNER */

.combo-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(90,143,216,.25);
  border-radius: 22px;
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.combo-banner::before {
  content: '';
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 280px;
  background: radial-gradient(ellipse, rgba(90,143,216,.2) 0%, transparent 70%);
  pointer-events: none;
}
.combo-banner-label {
  font-size: 11px; 
  font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 14px;
  display: block;
}
.combo-banner h3 {
  font-family: var(--heading-font);
  font-size: clamp(22px,3vw,36px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}
.combo-banner h3 span { color: #fff; }
.combo-banner p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 32px;
}
.combo-price-row {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap; margin-bottom: 36px;
}
.combo-price-item { text-align: center; }
.cpi-label { 
  font-size: 11px; 
  font-weight: 500; 
  text-transform: uppercase; 
  letter-spacing: .08em; 
  margin-bottom: 6px; 
}
.cpi-label.old { 
  color: rgba(255,255,255,.4);
 }
.cpi-label.new { 
  color: var(--blue-lt);
 }
.cpi-amount { 
  font-family: var(--heading-font);
 font-size: 40px; 
 font-weight: 500; 
 line-height: 1; 
}
.cpi-amount.old { 
  color: rgba(255,255,255,.25);
  text-decoration: line-through; 
  font-size: 28px;
 }
.cpi-amount.new { 
  color: #fff;
 }
.combo-arrow {
   font-size: 26px; 
   color: rgba(255,255,255,.2);
   }
.combo-save-badge {
  background: var(--blue); color: #fff;
  font-size: 13px; 
  font-weight: 500;
  padding: 6px 20px; border-radius: 100px;
  display: inline-block;
}
.combo-cta-row { 
  display: flex; 
  gap: 14px;
   justify-content: center; 
   flex-wrap: wrap; 
  }

   /* UPCOMING BATCHES */

.batch-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.batch-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.batch-card:hover {
  box-shadow: 0 16px 48px rgba(90,143,216,.13);
  transform: translateY(-4px);
}
.batch-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 8px 32px rgba(90,143,216,.15);
}

/* colored date banner (like image 6 style) */
.batch-date-banner {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.batch-date-banner .batch-date {
  font-family: var(--heading-font);
  font-size: 20px; 
  font-weight: 500;
  color: #fff;
}

.batch-body { 
  padding: 22px 24px 24px;
 }

.batch-mode {
  font-size: 11px; 
  font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.batch-mode i { font-size: 12px; }

.batch-info {
  font-size: 13px; color: var(--muted-dark);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
}
.batch-info i { color: var(--blue); font-size: 12px; }

.batch-seats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-bottom: 8px;
}

.batch-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  border-radius: 100px;
}

.batch-enroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-family: var(--body-font);
  font-weight: 500; font-size: 14px;
  padding: 11px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .22s, transform .22s;
}
.batch-enroll-btn:hover { background: var(--blue-lt); color: #fff; transform: translateY(-1px); }


/* Footer */
.cy-footer {
  background: #0a1128;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cy-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* top nav grid */
.cy-footer-top {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  margin-bottom: 52px;
}
.cy-footer-col h5 {
  font-family: var(--heading-font);
  font-size: 13px; 
  font-weight: 500;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cy-footer-col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.cy-footer-col ul li a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 13.5px;
  transition: color .2s, padding-left .2s;
}
.cy-footer-col ul li a:hover {
  color: var(--blue-lt);
  padding-left: 4px;
}

/* trending / SEO section */
.cy-footer-seo {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 32px 0;
}
.cy-footer-seo h6 {
  font-family: var(--heading-font);
  font-size: 11px; 
  font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
}
.cy-footer-seo p {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 22px;
  line-height: 1.75;
}
.cy-footer-seo p a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
.cy-footer-seo p a:hover { color: var(--blue-lt); }

/* course locations grid */
.cy-locations-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px 28px;
  margin-bottom: 22px;
}
.cy-locations-grid div { font-size: 12.5px; line-height: 1.9; }
.cy-locations-grid div a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
.cy-locations-grid div a:hover { color: var(--blue-lt); }
.cy-locations-grid div strong a { 
  color: rgba(255,255,255,.6);
   font-weight: 500;
   }

/* bottom bar */
.cy-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.cy-footer-address {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}
.cy-footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cy-footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
.cy-footer-legal a:hover { color: var(--blue-lt); }
.cy-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  text-align: right;
}

/* Responsive */

@media (max-width: 1024px) {
  .cy-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cy-locations-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .batch-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  /* .section-dark,.section-white,.section-offwhite,.section-navy-deep { 
    padding: 56px 50px; 
  } */
  .batch-grid { grid-template-columns: 1fr; }
  .combo-banner { padding: 32px 20px; }
  .combo-price-row { gap: 16px; }
  .cy-footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cy-locations-grid { grid-template-columns: 1fr; }
  .cy-footer-bottom { flex-direction: column; text-align: center; }
  .cy-footer-copy { text-align: center; }
  .countdown-row { gap: 8px; }
  .cd-unit { min-width: 60px; padding: 10px 12px; }
  .price-block { flex-direction: column; gap: 12px; }
}


/* OFFER CARD */
.offer-price-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.opg-label {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 3px;
}
.opg-old {
  font-family: var(--body-font);
  font-size: 18px;
  color: rgba(255,255,255,.28);
  text-decoration: line-through;
  font-weight: 600;
}
.opg-arrow {
  font-size: 20px;
  color: rgba(255,255,255,.2);
  text-align: center;
}
.opg-new {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.opg-save {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 4px;
}
.opg-note {
  font-size: 11px;
  color: rgba(255,255,255,.35);
}

/* MARQUEE */
.cy-marquee-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #041528 0%, #062040 50%, #041528 100%);
  border-top: 1px solid rgba(90,143,216,.2);
  border-bottom: 1px solid rgba(90,143,216,.2);
  padding: 13px 0;
}
.cy-marquee-glow {
  position: absolute; top: 0; bottom: 0;
  width: 100px; z-index: 2; pointer-events: none;
}
.cy-marquee-glow--left  { left: 0;  background: linear-gradient(90deg, #041528, transparent); }
.cy-marquee-glow--right { right: 0; background: linear-gradient(270deg, #041528, transparent); }

.cy-marquee-track { display: flex; width: 100%; overflow: hidden; }
.cy-marquee-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: cyMarqScroll 32s linear infinite;
}
.cy-marquee-inner:hover { animation-play-state: paused; }
@keyframes cyMarqScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cy-mq-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.72);
  padding: 5px 18px;
  white-space: nowrap;
}
.cy-mq-item i { font-size: 11px; color: var(--blue-lt); }
.cy-mq-hl {
  color: var(--blue-lt);
  background: rgba(90,143,216,.1);
  border: 1px solid rgba(90,143,216,.22);
  border-radius: 100px;
  padding: 4px 14px;
  font-weight: 600;
}
.cy-mq-badge {
  background: rgba(90,143,216,.1);
  border: 1px solid rgba(90,143,216,.15);
  border-radius: 100px;
  padding: 4px 14px;
  font-weight: 600;
  color: #fff;
}
.cy-mq-sep {
  color: rgba(90,143,216,.4);
  font-size: 9px;
  padding: 0 4px;
  flex-shrink: 0;
}

/*  BATCH GROUPS */
.batch-group-label {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
  width: fit-content;
  font-size: larger;
}
.batch-group-label i { color: var(--blue); }

.batch-grid-wide {
  grid-template-columns: repeat(4, 1fr) !important;
  max-width: 100% !important;
  gap: 18px;
}

.batch-slot-tag {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,255,255,.18);
  color: #fff;
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 6px;
  display: inline-block;
}

/* date banner */
.batch-date-banner {
  background: var(--blue);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.batch-date-banner .batch-date {
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

/* compact batch body */
.batch-body {
  padding: 18px 20px 20px;
}
.batch-mode {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-dk);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.batch-info {
  font-size: 12.5px;
  color: var(--muted-dark);
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 7px;
}
.batch-info i { color: var(--blue); font-size: 11px; width: 13px; }
.batch-enroll-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-family: var(--body-font);
  font-weight: 600; font-size: 13px;
  padding: 10px 16px;
  border-radius: 9px;
  text-decoration: none;
  margin-top: 14px;
  transition: background .2s, transform .2s;
}
.batch-enroll-btn:hover { 
  background: var(--blue-lt); color: #fff; 
  transform: translateY(-1px); 
}


/* ── RESPONSIVE for wide batch grid ── */
@media (max-width: 1100px) {
  .batch-grid-wide { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
  .batch-grid-wide { grid-template-columns: repeat(2, 1fr) !important; }
  .offer-price-grid { grid-template-columns: 1fr; gap: 8px; }
  .opg-arrow { display: none; }
}
@media (max-width: 480px) {
  .batch-grid-wide { grid-template-columns: 1fr !important; }
}

/* FAQ and protection section */

.faq-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.faq-section .container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.section-d {
  margin-top: 0 !important;
  padding-top: 20px !important; /* keeps section balanced */
}

.section-d .container {
  margin-top: 0 !important;
}

.pr-marquee-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  color:  #0c1a44;
  border-top: 1px solid rgba(90,143,216,.2);
  border-bottom: 1px solid rgba(90,143,216,.2);
  padding: 13px 0;
}
.pr-marquee-fade {
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.pr-marquee-fade--left  { left: 0;  background: linear-gradient(90deg, #0c1a44, transparent); }
.pr-marquee-fade--right { right: 0; background: linear-gradient(270deg, #0c1a44, transparent); }

.pr-marquee-track { display: flex; width: 100%; overflow: hidden; }
.pr-marquee-inner {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: prMarqScroll 36s linear infinite;
}
.pr-marquee-inner:hover { animation-play-state: paused; }
@keyframes prMarqScroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

.pr-mq-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  /* color: rgba(255,255,255,.7); */
  color:  #0c1a44;
  padding: 5px 16px;
  white-space: nowrap;
}
.pr-mq-item i { font-size: 11px; color: #7aaee8; }

.pr-mq-hl {
  color: #7aaee8;
  background: rgba(90,143,216,.1);
  border: 1px solid rgba(90,143,216,.22);
  border-radius: 100px;
  padding: 4px 14px;
  font-weight: 600;
}
.pr-mq-hl i { color: #1AA6B7; }

.pr-mq-sep {
  color: rgba(90,143,216,.4);
  font-size: 9px; padding: 0 4px; flex-shrink: 0;
}