/* ── RESET & ROOT ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1762BE;
  --primary-mid: #2478d4;
  --accent: #EC2127;
  --gold: #EC2127;
  --light: #EBF3FF;
  --white: #ffffff;
  --text: #202021;
  --muted: #565656;
  --dark-bg: #192335;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TOP INFO BAR ── */
.topbar {
  background: linear-gradient(90deg, #060d1c 0%, var(--primary) 50%, #060d1c 100%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  padding: 9px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}

.topbar-item i {
  color: var(--gold);
  font-size: 0.72rem;
}

.topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-social {
  display: flex;
  gap: 8px;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.topbar-social a:hover {
  background: var(--gold);
  color: var(--primary);
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .topbar-left .topbar-item:not(:first-child) {
    display: none;
  }

  .topbar-sep {
    display: none;
  }

  .topbar-social {
    display: none;
  }
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 40px;
  height: 76px;
  transition: height 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  body {
    padding-top: 60px;
  }

  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
  }


  .navbar.scrolled .navbar-cta {
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  .navbar.scrolled .nav-hamburger span {
    background: var(--primary);
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand .logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(12, 30, 94, 0.35);
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-brand .brand-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.2px;
}

.navbar-brand .brand-sub {
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navbar logo image */
.navbar-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .navbar-logo-img {
    height: 36px;
  }
}

/* CENTER — nav links */
.navbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.navbar-links a.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: color 0.2s;
}

.navbar-links a.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.25s;
}

.navbar-links a.nav-link:hover {
  color: var(--accent);
}

.navbar-links a.nav-link:hover::after {
  width: 60%;
}

/* RIGHT — CTA */
.navbar-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--accent), #b51519);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  box-shadow: 0 5px 18px rgba(236, 33, 39, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-cta i {
  animation: ring 2s infinite;
}

.navbar-cta:hover {
  color: var(--white) !important;
  box-shadow: 0 10px 28px rgba(236, 33, 39, 0.55) !important;
}

@media (max-width: 900px) {
  .navbar {
    grid-template-columns: auto auto;
    padding: 0 20px;
    height: 64px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-action {
    justify-content: flex-end;
  }
}

/* ── HEADER / HERO ── */
header {
  background: linear-gradient(135deg, #0d1a2d 0%, #192335 50%, #1c2d44 100%);
  color: var(--white);
  padding: 50px 40px 90px;
  position: relative;
  overflow: hidden;
}

/* Animated blobs */
header::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -140px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(236, 33, 39, 0.14) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatBlob 8s ease-in-out infinite alternate;
}

header::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(23, 98, 190, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatBlob 10s ease-in-out infinite alternate-reverse;
}

.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(-55deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 32px);
  pointer-events: none;
}

@keyframes floatBlob {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(30px, 20px) scale(1.06);
  }
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  header {
    padding: 60px 20px 120px;
  }
}

/* Left col */
.hero-left .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236, 33, 39, 0.18);
  border: 1px solid rgba(236, 33, 39, 0.45);
  color: #ff7b7e;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-left h1 .highlight-text {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-left .hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

@media (max-width: 860px) {
  .hero-bullets {
    align-items: center;
  }
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
}

.hero-bullets li .bullet-icon {
  width: 26px;
  height: 26px;
  background: rgba(236, 33, 39, 0.18);
  border: 1px solid rgba(236, 33, 39, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-bullets li .bullet-icon i {
  color: var(--accent);
  font-size: 0.7rem;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hero-btn-group {
    justify-content: center;
  }
}

/* Eligibility pills */
.hero-elig-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hep-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.hep-item i {
  color: #4ade80;
  font-size: 0.75rem;
}

/* Stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.hsr-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 10px;
}

.hsr-item strong {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.hsr-item span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.hsr-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-elig-pills {
    justify-content: center;
  }

  .hero-stats-row {
    margin-bottom: 20px;
  }

  .hsr-item strong {
    font-size: 1.15rem;
  }

  .hsr-item span {
    font-size: 0.62rem;
  }

  .hsr-item {
    padding: 10px 6px;
  }
}

/* ── CALL BUTTON ── */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), #b51519);
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(236, 33, 39, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}

.btn-call:hover {
  box-shadow: 0 12px 32px rgba(236, 33, 39, 0.6);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

@keyframes ring {

  0%,
  100% {
    transform: rotate(0);
  }

  10% {
    transform: rotate(-18deg);
  }

  20% {
    transform: rotate(18deg);
  }

  30% {
    transform: rotate(-12deg);
  }

  40% {
    transform: rotate(12deg);
  }

  50% {
    transform: rotate(0);
  }
}

.fa-phone {
  animation: ring 1.8s infinite;
}

/* Right col – enquiry card */
.hero-right {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ── ENQUIRY FORM ── */
.enquiry-card-header {
  background: linear-gradient(135deg, #b50000 0%, #EC2127 50%, #ff4444 100%);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.enquiry-card-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.eqh-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.eqh-wa-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ef0709;
  border: 2px solid #e6eaef66;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eqh-wa-circle i {
  font-size: 1.5rem;
  color: #fff;
}

.eqh-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.eqh-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #25d366;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.eqh-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: eqhPulse 1.5s ease-in-out infinite;
}

@keyframes eqhPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
  }
}

.eqh-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eqh-text span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}

.eqh-free-badge {
  background: linear-gradient(135deg, #25d366, #1aa355);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
}

/* icon-inside inputs */
.fi-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.fi-wrap>i {
  position: absolute;
  left: 12px;
  color: var(--primary);
  font-size: 0.8rem;
  pointer-events: none;
  z-index: 1;
}

.fi-wrap input,
.fi-wrap select {
  padding-left: 34px !important;
}

/* two-column row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* trust badges */
.form-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.ftb-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.67rem;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}

.ftb-item i {
  font-size: 0.62rem;
  color: var(--primary);
}

#enquiryForm,
#enquiryFormMobile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 15px 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.form-group label i {
  color: var(--primary);
  font-size: 0.72rem;
  width: 13px;
}

.form-group input,
.form-group select {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}

.form-group select option {
  background: var(--white);
  color: var(--text);
}

.form-group input::placeholder {
  color: #94a3b8;
  font-size: 0.85rem;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group input:invalid:not(:placeholder-shown) {
  border-color: var(--accent);
}

.form-submit-btn {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #0d3162, #165eb6);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
  width: 100%;
}

.form-submit-btn i {
  font-size: 1.1rem;
}


/* Budget checkbox grid */
.budget-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.budget-opt {
  display: flex;
  cursor: pointer;
}

.budget-opt input[type="checkbox"] {
  display: none;
}

.budget-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: #f0f7ff;
  border: 1.5px solid #c7ddf7;
  border-radius: 8px;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  text-align: center;
  line-height: 1.3;
}

.budget-opt input[type="checkbox"]:checked+.budget-box {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.form-trust-note {
  text-align: center;
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-trust-note i {
  color: #25d366;
  font-size: 0.7rem;
}

/* ── WAVES ── */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg {
  display: block;
}

.footer-wave {
  display: block;
  line-height: 0;
  background: var(--light);
}

.footer-wave svg {
  display: block;
}

/* ── SECTION WRAPPER ── */
section {
  padding: 50px 20px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 14px;
}

.section-title span {
  color: var(--accent);
}

.divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 4px;
  margin: 0 auto 20px;
}

/* ── ABOUT ── */
#about {
  background: var(--light);
}

.about-header {
  text-align: center;
  margin-bottom: 30px;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 107, 43, 0.1);
  color: var(--accent);
  border: 1px solid rgba(255, 107, 43, 0.3);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.about-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Highlight cards row */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.about-hl-card {
  position: relative;
  border-radius: 20px;
  padding: 24px 26px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(12, 30, 94, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.about-hl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(12, 30, 94, 0.16);
}

/* Card colour themes */
.ahl-card--green {
  background: linear-gradient(145deg, #e8faf2 0%, #f0fff8 100%);
  border: 1.5px solid #b2efd4;
}

.ahl-card--blue {
  background: linear-gradient(145deg, #e8f0fe 0%, #f0f4ff 100%);
  border: 1.5px solid #b6c9f9;
}

.ahl-card--gold {
  background: linear-gradient(145deg, #fff8e1 0%, #fffdf0 100%);
  border: 1.5px solid #fde68a;
}

/* Large ghost icon in background */
.ahl-bg-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 6rem;
  line-height: 1;
  pointer-events: none;
}

.ahl-card--green .ahl-bg-icon {
  color: rgba(52, 199, 89, 0.10);
}

.ahl-card--blue .ahl-bg-icon {
  color: rgba(66, 103, 212, 0.09);
}

.ahl-card--gold .ahl-bg-icon {
  color: rgba(234, 179, 8, 0.10);
}

/* Icon wrapper + glow */
.ahl-icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.ahl-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.45;
  transition: opacity 0.25s;
}

.ahl-card--green .ahl-glow {
  background: #34c759;
}

.ahl-card--blue .ahl-glow {
  background: #4267d4;
}

.ahl-card--gold .ahl-glow {
  background: #eab308;
}

.about-hl-card:hover .ahl-glow {
  opacity: 0.65;
}

.ahl-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  z-index: 1;
}

.ahl-card--green .ahl-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.ahl-card--blue .ahl-icon {
  background: linear-gradient(135deg, #4267d4, #1e3a8a);
}

.ahl-card--gold .ahl-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Body text */
.ahl-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
}

.ahl-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  width: fit-content;
}

.ahl-card--green .ahl-badge {
  background: #dcfce7;
  color: #15803d;
}

.ahl-card--blue .ahl-badge {
  background: #dbeafe;
  color: #1d4ed8;
}

.ahl-card--gold .ahl-badge {
  background: #fef9c3;
  color: #a16207;
}

.ahl-body strong {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.ahl-card--green .ahl-body strong {
  color: #15803d;
}

.ahl-card--blue .ahl-body strong {
  color: #1e3a8a;
}

.ahl-card--gold .ahl-body strong {
  color: #92400e;
}

.ahl-body span {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Main 2-col */
.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 860px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-sub-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-desc {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ap-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent), #b51519);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-points li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-points li strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.about-points li span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Stats panel */
.about-stats-panel {
  background: linear-gradient(150deg, #0c1e5e 0%, #1a2f80 50%, #0e1f6a 100%);
  border-radius: 24px;
  padding: 22px 22px 18px;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(12, 30, 94, 0.35);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.asp-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.asp-blob-1 {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -70px;
  background: radial-gradient(circle, rgba(236, 33, 39, 0.18) 0%, transparent 70%);
}

.asp-blob-2 {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: -40px;
  background: radial-gradient(circle, rgba(255, 200, 0, 0.10) 0%, transparent 70%);
}

/* Header pill */
.asp-header {
  margin-bottom: 14px;
}

.asp-header-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
}

.asp-header-pill i {
  font-size: 0.75rem;
}

/* Big stat with SVG ring */
.asp-big-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.asp-ring-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}

.asp-ring {
  width: 88px;
  height: 88px;
  transform: rotate(-90deg);
}

.asp-ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.10);
  stroke-width: 7;
}

.asp-ring-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 263;
  stroke-dashoffset: 224;
  filter: drop-shadow(0 0 5px rgba(255, 200, 0, 0.5));
}

.asp-ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asp-num {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.asp-pct {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 800;
}

.asp-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  line-height: 1.5;
}

/* Description */
.asp-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.asp-desc strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

/* Stats grid */
.asp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.asp-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  transition: background 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}

.asp-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
  border-radius: 12px;
}

.asp-item:hover {
  background: rgba(236, 33, 39, 0.15);
  transform: translateY(-2px);
}

.asp-item-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 200, 0, 0.12);
  border: 1px solid rgba(255, 200, 0, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}

.asp-item-icon i {
  color: var(--gold);
  font-size: 0.85rem;
}

.asp-item strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}

.asp-item span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.4px;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── HOW TO GET ── */
#how {
  background: linear-gradient(160deg, #EBF3FF 0%, #ffffff 55%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.how-deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.how-deco-tl {
  top: -140px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(12, 30, 94, 0.06) 0%, transparent 65%);
}

.how-deco-br {
  bottom: -120px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(23, 98, 190, 0.1) 0%, transparent 65%);
}

.how-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(12, 30, 94, 0.07);
  color: var(--primary);
  border: 1px solid rgba(12, 30, 94, 0.15);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin: 0 auto 16px;
}

.how-intro {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 660px;
  margin: 12px auto 28px;
  text-align: center;
}

/* ── Seat split banner ── */
.how-seat-banner {
  display: flex;
  align-items: stretch;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(12, 30, 94, 0.16);
  margin-bottom: 20px;
}

.hsb-item {
  flex: 1;
  padding: 22px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.hsb-counselling {
  background: linear-gradient(145deg, #dde4f5, #c5d0eb);
}

.hsb-mgmt {
  background: linear-gradient(145deg, #0b1b58, var(--primary));
  color: var(--white);
}

.hsb-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 0 6px;
  z-index: 1;
  position: relative;
}

.hsb-vs::before,
.hsb-vs::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(12, 30, 94, 0.15), transparent);
}

.hsb-vs::before {
  top: 0;
  bottom: 52%;
}

.hsb-vs::after {
  top: 52%;
  bottom: 0;
}

.hsb-vs span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1e3a8a);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 14px rgba(12, 30, 94, 0.35), 0 0 0 4px rgba(12, 30, 94, 0.08);
  writing-mode: horizontal-tb;
  flex-shrink: 0;
}

