*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #0d1f5c;
  --blue: #1565c0;
  --sky: #1e88e5;
  --accent: #00b0ff;
  --gold: #0098DB;
  --white: #ffffff;
  --dark: #080d1a;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── TOP INFO BAR ─── */
.topbar {
  background: var(--navy);
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.t-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}
.t-item svg {
  color: var(--accent);
}
.topbar-social {
  display: flex;
  gap: 8px;
}
.s-ico {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s;
}
.s-ico:hover {
  background: var(--accent);
  color: white;
}

/* ─── ANNOUNCEMENT ─── */
.ann-bar {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  padding: 8px 0;
  overflow: hidden;
}
.ann-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 0;
}
.ann-tag {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 4px;
  white-space: nowrap;
  margin-right: 20px;
  flex-shrink: 0;
  text-transform: uppercase;
}
.ann-scroll {
  overflow: hidden;
  flex: 1;
}
.ann-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
}
.ann-track span {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.ann-track span b {
  color: var(--blue);
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ─── NAVBAR ─── */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text .l1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}
.logo-text .l2 {
  font-size: 10px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 7px;
  transition: all 0.18s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: rgba(21, 101, 192, 0.07);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nbtn {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.18s;
  white-space: nowrap;
}
.nbtn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 3px 12px rgba(255, 179, 0, 0.35);
}
.nbtn-gold:hover {
  background: #e6a000;
  transform: translateY(-1px);
}
.nbtn-blue {
  background: var(--blue);
  color: white;
  box-shadow: 0 3px 12px rgba(21, 101, 192, 0.3);
}
.nbtn-blue:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 5px;
}
.hamburger span {
  width: 25px;
  height: 2.5px;
  background: var(--navy);
  display: block;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mob-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 16px 28px 28px;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.mob-menu.open {
  display: block;
}
.mob-menu a {
  display: block;
  padding: 12px 0;
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}
.mob-btns {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mob-btns .nbtn {
  justify-content: center;
  font-size: 15px;
}

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 130px);
  position: relative;
  display: flex;
  align-items: center;
  padding: 70px 28px 60px;
  overflow: hidden;
}

/* Dark BG with classroom feel */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    110deg,
    rgba(8, 13, 26, 0.97) 0%,
    rgba(13, 31, 92, 0.6) 52%,
    rgba(8, 13, 26, 0.88) 100%
  );
}
/* Subtle grid */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 101, 192, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 101, 192, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* Left blue glow */
.hero-bg::after {
  content: "";
  position: absolute;
  top: -180px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(21, 101, 192, 0.22) 0%,
    transparent 65%
  );
  border-radius: 50%;
}
/* Right accent glow */
.glow-r {
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 176, 255, 0.1) 0%,
    transparent 65%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  animation: pdot 2s infinite;
}
@keyframes pdot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(255, 179, 0, 0);
  }
}
.eyebrow-txt {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(40px, 5.2vw, 70px);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 26px;
}
.h1-white {
  color: var(--white);
  display: block;
}
.h1-gold {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-p b {
  color: var(--white);
  font-weight: 600;
}

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
}
.chip svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hbtn-enroll {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 30px;
  border-radius: 8px;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(255, 179, 0, 0.4);
  transition: all 0.2s;
}
.hbtn-enroll:hover {
  background: #e6a000;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 179, 0, 0.5);
}
.hbtn-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 30px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.hbtn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

/* Right — Enquiry Form Card */
.enquiry-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}
.eq-header {
  background: var(--navy);
  padding: 22px 26px;
}
.eq-header h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: white;
  margin-bottom: 4px;
}
.eq-header p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
}
.eq-body {
  padding: 22px 26px 26px;
}

