/* ══════════════════════════════════════════════
   CollegeGo — Direct MBBS Admission Landing
   Palette derived from logo: navy #01356F + orange #F77118
   ══════════════════════════════════════════════ */

:root {
  --primary: #01356F;      /* logo navy */
  --primary-mid: #0A4C97;  /* navy tint for gradients */
  --accent: #F77118;       /* logo orange */
  --gold: #F77118;         /* orange (matches accent) */
  --light: #E9F0F9;        /* pale navy tint */
  --white: #ffffff;
  --text: #202021;
  --muted: #676767;        /* logo grey */
  --dark-bg: #081B33;      /* deep navy */
  --radius: 16px;
  --shadow-sm: 0 4px 14px rgba(1,53,111,.08);
  --shadow-md: 0 10px 30px rgba(1,53,111,.12);
  --shadow-lg: 0 20px 50px rgba(1,53,111,.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

section { padding: 70px 0; position: relative; scroll-margin-top: 84px; }

/* ── Section Title / Divider ── */
.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  color: var(--primary);
  line-height: 1.2;
}
.section-title span { color: var(--accent); }

.divider {
  width: 78px;
  height: 4px;
  border-radius: 4px;
  background: var(--primary);
  margin: 16px auto 26px;
}

/* ══ Buttons ══ */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), #d85c0c);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: 0 10px 24px rgba(247,113,24,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-call:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(247,113,24,.45); }

