/* ============================================================
   MISSION TOPPERS — MAIN STYLESHEET
   Brand: Navy Blue | Gold Yellow | Red CTA
   Fonts: Rajdhani (headings) + Nunito (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:        #0d1f5c;
  --navy-dark:   #08153d;
  --navy-mid:    #162580;
  --navy-light:  #1e34a8;
  --gold:        #f5c518;
  --gold-dark:   #d4a800;
  --gold-light:  #fdd94a;
  --red:         #c0392b;
  --red-dark:    #9b2315;
  --red-light:   #e04535;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --light-gray:  #eef1f8;
  --mid-gray:    #d0d8e8;
  --text:        #1a2240;
  --text-muted:  #5a6680;
  --border:      #dde3f0;
  --shadow-sm:   0 2px 12px rgba(13,31,92,.08);
  --shadow-md:   0 8px 30px rgba(13,31,92,.14);
  --shadow-lg:   0 20px 60px rgba(13,31,92,.18);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --transition:  all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-dark);
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
p { margin-bottom: 0; }

/* ── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  padding: 7px 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a, .topbar span { color: rgba(255,255,255,.75); }
.topbar a:hover { color: var(--gold); }
.topbar i { color: var(--gold); margin-right: 4px; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  background: var(--navy) !important;
  padding: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 15px;
  min-height: 80px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-logo { display: none; }

/* ── TEXT LOGO ─────────────────────────────────── */
.text-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0px;
}
.text-logo-top {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tl-mission {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.tl-icon {
  font-size: 1rem;
  line-height: 1;
}
.text-logo-bottom {
  display: flex;
  align-items: center;
}
.tl-toppers {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: #f5c518;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}
.tl-tagline {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.45rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .tl-mission { font-size: 0.9rem; }
  .tl-toppers { font-size: 1.5rem; }
  .tl-tagline { display: none; }
}
.brand-text { display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-menu a {
  color: rgba(255,255,255,.85);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
  text-transform: uppercase;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
  background: rgba(245,197,24,.1);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  border-radius: 50px !important;
  padding: 8px 22px !important;
  font-weight: 700 !important;
  margin-left: 6px;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--navy-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,197,24,.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 10px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  background: transparent;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,.45);
}
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-red:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,.4);
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-navy:hover {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-sm { padding: 9px 20px !important; font-size: 0.88rem !important; }
.btn-full { width: 100%; justify-content: center; }
.card-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.card-action-row .btn-sm {
  width: 100%;
  justify-content: center;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 0.76rem !important;
  white-space: nowrap;
}

/* ── SECTION HELPERS ────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-bg { background: var(--off-white); }
.section-navy { background: var(--navy); }
.section-navy-dark { background: var(--navy-dark); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(13,31,92,.07);
  border: 1px solid rgba(13,31,92,.12);
  color: var(--navy-mid);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-label-white {
  background: rgba(245,197,24,.12);
  border-color: rgba(245,197,24,.25);
  color: var(--gold);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.section-title span { color: var(--red); }
.section-title-white { color: var(--white) !important; }
.section-title-white span { color: var(--gold) !important; }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
}
.divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 2px;
  margin: 12px 0 20px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 20%, rgba(245,197,24,.07) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(192,57,43,.07) 0%, transparent 40%);
  pointer-events: none;
}
/* diagonal slice at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,197,24,.15);
  border: 1px solid rgba(245,197,24,.35);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 10px;
}
.hero-title .highlight { color: var(--gold); }
.hero-title .line-red { color: #ff6b6b; }

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 28px;
  padding: 22px 28px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  width: fit-content;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-main {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  max-width: 380px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-logo-big {
  width: 110px;
  margin: 0 auto 18px;
  display: block;
}
.exam-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.exam-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}
.exam-badge-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
}
.exam-badge-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.hero-floating {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  white-space: nowrap;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.hero-floating-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.f1 { top: 5%; left: -18%; animation-delay: 0s; }
.f2 { bottom: 10%; right: -15%; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}
.stat-item { text-align: center; padding: 0 8px; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}
.stat-sep {
  width: 1px;
  background: rgba(255,255,255,.12);
  align-self: stretch;
}

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 66px;
  height: 66px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}
.service-card h4 {
  font-size: 1.25rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ── INSTITUTE / COLLEGE CARDS ──────────────────────────────── */
.inst-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.inst-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.inst-card-thumb {
  height: 175px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.inst-card-thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}
.inst-tag {
  display: inline-block;
  background: rgba(13,31,92,.07);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  margin-right: 4px;
  margin-bottom: 4px;
}
.inst-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.inst-card-body h5 {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.inst-card-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

/* ── COUNSELLING SERVICE GRID ───────────────────────────────── */
.counsel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.counsel-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.counsel-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.ci-blue  { background: rgba(13,31,92,.08); }
.ci-gold  { background: rgba(245,197,24,.12); }
.ci-red   { background: rgba(192,57,43,.08); }
.ci-green { background: rgba(22,160,133,.08); }

.counsel-card h5 { font-size: 1.12rem; color: var(--navy-dark); margin-bottom: 7px; }
.counsel-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 18px; }

/* ── ABOUT SECTION ──────────────────────────────────────────── */
.about-visual {
  position: relative;
  padding: 20px;
}
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder {
  text-align: center;
  color: rgba(255,255,255,.6);
  padding: 30px;
}
.about-exp-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-exp-badge .exp-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  display: block;
}
.about-exp-badge .exp-lbl {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.check-list li strong { color: var(--navy-dark); }
.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--white);
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── LOGOS GRID ─────────────────────────────────────────────── */
.logos-section { padding: 50px 0; border-top: 1px solid var(--border); }
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
}
.logo-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--navy);
  transition: var(--transition);
  cursor: default;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-cell:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
}
.process-step h5 { font-size: 1rem; color: var(--navy-dark); margin-bottom: 6px; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  height: 100%;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 5.5rem;
  color: rgba(245,197,24,.18);
  font-family: Georgia, serif;
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 0.88rem; margin-bottom: 10px; }
.testi-text {
  font-size: 0.89rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.testi-author strong { display: block; color: var(--navy-dark); font-size: 0.95rem; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy) 60%, var(--navy-mid));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,57,43,.06) 0%, transparent 70%);
  border-radius: 50%;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  margin-bottom: 10px;
  text-decoration: none;
}
.phone-btn:hover {
  background: rgba(245,197,24,.15);
  border-color: rgba(245,197,24,.4);
  color: var(--gold);
  transform: translateX(4px);
}
.phone-btn-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1rem;
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-info-card {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: var(--white);
  height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 6px; }