/* Batch tabs */
.batch-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
  margin-bottom: 18px;
}
.btab {
  padding: 10px 4px;
  border-radius: 8px;
  border: 2px solid #dde3f0;
  background: #f7f9ff;
  color: #666;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
}
.btab.on {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.fg {
  margin-bottom: 14px;
}
.fg label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}
.fg label .r {
  color: var(--blue);
}
.fg input,
.fg select {
  width: 100%;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1.5px solid #dde3f0;
  background: #f7f9ff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  transition: all 0.18s;
  outline: none;
}
.fg input:focus,
.fg select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.11);
  background: white;
}
.fg input::placeholder {
  color: #aab0c8;
}

.sub-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 5px 18px rgba(21, 101, 192, 0.35);
  letter-spacing: 0.2px;
  margin-top: 4px;
}
.sub-btn:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 31, 92, 0.4);
}
.form-note {
  text-align: center;
  font-size: 11.5px;
  color: #999;
  margin-top: 9px;
}
.form-note a {
  color: var(--blue);
  text-decoration: none;
}
.form-ok {
  display: none;
  margin-top: 12px;
  padding: 13px;
  background: #e8f5e9;
  border-radius: 8px;
  color: #2e7d32;
  font-weight: 600;
  font-size: 13.5px;
  text-align: center;
}