/* ══════════════ TOP BAR ══════════════ */
.topbar {
  background: linear-gradient(90deg, var(--dark-bg) 0%, var(--primary) 50%, var(--dark-bg) 100%);
  color: #cdd9e8;
  font-size: .82rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 22px;
}
.topbar-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar-item i { color: var(--gold); margin-right: 5px; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,.25); }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center;
  font-size: .8rem; transition: background .2s;
}
.topbar-social a:hover { background: var(--accent); color: #fff; }

/* ══════════════ NAVBAR ══════════════ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px;
  transition: box-shadow .25s, padding .25s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); padding: 8px 22px; }
.navbar-logo-img { height: 52px; width: auto; }

.navbar-links { display: flex; gap: 30px; }
.nav-link {
  font-weight: 600; font-size: .95rem; color: var(--text);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--accent); transition: width .25s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.navbar-action { display: flex; align-items: center; gap: 14px; }
.navbar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--primary);
  font-weight: 700; font-size: .92rem;
  padding: 10px 22px; border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
}
.navbar-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(247,113,24,.4); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  width: 26px; height: 3px; background: var(--primary); border-radius: 3px;
  transition: .3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ══ Mobile Drawer ══ */
.mobile-drawer {
  position: fixed; top: 0; right: -340px; width: 320px; height: 100%;
  background: var(--white); z-index: 200;
  box-shadow: -10px 0 40px rgba(0,0,0,.2);
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-inner { padding: 20px; }
.drawer-header { display: flex; align-items: flex-start; justify-content: space-between; }
.drawer-brand { display: flex; flex-direction: column; gap: 6px; }
.drawer-logo { height: 44px; width: auto; }
.drawer-tagline { font-size: .72rem; color: var(--muted); }
.drawer-close {
  background: var(--light); border: none; width: 38px; height: 38px;
  border-radius: 50%; font-size: 1.1rem; color: var(--primary); cursor: pointer;
}
.drawer-nav-label { margin: 22px 0 10px; font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.drawer-nav { display: flex; flex-direction: column; gap: 8px; }
.mob-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 12px; border-radius: 12px;
  background: var(--light); font-weight: 600; transition: background .2s;
}
.mob-link:hover { background: #dbe6f5; }
.mob-icon-bubble { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: .9rem; }
.mib-blue { background: var(--primary); }
.mib-green { background: #16a34a; }
.mib-purple { background: #7c3aed; }
.mob-link-text { flex: 1; }
.mob-arrow { color: var(--muted); font-size: .8rem; }
.drawer-ctas { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.mob-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: 12px; font-weight: 700; color: #fff; }
.mob-cta-call { background: linear-gradient(135deg, var(--accent), #d85c0c); }
.mob-cta-wa { background: #25D366; }
.drawer-trust { display: flex; align-items: center; justify-content: space-between; padding: 14px; background: var(--light); border-radius: 12px; }
.dt-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: .68rem; color: var(--muted); text-align: center; }
.dt-item i { color: var(--primary); font-size: 1rem; }
.dt-sep { width: 1px; height: 30px; background: #cbd7e6; }

.mobile-overlay {
  position: fixed; inset: 0; background: rgba(8,27,51,.5);
  opacity: 0; visibility: hidden; z-index: 150; transition: .3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ══════════════ HERO ══════════════ */
header {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #0d5cb0 100%);
  color: var(--white);
  padding: 60px 0 90px;
  overflow: hidden;
}
.hero-dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .6;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 22px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center;
}
.hero-left { }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px; border-radius: 50px; font-size: .82rem; font-weight: 600;
  margin-bottom: 20px; backdrop-filter: blur(4px);
}
.badge i { color: var(--gold); }
.hero-left h1 {
  font-size: 3.2rem; font-weight: 900; line-height: 1.08; margin-bottom: 22px;
}
.highlight-text { color: var(--gold); }
.hero-bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.hero-bullets li { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; }
.bullet-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--primary);
  display: grid; place-items: center; font-size: .7rem;
}
.hero-stats-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 16px 20px; margin-bottom: 26px;
}
.hsr-item { display: flex; flex-direction: column; }
.hsr-item strong { font-size: 1.5rem; color: var(--gold); font-weight: 800; }
.hsr-item span { font-size: .75rem; color: #d6e2f0; }
.hsr-div { width: 1px; height: 34px; background: rgba(255,255,255,.2); }

/* Hero Enquiry Card */
.hero-card {
  background: var(--white); color: var(--text);
  border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 24px;
}
.enquiry-card-header { margin-bottom: 18px; }
.eqh-left { display: flex; align-items: center; gap: 12px; }
.eqh-wa-circle {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff; display: grid; place-items: center; font-size: 1.2rem;
}
.eqh-text strong { display: block; font-size: 1rem; color: var(--primary); }
.eqh-text span { font-size: .8rem; color: var(--muted); }

.form-group { margin-bottom: 14px; }
.form-group > label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.fi-wrap { position: relative; }
.fi-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: .9rem; }
.fi-wrap input {
  width: 100%; padding: 12px 14px 12px 40px;
  border: 1.5px solid #dbe2ea; border-radius: 10px;
  font-size: .95rem; font-family: inherit; transition: border-color .2s, box-shadow .2s;
}
.fi-wrap input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(247,113,24,.14); }

.budget-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.budget-opt { cursor: pointer; }
.budget-opt input { display: none; }
.budget-box {
  display: block; text-align: center; padding: 10px 6px;
  border: 1.5px solid #dbe2ea; border-radius: 10px;
  font-size: .84rem; font-weight: 600; color: var(--muted); transition: .2s;
}
.budget-opt input:checked + .budget-box {
  border-color: var(--accent); background: var(--accent); color: #fff;
}

.form-submit-btn {
  width: 100%; margin-top: 6px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), #d85c0c);
  color: #fff; font-weight: 700; font-size: 1rem; font-family: inherit;
  border: none; padding: 14px; border-radius: 12px; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.form-submit-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(247,113,24,.4); }
.form-submit-btn:disabled { opacity: .7; cursor: default; }

.form-trust-badges { display: flex; justify-content: space-between; margin-top: 14px; }
.ftb-item { font-size: .72rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.ftb-item i { color: #16a34a; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-status-msg { padding: 12px 14px; border-radius: 8px; font-size: .85rem; margin: 12px 0; display: none; }
.fsm-success { background: #dcfce7; color: #15803d; }
.fsm-error { background: #fee2e2; color: #b91c1c; }
.fsm-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 10px; padding: 11px 14px; border-radius: 10px;
  background: #25D366; color: #fff !important; font-weight: 700; font-size: .9rem;
  transition: transform .2s, box-shadow .2s;
}
.fsm-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(37,211,102,.4); }

.hero-btn-group { margin-top: 4px; }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.7rem;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* ══════════════ ABOUT ══════════════ */
#about { background: var(--white); }
.about-header { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.about-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light); color: var(--primary);
  padding: 7px 16px; border-radius: 50px; font-size: .82rem; font-weight: 700;
  margin-bottom: 14px;
}
.about-lead { color: var(--muted); font-size: 1.05rem; }

.about-highlights { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.about-hl-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid #edf1f6;
  border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start;
  transition: transform .25s, box-shadow .25s;
}
.about-hl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ahl-icon-wrap { position: relative; flex-shrink: 0; }
.ahl-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; color: #fff; }
.ahl-card--green .ahl-icon { background: #16a34a; }
.ahl-card--blue .ahl-icon { background: var(--primary); }
.ahl-card--gold .ahl-icon { background: var(--accent); }
.ahl-badge { display: inline-block; font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; background: var(--light); color: var(--primary); margin-bottom: 6px; }
.ahl-body strong { display: block; font-size: 1.12rem; color: var(--text); margin-bottom: 5px; }
.ahl-body span { font-size: .88rem; color: var(--muted); }
.ahl-bg-icon { position: absolute; right: -10px; bottom: -14px; font-size: 5rem; opacity: .05; color: var(--primary); }

/* ══════════════ NEET RANK PREDICTOR ══════════════ */
#rank-predictor { background: var(--white); overflow: hidden; }
.rankp-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .12; z-index: 0; }
.rankp-blob-1 { width: 320px; height: 320px; background: var(--primary); top: -80px; right: -60px; }
.rankp-blob-2 { width: 280px; height: 280px; background: var(--accent); bottom: -90px; left: -70px; }
.rankp-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.rankp-sub { font-size: 1.15rem; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.rankp-desc { color: var(--muted); font-size: 1rem; margin-bottom: 18px; }
.rankp-desc strong { color: var(--primary); }
.rankp-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.rankp-points li { display: flex; align-items: center; gap: 10px; font-size: .95rem; font-weight: 600; color: var(--text); }
.rankp-points i { color: #16a34a; }
.rankp-score-field {
  position: relative; max-width: 360px; margin-bottom: 8px;
}
.rankp-score-field i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.rankp-score-field input {
  width: 100%; padding: 15px 16px 15px 44px;
  border: 1.5px solid #d6dee8; border-radius: 12px;
  font-size: 1rem; font-family: inherit; transition: border-color .2s, box-shadow .2s;
}
.rankp-score-field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(247,113,24,.14); }
.rankp-score-field.invalid input { border-color: #e53935; box-shadow: 0 0 0 3px rgba(229,57,53,.12); }
.rankp-score-err { color: #e53935; font-size: .85rem; font-weight: 600; margin-bottom: 16px; }

.rankp-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.rankp-open { border: none; cursor: pointer; font-family: inherit; }
.rankp-stat { display: flex; flex-direction: column; line-height: 1.1; }
.rankp-stat strong { font-size: 1.7rem; font-weight: 900; color: var(--primary); }
.rankp-stat span { font-size: .8rem; color: var(--muted); }

/* Right: gauge card */
.rankp-right { display: flex; justify-content: center; }
.rankp-gauge-card {
  width: 100%; max-width: 420px; background: #fff;
  border: 1px solid #edf1f6; border-radius: 22px; box-shadow: var(--shadow-lg);
  padding: 22px;
}
.rgc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.rgc-title { font-weight: 800; color: var(--primary); font-size: .95rem; }
.rgc-title i { color: var(--accent); margin-right: 6px; }
.rgc-live { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; color: #16a34a; }
.rgc-dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; animation: rgc-blink 1.4s infinite; }
@keyframes rgc-blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.rgc-gauge { position: relative; text-align: center; }
.rgc-gauge svg { width: 100%; max-width: 300px; height: auto; }
.rgc-readout { margin-top: -18px; }
.rgc-label { display: block; font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.rgc-value { font-size: 2rem; font-weight: 900; color: var(--primary); }
.rgc-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.rgc-chip { font-size: .74rem; font-weight: 700; padding: 7px 12px; border-radius: 50px; background: var(--light); color: var(--primary); }
.rgc-chip i { color: var(--accent); margin-right: 4px; }
.rgc-chip b { color: #16a34a; }

/* ══════════════ RANK MODAL ══════════════ */
.rank-modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(8,27,51,.6); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.rank-modal-overlay.open { opacity: 1; visibility: visible; }
.rank-modal {
  position: relative; width: 100%; max-width: 470px;
  background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 26px 24px; transform: translateY(20px) scale(.98); transition: transform .3s;
  max-height: 92vh; overflow-y: auto;
}
.rank-modal-overlay.open .rank-modal { transform: translateY(0) scale(1); }
.rank-modal-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border: none; border-radius: 50%; background: var(--light); color: var(--primary);
  font-size: 1.1rem; cursor: pointer; transition: background .2s;
}
.rank-modal-close:hover { background: #dbe6f5; }
.rank-modal-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-right: 30px; }
.rmh-center { flex-direction: column; align-items: center; text-align: center; gap: 4px; padding-right: 0; }
.rmh-center strong { font-size: 1.5rem; color: var(--primary); }
.rmh-center span { font-size: .88rem; color: var(--muted); }

/* Entered-score summary bar inside modal */
.rp-score-summary {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--light); border-radius: 14px; padding: 14px 16px; margin-bottom: 18px;
}
.rss-left { display: flex; align-items: center; gap: 10px; }
.rss-icon { width: 34px; height: 34px; border-radius: 9px; background: #fff; color: var(--primary); display: grid; place-items: center; }
.rss-label { font-size: .95rem; font-weight: 600; color: var(--text); }
.rss-value { font-size: 1.5rem; font-weight: 900; color: var(--primary); margin-left: 2px; }
.rss-edit { background: none; border: none; cursor: pointer; color: var(--accent); font-weight: 700; font-size: .9rem; font-family: inherit; display: inline-flex; align-items: center; gap: 5px; }
.rss-edit:hover { text-decoration: underline; }

/* Phone field with +91 prefix */
.fi-phone { display: flex; align-items: center; }
.fi-phone .fi-prefix {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  font-size: .95rem; font-weight: 600; color: var(--text); white-space: nowrap;
  padding-right: 8px; border-right: 1.5px solid #e2e8f0;
}
.fi-phone input { padding-left: 74px; }
.rmh-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff; display: grid; place-items: center; font-size: 1.4rem;
}
.rank-modal-head strong { display: block; font-size: 1.15rem; color: var(--primary); }
.rank-modal-head span { font-size: .84rem; color: var(--muted); }
.rank-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fi-wrap select {
  width: 100%; padding: 12px 14px 12px 40px;
  border: 1.5px solid #dbe2ea; border-radius: 10px;
  font-size: .95rem; font-family: inherit; color: var(--text);
  background: #fff; appearance: none; cursor: pointer; transition: border-color .2s, box-shadow .2s;
}
.fi-wrap select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(247,113,24,.14); }

/* ══════════════ HOW / STEPS ══════════════ */
.hs5 { background: var(--light); }
.hs5-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.hs5-pill, .imbbs-tag, .why-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 7px 16px; border-radius: 50px; font-size: .8rem; font-weight: 700; margin-bottom: 14px;
}
.hs5-intro { color: var(--muted); font-size: 1.02rem; }

.hs5-split { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; margin-bottom: 50px; }
.hs5-split-card {
  background: #fff; border-radius: var(--radius); padding: 26px; text-align: center;
  box-shadow: var(--shadow-sm); position: relative;
  border-top: 4px solid var(--primary);
}
.hs5-sc-red { border-top-color: var(--accent); }
.hs5-sc-icon { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-size: 1.3rem; }
.hs5-icon-red { background: var(--accent); }
.hs5-sc-pct { font-size: 2.6rem; font-weight: 900; color: var(--primary); line-height: 1; }
.hs5-pct-red { color: var(--accent); }
.hs5-sc-title { font-weight: 700; margin: 6px 0 4px; }
.hs5-sc-sub { font-size: .84rem; color: var(--muted); margin-bottom: 14px; }
.hs5-sc-bar { height: 8px; background: #e4ebf3; border-radius: 8px; overflow: hidden; }
.hs5-bar-fill { height: 100%; background: var(--primary); border-radius: 8px; }
.hs5-bar-red { background: var(--accent); }
.hs5-opp-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); white-space: nowrap; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.hs5-vs { width: 46px; height: 46px; border-radius: 50%; background: var(--dark-bg); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .9rem; }

.hs5-steps-wrap { position: relative; margin-bottom: 40px; }
.hs5-track { position: absolute; top: 42px; left: 12%; right: 12%; height: 3px; background: #d3ddea; z-index: 0; }
.hs5-track-fill { height: 100%; width: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.hs5-steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.hs5-step { text-align: center; }
.hs5-circ-outer { width: 84px; height: 84px; margin: 0 auto; border-radius: 50%; background: #fff; padding: 8px; box-shadow: var(--shadow-sm); }
.hs5-circ { width: 100%; height: 100%; border-radius: 50%; display: grid; place-items: center; font-size: 1.6rem; color: #fff; }
.hs5-c-1 { background: var(--primary); }
.hs5-c-2 { background: var(--primary-mid); }
.hs5-c-3 { background: #d85c0c; }
.hs5-c-4 { background: var(--accent); }
.hs5-step-no { font-size: .72rem; font-weight: 800; letter-spacing: 1px; color: var(--accent); margin: 12px 0 8px; }
.hs5-card { background: #fff; border-radius: var(--radius); padding: 20px 18px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; text-align: left; transition: transform .25s; }
.hs5-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.hs5-card-stripe { position: absolute; top: 0; left: 0; width: 100%; height: 4px; }
.hs5-cs-1 { background: var(--primary); }
.hs5-cs-2 { background: var(--primary-mid); }
.hs5-cs-3 { background: #d85c0c; }
.hs5-cs-4 { background: var(--accent); }
.hs5-card h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 8px; }
.hs5-card p { font-size: .86rem; color: var(--muted); margin-bottom: 12px; }
.hs5-chip { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 700; padding: 5px 12px; border-radius: 50px; background: var(--light); color: var(--primary); }
.hs5-chip-4 { background: #fff1e6; color: var(--accent); }

.hs5-bottom { display: flex; align-items: center; gap: 20px; background: #fff; border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-sm); flex-wrap: wrap; justify-content: center; }
.hs5-note { display: flex; gap: 12px; flex: 1; min-width: 260px; }
.hs5-note i { color: var(--accent); font-size: 1.3rem; margin-top: 2px; }
.hs5-note p { font-size: .92rem; color: var(--muted); }

/* ══════════════ COLLEGES ══════════════ */
#colleges { background: var(--white); }
.colleges-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.college-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--light); border: 1px solid #e2eaf3; border-radius: 12px;
  padding: 16px 18px; font-weight: 700; font-size: .9rem; color: var(--primary);
  transition: transform .2s, background .2s, color .2s;
}
.college-card i { color: var(--accent); font-size: 1.1rem; transition: color .2s; }
.college-card:hover { background: var(--primary); color: #fff; transform: translateY(-4px); }
.college-card:hover i { color: var(--gold); }

/* ══════════════ PROMISE ══════════════ */
#promise { background: var(--light); }
.promise-text { max-width: 860px; margin: 0 auto 40px; text-align: center; color: var(--muted); font-size: 1.02rem; }
.promise-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-bottom: 40px; }
.promise-card {
  position: relative; background: #fff; border-radius: var(--radius);
  padding: 30px 22px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s; overflow: hidden;
}
.promise-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pc-ribbon { position: absolute; top: 14px; right: -30px; transform: rotate(45deg); background: var(--accent); color: #fff; font-size: .62rem; font-weight: 700; padding: 4px 34px; }
.pc-icon-wrap { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 16px; display: grid; place-items: center; font-size: 1.5rem; color: #fff; }
.pc-red { background: var(--accent); }
.pc-blue { background: var(--primary); }
.promise-card h3 { font-size: 1.12rem; color: var(--primary); margin-bottom: 8px; }
.promise-card p { font-size: .86rem; color: var(--muted); margin-bottom: 14px; }
.pc-check { font-size: .76rem; font-weight: 700; color: #16a34a; }
.pc-check i { margin-right: 4px; }

/* ══════════════ TESTIMONIALS ══════════════ */
#testimonials { background: var(--white); }
.testi-slider-wrap { display: flex; align-items: center; gap: 12px; }
.testi-arrow {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  border: none; background: var(--primary); color: #fff; font-size: 1rem; cursor: pointer;
  transition: background .2s, opacity .2s;
}
.testi-arrow:hover:not(:disabled) { background: var(--accent); }
.testi-arrow:disabled { opacity: .35; cursor: default; }
.testi-track-outer { flex: 1; overflow: hidden; }
.testi-track { display: flex; gap: 16px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-card {
  flex: 0 0 316px; min-width: 316px;
  background: #fff; border: 1px solid #edf1f6; border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.testi-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; }
.testi-av-blue { background: var(--primary); }
.testi-av-green { background: #16a34a; }
.testi-av-orange { background: #ea580c; }
.testi-av-purple { background: #7c3aed; }
.testi-meta { flex: 1; }
.testi-meta strong { display: block; font-size: .95rem; }
.testi-sub { font-size: .76rem; color: var(--muted); }
.testi-stars { color: #fbbf24; font-size: .74rem; margin-top: 2px; }
.testi-g-icon { color: #4285F4; font-size: 1.1rem; }
.testi-text { font-size: .88rem; color: var(--muted); line-height: 1.6; }

.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.testi-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: #cdd7e3; cursor: pointer; transition: .2s; }
.testi-dot.active { background: var(--accent); width: 26px; border-radius: 50px; }

/* Mobile-only enquiry section (hidden on desktop) */
.mob-enquiry-section { display: none; background: var(--light); }

/* ══════════════ TEAM ══════════════ */
#team { background: var(--light); overflow: hidden; }
.team-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .18; z-index: 0; }
.team-blob-1 { width: 300px; height: 300px; background: var(--primary); top: -80px; left: -60px; }
.team-blob-2 { width: 260px; height: 260px; background: var(--accent); bottom: -70px; right: -50px; }
.team-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.team-desc { color: var(--muted); font-size: 1rem; margin-bottom: 20px; }
.team-desc strong { color: var(--primary); }
.team-trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.tt-badge { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid #e2eaf3; padding: 8px 14px; border-radius: 50px; font-size: .8rem; font-weight: 700; color: var(--primary); }
.tt-badge i { color: var(--accent); }
.team-cta { margin-top: 4px; }

.team-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ts-item { position: relative; background: #fff; border-radius: var(--radius); padding: 24px 20px; text-align: center; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .25s; }
.ts-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ts-icon-wrap { position: relative; width: 54px; height: 54px; margin: 0 auto 12px; }
.ts-icon-ring { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-size: 1.3rem; color: #fff; }
.ts-red .ts-icon-ring { background: var(--accent); }
.ts-gold .ts-icon-ring { background: #d85c0c; }
.ts-teal .ts-icon-ring { background: #0d9488; }
.ts-blue .ts-icon-ring { background: var(--primary); }
.ts-item strong { display: block; font-size: 1.7rem; font-weight: 900; color: var(--primary); }
.ts-item > span { font-size: .82rem; color: var(--muted); }
.ts-badge { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: .68rem; font-weight: 700; color: #16a34a; }

/* ══════════════ DOCUMENTS ══════════════ */
#documents { background: var(--white); }
.docs-intro { text-align: center; color: var(--muted); max-width: 760px; margin: 0 auto 16px; }
.docs-note { max-width: 860px; margin: 0 auto 34px; background: #fff7ed; border-left: 4px solid var(--accent); padding: 14px 18px; border-radius: 8px; font-size: .9rem; color: var(--muted); }
.docs-note i { color: var(--accent); margin-right: 6px; }
.docs-note strong { color: var(--text); }
.docs-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.docs-card { background: #fff; border: 1px solid #edf1f6; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.docs-card-head { display: flex; align-items: flex-start; gap: 8px; background: linear-gradient(135deg, var(--primary), var(--primary-mid)); color: #fff; padding: 16px 22px; font-weight: 700; font-size: 1rem; line-height: 1.35; }
.docs-card-head i { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.docs-card-nri .docs-card-head { background: linear-gradient(135deg, var(--accent), #d85c0c); }
.docs-list { padding: 18px 22px; }
.docs-list li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: .9rem; color: var(--text); border-bottom: 1px dashed #eef2f6; }
.docs-list li:last-child { border-bottom: none; }
.docs-list li i { color: #16a34a; margin-top: 4px; }
.docs-list em { color: var(--muted); font-size: .82rem; }
.docs-nri-cta { text-align: center; padding: 0 22px 22px; }

/* ══════════════ INDIA MBBS ══════════════ */
#india-mbbs { background: var(--light); overflow: hidden; }
.imbbs-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .16; z-index: 0; }
.imbbs-blob-1 { width: 320px; height: 320px; background: var(--primary); top: -60px; right: -80px; }
.imbbs-blob-2 { width: 280px; height: 280px; background: var(--accent); bottom: -80px; left: -60px; }
#india-mbbs .imbbs-tag, #india-mbbs .section-title, #india-mbbs .divider { position: relative; z-index: 1; }
.imbbs-tag { display: block; width: fit-content; margin: 0 auto 14px; }
.india-mbbs-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.imbbs-fact { display: flex; gap: 16px; margin-bottom: 24px; }
.imbbs-fact-num { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 800; }
.imbbs-fact-body h4 { color: var(--primary); font-size: 1.08rem; margin-bottom: 4px; }
.imbbs-fact-body p { font-size: .9rem; color: var(--muted); }
.imbbs-fact-body strong { color: var(--accent); }
.imbbs-cta { margin-top: 6px; }
.india-mbbs-stats { display: flex; flex-direction: column; gap: 16px; }
.ims-card { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; }
.ims-icon-wrap { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; color: #fff; }
.ims-total .ims-icon-wrap { background: var(--primary); }
.ims-govt .ims-icon-wrap { background: var(--primary-mid); }
.ims-pvt .ims-icon-wrap { background: var(--accent); }
.ims-neet .ims-icon-wrap { background: #d85c0c; }
.ims-content strong { display: block; font-size: 1.5rem; font-weight: 900; color: var(--primary); line-height: 1.1; }
.ims-content span { font-size: .8rem; color: var(--muted); }
.ims-bar { grid-column: 1 / -1; height: 7px; background: #e4ebf3; border-radius: 8px; overflow: hidden; }
.ims-total .ims-bar-fill { background: var(--primary); }
.ims-govt .ims-bar-fill { background: var(--primary-mid); }
.ims-pvt .ims-bar-fill { background: var(--accent); }
.ims-neet .ims-bar-fill { background: #d85c0c; }
.ims-bar-fill { height: 100%; border-radius: 8px; }

/* ══════════════ WHY CHOOSE US ══════════════ */
#why { background: var(--white); overflow: hidden; }
.why-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .1; z-index: 0; }
.why-blob-1 { width: 300px; height: 300px; background: var(--primary); top: 0; left: -80px; }
.why-blob-2 { width: 300px; height: 300px; background: var(--accent); bottom: 0; right: -80px; }
#why .container { position: relative; z-index: 1; }
.why-tag { display: block; width: fit-content; margin: 0 auto 14px; }
.why-intro { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 36px; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-card { background: #fff; border: 1px solid #edf1f6; border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow-sm); text-align: center; transition: transform .25s, box-shadow .25s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon-wrap { margin-bottom: 14px; }
.why-icon { width: 56px; height: 56px; margin: 0 auto; border-radius: 16px; display: grid; place-items: center; font-size: 1.4rem; color: #fff; }
.wic-red { background: var(--accent); }
.wic-blue { background: var(--primary); }
.wic-teal { background: #0d9488; }
.wic-gold { background: #d85c0c; }
.wic-purple { background: #7c3aed; }
.wic-green { background: #16a34a; }
.why-body h4 { font-size: 1.02rem; color: var(--primary); margin-bottom: 8px; }
.why-body p { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.why-check { font-size: .74rem; font-weight: 700; color: #16a34a; }
.why-check i { margin-right: 4px; }

/* ══════════════ STATES ══════════════ */
#states { background: var(--light); }
.states-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.state-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #e2eaf3; padding: 11px 20px; border-radius: 50px;
  font-weight: 600; font-size: .9rem; color: var(--primary);
  transition: transform .2s, background .2s, color .2s;
}
.state-tag i { color: var(--accent); }
.state-tag:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.state-tag:hover i { color: var(--gold); }

/* ══════════════ FAQ ══════════════ */
#faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid #e6ecf3; border-radius: 12px; margin-bottom: 14px; overflow: hidden; background: #fff; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer; text-align: left;
  padding: 18px 22px; font-size: 1rem; font-weight: 700; color: var(--primary); font-family: inherit;
}
.faq-q i { transition: transform .3s; color: var(--accent); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 20px; }
.faq-a p { font-size: .92rem; color: var(--muted); margin-bottom: 8px; }
.faq-a strong { color: var(--accent); }

/* ══════════════ FOOTER ══════════════ */
.mob-call-bar { display: none; }
footer { background: var(--dark-bg); color: #cdd9e8; padding: 34px 22px 26px; text-align: center; }
.footer-divider { max-width: 1200px; height: 1px; background: rgba(255,255,255,.12); margin: 0 auto 22px; }
.footer-offices { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; font-size: .92rem; }
.fo-label { font-weight: 700; color: #fff; }
.fo-label i { color: var(--gold); margin-right: 5px; }
.fo-city { font-weight: 600; }
.fo-sep { color: rgba(255,255,255,.4); }
.footer-bottom { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: .82rem; }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(247,113,24,.16); color: var(--gold); padding: 5px 14px; border-radius: 50px; font-weight: 700; }

/* ══════════════ SCROLL REVEAL ══════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .05s; }
.reveal-delay-2 { transition-delay: .12s; }
.reveal-delay-3 { transition-delay: .19s; }
.reveal-delay-4 { transition-delay: .26s; }
.reveal-delay-5 { transition-delay: .33s; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-left h1 { font-size: 2.6rem; }
  .hero-right { max-width: 480px; margin: 0 auto; width: 100%; }
  .about-highlights { grid-template-columns: 1fr; }
  .promise-cards { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .colleges-grid { grid-template-columns: repeat(3,1fr); }
  .team-wrap { grid-template-columns: 1fr; }
  .india-mbbs-wrap { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .rankp-wrap { grid-template-columns: 1fr; }
  .rankp-right { order: -1; }
  .hs5-track { display: none; }
}

@media (max-width: 860px) {
  .navbar-links { display: none; }
  .nav-hamburger { display: flex; }
  .hs5-steps { grid-template-columns: repeat(2,1fr); }
  .hs5-split { grid-template-columns: 1fr; }
  .hs5-vs { margin: 0 auto; }
}

@media (max-width: 640px) {
  section { padding: 50px 0; }
  .section-title { font-size: 1.65rem; }
  .topbar-left .topbar-item:nth-child(3), .topbar-left .topbar-sep:nth-child(4) { display: none; }
  .topbar { font-size: .74rem; }
  .hero-left h1 { font-size: 2.15rem; }
  .hero-stats-row { gap: 10px; padding: 14px; }
  .hsr-item strong { font-size: 1.2rem; }
  .hsr-div { display: none; }
  .hero-right { display: none; }              /* hide hero form, show mobile form section */
  .mob-enquiry-section { display: block; }
  .promise-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .colleges-grid { grid-template-columns: repeat(2,1fr); }
  .team-stats { grid-template-columns: 1fr; }
  .hs5-steps { grid-template-columns: 1fr; }
  .budget-options { grid-template-columns: 1fr 1fr; }
  .rank-form-row { grid-template-columns: 1fr; }
  .rankp-cta-row { gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .mob-call-bar { display: block; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 95; padding: 10px 14px; background: #fff; box-shadow: 0 -6px 20px rgba(0,0,0,.12); }
  .mob-call-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, var(--accent), #d85c0c); color: #fff; font-weight: 700; padding: 14px; border-radius: 12px; }
  .wa-float { bottom: 78px; }
  body { padding-bottom: 68px; }
}