.hsb-icon-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(12, 30, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.hsb-icon-gold {
  background: rgba(236, 33, 39, 0.15);
  color: var(--gold);
}

.hsb-pct {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.hsb-counselling .hsb-pct {
  color: var(--primary);
}

.hsb-mgmt .hsb-pct {
  color: var(--gold);
}

.hsb-label {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.hsb-counselling .hsb-label {
  color: var(--text);
}

.hsb-mgmt .hsb-label {
  color: rgba(255, 255, 255, 0.92);
}

.hsb-sub {
  font-size: 0.78rem;
  line-height: 1.5;
}

.hsb-counselling .hsb-sub {
  color: var(--muted);
}

.hsb-mgmt .hsb-sub {
  color: rgba(255, 255, 255, 0.5);
}

.hsb-bar-track {
  height: 5px;
  border-radius: 99px;
  background: rgba(12, 30, 94, 0.12);
  overflow: hidden;
  margin-top: 2px;
}

.hsb-bar-track-gold {
  background: rgba(255, 255, 255, 0.15);
}

.hsb-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--primary);
}

.hsb-bar-gold {
  background: var(--gold);
}

.hsb-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 6px;
  width: fit-content;
}

@media (max-width: 640px) {
  .how-seat-banner {
    flex-direction: column;
  }

  .hsb-vs {
    padding: 6px 0;
    flex-direction: row;
  }

  .hsb-vs::before {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 52%;
    width: auto;
    height: 1px;
    transform: none;
    background: linear-gradient(to right, transparent, rgba(12, 30, 94, 0.15));
  }

  .hsb-vs::after {
    top: 50%;
    bottom: auto;
    left: 52%;
    right: 0;
    width: auto;
    height: 1px;
    transform: none;
    background: linear-gradient(to right, rgba(12, 30, 94, 0.15), transparent);
  }
}

/* ── Eligibility strip ── */
.how-eligibility {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid rgba(12, 30, 94, 0.1);
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(12, 30, 94, 0.07);
  flex-wrap: wrap;
}

.he-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.he-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.he-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.he-criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.he-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: var(--light);
  padding: 4px 10px;
  border-radius: 20px;
}

.he-item i {
  color: #22c55e;
}

.he-result {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 30px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

@media (max-width: 700px) {
  .how-eligibility {
    flex-direction: column;
    align-items: flex-start;
  }

  .he-result {
    align-self: stretch;
    justify-content: center;
  }
}

/* ── Steps ── */
.how-steps-outer {
  position: relative;
  margin-bottom: 20px;
  text-align: left;
}

.how-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

@media (max-width: 860px) {
  .how-steps {
    flex-direction: column;
    gap: 0;
  }
}

.how-step {
  flex: 1;
  background: var(--white);
  border-radius: 18px;
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(12, 30, 94, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(12, 30, 94, 0.07);
}

.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(12, 30, 94, 0.14);
}

/* Colored top accent bar per step */
.hs-step-blue {
  border-top: 4px solid var(--primary);
}

.hs-step-teal {
  border-top: 4px solid #0891b2;
}

.hs-step-purple {
  border-top: 4px solid #7c3aed;
}

.hs-step-gold {
  border-top: 4px solid var(--gold);
}

.hs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 12px;
  border-bottom: 1px solid rgba(12, 30, 94, 0.06);
}

.hs-num-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1e3a8a);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.hs-nc-teal {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.hs-nc-purple {
  background: linear-gradient(135deg, #7c3aed, #9f67fa);
}

.hs-nc-gold {
  background: linear-gradient(135deg, #b51519, var(--gold));
  color: var(--white);
}

.hs-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.hs-ib-blue {
  background: rgba(12, 30, 94, 0.08);
  color: var(--primary);
}

.hs-ib-teal {
  background: rgba(8, 145, 178, 0.1);
  color: #0891b2;
}

.hs-ib-purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.hs-ib-gold {
  background: rgba(236, 33, 39, 0.12);
  color: #c0171b;
}

.hs-body {
  padding: 14px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.hs-step-tag {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.55;
}

.hs-st-teal {
  color: #0891b2;
}

.hs-st-purple {
  color: #7c3aed;
}

.hs-st-gold {
  color: #c0171b;
}

.hs-body h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.hs-body p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.hs-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(12, 30, 94, 0.07);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 6px;
  width: fit-content;
}

.hs-chip-teal {
  background: rgba(8, 145, 178, 0.1);
  color: #0770a0;
}

.hs-chip-purple {
  background: rgba(124, 58, 237, 0.1);
  color: #6d28d9;
}

.hs-chip-gold {
  background: rgba(236, 33, 39, 0.12);
  color: #b51519;
}

.how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  padding-top: 40px;
  opacity: 0.7;
}

@media (max-width: 860px) {
  .how-connector {
    padding: 6px 0 6px 18px;
    transform: rotate(90deg);
  }
}

/* ── Bottom row ── */
.how-bottom {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 18px;
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.07), rgba(255, 107, 43, 0.02));
  border: 1.5px solid rgba(255, 107, 43, 0.22);
  border-radius: 14px;
  padding: 18px 24px;
  flex-wrap: wrap;
  box-shadow: 0 4px 16px rgba(255, 107, 43, 0.07);
}

.how-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 220px;
}

.how-note-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 107, 43, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.how-note p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
  margin: 0;
}

/* ── COLLEGES ── */
#colleges {
  background: linear-gradient(135deg, #060d1c, var(--primary));
  color: var(--white);
}

#colleges .section-title {
  color: var(--white);
}

.colleges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.college-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.college-card i {
  color: var(--gold);
  font-size: 0.85rem;
}

.college-card:hover {
  background: rgba(236, 33, 39, 0.13);
  border-color: var(--gold);
}

/* ── STATES ── */
#states {
  background: var(--light);
}

.states-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.state-tag {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.state-tag i {
  font-size: 0.8rem;
}

.state-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ── PROMISE ── */
#promise {
  background: var(--white);
  text-align: center;
}

.promise-text {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 700;
}

.promise-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.promise-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.promise-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.pc-ribbon {
  position: absolute;
  top: 14px;
  right: -24px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 34px;
  transform: rotate(38deg);
}

.pc-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.pc-red {
  background: rgba(236, 33, 39, 0.1);
  color: var(--accent);
}

.pc-blue {
  background: rgba(23, 98, 190, 0.1);
  color: var(--primary);
}

.promise-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.promise-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.pc-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 4px;
}

.pc-check i {
  font-size: 0.78rem;
}

.promise-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.pts-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

.pts-item i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pts-item strong {
  color: var(--white);
}

.pts-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.promise-cta-sub {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .promise-cards {
    grid-template-columns: 1fr 1fr;
  }

  .pts-sep {
    display: none;
  }

  .pts-item {
    min-width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 560px) {
  .promise-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .promise-quote {
    padding: 18px 16px 18px 20px;
  }

  .promise-quote p {
    padding-left: 28px;
    font-size: 0.88rem;
  }

  .promise-quote-icon {
    font-size: 1.2rem;
    top: 14px;
    left: 14px;
  }

  .pts-item {
    min-width: 100%;
  }

  .pc-icon-wrap {
    width: 58px;
    height: 58px;
    font-size: 1.3rem;
  }

  .promise-card {
    padding: 24px 16px 18px;
  }

  .promise-card h3 {
    font-size: 0.95rem;
  }
}

/* ── DOCUMENTS REQUIRED ── */
#documents {
  background: var(--light);
}

.docs-intro {
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 16px;
}

.docs-note {
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 0.25);
  border-radius: 10px;
  padding: 14px 20px;
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 36px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.docs-note i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 760px) {
  .docs-grid {
    grid-template-columns: 1fr;
  }
}

.docs-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(12, 30, 94, 0.08);
}

.docs-card-nri {
  border-top-color: var(--accent);
}

.docs-card-head {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: var(--white);
  padding: 16px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.docs-card-nri .docs-card-head {
  background: linear-gradient(135deg, #b51519, var(--accent));
  color: var(--white);
}

.docs-list {
  list-style: none;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.docs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.docs-list li i {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.docs-card-nri .docs-list li i {
  color: var(--accent);
}

.docs-nri-cta {
  padding: 0 22px 22px;
}

/* ── TEAM INFO ── */
#team {
  background: linear-gradient(150deg, #060d1c 0%, #0c1e5e 55%, #091540 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 52px;
  padding-bottom: 52px;
}

.team-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.team-blob-1 {
  width: 340px;
  height: 340px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(236, 33, 39, 0.13) 0%, transparent 70%);
}

.team-blob-2 {
  width: 260px;
  height: 260px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(255, 200, 0, 0.08) 0%, transparent 70%);
}

.team-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}

#team .section-title {
  color: var(--white);
}

#team .section-title span {
  color: var(--gold);
}

#team .divider {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.team-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.85;
}

.team-desc strong {
  color: rgba(255, 255, 255, 0.95);
}

/* Trust badges */
.team-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.tt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.tt-badge i {
  color: var(--gold);
  font-size: 0.7rem;
}

.team-cta {
  font-size: 0.95rem;
  padding: 13px 28px;
}

/* Stats grid */
.team-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ts-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  cursor: default;
  padding: 10px;
}

.ts-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
}

.ts-red::before {
  background: linear-gradient(90deg, #ec2127, #ff6b6e);
}

.ts-gold::before {
  background: linear-gradient(90deg, #f59e0b, #fcd34d);
}

.ts-teal::before {
  background: linear-gradient(90deg, #0891b2, #22d3ee);
}

.ts-blue::before {
  background: linear-gradient(90deg, var(--primary), #4267d4);
}

/* Icon with glow */
.ts-icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 2px;
}

.ts-icon-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.3;
  transition: opacity 0.25s;
}

.ts-item:hover .ts-icon-glow {
  opacity: 0.55;
}

.ts-red .ts-icon-glow {
  background: #ec2127;
}

.ts-gold .ts-icon-glow {
  background: #f59e0b;
}

.ts-teal .ts-icon-glow {
  background: #0891b2;
}

.ts-blue .ts-icon-glow {
  background: #4267d4;
}

.ts-icon-ring {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  z-index: 1;
}

.ts-red .ts-icon-ring {
  background: rgba(236, 33, 39, 0.18);
  color: #ff7b7e;
}

.ts-gold .ts-icon-ring {
  background: rgba(245, 158, 11, 0.18);
  color: #fcd34d;
}

.ts-teal .ts-icon-ring {
  background: rgba(8, 145, 178, 0.18);
  color: #22d3ee;
}

.ts-blue .ts-icon-ring {
  background: rgba(66, 103, 212, 0.18);
  color: #7db8f7;
}

.ts-item strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}

.ts-red strong {
  color: #ff7b7e;
}

.ts-gold strong {
  color: #fcd34d;
}

.ts-teal strong {
  color: #22d3ee;
}

.ts-blue strong {
  color: #7db8f7;
}

.ts-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.60);
  letter-spacing: 0.3px;
}

.ts-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  margin-top: 2px;
  letter-spacing: 0.3px;
}

.ts-red .ts-badge {
  background: rgba(236, 33, 39, 0.15);
  color: #ff8a8d;
  border: 1px solid rgba(236, 33, 39, 0.25);
}

.ts-gold .ts-badge {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.ts-teal .ts-badge {
  background: rgba(8, 145, 178, 0.15);
  color: #22d3ee;
  border: 1px solid rgba(8, 145, 178, 0.25);
}

.ts-blue .ts-badge {
  background: rgba(66, 103, 212, 0.15);
  color: #7db8f7;
  border: 1px solid rgba(66, 103, 212, 0.25);
}

.ts-badge i {
  font-size: 0.62rem;
}

@media (max-width: 760px) {
  .team-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .team-text {
    text-align: center;
  }

  .team-text .divider {
    margin: 12px auto;
  }

  .team-trust-row {
    justify-content: center;
  }

  .team-desc {
    font-size: 0.88rem;
  }
}

/* ── INDIA MBBS FACTS ── */
#india-mbbs {
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

#india-mbbs .section-title,
#india-mbbs .section-title span {
  color: var(--white);
}

#india-mbbs .section-title span {
  color: var(--gold);
}

#india-mbbs .divider {
  background: var(--gold);
  opacity: 0.6;
}

/* Decorative blobs */
.imbbs-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.imbbs-blob-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.22) 0%, transparent 70%);
  top: -100px;
  left: -120px;
}

.imbbs-blob-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201, 153, 0, 0.16) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
}

/* Tag pill */
.imbbs-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 153, 0, 0.15);
  border: 1px solid rgba(201, 153, 0, 0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* Two-column layout */
.india-mbbs-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Numbered facts (left column) ── */
.india-mbbs-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.imbbs-fact {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 32px;
}

.imbbs-fact:last-of-type {
  padding-bottom: 0;
}

/* Vertical connector line */
.imbbs-fact::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(201, 153, 0, 0.4), transparent);
}

.imbbs-fact:last-of-type::before {
  display: none;
}

.imbbs-fact-num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a07800);
  color: #0a1628;
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 153, 0, 0.3);
  position: relative;
  z-index: 1;
}

.imbbs-fact-body {
  flex: 1;
  padding-top: 4px;
}

.imbbs-fact-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
}

.imbbs-fact-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}

.imbbs-cta {
  margin-top: 36px;
  align-self: flex-start;
}