.contact-info-card .subtitle { color: rgba(255,255,255,.6); font-size: 0.9rem; margin-bottom: 30px; }
.c-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.c-info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: rgba(245,197,24,.12);
  border: 1px solid rgba(245,197,24,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.c-info-row h6 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,.45);
  margin-bottom: 2px;
}
.c-info-row p, .c-info-row a {
  color: rgba(255,255,255,.85);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
}
.c-info-row a:hover { color: var(--gold); }

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 20px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wa-btn:hover { background: #1da855; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.4); }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.6); font-size: 0.85rem; }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-divider { color: rgba(255,255,255,.3); }

.vm-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}
.vm-card-navy { background: var(--navy); color: var(--white); }
.vm-card-navy h4 { color: var(--gold); }
.vm-card-navy p { color: rgba(255,255,255,.75); font-size: 0.92rem; line-height: 1.7; }
.vm-card-light { background: var(--off-white); border: 1px solid var(--border); }
.vm-card-light h4 { color: var(--red); }
.vm-card-light p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
  height: 100%;
}
.why-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
}
.why-card h5 { font-size: 1rem; color: var(--navy-dark); margin-bottom: 4px; }
.why-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── TABS (services page) ───────────────────────────────────── */
.tabs-wrapper {
  background: var(--light-gray);
  border-radius: 50px;
  padding: 6px;
  display: inline-flex;
  gap: 4px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13,31,92,.3);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── FORMS ──────────────────────────────────────────────────── */