/* Float WA */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s;
}
.float-wa:hover {
  transform: scale(1.1);
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.float-wa:hover .wa-tooltip {
  opacity: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
  .hero {
    padding: 60px 28px 60px;
    min-height: unset;
  }
}
@media (max-width: 820px) {
  .nav-links,
  .nav-ctas {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 600px) {
  .topbar-left .t-item:nth-child(2) {
    display: none;
  }
  .topbar-social {
    display: none;
  }
  .hero {
    padding: 40px 16px 50px;
  }
  .hero-h1 {
    font-size: 38px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hbtn-enroll,
  .hbtn-outline {
    text-align: center;
    justify-content: center;
  }
  .ann-inner {
    padding: 0 16px;
  }
  .nav-inner {
    padding: 0 16px;
  }
}








  /* ══════════════════════════════════════
     WHY CHOOSE SECTION — prefix: maw-
  ══════════════════════════════════════ */

  .maw-section {
    background: linear-gradient(160deg, #f0f6ff 0%, #e8f1ff 50%, #f4f9ff 100%);
    padding: 90px 24px 100px;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
  }

  .maw-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,152,219,0.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }
  .maw-section::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(13,31,92,0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }

  .maw-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  /* HEADER */
  .maw-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .maw-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
  }
  .maw-eyebrow::before,
  .maw-eyebrow::after {
    content: '—';
    margin: 0 10px;
    opacity: 0.5;
  }
  .maw-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.12;
    margin-bottom: 14px;
  }
  .maw-heading em {
    font-style: normal;
    color: var(--gold);
  }
  .maw-subtext {
    font-size: 15px;
    font-weight: 400;
    color: #6b7a99;
    line-height: 1.6;
    max-width: 440px;
    margin: 0 auto;
  }

  /* CARDS */
  .maw-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .maw-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 32px;
    border: 1.5px solid rgba(21,101,192,0.1);
    box-shadow: 0 4px 24px rgba(13,31,92,0.06), 0 1px 4px rgba(13,31,92,0.04);
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.28s ease, border-color 0.28s ease;
    cursor: default;
  }
  .maw-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--blue), var(--accent));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.28s ease;
  }
  .maw-card:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: 0 12px 40px rgba(13,31,92,0.12), 0 2px 8px rgba(0,152,219,0.1);
    border-color: rgba(0,152,219,0.3);
  }
  .maw-card:hover::before { opacity: 1; }

  .maw-card__num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 800;
    color: rgba(13,31,92,0.12);
    line-height: 1;
    transition: color 0.28s ease;
    user-select: none;
  }
  .maw-card:hover .maw-card__num {
    color: rgba(0,152,219,0.25);
  }

  .maw-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .maw-card__desc {
    font-size: 13.5px;
    font-weight: 400;
    color: #6b7a99;
    line-height: 1.65;
    max-width: 520px;
  }

  /* BADGES */
  .maw-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: center;
    transition: transform 0.2s ease;
  }
  .maw-card:hover .maw-badge { transform: scale(1.05); }

  .maw-badge--early {
    background: rgba(0,152,219,0.1);
    color: var(--gold);
    border: 1.5px solid rgba(0,152,219,0.22);
  }
  .maw-badge--live {
    background: rgba(34,197,94,0.08);
    color: #16a34a;
    border: 1.5px solid rgba(34,197,94,0.2);
  }
  .maw-badge--live .maw-badge__dot {
    width: 7px; height: 7px;
    background: #16a34a;
    border-radius: 50%;
    display: inline-block;
    animation: maw-pulse 1.5s ease infinite;
  }
  .maw-badge--time {
    background: rgba(13,31,92,0.06);
    color: var(--navy);
    border: 1.5px solid rgba(13,31,92,0.14);
  }

  @keyframes maw-pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.45; transform:scale(1.5); }
  }

  /* BOTTOM CTA */
  .maw-cta-strip {
    margin-top: 52px;
    text-align: center;
  }
  .maw-cta-strip p {
    font-size: 14px;
    color: #6b7a99;
    margin-bottom: 20px;
  }
  .maw-cta-strip p strong {
    color: var(--navy);
    font-weight: 600;
  }
  .maw-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 22px rgba(21,101,192,0.35);
  }
  .maw-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(21,101,192,0.45);
    background: linear-gradient(135deg, var(--sky), var(--blue));
  }

  /* RESPONSIVE */
  @media (max-width: 680px) {
    .maw-section { padding: 64px 20px 72px; }
    .maw-card {
      grid-template-columns: 40px 1fr;
      grid-template-rows: auto auto;
      gap: 12px 16px;
      padding: 22px;
    }
    .maw-card__num { font-size: 28px; }
    .maw-badge {
      grid-column: 2 / 3;
      justify-self: start;
    }
    .maw-header { margin-bottom: 40px; }
  }
  @media (max-width: 420px) {
    .maw-card {
      grid-template-columns: 1fr;
      padding: 20px 18px;
    }
    .maw-badge { justify-self: start; }
  }












  /* ══════════════════════════════════════
     RESULTS SLIDER SECTION — prefix: mrs-
  ══════════════════════════════════════ */
  .mrs-section {
   padding: 40px 24px 40px;
    background: #f7faff;
    font-family: 'DM Sans', sans-serif;
  }

  .mrs-inner {
    max-width: 1080px;
    margin: 0 auto;
  }

  /* HEADER */
  .mrs-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .mrs-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .mrs-eyebrow::before, .mrs-eyebrow::after { content: '—'; margin: 0 10px; opacity: 0.4; }
  .mrs-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .mrs-heading em { font-style: normal; color: var(--gold); }
  .mrs-subtext {
    font-size: 15px;
    color: #6b7a99;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* SLIDER WRAPPER */
  .mrs-slider-wrap {
    position: relative;
  }

  /* TRACK */
  .mrs-track {
    overflow: hidden;
    border-radius: 20px;
  }

  .mrs-slides {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  /* EACH SLIDE = one banner image */
  .mrs-slide {
    min-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 3;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mrs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
  }

  /* PLACEHOLDER (shown when no image added) */
  .mrs-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 500;
    padding: 40px;
    text-align: center;
  }
  .mrs-placeholder svg {
    width: 48px; height: 48px;
    stroke: rgba(255,255,255,0.3);
    fill: none;
    stroke-width: 1.5;
  }
  .mrs-placeholder span {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
  }

  /* PREV / NEXT ARROWS */
  .mrs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid rgba(21,101,192,0.15);
    box-shadow: 0 4px 16px rgba(13,31,92,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    outline: none;
  }
  .mrs-arrow:hover {
    background: var(--blue);
    box-shadow: 0 6px 20px rgba(21,101,192,0.3);
    transform: translateY(-50%) scale(1.08);
  }
  .mrs-arrow:hover svg { stroke: #fff; }
  .mrs-arrow svg {
    width: 18px; height: 18px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 2.2;
    transition: stroke 0.2s ease;
  }
  .mrs-arrow--prev { left: -22px; }
  .mrs-arrow--next { right: -22px; }
  .mrs-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
  }

  /* DOTS */
  .mrs-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
  }
  .mrs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(21,101,192,0.2);
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
    padding: 0;
    outline: none;
  }
  .mrs-dot.mrs-dot--active {
    width: 24px;
    border-radius: 4px;
    background: var(--blue);
  }

  /* SLIDE COUNTER */
  .mrs-counter {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 500;
    color: #8898b0;
  }
  .mrs-counter strong { color: var(--navy); }

  /* RESPONSIVE */
  @media (max-width: 680px) {
    .mrs-section { padding: 60px 18px 70px; }
    .mrs-arrow--prev { left: -14px; }
    .mrs-arrow--next { right: -14px; }
    .mrs-arrow { width: 36px; height: 36px; }
    .mrs-arrow svg { width: 15px; height: 15px; }
    .mrs-slide { aspect-ratio: 16 / 7; }
  }
  @media (max-width: 420px) {
    .mrs-slide { aspect-ratio: 4 / 3; }
  }



















  /* ══════════════════════════════════════
     PROGRAMS SECTION — prefix: map-
  ══════════════════════════════════════ */
  .map-section {
    background: #f7faff;
    padding: 90px 24px 100px;
    font-family: 'DM Sans', sans-serif;
  }

  .map-inner {
    max-width: 1080px;
    margin: 0 auto;
  }

  /* HEADER */
  .map-header {
    text-align: center;
    margin-bottom: 52px;
  }
  .map-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .map-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .map-heading em {
    font-style: normal;
    color: var(--gold);
  }
  .map-subtext {
    font-size: 15px;
    color: #6b7a99;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
  }

  /* GRID */
  .map-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* CARD */
  .map-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1.5px solid rgba(21, 101, 192, 0.1);
    box-shadow: 0 2px 16px rgba(13, 31, 92, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(13, 31, 92, 0.11);
    border-color: rgba(0, 152, 219, 0.28);
  }

  /* ICON */
  .map-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(21, 101, 192, 0.07);
    border: 1.5px solid rgba(21, 101, 192, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.25s ease;
  }
  .map-card:hover .map-card__icon {
    background: linear-gradient(135deg, var(--blue), var(--accent));
    border-color: transparent;
  }
  .map-card__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.9;
    transition: stroke 0.25s ease;
  }
  .map-card:hover .map-card__icon svg {
    stroke: #fff;
  }

  /* TAG */
  .map-card__tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(0, 152, 219, 0.08);
    border: 1px solid rgba(0, 152, 219, 0.18);
    border-radius: 100px;
    padding: 3px 10px;
    margin-bottom: 12px;
    width: fit-content;
  }

  /* TITLE */
  .map-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  /* DESC */
  .map-card__desc {
    font-size: 13.5px;
    color: #6b7a99;
    line-height: 1.72;
    flex: 1;
    margin-bottom: 24px;
  }

  /* DIVIDER */
  .map-card__divider {
    height: 1px;
    background: rgba(21, 101, 192, 0.08);
    margin-bottom: 20px;
  }

  /* META */
  .map-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
  }
  .map-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #8898b0;
  }
  .map-meta-item svg {
    width: 12px;
    height: 12px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
  }

  /* LINK */
  .map-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
    margin-top: auto;
  }
  .map-card__link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    transition: transform 0.2s ease;
  }
  .map-card__link:hover {
    color: var(--gold);
    gap: 10px;
  }
  .map-card__link:hover svg {
    transform: translateX(3px);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .map-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 560px) {
    .map-grid {
      grid-template-columns: 1fr;
    }
    .map-section {
      padding: 60px 18px 70px;
    }
    .map-header {
      margin-bottom: 36px;
    }
  }






  /* ══════════════════════════════════════
     TESTIMONIALS SECTION — prefix: mts-
  ══════════════════════════════════════ */
  .mts-section {
    background: #f7faff;
    padding: 90px 24px 100px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
  }
  .mts-section::before {
    content: '';
    position: absolute;
    top: -180px; right: -180px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,152,219,0.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }
  .mts-section::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(13,31,92,0.05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }

  .mts-inner {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  /* HEADER */
  .mts-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .mts-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0098DB;
    margin-bottom: 12px;
  }
  .mts-eyebrow::before, .mts-eyebrow::after { content: '—'; margin: 0 10px; opacity: 0.4; }
  .mts-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: #0d1f5c;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .mts-heading em { font-style: normal; color: #0098DB; }
  .mts-subtext {
    font-size: 15px;
    color: #6b7a99;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* GRID */
  .mts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
  }

  /* CARD */
  .mts-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1.5px solid rgba(21,101,192,0.09);
    box-shadow: 0 4px 24px rgba(13,31,92,0.06);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }
  .mts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(13,31,92,0.11);
    border-color: rgba(0,152,219,0.25);
  }

  /* QUOTE MARK */
  .mts-card__quote {
    font-size: 64px;
    line-height: 0.6;
    color: #0098DB;
    opacity: 0.18;
    font-family: Georgia, serif;
    font-weight: 700;
    margin-bottom: 20px;
    user-select: none;
  }

  /* STARS */
  .mts-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
  }
  .mts-stars svg {
    width: 15px; height: 15px;
    fill: #f59e0b;
    stroke: none;
  }

  /* REVIEW TEXT */
  .mts-card__text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.78;
    flex: 1;
    margin-bottom: 28px;
  }

  /* DIVIDER */
  .mts-card__divider {
    height: 1px;
    background: rgba(21,101,192,0.08);
    margin-bottom: 20px;
  }

  /* AUTHOR */
  .mts-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .mts-author__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1565c0, #00b0ff);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
  }
  .mts-author__info {}
  .mts-author__name {
    font-size: 14px;
    font-weight: 700;
    color: #0d1f5c;
    margin-bottom: 2px;
  }
  .mts-author__batch {
    font-size: 12px;
    font-weight: 500;
    color: #0098DB;
  }

  /* BADGE on card */
  .mts-card__badge {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0098DB;
    background: rgba(0,152,219,0.08);
    border: 1px solid rgba(0,152,219,0.18);
    border-radius: 100px;
    padding: 3px 10px;
  }

  /* FEATURED CARD */
  .mts-card--featured {
    background: linear-gradient(145deg, #0d1f5c 0%, #1565c0 100%);
    border-color: transparent;
    box-shadow: 0 8px 36px rgba(13,31,92,0.28);
  }
  .mts-card--featured:hover {
    box-shadow: 0 18px 50px rgba(13,31,92,0.38);
    border-color: rgba(0,176,255,0.3);
  }
  .mts-card--featured .mts-card__quote { color: #ffffff; opacity: 0.15; }
  .mts-card--featured .mts-card__text { color: rgba(255,255,255,0.82); }
  .mts-card--featured .mts-card__divider { background: rgba(255,255,255,0.1); }
  .mts-card--featured .mts-author__name { color: #ffffff; }
  .mts-card--featured .mts-author__batch { color: #00b0ff; }
  .mts-card--featured .mts-author__avatar {
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.2);
  }
  .mts-card--featured .mts-card__badge {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    color: #ffffff;
  }
  .mts-card--featured .mts-stars svg { fill: #fbbf24; }

  /* CTA STRIP */
  .mts-cta {
    background: linear-gradient(135deg, #0d1f5c 0%, #1565c0 100%);
    border-radius: 24px;
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
  }
  .mts-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,176,255,0.15) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }
  .mts-cta::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 30%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }

  .mts-cta__left { position: relative; z-index: 2; }
  .mts-cta__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #00b0ff;
    margin-bottom: 12px;
  }
  .mts-cta__heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .mts-cta__heading em { font-style: normal; color: #00b0ff; }
  .mts-cta__sub {
    font-size: 14.5px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 400px;
  }

  .mts-cta__right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .mts-cta__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #ffffff;
    color: #0d1f5c;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
    white-space: nowrap;
  }
  .mts-cta__btn-primary:hover {
    background: #00b0ff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,176,255,0.4);
  }
  .mts-cta__btn-primary svg {
    width: 16px; height: 16px;
    stroke: currentColor; fill: none; stroke-width: 2.5;
    transition: transform 0.2s ease;
  }
  .mts-cta__btn-primary:hover svg { transform: translateX(3px); }

  .mts-cta__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.18);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
  }
  .mts-cta__btn-secondary:hover {
    border-color: rgba(255,255,255,0.45);
    color: #ffffff;
    background: rgba(255,255,255,0.06);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .mts-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 720px) {
    .mts-cta {
      flex-direction: column;
      align-items: flex-start;
      padding: 40px 28px;
    }
    .mts-cta__right { align-items: stretch; width: 100%; }
    .mts-cta__btn-primary, .mts-cta__btn-secondary { justify-content: center; }
  }
  @media (max-width: 560px) {
    .mts-grid { grid-template-columns: 1fr; }
    .mts-section { padding: 60px 18px 70px; }
    .mts-header { margin-bottom: 36px; }
  }




  /* ══════════════════════════════════════
     STORIES SECTION — prefix: mvs-
  ══════════════════════════════════════ */
  .mvs-section {
    background: #080d1a;
    padding: 90px 24px 100px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
  }
  .mvs-section::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,152,219,0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }

  .mvs-inner {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  /* HEADER */
  .mvs-header {
    text-align: center;
    margin-bottom: 52px;
  }
  .mvs-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0098DB;
    margin-bottom: 12px;
  }
  .mvs-eyebrow::before, .mvs-eyebrow::after { content: '—'; margin: 0 10px; opacity: 0.4; }
  .mvs-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .mvs-heading em { font-style: normal; color: #0098DB; }
  .mvs-subtext {
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* GRID */
  .mvs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }

  /* CARD */
  .mvs-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* VIDEO WRAP */
  .mvs-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    overflow: hidden;
    background: #0d1a33;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  .mvs-video-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  }

  /* THUMBNAIL LAYER */
  .mvs-thumb-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
  }
  .mvs-video-wrap.mvs--playing .mvs-thumb-layer {
    opacity: 0;
    pointer-events: none;
  }

  .mvs-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .mvs-video-wrap:hover .mvs-thumb {
    transform: scale(1.04);
  }

  .mvs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.08) 0%,
      transparent 35%,
      rgba(0,0,0,0.55) 100%
    );
  }

  /* PLAY BUTTON */
  .mvs-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(255,0,0,0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 3;
  }
  .mvs-video-wrap:hover .mvs-play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 32px rgba(255,0,0,0.7);
  }
  .mvs-play svg {
    width: 24px; height: 24px;
    fill: #ffffff;
    margin-left: 4px;
  }

  /* IFRAME */
  .mvs-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    z-index: 1;
  }

  /* CARD INFO */
  .mvs-card__info { padding: 0 4px; }
  .mvs-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
  }
  .mvs-card__batch {
    font-size: 12.5px;
    font-weight: 500;
    color: #0098DB;
  }
  .mvs-card__batch span {
    color: rgba(255,255,255,0.4);
    font-weight: 400;
  }

  /* RESPONSIVE */
  @media (max-width: 860px) {
    .mvs-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  }
  @media (max-width: 520px) {
    .mvs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .mvs-section { padding: 60px 16px 70px; }
  }
  @media (max-width: 360px) {
    .mvs-grid { grid-template-columns: 1fr; }
  }