/* ── Stat cards (right column) ── */
.india-mbbs-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ims-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.ims-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.ims-total .ims-icon-wrap {
  background: rgba(0, 86, 179, 0.35);
  color: #6eb3ff;
}

.ims-govt .ims-icon-wrap {
  background: rgba(39, 174, 96, 0.25);
  color: #5de89a;
}

.ims-pvt .ims-icon-wrap {
  background: rgba(231, 76, 60, 0.25);
  color: #ff8f83;
}

.ims-neet .ims-icon-wrap {
  background: rgba(142, 68, 173, 0.25);
  color: #cc9dff;
}

.ims-content {
  flex: 1;
}

.ims-content strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4px;
}

.ims-total .ims-content strong {
  color: #6eb3ff;
}

.ims-govt .ims-content strong {
  color: #5de89a;
}

.ims-pvt .ims-content strong {
  color: #ff8f83;
}

.ims-neet .ims-content strong {
  color: #cc9dff;
}

.ims-content span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.35;
  display: block;
}

/* Progress bar at bottom of each card */
.ims-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 16px 16px;
}

.ims-bar-fill {
  height: 100%;
  border-radius: inherit;
  transition: width 1s ease;
}

.ims-total .ims-bar-fill {
  background: #6eb3ff;
}

.ims-govt .ims-bar-fill {
  background: #5de89a;
}

.ims-pvt .ims-bar-fill {
  background: #ff8f83;
}

.ims-neet .ims-bar-fill {
  background: #cc9dff;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .india-mbbs-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .imbbs-fact-num {
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
  }

  .imbbs-fact-body h4 {
    font-size: 0.95rem;
  }

  .imbbs-fact-body p {
    font-size: 0.83rem;
  }

  .ims-card {
    padding: 16px 16px;
    gap: 14px;
  }

  .ims-icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .ims-content strong {
    font-size: 1.3rem;
  }

  .ims-content span {
    font-size: 0.76rem;
  }
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: #f8f9fc;
  padding-top: 52px;
  padding-bottom: 52px;
}

/* Google rating box */
.testi-rating-box {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 12px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  margin: 16px auto 28px;
}

.trb-logo {
  font-size: 1.1rem;
  color: #4285F4;
}

.trb-score {
  font-size: 2rem;
  font-weight: 900;
  color: #202124;
  line-height: 1;
}

.trb-stars {
  color: #FBBC04;
  font-size: 0.85rem;
  display: flex;
  gap: 2px;
}

.trb-count {
  font-size: 0.68rem;
  color: #70757a;
  font-weight: 500;
}

/* Slider wrapper */
.testi-slider-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.testi-track {
  display: flex;
  gap: 16px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Google-style card */
.testi-card {
  background: var(--white);
  border: 1px solid #e8eaed;
  border-radius: 14px;
  padding: 20px 20px 16px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 calc(33.333% - 11px);
  min-width: calc(33.333% - 11px);
  transition: box-shadow 0.22s, transform 0.22s;
  cursor: default;
}

.testi-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
  transform: translateY(-2px);
}

/* Card top row */
.testi-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.testi-avatar-wrap {
  flex-shrink: 0;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #EA4335;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-av-blue {
  background: #4285F4;
}

.testi-av-green {
  background: #34A853;
}

.testi-av-orange {
  background: #FA7B17;
}

.testi-av-purple {
  background: #a142f4;
}

.testi-meta {
  flex: 1;
  min-width: 0;
}

.testi-meta strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testi-sub {
  display: block;
  font-size: 0.72rem;
  color: #70757a;
  margin-bottom: 4px;
}

.testi-stars {
  color: #FBBC04;
  font-size: 0.75rem;
  display: flex;
  gap: 1px;
}

.testi-g-icon {
  font-size: 1.1rem;
  color: #4285F4;
  flex-shrink: 0;
  margin-top: 2px;
}

.testi-text {
  font-size: 0.85rem;
  color: #3c4043;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}


/* Arrows */
.testi-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #dadce0;
  background: var(--white);
  color: #3c4043;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.10);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.testi-arrow:hover {
  background: #f1f3f4;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  color: var(--primary);
}

.testi-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dadce0;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s;
  border: none;
  padding: 0;
}

.testi-dot.active {
  background: #4285F4;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 860px) {
  .testi-card {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }

  .testi-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .testi-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .testi-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
}

/* ── FAQ ── */
#faq {
  background: var(--white);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(12, 30, 94, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open {
  box-shadow: 0 6px 24px rgba(12, 30, 94, 0.1);
}

.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--primary);
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--light);
}

.faq-item.open .faq-q {
  background: var(--primary);
  color: var(--white);
}

.faq-item.open .faq-q i {
  color: var(--gold);
  transform: rotate(180deg);
}

.faq-q i {
  transition: transform 0.3s;
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 20px 24px;
}

.faq-a p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

/* ── WHY CHOOSE US ── */
#why {
  background: linear-gradient(150deg, #060d1c 0%, #0c1e5e 55%, #091540 100%);
  position: relative;
  overflow: hidden;
  padding-top: 52px;
  padding-bottom: 52px;
}

.why-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.why-blob-1 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(236, 33, 39, 0.13) 0%, transparent 70%);
}

.why-blob-2 {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: -70px;
  background: radial-gradient(circle, rgba(255, 200, 0, 0.08) 0%, transparent 70%);
}

.why-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(255, 200, 0, 0.12);
  border: 1px solid rgba(255, 200, 0, 0.28);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin: 0 auto 14px;
  width: fit-content;
  position: relative;
  z-index: 1;
}

#why .section-title {
  color: var(--white);
  position: relative;
  z-index: 1;
}

#why .section-title span {
  color: var(--gold);
}

#why .divider {
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative;
  z-index: 1;
}

.why-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  margin: 0 auto 28px;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, background 0.22s, box-shadow 0.22s;
  cursor: default;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.22s;
}

.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.why-card:hover::after {
  opacity: 1;
}