.form-label-custom {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
  display: block;
}
.form-control-custom {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control-custom:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,31,92,.08);
}
.form-control-custom::placeholder { color: #b0bcc8; }
.form-group { margin-bottom: 16px; }

.alert-success-custom {
  background: rgba(22,160,133,.1);
  border: 1px solid rgba(22,160,133,.3);
  color: #0e6655;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
  margin-top: 12px;
}
.alert-error-custom {
  background: rgba(192,57,43,.1);
  border: 1px solid rgba(192,57,43,.3);
  color: var(--red-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
  margin-top: 12px;
}

/* ── MODAL ──────────────────────────────────────────────────── */
.modal-content {
  border: none;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.modal-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border: none;
  padding: 22px 28px;
}
.modal-title { color: var(--white) !important; font-family: 'Rajdhani', sans-serif !important; font-size: 1.2rem !important; }
.modal-header .btn-close { filter: invert(1) brightness(2); }
.modal-body { padding: 28px 30px; }
.modal-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }

/* ── MAP ────────────────────────────────────────────────────── */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* ── UNIVERSITY COURSE TABLE ───────────────────────────────── */
.university-table-tools {
  min-width: min(100%, 420px);
}
.university-table-tools .form-control-custom {
  background: var(--white);
}
.university-table-tools span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 700;
  text-align: right;
}
.university-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: auto;
  background: var(--white);
  max-height: 620px;
  box-shadow: var(--shadow-sm);
}
.university-course-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.university-course-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--navy);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 14px;
  white-space: nowrap;
}
.university-course-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.university-course-table tbody tr:nth-child(even) {
  background: var(--off-white);
}
.university-course-table tbody tr:hover {
  background: rgba(245,197,24,.12);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
  color: rgba(255,255,255,.65);
}
.footer-logo { height: 58px; margin-bottom: 14px; }
.footer-about { font-size: 0.87rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }

.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1.1rem; line-height: 1; }
.footer-links a:hover { color: var(--gold); padding-left: 3px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.87rem;
}
.footer-contact-item i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.65); text-decoration: none; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 50px;
  padding: 18px 0;
  font-size: 0.8rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
}
.wa-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.2s ease infinite;
  z-index: -1;
}
.wa-float:hover { transform: scale(1.12); color: var(--white); }
@keyframes waPulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ── UTILITIES ──────────────────────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.text-red  { color: var(--red)  !important; }
.text-navy { color: var(--navy) !important; }
.bg-gold   { background: var(--gold) !important; }
.gap-12 { gap: 12px; }
.mt-0 { margin-top: 0 !important; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 60px 0 80px; }
  .hero-visual { margin-top: 40px; }
  .hero::after { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #08153d;
    padding: 16px 20px 20px;
    gap: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
    z-index: 9999;
    border-top: 3px solid #f5c518;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; border-radius: 8px; font-size: 1rem; color: #fff !important; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; }
}
@media (max-width: 767px) {
  .section { padding: 55px 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .logos-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .hero-stats { gap: 16px; padding: 16px 18px; }
  .stat-sep { display: none; }
  .f1, .f2 { display: none; }
  .tabs-wrapper { border-radius: var(--radius-lg); }
  .form-card { padding: 24px 18px; }
  .contact-info-card { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .exam-badges { grid-template-columns: repeat(2, 1fr); }
}

/* ── LOGO CAROUSEL (infinite scroll) ────────────────────── */
.logos-carousel-wrap {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
.logos-carousel-wrap::before,
.logos-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logos-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.logos-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.logos-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollLogos 55s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logo-slide {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 130px;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: var(--transition);
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  box-shadow: 0 2px 8px rgba(13,31,92,.06);
}
.logo-slide:hover {
  border-color: var(--navy);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13,31,92,.12);
}
@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 45px !important;
    width: auto !important;
    max-width: 150px !important;
  }
  .navbar-inner {
    min-height: 65px !important;
    padding: 7px 15px !important;
  }
  .hamburger {
    margin-left: auto;
  }
}