/* Icon colours */
.why-icon-wrap {
  position: relative;
  width: 46px;
  height: 46px;
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.wic-red {
  background: linear-gradient(135deg, #ec2127, #ff6b6e);
}

.wic-blue {
  background: linear-gradient(135deg, #1e3a8a, #4267d4);
}

.wic-teal {
  background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.wic-gold {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.wic-purple {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.wic-green {
  background: linear-gradient(135deg, #15803d, #22c55e);
}

/* Bottom gold line per colour */
.why-card:nth-child(1)::after,
.why-card:nth-child(8)::after {
  background: linear-gradient(90deg, #ec2127, transparent);
}

.why-card:nth-child(2)::after,
.why-card:nth-child(7)::after {
  background: linear-gradient(90deg, #4267d4, transparent);
}

.why-card:nth-child(3)::after {
  background: linear-gradient(90deg, #22d3ee, transparent);
}

.why-card:nth-child(4)::after {
  background: linear-gradient(90deg, #f59e0b, transparent);
}

.why-card:nth-child(5)::after {
  background: linear-gradient(90deg, #a78bfa, transparent);
}

.why-card:nth-child(6)::after {
  background: linear-gradient(90deg, #22c55e, transparent);
}

.why-body {
  flex: 1;
}

.why-body h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 5px;
  line-height: 1.3;
}

.why-card p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0;
}

.why-check {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.66rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.10);
  border: 1px solid rgba(74, 222, 128, 0.20);
  padding: 3px 9px;
  border-radius: 20px;
  width: fit-content;
}

.why-check i {
  font-size: 0.6rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), #b51519);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  opacity: 0.92;
}

.btn-call-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--accent);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 16px 42px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-call-white:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, #060d1c 0%, #020710 100%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(23, 98, 190, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px 36px;
  display: grid;
  grid-template-columns: 2fr 1.8fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.footer-cols-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-cols-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    gap: 20px;
    padding: 32px 14px 24px;
  }

  .footer-cols-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.footer-brand .fb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
  padding: 4px;
  flex-shrink: 0;
}

.footer-brand .fb-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.footer-brand .fb-tagline {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 340px;
}

.footer-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--accent), #b51519);
  color: var(--white);
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(255, 107, 43, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 22px;
}

.footer-contact-pill:hover {
  box-shadow: 0 10px 28px rgba(255, 107, 43, 0.55);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

/* ══════════════════════════════════════════════════
   MOBILE NAV — Hamburger + Drawer
══════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-hamburger:hover {
  background: rgba(12, 30, 94, 0.07);
}

.nav-hamburger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--primary);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

.nav-hamburger span:nth-child(3) {
  width: 65%;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  width: 100%;
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 28, 0.5);
  z-index: 997;
  backdrop-filter: blur(2px);
}

.mobile-overlay.open {
  display: block;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 85vw);
  height: 100dvh;
  background: #fff;
  z-index: 998;
  box-shadow: -8px 0 40px rgba(12, 30, 94, 0.22);
  transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 0 24px;
}

/* ── Drawer Header ── */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 28px;
  background: linear-gradient(135deg, #0c1e5e 0%, #1a3a8f 100%);
  position: relative;
  overflow: hidden;
}

.drawer-header::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  height: 32px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.drawer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.drawer-tagline {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* ── Nav Label ── */
.drawer-nav-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 24px 20px 8px;
}

/* ── Nav Links ── */
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 10px;
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  transition: background 0.18s, transform 0.18s;
}

.mob-link:hover {
  background: #f1f5f9;
  transform: translateX(3px);
}

.mob-icon-bubble {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.mib-blue {
  background: #e0eaff;
  color: #2563eb;
}

.mib-teal {
  background: #ccfbf1;
  color: #0d9488;
}

.mib-red {
  background: #ffe4e4;
  color: #dc2626;
}

.mib-gold {
  background: #fef3c7;
  color: #d97706;
}

.mib-purple {
  background: #ede9fe;
  color: #7c3aed;
}

.mib-green {
  background: #dcfce7;
  color: #16a34a;
}

.mob-link-text {
  flex: 1;
}

.mob-arrow {
  font-size: 0.6rem;
  color: #cbd5e1;
  transition: color 0.18s, transform 0.18s;
}

.mob-link:hover .mob-arrow {
  color: #94a3b8;
  transform: translateX(2px);
}

/* ── CTA Buttons ── */
.drawer-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 14px 0;
}

.mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 8px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  transition: transform 0.18s, box-shadow 0.18s;
}

.mob-cta:hover {
  transform: translateY(-2px);
}

.mob-cta-call {
  background: linear-gradient(135deg, #EC2127, #b50000);
  color: #fff;
  box-shadow: 0 4px 16px rgba(236, 33, 39, 0.3);
}

.mob-cta-call:hover {
  box-shadow: 0 8px 22px rgba(236, 33, 39, 0.45);
}

.mob-cta-wa {
  background: linear-gradient(135deg, #25d366, #1aa355);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.mob-cta-wa:hover {
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

/* ── Trust Strip ── */
.drawer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px 14px 0;
  padding: 12px 8px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.dt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  font-size: 0.6rem;
  font-weight: 700;
  color: #475569;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.dt-item i {
  font-size: 0.88rem;
  color: var(--primary);
}

.dt-sep {
  width: 1px;
  height: 26px;
  background: #e2e8f0;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-hamburger {
    display: flex;
  }
}

/* ══════════════════════════════════════════════════
   FULL MOBILE RESPONSIVE — 768px and below
══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Global */
  section {
    padding: 44px 16px;
  }

  .container {
    padding: 0;
  }

  .section-title {
    font-size: 1.4rem;
    text-align: center;
  }

  .divider {
    margin: 12px auto 20px;
  }

  /* Topbar */
  .topbar {
    padding: 6px 14px;
    font-size: 0.72rem;
  }

  /* Navbar */
  .navbar {
    padding: 0 16px;
    height: 60px;
  }

  .navbar-brand .brand-name {
    font-size: 1rem;
  }

  .navbar-brand .brand-sub {
    font-size: 0.58rem;
  }

  .navbar-brand .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .navbar-cta {
    padding: 10px 45px;
    font-size: 18px !important;
    gap: 6px;
  }

  .navbar-cta span.cta-text {
    display: none;
  }

  /* Hero */
  header {
    padding: 36px 18px 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hero-right {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-card {
    max-width: 100%;
    width: 100%;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-left .badge {
    font-size: 0.72rem;
    padding: 6px 14px;
  }

  header h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
    margin-bottom: 8px;
  }

  .hero-sub {
    font-size: 0.86rem;
    margin-bottom: 16px;
  }

  .hero-bullets {
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    max-width: 340px;
    margin-bottom: 20px;
  }

  .hero-bullets li {
    font-size: 0.82rem;
    gap: 8px;
  }

  .hero-bullets li .bullet-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .hero-btn-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
  }

  /* Body padding so fixed bar doesn't cover content */
  body {
    padding-bottom: 60px;
  }

  /* About */
  .about-header {
    text-align: center;
  }

  .about-lead {
    font-size: 0.88rem;
  }

  .about-highlight-card {
    padding: 16px 12px;
  }

  .about-highlight-card .ahc-num {
    font-size: 1.6rem;
  }

  .about-highlight-card .ahc-label {
    font-size: 0.75rem;
  }

  .about-sub-title {
    font-size: 1.05rem;
  }

  .about-desc {
    font-size: 0.86rem;
  }

  .about-points li {
    font-size: 0.84rem;
  }

  .about-img-wrap {
    display: none;
  }

  /* HOW TO GET section */
  .how-intro {
    font-size: 0.88rem;
    margin: 12px 0 28px;
    text-align: left;
  }

  .how-seat-banner {
    flex-direction: column;
    border-radius: 14px;
    margin-bottom: 24px;
  }

  .hsb-vs {
    padding: 6px 0;
    flex-direction: row;
  }

  .hsb-vs span {
    width: 34px;
    height: 34px;
    font-size: 0.6rem;
  }

  .hsb-item {
    padding: 22px 18px 18px;
    gap: 6px;
  }

  .hsb-pct {
    font-size: 2.4rem;
  }

  .hsb-label {
    font-size: 0.88rem;
  }

  .hsb-sub {
    font-size: 0.78rem;
  }

  .hsb-icon-ring {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .how-eligibility {
    padding: 14px 16px;
    gap: 12px;
    margin-bottom: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .he-title {
    font-size: 0.74rem;
  }

  .he-icon-wrap {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .he-criteria {
    gap: 8px;
  }

  .he-item {
    font-size: 0.78rem;
    padding: 4px 10px;
  }

  .he-result {
    font-size: 0.82rem;
    padding: 7px 16px;
    align-self: stretch;
    justify-content: center;
  }

  .how-steps {
    flex-direction: column;
    gap: 0;
  }

  .how-step {
    border-radius: 14px;
  }

  .hs-header {
    padding: 14px 16px 12px;
  }

  .hs-num-circle {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .hs-icon-box {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .hs-body {
    padding: 14px 16px 0;
    gap: 6px;
  }

  .hs-body h3 {
    font-size: 0.93rem;
  }

  .hs-body p {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .hs-chip {
    font-size: 0.7rem;
    padding: 4px 10px;
    margin-top: 6px;
    margin-bottom: 16px;
  }

  .hs-step-tag {
    font-size: 0.63rem;
  }

  .how-connector {
    padding: 4px 0 4px 16px;
    transform: rotate(90deg);
    font-size: 0.9rem;
  }

  .how-bottom {
    flex-direction: column;
    padding: 18px 16px;
    gap: 14px;
  }

  .how-bottom .btn-call {
    width: 100%;
    justify-content: center;
  }

  .how-note p {
    font-size: 0.84rem;
  }

  /* Promise */
  .promise-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .promise-card {
    padding: 22px 14px 18px;
  }

  .pc-icon-wrap {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }

  .promise-card h3 {
    font-size: 0.9rem;
  }

  .promise-card p {
    font-size: 0.8rem;
  }

  .promise-trust-strip {
    border-radius: 12px;
  }

  .pts-item {
    font-size: 0.82rem;
    padding: 14px 16px;
  }

  .promise-card p {
    font-size: 0.78rem;
  }

  /* Documents */
  .docs-intro {
    font-size: 0.88rem;
  }

  .docs-note {
    font-size: 0.82rem;
    padding: 12px 14px;
  }

  .docs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .docs-card {
    padding: 0;
  }

  .docs-card-head {
    font-size: 0.85rem;
    padding: 13px 16px;
  }

  .docs-list li {
    font-size: 0.83rem;
    padding: 7px 14px;
  }

  /* Team */
  .team-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-text {
    text-align: center;
  }

  .team-text .divider {
    margin: 12px auto;
  }

  .team-desc {
    font-size: 0.86rem;
  }

  .team-photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* India MBBS Facts */
  .india-mbbs-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .india-mbbs-text p {
    font-size: 0.86rem;
  }

  .india-mbbs-stats {
    gap: 10px;
  }

  .ims-card {
    padding: 18px 14px;
  }

  .ims-card strong {
    font-size: 1.5rem;
  }

  .ims-card span {
    font-size: 0.75rem;
  }

  .ims-card i {
    font-size: 1.2rem;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testi-card {
    padding: 18px 16px;
  }

  .testi-text {
    font-size: 0.84rem;
  }

  .testi-author strong {
    font-size: 0.88rem;
  }

  .testi-author span {
    font-size: 0.75rem;
  }

  /* FAQ */
  .faq-list {
    gap: 10px;
  }

  .faq-q {
    font-size: 0.88rem;
    padding: 14px 16px;
  }

  .faq-a p {
    font-size: 0.83rem;
    padding: 0 16px 14px;
  }

  /* Footer */
  .footer-inner {
    padding: 40px 16px 28px;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .footer-brand .fb-name {
    font-size: 1rem;
  }

  .footer-brand p {
    font-size: 0.82rem;
  }

  .footer-contact-pill {
    font-size: 0.88rem;
    padding: 10px 20px;
  }

  .footer-col h4 {
    font-size: 0.9rem;
  }

  .footer-col a,
  .footer-col li {
    font-size: 0.83rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 14px 16px;
  }

  /* Floating CTA / sticky bar if any */
  .btn-call {
    font-size: 0.88rem;
    padding: 12px 22px;
  }

  /* Fix hs5 section horizontal padding */
  .hs5 {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Enquiry form text alignment */
  .enquiry-card-header,
  .form-group,
  .form-group label,
  .form-row,
  .form-trust-badges {
    text-align: left;
  }
}

/* ══════════════════════════════════════════════════
   EXTRA SMALL — 480px and below
══════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Global ── */
  section {
    padding: 28px 12px;
  }

  .section-title {
    font-size: 1.12rem;
  }

  .divider {
    margin: 8px auto 14px;
  }

  /* ── Hero ── */
  header {
    padding: 24px 12px 60px;
  }

  header h1 {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 0.78rem;
  }

  .badge {
    font-size: 0.68rem;
    padding: 5px 12px;
  }

  .hero-elig-pills {
    gap: 6px;
  }

  .hep-item {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .hero-bullets li {
    font-size: 0.8rem;
  }

  .hsr-item strong {
    font-size: 1.1rem;
  }

  .hsr-item span {
    font-size: 0.6rem;
  }

  .hero-btn-group {
    gap: 8px;
  }

  .btn-call,
  .btn-outline {
    font-size: 0.82rem;
    padding: 10px 16px;
  }

  /* ── About highlights ── */
  .about-highlights {
    gap: 8px;
  }

  .about-hl-card {
    padding: 12px 14px;
    gap: 12px;
  }

  .ahl-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .ahl-body strong {
    font-size: 0.82rem;
  }

  .ahl-body span {
    font-size: 0.72rem;
  }

  .ahl-badge {
    font-size: 0.6rem;
    padding: 2px 8px;
  }

  /* ── About stats panel ── */
  .about-stats-panel {
    padding: 16px 14px 14px;
  }

  .asp-ring-wrap {
    width: 72px;
    height: 72px;
  }

  .asp-ring {
    width: 72px;
    height: 72px;
  }

  .asp-num {
    font-size: 1.5rem;
  }

  .asp-label {
    font-size: 0.78rem;
  }

  .asp-desc {
    font-size: 0.74rem;
  }

  .asp-grid {
    gap: 6px;
  }

  .asp-item {
    padding: 8px 6px;
  }

  .asp-item strong {
    font-size: 1rem;
  }

  .asp-item span {
    font-size: 0.58rem;
  }

  /* ── How to Get ── */
  #how {
    padding-top: 28px;
    padding-bottom: 28px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .how-intro {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }

  .hsb-item {
    padding: 14px 14px 12px;
    gap: 4px;
  }

  .hsb-pct {
    font-size: 1.8rem;
  }

  .hsb-label {
    font-size: 0.78rem;
  }

  .hsb-sub {
    font-size: 0.7rem;
  }

  .hsb-icon-ring {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .how-eligibility {
    padding: 10px 12px;
    gap: 10px;
    margin-bottom: 14px;
  }

  .he-item {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  .hs-header {
    padding: 10px 12px 8px;
  }

  .hs-num-circle {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .hs-icon-box {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .hs-body {
    padding: 10px 12px 0;
    gap: 4px;
  }

  .hs-body h3 {
    font-size: 0.82rem;
  }

  .hs-body p {
    font-size: 0.74rem;
    line-height: 1.55;
  }

  .hs-chip {
    font-size: 0.62rem;
    padding: 3px 8px;
  }

  .how-bottom {
    padding: 12px 14px;
    gap: 12px;
  }

  .how-note p {
    font-size: 0.76rem;
  }

  /* ── Colleges ── */
  .colleges-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .college-card {
    font-size: 0.72rem;
    padding: 8px 6px;
  }

  /* ── Team ── */
  #team {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .team-wrap {
    gap: 20px;
  }

  .team-desc {
    font-size: 0.8rem;
    line-height: 1.7;
  }

  .tt-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  .team-stats {
    gap: 8px;
  }

  .ts-item {
    padding: 14px 10px 12px;
    gap: 4px;

  }

  .ts-icon-ring,
  .ts-icon-wrap {
    width: 40px;
    height: 40px;
  }

  .ts-icon-ring {
    font-size: 1rem;
    border-radius: 12px;
  }

  .ts-item strong {
    font-size: 1.4rem;
  }

  .ts-item span {
    font-size: 0.68rem;
  }

  .ts-badge {
    font-size: 0.58rem;
    padding: 2px 7px;
  }

  /* ── Testimonials ── */
  #testimonials {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .testi-rating-box {
    padding: 8px 14px;
    gap: 10px;
  }

  .trb-score {
    font-size: 1.5rem;
  }

  .trb-count {
    font-size: 0.62rem;
  }

  .testi-card {
    padding: 14px 14px 12px;
    gap: 8px;
  }

  .testi-meta strong {
    font-size: 0.8rem;
  }

  .testi-sub {
    font-size: 0.66rem;
  }

  .testi-text {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .testi-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  /* ── Why Choose Us ── */
  #why {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .why-card {
    padding: 14px 10px 12px;
    gap: 7px;
  }

  .why-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  .why-icon-wrap {
    width: 36px;
    height: 36px;
  }

  .why-body h4 {
    font-size: 0.76rem;
  }

  .why-card p {
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .why-check {
    font-size: 0.58rem;
    padding: 2px 7px;
  }

  /* ── Promise ── */
  .promise-cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* ── FAQ ── */
  .faq-q {
    font-size: 0.82rem;
    padding: 12px 14px;
  }

  .faq-a p {
    font-size: 0.78rem;
  }

  /* ── Footer ── */
  .footer-inner {
    padding: 24px 12px 18px;
  }

  .footer-col h4 {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .footer-bottom {
    font-size: 0.7rem;
    padding: 12px 14px;
    gap: 6px;
  }

  .india-mbbs-stats {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-drawer {
    width: 92vw;
  }
}

/* ── Extra small phones (≤390px) ── */
@media (max-width: 390px) {

  section {
    padding: 22px 10px;
  }

  .section-title {
    font-size: 1rem;
  }

  header h1 {
    font-size: 1.28rem;
  }

  .btn-call,
  .btn-outline {
    font-size: 0.76rem;
    padding: 9px 13px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }

  .why-check {
    display: none;
  }

  .team-stats {
    grid-template-columns: 1fr 1fr;
  }

  .testi-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 3px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-col ul li a i {
  color: var(--gold);
  font-size: 0.72rem;
  width: 12px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-col ul li a:hover i {
  transform: translateX(3px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item .ci-icon {
  width: 36px;
  height: 36px;
  background: rgba(236, 33, 39, 0.1);
  border: 1px solid rgba(236, 33, 39, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-item strong {
  color: var(--white);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin: 0 32px;
  position: relative;
  z-index: 1;
}

.footer-bottom {
  padding: 20px 32px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.32);
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(236, 33, 39, 0.1);
  color: var(--gold);
  border: 1px solid rgba(236, 33, 39, 0.2);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════
   FIXED WHATSAPP BUTTON
══════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 995;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #1aa355);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* On mobile, lift above the call bar */
@media (max-width: 768px) {
  .wa-float {
    bottom: 76px;
    left: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════════════════
   FIXED BOTTOM CALL BAR — mobile only
══════════════════════════════════════════════════ */
.mob-call-bar {
  display: none;
}

@media (max-width: 768px) {
  .mob-call-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    height: 60px;
    box-shadow: 0 -4px 24px rgba(12, 30, 94, 0.18);
  }

  .mob-call-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), #b51519);
    color: var(--white);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mob-call-btn i {
    font-size: 1rem;
    animation: ring 1.8s infinite;
  }

  .mob-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 110px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #25d366, #1aa355);
    color: var(--white);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
  }

  .mob-wa-btn i {
    font-size: 1.1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HOW TO GET — V2  (Zigzag Timeline Redesign)
   ═══════════════════════════════════════════════════════════════ */

.how-v2 {
  position: relative;
  background: linear-gradient(160deg, #07112b 0%, #0e1f50 40%, #0a1635 100%);
  padding: 90px 0 80px;
  overflow: hidden;
}

.how2-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.how2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.how2-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(23, 98, 190, 0.25) 0%, transparent 70%);
  top: -120px;
  left: -100px;
}

.how2-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 33, 39, 0.15) 0%, transparent 70%);
  bottom: 0;
  right: -80px;
}

.how2-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.how2-header {
  text-align: center;
  margin-bottom: 56px;
}

.how2-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.how2-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5c842;
  box-shadow: 0 0 8px #f5c842;
  animation: how2-pulse 1.6s ease-in-out infinite;
}

@keyframes how2-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.how2-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.how2-gradient-text {
  background: linear-gradient(90deg, #f5c842 0%, #EC2127 60%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how2-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.how2-subtitle strong {
  color: rgba(255, 255, 255, 0.9);
}

/* Arc widget */
.how2-arc-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.how2-arc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  min-width: 200px;
  position: relative;
}

.how2-arc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f5c842, #EC2127);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.how2-arc-pct {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.how2-arc-pct span {
  font-size: 1.4rem;
}

.how2-arc-muted {
  color: rgba(255, 255, 255, 0.35);
}

.how2-arc-gold {
  background: linear-gradient(90deg, #f5c842, #EC2127);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how2-arc-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.how2-arc-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.how2-arc-sub i {
  font-size: 0.7rem;
}

.how2-arc-right .how2-arc-sub {
  color: rgba(100, 220, 100, 0.8);
}

.how2-arc-right .how2-arc-sub i {
  color: #4ade80;
}

.how2-arc-center {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 24px rgba(245, 200, 66, 0.3));
}

.how2-donut {
  width: 160px;
  height: 160px;
}

.how2-donut-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.how2-donut-pct {
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(90deg, #f5c842, #EC2127);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.how2-donut-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Eligibility ribbon */
.how2-elig-ribbon {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px 28px;
  margin-bottom: 70px;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
  justify-content: center;
}

.how2-elig-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.how2-elig-pills {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.how2-elig-pill {
  display: flex;
  align-items: center;
  gap: 10px;
}

.how2-ep-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(23, 98, 190, 0.3);
  border: 1px solid rgba(23, 98, 190, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7bc0ff;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.how2-elig-pill div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.how2-elig-pill strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.how2-elig-pill span {
  font-size: 0.71rem;
  color: rgba(255, 255, 255, 0.4);
}

.how2-elig-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

.how2-elig-result {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(22, 163, 74, 0.1));
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.how2-elig-result i {
  font-size: 0.9rem;
}

/* Timeline grid */
.how2-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  grid-template-rows: repeat(4, auto);
  gap: 0;
  margin-bottom: 60px;
}

.how2-spine {
  grid-column: 2;
  grid-row: 1 / span 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 20px 0;
}

.how2-spine-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(23, 98, 190, 0.6) 10%, #1762BE 30%, #f5c842 50%, #EC2127 70%, rgba(236, 33, 39, 0.3) 90%, transparent 100%);
}

.how2-spine-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 900;
  color: #fff;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.how2-sn-1 {
  background: linear-gradient(135deg, #1762BE, #2d8ef0);
  box-shadow: 0 0 0 4px rgba(23, 98, 190, 0.2), 0 0 20px rgba(23, 98, 190, 0.5);
  margin-top: 20px;
  margin-bottom: auto;
}

.how2-sn-2 {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.2), 0 0 20px rgba(13, 148, 136, 0.5);
  margin: auto 0;
}

.how2-sn-3 {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2), 0 0 20px rgba(124, 58, 237, 0.5);
  margin: auto 0;
}

.how2-sn-4 {
  background: linear-gradient(135deg, #d97706, #f5c842);
  box-shadow: 0 0 0 4px rgba(245, 200, 66, 0.2), 0 0 20px rgba(245, 200, 66, 0.5);
  margin: auto 0 20px;
}

.how2-step {
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.how2-step-left {
  grid-column: 1;
  justify-content: flex-end;
  padding-right: 40px;
}

.how2-step-right {
  grid-column: 3;
  justify-content: flex-start;
  padding-left: 40px;
}

.how2-s1 {
  grid-row: 1;
}

.how2-s2 {
  grid-row: 2;
}

.how2-s3 {
  grid-row: 3;
}

.how2-s4 {
  grid-row: 4;
}

.how2-step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  max-width: 420px;
  width: 100%;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.how2-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.how2-card-highlight {
  border-color: rgba(245, 200, 66, 0.25);
  box-shadow: 0 8px 40px rgba(245, 200, 66, 0.1);
}

.how2-card-hl-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(90deg, #f5c842, #EC2127);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 3;
}

.how2-sc-accent {
  height: 4px;
  width: 100%;
}

.how2-acc-blue {
  background: linear-gradient(90deg, #1762BE, #2d8ef0);
}

.how2-acc-teal {
  background: linear-gradient(90deg, #0d9488, #2dd4bf);
}

.how2-acc-purple {
  background: linear-gradient(90deg, #7c3aed, #c084fc);
}

.how2-acc-gold {
  background: linear-gradient(90deg, #f5c842, #EC2127);
}

.how2-sc-inner {
  padding: 24px 28px 26px;
}

.how2-sc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.how2-sc-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}

.how2-si-blue {
  background: linear-gradient(135deg, #1762BE, #2d8ef0);
  box-shadow: 0 8px 24px rgba(23, 98, 190, 0.4);
}

.how2-si-teal {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.how2-si-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.how2-si-gold {
  background: linear-gradient(135deg, #d97706, #f5c842);
  box-shadow: 0 8px 24px rgba(245, 200, 66, 0.4);
}

.how2-si-glow {
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  opacity: 0.3;
  animation: how2-glow 2.5s ease-in-out infinite;
}

.how2-si-blue .how2-si-glow {
  background: radial-gradient(circle, #2d8ef0, transparent);
}

.how2-si-teal .how2-si-glow {
  background: radial-gradient(circle, #14b8a6, transparent);
}

.how2-si-purple .how2-si-glow {
  background: radial-gradient(circle, #a855f7, transparent);
}

.how2-si-gold .how2-si-glow {
  background: radial-gradient(circle, #f5c842, transparent);
}

@keyframes how2-glow {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.15);
  }
}

.how2-sc-num-bg {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: -2px;
  user-select: none;
}

.how2-sc-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  background: rgba(23, 98, 190, 0.2);
  color: #7bc0ff;
  border: 1px solid rgba(23, 98, 190, 0.3);
}

.how2-tag-teal {
  background: rgba(13, 148, 136, 0.2);
  color: #5eead4;
  border-color: rgba(13, 148, 136, 0.3);
}

.how2-tag-purple {
  background: rgba(124, 58, 237, 0.2);
  color: #c084fc;
  border-color: rgba(124, 58, 237, 0.3);
}

.how2-tag-gold {
  background: rgba(245, 200, 66, 0.15);
  color: #fcd34d;
  border-color: rgba(245, 200, 66, 0.3);
}

.how2-sc-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.how2-sc-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  margin-bottom: 16px;
}

.how2-sc-desc strong {
  color: rgba(255, 255, 255, 0.85);
}

.how2-sc-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.how2-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.how2-chip i {
  font-size: 0.7rem;
}

.how2-chip-blue {
  background: rgba(23, 98, 190, 0.25);
  color: #93c5fd;
  border: 1px solid rgba(23, 98, 190, 0.4);
}

.how2-chip-teal {
  background: rgba(13, 148, 136, 0.25);
  color: #5eead4;
  border: 1px solid rgba(13, 148, 136, 0.4);
}

.how2-chip-purple {
  background: rgba(124, 58, 237, 0.25);
  color: #c084fc;
  border: 1px solid rgba(124, 58, 237, 0.4);
}

.how2-chip-gold {
  background: rgba(245, 200, 66, 0.2);
  color: #fcd34d;
  border: 1px solid rgba(245, 200, 66, 0.35);
}

.how2-chip-outline {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.how2-sc-connector {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
}

.how2-conn-right {
  right: -14px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 14px solid rgba(255, 255, 255, 0.07);
}

.how2-conn-left {
  left: -14px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 14px solid rgba(255, 255, 255, 0.07);
}

/* Success strip */
.how2-success-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 36px;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
}

.how2-ss-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.how2-ss-item i {
  font-size: 1.4rem;
  color: #f5c842;
  filter: drop-shadow(0 0 8px rgba(245, 200, 66, 0.5));
}

.how2-ss-item div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.how2-ss-item strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.how2-ss-item span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.how2-ss-div {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
}

.how2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #1762BE 0%, #EC2127 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(236, 33, 39, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how2-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(236, 33, 39, 0.5);
}

.how2-ss-cta {
  margin-left: auto;
}

/* Responsive */
@media (max-width:900px) {
  .how2-timeline {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .how2-spine {
    display: none;
  }

  .how2-step-left,
  .how2-step-right {
    grid-column: 1;
    justify-content: center;
    padding: 10px 0;
  }

  .how2-s1 {
    grid-row: 1;
  }

  .how2-s2 {
    grid-row: 2;
  }

  .how2-s3 {
    grid-row: 3;
  }

  .how2-s4 {
    grid-row: 4;
  }

  .how2-step-card {
    max-width: 100%;
  }

  .how2-conn-right,
  .how2-conn-left {
    display: none;
  }

  .how2-success-strip {
    padding: 20px;
    gap: 16px;
  }

  .how2-ss-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .how2-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .how2-ss-div {
    display: none;
  }
}

@media (max-width:640px) {
  .how-v2 {
    padding: 60px 0;
  }

  .how2-arc-wrap {
    gap: 16px;
  }

  .how2-arc-card {
    min-width: 140px;
    padding: 18px 20px;
  }

  .how2-arc-pct {
    font-size: 2.2rem;
  }

  .how2-elig-ribbon {
    padding: 16px 18px;
    gap: 12px;
  }

  .how2-elig-sep,
  .how2-elig-label {
    display: none;
  }

  .how2-sc-inner {
    padding: 20px 20px 22px;
  }

  .how2-sc-num-bg {
    font-size: 3rem;
  }
}


/* ═══════════════════════════════════════
   HOW TO GET — V3 (Simple & Clean)
   ═══════════════════════════════════════ */

.how3 {
  background: #f7f9ff;
  padding: 50px 0 48px;
}

.how3-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(23, 98, 190, 0.15);
}

.how3-intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 580px;
  margin: 0 auto 24px;
}

/* Seat split bar */
.how3-split {
  background: #fff;
  border: 1px solid #e5eaf5;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 18px;
}

.how3-split-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.how3-split-label {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  min-width: 180px;
}

.how3-label-red {
  color: var(--accent);
  text-align: right;
  min-width: 200px;
}

.how3-label-red i {
  color: #f5a623;
  margin-left: 4px;
  font-size: 0.7rem;
}

.how3-split-track {
  flex: 1;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  height: 28px;
  min-width: 180px;
}

.how3-split-fill {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.how3-fill-blue {
  background: #1762BE;
}

.how3-fill-red {
  background: var(--accent);
}

.how3-split-note {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

/* Eligibility pills */
.how3-elig {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid #e5eaf5;
  border-radius: 10px;
  padding: 12px 16px;
}

.how3-elig-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 4px;
}

.how3-elig-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(23, 98, 190, 0.15);
}

.how3-elig-pill i {
  font-size: 0.7rem;
  color: #22c55e;
}

/* Steps grid */
.how3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.how3-card {
  background: #fff;
  border: 1px solid #e5eaf5;
  border-radius: 14px;
  padding: 20px 20px 18px;
  position: relative;
  border-top-width: 3px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.how3-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.how3-card-blue {
  border-top-color: #1762BE;
}

.how3-card-green {
  border-top-color: #16a34a;
}

.how3-card-purple {
  border-top-color: #7c3aed;
}

.how3-card-red {
  border-top-color: var(--accent);
}

.how3-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  opacity: 0.08;
  color: var(--text);
  position: absolute;
  top: 14px;
  right: 16px;
}

.how3-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 12px;
}

.how3-card-blue .how3-icon {
  background: #1762BE;
}

.how3-card-green .how3-icon {
  background: #16a34a;
}

.how3-card-purple .how3-icon {
  background: #7c3aed;
}

.how3-card-red .how3-icon {
  background: var(--accent);
}

.how3-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.how3-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.how3-card p strong {
  color: var(--text);
}

.how3-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(23, 98, 190, 0.08);
  color: #1762BE;
  border: 1px solid rgba(23, 98, 190, 0.15);
}

.how3-badge-green {
  background: rgba(22, 163, 74, 0.08);
  color: #16a34a;
  border-color: rgba(22, 163, 74, 0.2);
}

.how3-badge-purple {
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.2);
}

.how3-badge-red {
  background: rgba(236, 33, 39, 0.07);
  color: var(--accent);
  border-color: rgba(236, 33, 39, 0.15);
}

/* Bottom */
.how3-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--light);
  border: 1px solid rgba(23, 98, 190, 0.15);
  border-radius: 10px;
  padding: 14px 20px;
  flex-wrap: wrap;
}

.how3-bottom p {
  font-size: 0.86rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  flex: 1;
}

.how3-bottom p i {
  color: var(--primary);
  flex-shrink: 0;
}

.how3-bottom p strong {
  color: var(--text);
}

@media (max-width: 640px) {
  .how3 {
    padding: 36px 0 36px;
  }

  .how3-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .how3-split-label {
    min-width: unset;
  }

  .how3-label-red {
    text-align: left;
  }

  .how3-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .how3-bottom .btn-call {
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════
   HOW TO GET — V4 (Enhanced Clean Design)
   ═══════════════════════════════════════ */

.how4 {
  background: #EBF3FF;
  padding: 60px 0 56px;
  position: relative;
}

.how4 .container {
  padding: 0 20px;
}

.how4-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(23, 98, 190, 0.18);
  box-shadow: 0 2px 8px rgba(23, 98, 190, 0.07);
}

.how4-intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.how4-intro strong {
  color: var(--primary);
}

/* ── Seat Split Banner ── */
.how4-banner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(23, 98, 190, 0.10);
  margin-bottom: 18px;
  border: 1px solid #dde8f8;
}

.how4-ban-side {
  padding: 24px 28px;
  position: relative;
}

.how4-ban-muted {
  background: #f7f9ff;
  border-right: 1px solid #dde8f8;
}

.how4-ban-hot {
  background: #fff8f8;
}

.how4-ban-vs {
  width: 52px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 900;
  color: #fff;
  background: var(--primary);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.how4-opp-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(90deg, #EC2127, #d01419);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.how4-ban-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(23, 98, 190, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 10px;
}

.how4-icon-gold {
  background: rgba(236, 33, 39, 0.1);
  color: var(--accent);
}

.how4-ban-pct {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 4px;
}

.how4-pct-gold {
  color: var(--accent);
}

.how4-ban-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.how4-ban-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.how4-bar-wrap {
  height: 6px;
  background: #e8edf8;
  border-radius: 6px;
  overflow: hidden;
}

.how4-bar {
  height: 100%;
  border-radius: 6px;
  transition: width 0.6s ease;
}

/* ── Eligibility Row ── */
.how4-elig {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #dde8f8;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(23, 98, 190, 0.06);
}

.how4-elig-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.how4-elig-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.how4-elig-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.how4-ep {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(23, 98, 190, 0.15);
}

.how4-ep i {
  color: #22c55e;
  font-size: 0.72rem;
}

.how4-elig-result {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(22, 163, 74, 0.3);
}

/* ── Steps ── */
.how4-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.how4-step {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.how4-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72px;
  flex-shrink: 0;
}

.how4-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.how4-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  margin-top: 24px;
}

.how4-num-blue {
  background: linear-gradient(135deg, #1762BE, #2d8ef0);
}

.how4-num-teal {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.how4-num-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.how4-num-gold {
  background: linear-gradient(135deg, #EC2127, #d01419);
}

.how4-step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, #dde8f8 0%, #dde8f8 100%);
  margin: 8px 0;
  min-height: 20px;
}

.how4-step-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  margin: 10px 0;
  border: 1px solid #dde8f8;
  border-left-width: 4px;
  box-shadow: 0 2px 12px rgba(23, 98, 190, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.how4-step-card:hover {
  box-shadow: 0 8px 28px rgba(23, 98, 190, 0.13);
  transform: translateX(4px);
}

.how4-sc-blue {
  border-left-color: #1762BE;
}

.how4-sc-teal {
  border-left-color: #0d9488;
}

.how4-sc-purple {
  border-left-color: #7c3aed;
}

.how4-sc-gold {
  border-left-color: var(--accent);
}

.how4-sc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1762BE, #2d8ef0);
  box-shadow: 0 4px 12px rgba(23, 98, 190, 0.25);
}

.how4-ic-teal {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.how4-ic-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.how4-ic-gold {
  background: linear-gradient(135deg, #EC2127, #d01419);
  box-shadow: 0 4px 12px rgba(236, 33, 39, 0.25);
}

.how4-sc-body {
  flex: 1;
}

.how4-sc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--light);
  border: 1px solid rgba(23, 98, 190, 0.15);
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.how4-tag-teal {
  color: #0d9488;
  background: #f0fdfb;
  border-color: rgba(13, 148, 136, 0.2);
}

.how4-tag-purple {
  color: #7c3aed;
  background: #faf5ff;
  border-color: rgba(124, 58, 237, 0.2);
}

.how4-tag-gold {
  color: var(--accent);
  background: #fff5f5;
  border-color: rgba(236, 33, 39, 0.2);
}

.how4-sc-body h3 {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.how4-sc-body p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.how4-sc-body p strong {
  color: var(--text);
}

.how4-sc-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--light);
  border: 1px solid rgba(23, 98, 190, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
}

.how4-chip-teal {
  color: #0d9488;
  background: #f0fdfb;
  border-color: rgba(13, 148, 136, 0.2);
}

.how4-chip-purple {
  color: #7c3aed;
  background: #faf5ff;
  border-color: rgba(124, 58, 237, 0.2);
}

.how4-chip-gold {
  color: var(--accent);
  background: #fff5f5;
  border-color: rgba(236, 33, 39, 0.2);
}

/* ── Bottom Note ── */
.how4-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid #dde8f8;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 2px 10px rgba(23, 98, 190, 0.07);
  flex-wrap: wrap;
}

.how4-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

.how4-note i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.how4-note p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.how4-note p strong {
  color: var(--text);
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .how4 {
    padding: 40px 0 40px;
  }

  .how4 .container {
    padding: 0 16px;
  }

  .how4-banner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .how4-ban-muted {
    border-right: none;
    border-bottom: 1px solid #dde8f8;
  }

  .how4-ban-vs {
    width: 100%;
    height: 36px;
    writing-mode: horizontal-tb;
  }

  .how4-elig {
    gap: 8px;
  }

  .how4-elig-result {
    width: 100%;
    justify-content: center;
  }

  .how4-step-card {
    flex-direction: column;
    gap: 12px;
  }

  .how4-step-card:hover {
    transform: none;
  }

  .how4-step-left {
    width: 48px;
  }

  .how4-num {
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
  }

  .how4-bottom {
    flex-direction: column;
  }

  .how4-bottom .btn-call {
    width: 100%;
    justify-content: center;
  }
}


/* ── Steps: Horizontal Circle Row ── */
.how4-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 24px;
}

.how4-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.how4-circle-wrap {
  position: relative;
  margin-bottom: 16px;
}

.how4-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.how4-c-blue {
  background: linear-gradient(135deg, #1762BE, #2d8ef0);
  box-shadow: 0 6px 20px rgba(23, 98, 190, 0.35);
}

.how4-c-teal {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
}

.how4-c-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

.how4-c-red {
  background: linear-gradient(135deg, #EC2127, #d01419);
  box-shadow: 0 6px 20px rgba(236, 33, 39, 0.35);
}

.how4-circle-num {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1762BE;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #EBF3FF;
  z-index: 2;
}

.how4-cn-teal {
  background: #0d9488;
}

.how4-cn-purple {
  background: #7c3aed;
}

.how4-cn-red {
  background: #EC2127;
}

.how4-col-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 14px 14px;
  border: 1px solid #dde8f8;
  box-shadow: 0 2px 10px rgba(23, 98, 190, 0.07);
  width: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}

.how4-col-card:hover {
  box-shadow: 0 8px 28px rgba(23, 98, 190, 0.13);
  transform: translateY(-3px);
}

.how4-col-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 6px 0 6px;
  line-height: 1.3;
}

.how4-col-card p {
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.how4-col-card p strong {
  color: var(--text);
}

/* Arrow connector */
.how4-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 28px;
  color: #c0d0ea;
  font-size: 1.1rem;
  width: 36px;
  justify-content: center;
  flex-shrink: 0;
}

/* Mobile: stack to 2x2 then 1 col */
@media (max-width: 860px) {
  .how4-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .how4-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .how4-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


/* ═══════════════════════════════════════
   HOW TO GET — HG (Enhanced Final)
   ═══════════════════════════════════════ */

.hg {
  background: #fff;
  padding: 68px 0 60px;
  position: relative;
  overflow: hidden;
}

.hg-topband {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1762BE 0%, #2d8ef0 35%, #EC2127 70%, #ff6b35 100%);
}

/* Header */
.hg-head {
  text-align: center;
  margin-bottom: 32px;
}

.hg-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #EBF3FF;
  color: #1762BE;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
  border: 1px solid rgba(23, 98, 190, 0.18);
}

.hg-sub {
  color: #565656;
  font-size: 0.96rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.hg-sub strong {
  color: #1762BE;
}

/* Seat Split */
.hg-split {
  background: #f7f9ff;
  border: 1px solid #dde8f8;
  border-radius: 14px;
  padding: 18px 22px 14px;
  margin-bottom: 16px;
}

.hg-split-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.hg-sb-left,
.hg-sb-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
  min-width: 130px;
}

.hg-sb-right {
  text-align: right;
  align-items: flex-end;
}

.hg-sb-pct {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: #1762BE;
}

.hg-pct-red {
  color: #EC2127;
}

.hg-sb-lbl {
  font-size: 0.75rem;
  color: #565656;
  font-weight: 500;
}

.hg-sb-track {
  flex: 1;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  height: 42px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.hg-sb-fill {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.6s ease;
}

.hg-fill-blue {
  background: linear-gradient(90deg, #1762BE, #2d8ef0);
}

.hg-fill-red {
  background: linear-gradient(90deg, #EC2127, #d01419);
  position: relative;
  overflow: hidden;
}

.hg-sb-inner-lbl {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 8px;
  letter-spacing: 0.03em;
}

.hg-split-note {
  font-size: 0.81rem;
  color: #565656;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.hg-split-note i {
  color: #1762BE;
  flex-shrink: 0;
}

.hg-split-note strong {
  color: #202021;
}

/* Eligibility */
.hg-elig {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #dde8f8;
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(23, 98, 190, 0.06);
}

.hg-elig-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #202021;
  white-space: nowrap;
}

.hg-elig-head i {
  color: #1762BE;
}

.hg-elig-items {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}

.hg-ei {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #EBF3FF;
  color: #1762BE;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(23, 98, 190, 0.15);
}

.hg-ei i {
  color: #16a34a;
  font-size: 0.72rem;
}

.hg-elig-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(22, 163, 74, 0.28);
  margin-left: auto;
}

/* ── Steps: one row ── */
.hg-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-bottom: 28px;
}

/* horizontal connector line through circle centers */
.hg-line {
  position: absolute;
  top: 44px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 3px;
  background: linear-gradient(90deg, #1762BE 0%, #0d9488 33%, #7c3aed 66%, #EC2127 100%);
  border-radius: 3px;
  z-index: 0;
}

.hg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Circle */
.hg-circ {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  margin-bottom: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hg-step:hover .hg-circ {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.hg-circ-1 {
  background: linear-gradient(145deg, #1762BE, #2d8ef0);
}

.hg-circ-2 {
  background: linear-gradient(145deg, #0d9488, #14b8a6);
}

.hg-circ-3 {
  background: linear-gradient(145deg, #7c3aed, #a855f7);
}

.hg-circ-4 {
  background: linear-gradient(145deg, #EC2127, #ff5252);
}

.hg-circ i {
  font-size: 1.5rem;
  line-height: 1;
}

.hg-step-no {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  opacity: 0.85;
  line-height: 1;
}

/* Card */
.hg-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2eaf6;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 3px 14px rgba(23, 98, 190, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hg-step:hover .hg-card {
  box-shadow: 0 10px 32px rgba(23, 98, 190, 0.14);
  transform: translateY(-2px);
}

.hg-card-top {
  height: 4px;
}

.hg-card-1 .hg-card-top {
  background: linear-gradient(90deg, #1762BE, #2d8ef0);
}

.hg-card-2 .hg-card-top {
  background: linear-gradient(90deg, #0d9488, #14b8a6);
}

.hg-card-3 .hg-card-top {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.hg-card-4 .hg-card-top {
  background: linear-gradient(90deg, #EC2127, #ff5252);
}

.hg-card-body {
  padding: 16px 16px 14px;
  text-align: center;
}

.hg-card-body h3 {
  font-size: 0.94rem;
  font-weight: 700;
  color: #202021;
  margin-bottom: 7px;
  line-height: 1.3;
}

.hg-card-body p {
  font-size: 0.8rem;
  color: #565656;
  line-height: 1.6;
  margin-bottom: 10px;
}

.hg-card-body p strong {
  color: #202021;
}

.hg-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.hg-chip-1 {
  background: #EBF3FF;
  color: #1762BE;
  border: 1px solid rgba(23, 98, 190, 0.18);
}

.hg-chip-2 {
  background: #f0fdfb;
  color: #0d9488;
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.hg-chip-3 {
  background: #faf5ff;
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.hg-chip-4 {
  background: #fff5f5;
  color: #EC2127;
  border: 1px solid rgba(236, 33, 39, 0.18);
}

/* Bottom */
.hg-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #EBF3FF;
  border: 1px solid rgba(23, 98, 190, 0.15);
  border-radius: 12px;
  padding: 16px 22px;
  flex-wrap: wrap;
}

.hg-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

.hg-note i {
  color: #1762BE;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.hg-note p {
  margin: 0;
  font-size: 0.85rem;
  color: #565656;
  line-height: 1.6;
}

.hg-note p strong {
  color: #202021;
}

/* Responsive */
@media (max-width: 860px) {
  .hg-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hg-line {
    display: none;
  }
}

@media (max-width: 500px) {
  .hg {
    padding: 48px 0 44px;
  }

  .hg-steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hg-split-bar {
    flex-direction: column;
    gap: 10px;
  }

  .hg-sb-left,
  .hg-sb-right {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    white-space: normal;
    min-width: unset;
  }

  .hg-sb-right {
    text-align: left;
    align-items: center;
  }

  .hg-sb-track {
    width: 100%;
  }

  .hg-elig-ok {
    margin-left: 0;
  }

  .hg-bottom {
    flex-direction: column;
  }

  .hg-bottom .btn-call {
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════
   HOW TO GET — HS5 (Enhanced Circle Row)
   ═══════════════════════════════════════ */

.hs5 {
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
  padding: 64px 0 56px;
  position: relative;
}

.hs5-head {
  text-align: center;
  margin-bottom: 30px;
}

.hs5-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #1762BE;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(23, 98, 190, 0.3);
}

.hs5-intro {
  color: #565656;
  font-size: 0.97rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hs5-intro strong {
  color: #1762BE;
}

/* ── Seat Split ── */
@keyframes cardZoom {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 18px rgba(236, 33, 39, 0.12);
  }

  50% {
    transform: scale(1.028);
    box-shadow: 0 12px 36px rgba(236, 33, 39, 0.28);
  }
}

@keyframes vsPulseRing {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes vsGlow {

  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(23, 98, 190, 0.25),
      0 0 0 10px rgba(236, 33, 39, 0.10),
      0 6px 20px rgba(0, 0, 0, 0.22);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(23, 98, 190, 0.18),
      0 0 0 16px rgba(236, 33, 39, 0.07),
      0 8px 28px rgba(0, 0, 0, 0.28);
  }
}

.hs5-split {
  display: flex;
  gap: 20px;
  position: relative;
  align-items: stretch;
  margin-bottom: 18px;
}

.hs5-split-card {
  flex: 1;
  padding: 28px 28px 22px;
  position: relative;
  border-radius: 18px;
}

.hs5-sc-blue {
  background: #f4f8ff;
  border: 1px solid #dde8f8;
  box-shadow: 0 8px 32px rgba(23, 98, 190, 0.10);
  border-radius: 18px;
}

.hs5-sc-red {
  background: #fff8f8;
  border: 1px solid #ffd6d6;
  border-radius: 18px;
  animation: cardZoom 2.6s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
  z-index: 1;
}

.hs5-vs {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hs5-vs span {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1762BE 0%, #EC2127 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: vsGlow 2.6s ease-in-out infinite;
  flex-shrink: 0;
}

.hs5-vs span::before,
.hs5-vs span::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(23, 98, 190, 0.5);
  animation: vsPulseRing 2.6s ease-out infinite;
}

.hs5-vs span::after {
  border-color: rgba(236, 33, 39, 0.4);
  animation-delay: 1.3s;
}

.hs5-opp-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #EC2127;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hs5-sc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(23, 98, 190, 0.1);
  color: #1762BE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 10px;
}

.hs5-icon-red {
  background: rgba(236, 33, 39, 0.1);
  color: #EC2127;
}

.hs5-sc-pct {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: #1762BE;
  margin-bottom: 5px;
}

.hs5-pct-red {
  color: #EC2127;
}

.hs5-sc-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #202021;
  margin-bottom: 4px;
}

.hs5-sc-sub {
  font-size: 0.78rem;
  color: #565656;
  margin-bottom: 12px;
}

.hs5-sc-bar {
  height: 7px;
  background: #e0e9f8;
  border-radius: 6px;
  overflow: hidden;
}

.hs5-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #1762BE, #2d8ef0);
}

.hs5-bar-red {
  background: linear-gradient(90deg, #EC2127, #ff5252);
}

/* ── Eligibility ── */
.hs5-elig {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #dde8f8;
  border-left: 4px solid #1762BE;
  border-radius: 12px;
  padding: 13px 18px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(23, 98, 190, 0.07);
}

.hs5-elig-label {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 700;
  color: #202021;
}

.hs5-elig-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #1762BE;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.hs5-elig-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.hs5-ep {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #EBF3FF;
  color: #1762BE;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid rgba(23, 98, 190, 0.15);
}

.hs5-ep i {
  color: #16a34a;
  font-size: 0.72rem;
}

.hs5-elig-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.28);
  margin-left: auto;
}

/* ── Steps: circles in one row ── */
.hs5-steps-wrap {
  position: relative;
  margin-bottom: 30px;
}

/* Horizontal track line through circle centers */
.hs5-track {
  position: absolute;
  top: 48px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 4px;
  background: #e0eaf8;
  border-radius: 4px;
  z-index: 0;
}

.hs5-track-fill {
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #1762BE 0%, #0d9488 33%, #7c3aed 66%, #EC2127 100%);
}

.hs5-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.hs5-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Outer ring (glowing halo) */
.hs5-circ-outer {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
  flex-shrink: 0;
}

.hs5-co-1 {
  background: rgba(23, 98, 190, 0.12);
  box-shadow: 0 0 0 6px rgba(23, 98, 190, 0.07);
}

.hs5-co-2 {
  background: rgba(13, 148, 136, 0.12);
  box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.07);
}

.hs5-co-3 {
  background: rgba(124, 58, 237, 0.12);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.07);
}

.hs5-co-4 {
  background: rgba(236, 33, 39, 0.12);
  box-shadow: 0 0 0 6px rgba(236, 33, 39, 0.07);
}

/* Inner circle */
.hs5-circ {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  border: 4px solid #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hs5-step:hover .hs5-circ {
  transform: translateY(-5px) scale(1.07);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.hs5-c-1 {
  background: linear-gradient(145deg, #1762BE, #2d8ef0);
}

.hs5-c-2 {
  background: linear-gradient(145deg, #0d9488, #14b8a6);
}

.hs5-c-3 {
  background: linear-gradient(145deg, #7c3aed, #a855f7);
}

.hs5-c-4 {
  background: linear-gradient(145deg, #EC2127, #ff5252);
}

/* Step label */
.hs5-step-no {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 20px;
}

.hs5-sn-1 {
  background: rgba(23, 98, 190, 0.1);
  color: #1762BE;
}

.hs5-sn-2 {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

.hs5-sn-3 {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.hs5-sn-4 {
  background: rgba(236, 33, 39, 0.1);
  color: #EC2127;
}

/* Card */
.hs5-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2eaf6;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 4px 18px rgba(23, 98, 190, 0.08);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  text-align: center;
}

.hs5-step:hover .hs5-card {
  box-shadow: 0 12px 36px rgba(23, 98, 190, 0.14);
  transform: translateY(-3px);
}

.hs5-card-stripe {
  height: 5px;
  width: 100%;
}

.hs5-cs-1 {
  background: linear-gradient(90deg, #1762BE, #2d8ef0);
}

.hs5-cs-2 {
  background: linear-gradient(90deg, #0d9488, #14b8a6);
}

.hs5-cs-3 {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.hs5-cs-4 {
  background: linear-gradient(90deg, #EC2127, #ff5252);
}

.hs5-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #202021;
  margin: 14px 14px 7px;
  line-height: 1.3;
}

.hs5-card p {
  font-size: 0.8rem;
  color: #565656;
  line-height: 1.65;
  margin: 0 14px 12px;
}

.hs5-card p strong {
  color: #202021;
}

.hs5-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 0 14px 14px;
}

.hs5-chip-1 {
  background: #EBF3FF;
  color: #1762BE;
  border: 1px solid rgba(23, 98, 190, 0.18);
}

.hs5-chip-2 {
  background: #f0fdfb;
  color: #0d9488;
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.hs5-chip-3 {
  background: #faf5ff;
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.hs5-chip-4 {
  background: #fff5f5;
  color: #EC2127;
  border: 1px solid rgba(236, 33, 39, 0.18);
}

/* ── Bottom ── */
.hs5-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #EBF3FF;
  border: 1px solid rgba(23, 98, 190, 0.15);
  border-radius: 14px;
  padding: 18px 22px;
  flex-wrap: wrap;
}

.hs5-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

.hs5-note>i {
  color: #1762BE;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.hs5-note p {
  margin: 0;
  font-size: 0.85rem;
  color: #565656;
  line-height: 1.6;
}

.hs5-note p strong {
  color: #202021;
}

/* Responsive */
@media (max-width: 860px) {
  .hs5-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hs5-track {
    display: none;
  }

  .hs5-split {
    flex-direction: column;
    gap: 0;
  }

  .hs5-sc-blue {
    border-radius: 18px 18px 0 0;
  }

  .hs5-sc-red {
    border-radius: 0 0 18px 18px;
  }

  .hs5-vs {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    height: 72px;
    width: 100%;
    background: transparent;
  }

  .hs5-vs span {
    width: 52px;
    height: 52px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hs5 {
    padding: 44px 12px 40px;
  }

  .hs5-steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hs5-circ-outer {
    width: 76px;
    height: 76px;
  }

  .hs5-circ {
    width: 58px;
    height: 58px;
    font-size: 1.3rem;
  }

  .hs5-card h3 {
    font-size: 0.8rem;
  }

  .hs5-card p {
    font-size: 0.72rem;
  }

  .hs5-elig-ok {
    margin-left: 0;
  }

  .hs5-bottom {
    flex-direction: column;
  }

  .hs5-bottom .btn-call {
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════
   INDIA MBBS FACTS — V2 (Enhanced)
   ═══════════════════════════════════════ */

.imbbs-v2 {
  background: #fff;
  padding: 60px 0 56px;
  position: relative;
  overflow: hidden;
}

.imbbs-v2-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.45;
}

.imbbs-v2-bl1 {
  width: 380px;
  height: 380px;
  background: #ddeeff;
  top: -80px;
  left: -100px;
}

.imbbs-v2-bl2 {
  width: 280px;
  height: 280px;
  background: #fde8e8;
  bottom: -60px;
  right: -60px;
}

/* Tag */
.imbbs-v2-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(23, 98, 190, 0.15);
}

/* 2-col layout */
.imbbs-v2-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 28px;
}

/* ── LEFT: Numbered facts ── */
.imbbs-v2-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.imbbs-v2-fact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #eef2fb;
}

.imbbs-v2-fact:last-of-type {
  border-bottom: none;
}

.imbbs-v2-fact-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #2d8ef0);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(23, 98, 190, 0.25);
}

.imbbs-v2-fact-body h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.imbbs-v2-fact-body h4 i {
  color: var(--primary);
  font-size: 0.85rem;
}

.imbbs-v2-fact-body p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.imbbs-v2-fact-body p strong {
  color: var(--text);
}

/* Highlight box */
.imbbs-v2-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #EBF3FF 0%, #ddeeff 100%);
  border: 1px solid rgba(23, 98, 190, 0.2);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.imbbs-v2-hl-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #2d8ef0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(23, 98, 190, 0.25);
}

.imbbs-v2-highlight div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.imbbs-v2-highlight strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
}

.imbbs-v2-highlight span {
  font-size: 0.78rem;
  color: var(--muted);
}

.imbbs-v2-hl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(23, 98, 190, 0.25);
}

.imbbs-v2-hl-btn:hover {
  background: #1350a0;
  transform: translateY(-1px);
}

/* ── RIGHT: Stat cards ── */
.imbbs-v2-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.imbbs-v2-stat-card {
  background: #fff;
  border: 1px solid #e5eaf5;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(23, 98, 190, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  border-left: 4px solid var(--primary);
}

.imbbs-v2-stat-card:hover {
  box-shadow: 0 6px 22px rgba(23, 98, 190, 0.12);
  transform: translateX(3px);
}

.imbbs-v2-sc-blue {
  border-left-color: #1762BE;
}

.imbbs-v2-sc-teal {
  border-left-color: #0d9488;
}

.imbbs-v2-sc-red {
  border-left-color: var(--accent);
}

.imbbs-v2-sc-primary {
  border-left-color: #192335;
}

.imbbs-v2-sc-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.imbbs-v2-sc-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #192335, #2a3f5f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.imbbs-v2-ic-blue {
  background: linear-gradient(135deg, #1762BE, #2d8ef0);
}

.imbbs-v2-ic-teal {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.imbbs-v2-ic-red {
  background: linear-gradient(135deg, #EC2127, #d01419);
}

.imbbs-v2-sc-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.3;
}

.imbbs-v2-sc-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.imbbs-v2-num-blue {
  color: #1762BE;
}

.imbbs-v2-num-teal {
  color: #0d9488;
}

.imbbs-v2-num-red {
  color: var(--accent);
}

.imbbs-v2-sc-bar-wrap {
  height: 5px;
  background: #eef2fb;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 6px;
}

.imbbs-v2-sc-bar {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, #192335, #2a3f5f);
}

.imbbs-v2-bar-blue {
  background: linear-gradient(90deg, #1762BE, #2d8ef0);
}

.imbbs-v2-bar-teal {
  background: linear-gradient(90deg, #0d9488, #14b8a6);
}

.imbbs-v2-bar-red {
  background: linear-gradient(90deg, #EC2127, #ff5a5f);
}

.imbbs-v2-sc-note {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 860px) {
  .imbbs-v2-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .imbbs-v2 {
    padding: 40px 0 40px;
  }

  .imbbs-v2-highlight {
    gap: 10px;
  }

  .imbbs-v2-hl-btn {
    width: 100%;
    justify-content: center;
  }

  .imbbs-v2-stat-card:hover {
    transform: none;
  }
}


/* ═══════════════════════════════════════
   FOOTER V2 — Enhanced
   ═══════════════════════════════════════ */

.footer-v2 {
  background: linear-gradient(170deg, #060d1c 0%, #0a1530 50%, #020710 100%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  position: relative;
  overflow: hidden;
}

/* Ambient blobs */
.fv2-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.fv2-blob-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(23, 98, 190, 0.12) 0%, transparent 70%);
  top: -100px;
  left: -80px;
}

.fv2-blob-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 33, 39, 0.08) 0%, transparent 70%);
  bottom: 0;
  right: -60px;
}

.fv2-blob-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(23, 98, 190, 0.07) 0%, transparent 70%);
  bottom: 60px;
  left: 40%;
}

/* Inner grid */
.fv2-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* ── Brand column ── */
.fv2-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.fv2-logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #2d8ef0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #f5c842;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(23, 98, 190, 0.4);
}

.fv2-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fv2-logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.fv2-logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.fv2-desc {
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  max-width: 360px;
}

/* Mini stats row */
.fv2-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 20px;
  width: fit-content;
}

.fv2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.fv2-stat strong {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.fv2-stat span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.fv2-stat-div {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

/* Call pill */
.fv2-call-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--accent), #b51519);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(236, 33, 39, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fv2-call-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(236, 33, 39, 0.45);
}

/* Social icons */
.fv2-social {
  display: flex;
  gap: 9px;
}

.fv2-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.fv2-social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ── Column header ── */
.fv2-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.fv2-col-line {
  width: 3px;
  height: 20px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.fv2-col-head h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

/* ── Quick Links ── */
.fv2-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fv2-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s, padding-left 0.2s;
}

.fv2-links li a i {
  font-size: 0.65rem;
  color: var(--accent);
  transition: transform 0.2s;
}

.fv2-links li a:hover {
  color: #fff;
  padding-left: 4px;
}

.fv2-links li a:hover i {
  transform: translateX(3px);
}

/* ── Contact items ── */
.fv2-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.fv2-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fv2-ci-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #fff;
  flex-shrink: 0;
}

.fv2-ci-red {
  background: linear-gradient(135deg, #EC2127, #b51519);
  box-shadow: 0 4px 10px rgba(236, 33, 39, 0.3);
}

.fv2-ci-blue {
  background: linear-gradient(135deg, #1762BE, #2d8ef0);
  box-shadow: 0 4px 10px rgba(23, 98, 190, 0.3);
}

.fv2-ci-teal {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.3);
}

.fv2-ci-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}

.fv2-ci-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fv2-ci-text strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
}

.fv2-ci-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* WhatsApp button */
.fv2-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #1aa355);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 9px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fv2-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Divider */
.fv2-divider-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.fv2-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
}

/* Bottom bar */
.fv2-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.fv2-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.fv2-bottom-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fv2-bbadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.fv2-bbadge i {
  color: #f5c842;
  font-size: 0.65rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .fv2-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .fv2-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .fv2-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 28px;
    gap: 28px;
  }

  .fv2-brand {
    grid-column: 1;
  }

  .fv2-stats {
    width: 100%;
    justify-content: space-between;
  }

  .fv2-bottom {
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .fv2-divider-wrap {
    padding: 0 20px;
  }
}


/* ═══════════════════════════════════════════════
   INDIA MBBS — Light Theme Override
   ═══════════════════════════════════════════════ */

#india-mbbs {
  background: #f7f9ff;
  position: relative;
  overflow: hidden;
}

#india-mbbs .section-title,
#india-mbbs .section-title span {
  color: var(--text);
}

#india-mbbs .section-title span {
  color: var(--primary);
}

#india-mbbs .divider {
  background: var(--primary);
  opacity: 1;
}

/* Blobs — lighter tones */
#india-mbbs .imbbs-blob-1 {
  background: radial-gradient(circle, rgba(23, 98, 190, 0.10) 0%, transparent 70%);
}

#india-mbbs .imbbs-blob-2 {
  background: radial-gradient(circle, rgba(236, 33, 39, 0.07) 0%, transparent 70%);
}

/* Tag pill — blue */
#india-mbbs .imbbs-tag {
  background: var(--light);
  border: 1px solid rgba(23, 98, 190, 0.18);
  color: var(--primary);
}

/* Numbered circles — blue gradient */
#india-mbbs .imbbs-fact-num {
  background: linear-gradient(135deg, var(--primary), #2d8ef0);
  color: #fff;
  box-shadow: 0 4px 14px rgba(23, 98, 190, 0.25);
}

/* Connector line — blue */
#india-mbbs .imbbs-fact::before {
  background: linear-gradient(to bottom, rgba(23, 98, 190, 0.3), transparent);
}

/* Fact text — dark */
#india-mbbs .imbbs-fact-body h4 {
  color: var(--text);
}

#india-mbbs .imbbs-fact-body p {
  color: var(--muted);
}

#india-mbbs .imbbs-fact-body p strong {
  color: var(--text);
}

/* Stat cards — light */
#india-mbbs .ims-card {
  background: #fff;
  border: 1px solid #dde8f8;
  color: var(--text);
  backdrop-filter: none;
  box-shadow: 0 2px 12px rgba(23, 98, 190, 0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

#india-mbbs .ims-card:hover {
  box-shadow: 0 6px 24px rgba(23, 98, 190, 0.13);
  transform: translateY(-2px);
}

/* Icon wraps — solid colors */
#india-mbbs .ims-total .ims-icon-wrap {
  background: linear-gradient(135deg, #1762BE, #2d8ef0);
  color: #fff;
}

#india-mbbs .ims-govt .ims-icon-wrap {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
}

#india-mbbs .ims-pvt .ims-icon-wrap {
  background: linear-gradient(135deg, #EC2127, #ff5a5f);
  color: #fff;
}

#india-mbbs .ims-neet .ims-icon-wrap {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
}

/* Number values — dark colored */
#india-mbbs .ims-total .ims-content strong {
  color: #1762BE;
}

#india-mbbs .ims-govt .ims-content strong {
  color: #16a34a;
}

#india-mbbs .ims-pvt .ims-content strong {
  color: #EC2127;
}

#india-mbbs .ims-neet .ims-content strong {
  color: #7c3aed;
}

/* Span text — muted dark */
#india-mbbs .ims-content span {
  color: var(--muted);
}

/* Bar background — light */
#india-mbbs .ims-bar {
  background: #eef2fb;
}

/* Bar fills — keep colors */
#india-mbbs .ims-total .ims-bar-fill {
  background: #1762BE;
}

#india-mbbs .ims-govt .ims-bar-fill {
  background: #16a34a;
}

#india-mbbs .ims-pvt .ims-bar-fill {
  background: #EC2127;
}

#india-mbbs .ims-neet .ims-bar-fill {
  background: #7c3aed;
}


/* Center the MBBS in India 2026 tag */
#india-mbbs .imbbs-tag {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════
   TEAM STAT CARDS — v3 (Vivid Gradient)
   ═══════════════════════════════════════ */

.team-stats {
  gap: 16px;
}

/* Card base — vivid gradient fill */
.ts-item {
  border: none;
  border-radius: 20px;
  gap: 0;
  backdrop-filter: none;
  text-align: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: default;
  position: relative;
}

/* Each card gets its own vivid gradient */
.ts-red {
  background: linear-gradient(135deg, #c0392b 0%, #ec2127 60%, #ff6b6e 100%);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.45);
}

.ts-gold {
  background: linear-gradient(135deg, #b45309 0%, #d97706 60%, #fbbf24 100%);
  box-shadow: 0 8px 28px rgba(180, 83, 9, 0.45);
}

.ts-teal {
  background: linear-gradient(135deg, #065f73 0%, #0891b2 60%, #22d3ee 100%);
  box-shadow: 0 8px 28px rgba(8, 145, 178, 0.45);
}

.ts-blue {
  background: linear-gradient(135deg, #0f3f7e 0%, #1762BE 60%, #4267d4 100%);
  box-shadow: 0 8px 28px rgba(23, 98, 190, 0.45);
}

/* Hover lift */
.ts-red:hover {
  box-shadow: 0 18px 44px rgba(192, 57, 43, 0.55);
}

.ts-gold:hover {
  box-shadow: 0 18px 44px rgba(180, 83, 9, 0.55);
}

.ts-teal:hover {
  box-shadow: 0 18px 44px rgba(8, 145, 178, 0.55);
}

.ts-blue:hover {
  box-shadow: 0 18px 44px rgba(23, 98, 190, 0.55);
}

/* Large decorative circle watermark — bottom right */
.ts-item::before {
  content: '';
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  pointer-events: none;
}

/* Smaller circle — top left */
.ts-item::after {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

/* Icon wrap */
.ts-icon-wrap {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

/* Icon ring — white circle with colored icon */
.ts-icon-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.30);
}

.ts-red .ts-icon-ring,
.ts-gold .ts-icon-ring,
.ts-teal .ts-icon-ring,
.ts-blue .ts-icon-ring {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Glow — hide (not needed) */
.ts-icon-glow {
  display: none;
}

/* Big stat number — white */
.ts-item strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.ts-red strong,
.ts-gold strong,
.ts-teal strong,
.ts-blue strong {
  color: #ffffff;
}

/* Label — white semi-transparent */
.ts-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

/* Badge — white bg, colored text */
.ts-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 0;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.ts-red .ts-badge {
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ts-gold .ts-badge {
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ts-teal .ts-badge {
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ts-blue .ts-badge {
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* ════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   ════════════════════════════════════════════════ */

/* ── Prevent any element from causing horizontal scroll ── */
*,
*::before,
*::after {
  max-width: 100%;
}

img,
svg,
video,
iframe,
embed {
  max-width: 100%;
  height: auto;
}

/* Mobile enquiry section — hidden on desktop, shown on mobile */
.mob-enquiry-section {
  display: none;
}

@media (max-width: 768px) {
  .mob-enquiry-section {
    display: block;
    padding: 28px 12px;
    background: #EBF3FF;
  }

  .mob-enquiry-section .container {
    padding: 0;
  }

  .mob-enquiry-section .hero-card {
    max-width: 100%;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }

  .mob-enquiry-section .budget-options {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Hero adjustments for mobile ── */
@media (max-width: 768px) {
  .hero-right {
    padding: 0;
    display: none;
  }

  .hero-card {
    border-radius: 14px;
  }

  .hero-sub {
    text-align: center;
  }

  /* Keep stats row from overflowing */
  .hero-stats-row {
    width: 100%;
  }

  /* Form alignment inside centered hero */
  .form-group label {
    text-align: left;
    display: block;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* About section stats panel — single col */
  .about-stats-panel {
    width: 100%;
  }

  /* Team section */
  .team-trust-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Promise cards min-width reset */
  .promise-card {
    min-width: 0;
  }

  /* States wrap */
  .states-wrap {
    gap: 8px;
  }

  .state-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  /* College grid min-width */
  .college-card {
    min-width: 0;
  }

  /* Testimonial slider full width */
  .testi-slider-wrap {
    width: 100%;
  }

  /* Footer */
  .footer-cols-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner {
    padding: 36px 16px 24px;
  }
}

/* ── 390px and below ── */
@media (max-width: 390px) {
  .hs5 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hs5-steps {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hs5-circ-outer {
    width: 64px;
    height: 64px;
  }

  .hs5-circ {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .hs5-sc-pct {
    font-size: 2rem;
  }

  .hero-stats-row {
    flex-wrap: wrap;
  }

  .hsr-item {
    min-width: 45%;
  }

  .hsr-div {
    display: none;
  }

  .hero-card {
    border-radius: 12px;
  }

  .navbar {
    padding: 0 12px;
  }

  .navbar-brand .brand-name {
    font-size: 0.9rem;
  }

  .navbar-cta {
    padding: 8px 12px;
    font-size: 0.74rem !important;
  }
}

/* ════════════════════════════════════════════════
   DESIGN ENHANCEMENTS
   ════════════════════════════════════════════════ */

/* ── Scroll-reveal base ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ── Section background polish ── */
#about {
  background: #f6faff;
}

#how {
  background: #fff;
}

#promise {
  background: linear-gradient(160deg, #f6faff 0%, #fff 60%);
}

#india-mbbs {
  background: #f6faff;
}

#states {
  background: #fff;
}

#faq {
  background: linear-gradient(160deg, #f6faff 0%, #fff 100%);
}

/* ── Section title upgrade ── */
.section-title {
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.section-title span {
  background: linear-gradient(135deg, var(--accent) 0%, #ff5c61 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Divider upgrade ── */
.divider {
  background: linear-gradient(90deg, var(--accent), #ff5c61, var(--primary));
  background-size: 200% auto;
  animation: divider-shift 3s linear infinite;
}

@keyframes divider-shift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ── About highlight cards upgrade ── */
.about-hl-card {
  border-radius: 20px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.about-hl-card:hover {
  transform: translateY(-7px) scale(1.01);
}

/* ── Promise cards upgrade ── */
.promise-card {
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.promise-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-6px);
}

/* ── Why-cards upgrade ── */
.why-card {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-6px) scale(1.01);
}

/* ── College cards upgrade ── */
.college-card {
  transition: background 0.25s, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s, box-shadow 0.25s;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.college-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(236, 33, 39, 0.15);
}

/* ── State tags upgrade ── */
.state-tag {
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.state-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(23, 98, 190, 0.18);
}

/* ── Testimonial cards upgrade ── */
.testi-card {
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.testi-card:hover {
  border-top-color: var(--primary);
  transform: translateY(-5px);
}

/* ── FAQ upgrade ── */
.faq-q {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.1px;
}

/* ── CTA buttons upgrade ── */
.btn-call {
  letter-spacing: 0.2px;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
}

.btn-call:hover {
  transform: translateY(-2px) scale(1.02);
}

/* ── Hero stat numbers ── */
.hsr-item strong {
  background: linear-gradient(135deg, var(--primary) 0%, #2478d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animated hero background ── */
header {
  background: linear-gradient(135deg, #060d1c 0%, #0c1e5e 50%, #1a3a8f 100%);
  background-size: 300% 300%;
  animation: hero-bg-shift 8s ease infinite;
}

@keyframes hero-bg-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ── Navbar logo transition on scroll ── */
.navbar-logo-img {
  transition: height 0.25s ease;
}

/* ── Smooth focus ring for inputs ── */
.form-group input:focus,
.form-group select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(23, 98, 190, 0.15);
}

/* ── Budget checkbox hover ── */
.budget-box {
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}

.budget-opt:hover .budget-box {
  transform: translateY(-1px);
  border-color: var(--primary);
}

/* ── Form status message ── */
.form-status-msg {
  display: none;
  margin: 0 0 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.fsm-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.fsm-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}