/* ================================================================
   WHITE BANGER — REVAMP STYLES
   Phase-by-phase engagement upgrades for the education startup.
   Loaded after all other CSS so these rules win cleanly.
================================================================ */

/* ================================================================
   PHASE 1 — TOPBAR
================================================================ */

/* Subtle left-to-right depth gradient */
.wb-topbar {
  background: linear-gradient(90deg, #1a56db 0%, #1565c0 100%) !important;
}

/* Live pulse dot before announcements */
.wb-topbar-item::before {
  content: '●';
  font-size: 7px;
  color: #fbbf24;
  margin-right: 8px;
  vertical-align: middle;
  animation: wb-pulse-dot 1.6s ease-in-out infinite;
  display: inline-block;
}

@keyframes wb-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.6); }
}

/* Bolder yellow CTA links */
.wb-topbar a {
  font-weight: 700 !important;
  border-bottom: 1px solid currentColor;
}
.wb-topbar a:hover {
  color: #fff !important;
}

/* ================================================================
   PHASE 2 — NAVIGATION
================================================================ */

/* Active nav link — pill style handled in wb-header-v2.css; no override needed */
@media (min-width: 901px) {
  /* (override removed — wb-header-v2.css controls active pill style) */
  .wb-nav > .wb-nav-link.wb-active {
    border-bottom: none !important;
  }

  /* Stronger shadow when page has scrolled (JS adds .wb-scrolled) */
  .wb-header.wb-scrolled {
    box-shadow: 0 4px 24px rgba(26, 86, 219, 0.18) !important;
  }
}

/* ================================================================
   PHASE 3 — HERO SECTION
================================================================ */

/* Two-line headline: first bold line + outcome subtitle */
.wb-hero-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wb-hero-subtitle {
  display: block;
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  margin-top: 4px;
}

/* Stat pills row below CTA */
.wb-hero-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}

.wb-hero-stat-pill {
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
}

/* Split CTA: primary + ghost */
.wb-hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}

.wb-btn-hero-ghost {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.wb-btn-hero-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ================================================================
   PHASE 4 — ACCREDITATION BAR
================================================================ */

.wb-accreditation-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 16px;
}

/* ================================================================
   PHASE 5 — CATEGORIES BAR
================================================================ */

.wb-cat-item {
  position: relative;
}
.wb-cat-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: #fbbf24;
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.wb-cat-item:hover::after,
.wb-cat-item.active::after {
  transform: translateX(-50%) scaleX(1);
}

.wb-categories-browse {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 8px;
  padding-right: 4px;
}
.wb-categories-browse a {
  font-size: 13px;
  font-weight: 600;
  color: #1a56db;
  text-decoration: none;
  transition: color 0.2s;
}
.wb-categories-browse a:hover { color: #1648c0; }

/* ================================================================
   PHASE 6 — FEATURED COURSES
================================================================ */

/* Updated section heading */
.wb-featured-courses .wb-section-title {
  font-size: 28px !important;
  letter-spacing: -0.02em;
}

/* Duration pill on each card thumb */
.wb-course-duration {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.62);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

/* Gold left-border reveal on hover */
.wb-course-card {
  border-left: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.wb-course-card:hover {
  border-left-color: #fbbf24;
}

/* "What you'll learn" bullets — hidden by default, shown on hover */
.wb-course-learn {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 0;
}
.wb-course-card:hover .wb-course-learn {
  max-height: 80px;
  opacity: 1;
  margin-top: 8px;
}
.wb-course-learn ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wb-course-learn ul li {
  font-size: 11.5px;
  color: #444;
  padding: 1px 0;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.wb-course-learn ul li::before {
  content: '✓';
  color: #1a56db;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================================================================
   PHASE 7 — TESTIMONIALS
================================================================ */

.wb-testimonials-intro {
  text-align: center;
  margin-bottom: 28px;
}
.wb-testimonials-intro .wb-section-title {
  font-size: 28px !important;
  letter-spacing: -0.02em;
  margin-bottom: 10px !important;
}
.wb-testimonials-intro p {
  font-size: 15px;
  color: #555;
}

.wb-testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.wb-testimonials-stat {
  text-align: center;
}
.wb-testimonials-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #1a56db;
  letter-spacing: -0.02em;
}
.wb-testimonials-stat span {
  font-size: 12px;
  color: #666;
}

.wb-testimonials-cta {
  text-align: center;
  margin-top: 28px;
}
.wb-testimonials-cta a {
  font-size: 14px;
  font-weight: 600;
  color: #1a56db;
  text-decoration: none;
  border-bottom: 1.5px solid #1a56db;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.wb-testimonials-cta a:hover { color: #1648c0; border-color: #1648c0; }

/* ================================================================
   PHASE 8 — PARTNERS SECTION
================================================================ */

/* ── Accreditation & Partners: white background, brand top accent ── */
.wb-accreditation {
  background: #f8faff !important;
  color: #2d3b55 !important;
  border-top: 3px solid #1a56db !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: none !important;
  overflow: hidden;
}

.wb-accreditation-label {
  color: #1a56db !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
}

/* Auto-scroll marquee */
.wb-accred-marquee-outer {
  overflow: hidden;
  width: 100%;
  padding: 12px 0 16px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.wb-accred-marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: wb-accred-scroll 28s linear infinite;
}

.wb-accred-marquee-track:hover {
  animation-play-state: paused;
}

.wb-accred-logo {
  height: 62px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: none !important;
  opacity: 1;
  transition: transform 0.2s, opacity 0.2s;
}

.wb-accred-logo:hover {
  transform: scale(1.08);
  opacity: 0.85;
}

@keyframes wb-accred-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Partners section ── */
.wb-partners {
  background: #ffffff !important;
  color: #2d3b55 !important;
  border-top: 3px solid #1a56db !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: none !important;
}

/* Heading block */
.wb-partners-heading {
  text-align: center;
  margin-bottom: 32px;
}

/* Eyebrow pill */
.wb-partners-eyebrow {
  display: inline-block;
  background: #eef3ff;
  color: #1a56db;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.wb-partners-heading h2 {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #111 !important;
  margin: 0 0 8px !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
}

.wb-partners-heading-blue {
  color: #1a56db;
}

.wb-partners-heading p {
  font-size: 14px !important;
  color: #666 !important;
  margin: 0 !important;
}

/* Row divider with label */
.wb-partner-row-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.wb-partner-row-divider::before,
.wb-partner-row-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #d1ddf7);
}
.wb-partner-row-divider::after {
  background: linear-gradient(to left, transparent, #d1ddf7);
}
.wb-partner-row-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a56db;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Logo card row */
.wb-partner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Individual logo card */
.wb-partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid #e8edf8;
  border-top: 3px solid #e8edf8;
  border-radius: 14px;
  padding: 20px 32px;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s, border-top-color 0.22s;
  cursor: default;
  min-width: 140px;
}

.wb-partner-card:hover {
  box-shadow: 0 10px 32px rgba(26, 86, 219, 0.12);
  transform: translateY(-4px);
  border-color: #c7d9fa;
  border-top-color: #1a56db;
}

.wb-partner-logo {
  height: 48px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: none !important;
  opacity: 1;
  display: block;
  transition: transform 0.2s;
}

.wb-partner-card:hover .wb-partner-logo {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .wb-partners-heading h2 {
    font-size: 20px !important;
  }
  .wb-partner-card {
    padding: 14px 22px;
    min-width: 110px;
  }
  .wb-partner-logo {
    height: 36px;
  }
  .wb-accred-logo {
    height: 46px;
  }
}

/* ================================================================
   PHASE 9 — WHY WHITE BANGER (extra cards)
================================================================ */

/* Expand the why-cards grid to 2×2 */
.wb-why-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

@media (max-width: 640px) {
  .wb-why-cards { grid-template-columns: 1fr !important; }
}

/* ================================================================
   PHASE 10 — PLACEMENT COUNTER ANIMATION
================================================================ */

.wb-count-up {
  display: inline-block;
}

/* Heading above the logo marquee */
.wb-placement-logos-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-bottom: 12px;
}

/* ================================================================
   PHASE 11 — PRE-FOOTER CTA BAND
================================================================ */

.wb-prefooter {
  background: linear-gradient(135deg, #1a56db 0%, #1648c0 100%);
  padding: 52px 0;
  text-align: center;
}
.wb-prefooter h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.wb-prefooter p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
}
.wb-prefooter .wb-btn-prefooter {
  display: inline-block;
  padding: 14px 36px;
  background: #fbbf24;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(251,191,36,0.4);
}
.wb-prefooter .wb-btn-prefooter:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

/* ================================================================
   PLACEMENT LEFT PANEL — REDESIGN
================================================================ */

/* ================================================================
   PLACEMENT — HORIZONTAL TWO-BAND LAYOUT
================================================================ */

.wb-placement { padding: 0 !important; }

.wb-placement-top {
  background: linear-gradient(135deg, #0c1f6e 0%, #1a56db 55%, #2563eb 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.wb-placement-top::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 56px solid rgba(255,255,255,0.05);
  top: -120px; right: -80px;
  pointer-events: none;
}
.wb-placement-top::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.04);
  bottom: -60px; left: 5%;
  pointer-events: none;
}
/* Person image — far right, doesn't affect grid flow */
.wb-placement-top .wb-placement-person {
  position: absolute !important;
  bottom: 0 !important;
  right: 3% !important;
  left: auto !important;
  width: 300px !important;
  height: 340px !important;
  background-size: contain !important;
  background-position: center bottom !important;
  z-index: 2;
}

/* Two-column grid: heading left | stats right */
.wb-placement-top-inner {
  display: grid !important;
  grid-template-columns: 5fr 6fr !important;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 3;
  /* Reserve space so person image doesn't overlap stats */
  padding-right: 320px;
}

.wb-placement-top-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Stats — guaranteed 3 columns, never wraps */
.wb-placement-stats {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
  flex-wrap: unset;
  margin-bottom: 0 !important;
  padding-right: 0 !important;
  width: 100%;
}

.wb-placement-stat {
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-top: 3px solid #FBB50E !important;
  border-left: none !important;
  border-radius: 12px !important;
  padding: 22px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}

.wb-placement-stat:hover {
  background: rgba(255,255,255,0.18) !important;
  transform: translateY(-3px);
}

.wb-placement-stat-num {
  font-size: 38px !important;
  font-weight: 800 !important;
  color: #FBB50E !important;
  line-height: 1 !important;
}

.wb-placement-stat-label {
  font-size: 12px !important;
  color: rgba(255,255,255,0.78) !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

/* Bottom band */
.wb-placement-bottom {
  background: #f8faff;
  border-top: 3px solid #1a56db;
  padding: 36px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.wb-placement-logos-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #999;
  text-align: center;
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
  .wb-placement-top-inner {
    padding-right: 260px !important;
  }
  .wb-placement-top .wb-placement-person {
    width: 240px !important;
    height: 280px !important;
  }
}

@media (max-width: 900px) {
  .wb-placement-top-inner {
    grid-template-columns: 1fr !important;
    padding-right: 0 !important;
    gap: 28px;
  }
  .wb-placement-stats {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .wb-placement-top .wb-placement-person {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .wb-placement-stats {
    grid-template-columns: 1fr 1fr !important;
  }
  .wb-placement-stat:last-child {
    grid-column: span 2;
  }
}

/* Eyebrow label */
.wb-placement-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FBB50E;
  background: rgba(251,181,14,0.12);
  border: 1px solid rgba(251,181,14,0.3);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  align-self: flex-start;
}

/* Heading — clean white, no yellow box */
.wb-placement-heading {
  font-size: clamp(26px, 3vw, 34px) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: #fff !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  align-self: auto !important;
  margin-bottom: 12px !important;
  position: relative;
  z-index: 2;
}

.wb-placement-heading-gold {
  color: #FBB50E;
}

/* Tagline */
.wb-placement-tagline {
  font-size: 14px !important;
  color: rgba(255,255,255,0.78) !important;
  line-height: 1.6 !important;
  margin-bottom: 28px !important;
}

/* Stat cards — left accent bar style */
.wb-placement-stat {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-left: 3px solid #FBB50E !important;
  border-radius: 10px !important;
  padding: 14px 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  transition: background 0.2s;
}

.wb-placement-stat:hover {
  background: rgba(255,255,255,0.14) !important;
}

.wb-placement-stat-num {
  font-size: 30px !important;
  font-weight: 800 !important;
  color: #FBB50E !important;
  line-height: 1 !important;
  min-width: 72px;
}

.wb-placement-stat-label {
  font-size: 12.5px !important;
  color: rgba(255,255,255,0.88) !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
}


/* Logo rows — stronger fade edges */
.wb-logo-marquee-row {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent) !important;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent) !important;
}

/* Logo marquee track — consistent gap */
.wb-logo-marquee-track {
  gap: 12px !important;
}

/* Logo cards */
.wb-place-logo {
  background: #ffffff !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
  min-height: 52px !important;
  min-width: 110px !important;
  max-width: 160px !important;
  box-shadow: 0 1px 6px rgba(0,0,0,0.10), 0 2px 14px rgba(0,0,0,0.06) !important;
  border: 1px solid #e8eaf0 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  flex-shrink: 0 !important;
}

.wb-place-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,86,219,0.14) !important;
}

.wb-place-logo img {
  height: 24px !important;
  width: auto !important;
  max-width: 120px !important;
  object-fit: contain !important;
  display: block !important;
}

/* Marquee fade edges — tighter so first logo isn't cut */
.wb-logo-marquee-row {
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent) !important;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent) !important;
}

/* CTA link */
.wb-placement-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #FBB50E;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(251,181,14,0.4);
  padding-bottom: 2px;
  position: relative;
  z-index: 2;
  align-self: flex-start;
  transition: border-color 0.2s, color 0.2s;
}

.wb-placement-cta:hover {
  color: #fcd34d;
  border-color: #fcd34d;
}

/* ================================================================
   PHASE 12 — SCROLL PROGRESS BAR
================================================================ */

#wb-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #1a56db, #fbbf24);
  z-index: 99999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ================================================================
   PHASE 13 — TYPOGRAPHY POLISH
================================================================ */

.wb-section-title {
  font-size: 28px !important;
  letter-spacing: -0.02em !important;
}

.wb-hero-title {
  font-size: clamp(32px, 5.5vw, 52px) !important;
  letter-spacing: -0.02em !important;
}

.wb-course-info .wb-course-name {
  font-size: 15px !important;
}

.wb-course-info .wb-course-desc {
  font-size: 14px !important;
}

/* ================================================================
   PHASE 14 — SECTION SPACING SYNCHRONISATION
   All major content sections use the same 64px vertical rhythm.
================================================================ */

.wb-accreditation {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.wb-featured-courses {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.wb-testimonials {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.wb-partners {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.wb-why {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.wb-placement {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.wb-prefooter {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

@media (max-width: 768px) {
  .wb-featured-courses,
  .wb-testimonials,
  .wb-why,
  .wb-placement,
  .wb-prefooter {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .wb-accreditation {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}

/* ================================================================
   LOCATIONS SECTION — Homepage & Contact Page
================================================================ */
.wb-locations {
  background: #f0f4ff;
  padding: 80px 0 0;
  border-top: 1px solid #e2e8f5;
  position: relative;
  overflow: hidden;
}
.wb-locations::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,86,219,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.wb-loc-top {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
}
.wb-loc-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: #eef3ff; color: #1a56db;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px;
  margin-bottom: 14px;
}
.wb-loc-heading {
  font-size: 34px; font-weight: 800;
  color: #111; margin: 0 0 10px;
  letter-spacing: -0.02em; line-height: 1.2;
}
.wb-loc-heading span { color: #1a56db; }
.wb-loc-sub { font-size: 15px; color: #666; margin: 0; }

/* Tab Buttons */
.wb-loc-tabs {
  display: flex; gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}
.wb-loc-tab {
  display: flex; flex-direction: column;
  align-items: center; gap: 3px;
  padding: 20px 40px;
  border: 2px solid #dce7f9;
  background: white; border-radius: 18px;
  cursor: pointer; transition: all 0.22s;
  min-width: 220px; font-family: 'Inter', sans-serif;
  position: relative; overflow: hidden;
}
.wb-loc-tab::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: #1a56db;
  transform: scaleX(0); transition: transform 0.22s;
  border-radius: 0 0 3px 3px;
}
.wb-loc-tab:hover { border-color: #1a56db; box-shadow: 0 6px 20px rgba(26,86,219,0.12); }
.wb-loc-tab:hover::after { transform: scaleX(1); }
.wb-loc-tab.active {
  border-color: #1a56db;
  background: linear-gradient(135deg, #0c1f6e 0%, #1a56db 100%);
  box-shadow: 0 10px 32px rgba(26,86,219,0.3);
}
.wb-loc-tab.active::after { display: none; }

.wb-loc-tab-icon { font-size: 24px; margin-bottom: 2px; }
.wb-loc-tab-label {
  font-size: 15px; font-weight: 700; color: #111;
  transition: color 0.22s;
}
.wb-loc-tab-sub {
  font-size: 11px; color: #888; font-weight: 500;
  transition: color 0.22s;
}
.wb-loc-tab.active .wb-loc-tab-label { color: white; }
.wb-loc-tab.active .wb-loc-tab-sub { color: rgba(255,255,255,0.7); }

/* Panels */
.wb-loc-panel-hidden { display: none !important; }

.wb-loc-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  background: white;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 40px rgba(26,86,219,0.1);
  border: 1px solid #dce7f9;
  border-bottom: none;
  min-height: 440px;
}

/* Left info panel */
.wb-loc-info {
  padding: 44px 36px;
  background: linear-gradient(160deg, #0c1f6e 0%, #1648c0 60%, #1a56db 100%);
  color: white;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.wb-loc-info::before {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.wb-loc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 18px; width: fit-content;
}
.wb-loc-name {
  font-size: 21px; font-weight: 800;
  color: white; line-height: 1.3; margin-bottom: 4px;
}
.wb-loc-subtitle {
  font-size: 12px; color: rgba(255,255,255,0.6);
  margin-bottom: 28px; font-weight: 500;
}
.wb-loc-details {
  display: flex; flex-direction: column;
  gap: 16px; flex-grow: 1;
}
.wb-loc-detail {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.wb-loc-detail-icon { font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.wb-loc-cta {
  display: block; margin-top: 28px;
  padding: 13px 24px;
  background: #FBB50E; color: #111;
  font-weight: 700; font-size: 14px;
  border-radius: 10px; text-decoration: none;
  text-align: center; transition: all 0.18s;
  position: relative; z-index: 1;
}
.wb-loc-cta:hover { background: #f0a800; color: #111; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(251,181,14,0.4); }
.wb-loc-cta-ghost {
  display: block; margin-top: 10px;
  padding: 11px 24px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  font-size: 13px; font-weight: 600;
  border-radius: 10px; text-decoration: none;
  text-align: center; transition: all 0.18s;
  position: relative; z-index: 1;
}
.wb-loc-cta-ghost:hover { background: rgba(255,255,255,0.1); color: white; }

/* Map */
.wb-loc-map-wrap { position: relative; min-height: 440px; }
.wb-loc-map-wrap iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
  position: absolute; top: 0; left: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .wb-locations { padding: 56px 0 0; }
  .wb-loc-heading { font-size: 26px; }
  .wb-loc-tabs { flex-direction: column; align-items: stretch; gap: 10px; }
  .wb-loc-tab { flex-direction: row; min-width: unset; padding: 16px 20px; gap: 12px; align-items: center; border-radius: 14px; }
  .wb-loc-tab-icon { margin-bottom: 0; }
  .wb-loc-inner { grid-template-columns: 1fr; border-radius: 20px 20px 0 0; }
  .wb-loc-map-wrap { min-height: 280px; }
}
@media (max-width: 600px) {
  .wb-loc-tab { padding: 14px 16px; }
  .wb-loc-info { padding: 28px 24px; }
  .wb-loc-name { font-size: 17px; }
}

/* ================================================================
   INQUIRY MODAL — Complete Visual Redesign v3
   All rules use !important to override wb-style.min.css
================================================================ */

/* ── Overlay ── */
.wb-modal {
  background: rgba(5, 10, 30, 0.82) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

/* ── Container ── */
.wb-modal-inquiry {
  border-radius: 28px !important;
  max-width: 900px !important;
  width: 94% !important;
  box-shadow:
    0 50px 120px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.07) !important;
  transform: scale(0.86) translateY(30px) !important;
  opacity: 0 !important;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease !important;
  overflow: visible !important;
}
.wb-modal.active .wb-modal-inquiry {
  transform: scale(1) translateY(0) !important;
  opacity: 1 !important;
  overflow: hidden !important;
}

/* ── LEFT PANEL — Dark gradient, no photo ── */
.wb-modal-inquiry-left {
  flex: 0 0 40% !important;
  background:
    linear-gradient(160deg, #060e38 0%, #0f2d8a 45%, #1a56db 80%, #0891b2 100%) !important;
  padding: 48px 36px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  color: #fff !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 520px !important;
}

/* Animated glow rings */
.wb-modal-inquiry-left::before {
  content: '' !important;
  position: absolute !important;
  width: 340px !important; height: 340px !important;
  background: radial-gradient(circle, rgba(99,179,255,0.13) 0%, transparent 65%) !important;
  border-radius: 50% !important;
  top: -120px !important; right: -120px !important;
  animation: wbOrb1 8s ease-in-out infinite !important;
}
.wb-modal-inquiry-left::after {
  content: '' !important;
  position: absolute !important;
  width: 260px !important; height: 260px !important;
  background: radial-gradient(circle, rgba(251,181,14,0.16) 0%, transparent 65%) !important;
  border-radius: 50% !important;
  bottom: -90px !important; left: -80px !important;
  animation: wbOrb2 10s ease-in-out infinite !important;
}
@keyframes wbOrb1 {
  0%,100% { transform: scale(1) translate(0,0); }
  50%      { transform: scale(1.18) translate(14px,-16px); }
}
@keyframes wbOrb2 {
  0%,100% { transform: scale(1) translate(0,0); }
  50%      { transform: scale(1.22) translate(-12px, 14px); }
}

/* Grid dots decoration */
.wb-modal-inquiry-left-content {
  position: relative !important;
  z-index: 2 !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
}

/* Brand badge */
.wb-modal-inquiry-left-content::before {
  content: 'WHITE BANGER' !important;
  display: inline-block !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  color: rgba(255,255,255,0.55) !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 20px !important;
  padding: 5px 12px !important;
  margin-bottom: 18px !important;
}

.wb-modal-inquiry-left h3 {
  font-size: 30px !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-bottom: 12px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.4px !important;
}
.wb-modal-inquiry-left p {
  font-size: 14px !important;
  color: rgba(255,255,255,0.68) !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
}

/* Trust badges */
.wb-modal-trust {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
.wb-modal-trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 11px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 12px !important;
  padding: 10px 15px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.9) !important;
  transition: background 0.22s, transform 0.22s !important;
  cursor: default !important;
}
.wb-modal-trust-item:hover {
  background: rgba(255,255,255,0.16) !important;
  transform: translateX(4px) !important;
}
.wb-modal-trust-icon {
  font-size: 18px !important;
  flex-shrink: 0 !important;
  width: 28px !important;
  height: 28px !important;
  background: rgba(255,255,255,0.12) !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

/* ── RIGHT PANEL ── */
.wb-modal-inquiry-right {
  flex: 1 !important;
  background: #f7f9fc !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
  max-height: 90vh !important;
  position: relative !important;
}

/* ── Close Button ── */
.wb-modal-close {
  position: absolute !important;
  top: 16px !important; right: 18px !important;
  width: 34px !important; height: 34px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.9) !important;
  background: rgba(255,255,255,0.15) !important;
  border: 1.5px solid rgba(255,255,255,0.25) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 20 !important;
  transition: background 0.2s, transform 0.3s !important;
  line-height: 1 !important;
  opacity: 1 !important;
}
.wb-modal-close:hover {
  background: rgba(255,255,255,0.28) !important;
  transform: rotate(90deg) scale(1.08) !important;
}

/* ── Header ── */
.wb-mir-header {
  background: #fff !important;
  padding: 26px 28px 20px !important;
  border-bottom: 1.5px solid #edf0f5 !important;
  flex-shrink: 0 !important;
}
.wb-mir-header h3 {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #0a1a5c !important;
  margin-bottom: 3px !important;
  letter-spacing: -0.3px !important;
}
.wb-mir-header p {
  font-size: 13px !important;
  color: #6b7280 !important;
}

/* Accent line under header */
.wb-mir-header::after {
  content: '' !important;
  display: block !important;
  width: 48px !important; height: 3px !important;
  background: linear-gradient(90deg, #1a56db, #0891b2) !important;
  border-radius: 4px !important;
  margin-top: 12px !important;
}

/* ── Form body ── */
.wb-inquiry-form {
  padding: 22px 28px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

/* ── Tab switcher ── */
.wb-form-tabs {
  display: flex !important;
  background: #edf0f6 !important;
  border-radius: 12px !important;
  padding: 4px !important;
  gap: 4px !important;
  margin-bottom: 20px !important;
}
.wb-form-tab {
  flex: 1 !important;
  text-align: center !important;
  padding: 10px 14px !important;
  border-radius: 9px !important;
  background: transparent !important;
  color: #6b7280 !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  user-select: none !important;
  letter-spacing: 0.01em !important;
}
.wb-form-tab.active {
  background: #1a56db !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(26,86,219,0.35) !important;
}

/* ── Staff field ── */
.wb-staff-field {
  background: #eff4ff !important;
  border: 1.5px solid #c3d5fd !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  margin-bottom: 16px !important;
}
.wb-staff-field .wb-form-label {
  color: #1a56db !important;
  font-size: 10px !important;
  letter-spacing: 0.08em !important;
}

/* ── Labels ── */
.wb-inquiry-form .wb-form-label {
  font-size: 10.5px !important;
  font-weight: 800 !important;
  color: #374151 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
}

/* ── Form groups ── */
.wb-form-group {
  margin-bottom: 14px !important;
}
.wb-form-group.has-icon .wb-input-icon {
  color: #9ca3af !important;
  transition: color 0.2s !important;
}
.wb-form-group.has-icon:focus-within .wb-input-icon {
  color: #1a56db !important;
}

/* ── Inputs & selects ── */
.wb-inquiry-form input,
.wb-inquiry-form select {
  width: 100% !important;
  padding: 13px 14px !important;
  border: 1.5px solid #e4e8f0 !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-family: 'Inter', sans-serif !important;
  color: #111 !important;
  background: #fff !important;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04) !important;
}
.wb-form-group.has-icon input,
.wb-form-group.has-icon select {
  padding-left: 42px !important;
}
.wb-inquiry-form input:hover,
.wb-inquiry-form select:hover {
  border-color: #93b4f5 !important;
}
.wb-inquiry-form input:focus,
.wb-inquiry-form select:focus {
  outline: none !important;
  border-color: #1a56db !important;
  box-shadow: 0 0 0 4px rgba(26,86,219,0.1) !important;
  transform: translateY(-1px) !important;
  background: #fff !important;
}
.wb-inquiry-form input::placeholder { color: #adb5bd !important; }

/* ── Cascade reveal ── */
#wbTrackWrap,
#wbCourseWrap {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition:
    max-height 0.38s cubic-bezier(0.4,0,0.2,1),
    opacity 0.28s ease,
    margin 0.28s ease !important;
  margin-bottom: 0 !important;
}
#wbTrackWrap.wb-visible,
#wbCourseWrap.wb-visible {
  max-height: 130px !important;
  opacity: 1 !important;
  margin-bottom: 14px !important;
}

/* ── Submit button ── */
.wb-inquiry-form button[type="submit"],
.wb-inquiry-form .wb-btn,
.wb-inquiry-form .wb-btn-full {
  width: 100% !important;
  padding: 15px 22px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-top: 10px !important;
  background: linear-gradient(90deg, #0a1a5c 0%, #1a56db 60%, #2563eb 100%) !important;
  border: none !important;
  border-radius: 14px !important;
  color: #fff !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  letter-spacing: 0.03em !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}
/* Shimmer sweep */
.wb-inquiry-form button[type="submit"]::after,
.wb-inquiry-form .wb-btn::after,
.wb-inquiry-form .wb-btn-full::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: -130% !important;
  width: 55% !important; height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent) !important;
  transform: skewX(-20deg) !important;
  transition: left 0.6s ease !important;
}
.wb-inquiry-form button[type="submit"]:hover,
.wb-inquiry-form .wb-btn:hover,
.wb-inquiry-form .wb-btn-full:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(26,86,219,0.45) !important;
}
.wb-inquiry-form button[type="submit"]:hover::after,
.wb-inquiry-form .wb-btn:hover::after,
.wb-inquiry-form .wb-btn-full:hover::after {
  left: 160% !important;
}
.wb-inquiry-form button[type="submit"]:active,
.wb-inquiry-form .wb-btn:active,
.wb-inquiry-form .wb-btn-full:active {
  transform: translateY(0) !important;
  box-shadow: none !important;
}

/* ── Animations ── */
@keyframes wbSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wbShake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-5px); }
  40%,80% { transform: translateX(5px); }
}
.wb-input-error { border-color: #ef4444 !important; animation: wbShake 0.35s ease !important; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .wb-modal-inquiry {
    flex-direction: column !important;
    width: 96% !important;
    max-height: 94vh !important;
    border-radius: 22px !important;
    overflow-y: auto !important;
  }
  .wb-modal-inquiry-left {
    flex: none !important;
    min-height: 170px !important;
    padding: 30px 24px 22px !important;
    justify-content: flex-end !important;
  }
  .wb-modal-inquiry-left h3 { font-size: 22px !important; }
  .wb-modal-trust { flex-direction: row !important; flex-wrap: wrap !important; }
  .wb-modal-trust-item { flex: 1 !important; min-width: 130px !important; font-size: 11.5px !important; padding: 8px 10px !important; }
  .wb-modal-inquiry-right { max-height: none !important; }
  .wb-mir-header { padding: 20px 20px 16px !important; }
  .wb-inquiry-form { padding: 18px 20px 22px !important; }
}


/* ── SEO Keyword Content Block ───────────────────────────────── */
.wb-seo-content-block {
  background: #f5f7ff !important;
  padding: 52px 0 48px !important;
  border-top: 1px solid #e0e6f7 !important;
}
.wb-seo-content-inner {
  max-width: 860px !important;
  margin: 0 auto !important;
  text-align: left !important;
}
.wb-seo-heading {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #060e38 !important;
  margin-bottom: 16px !important;
  line-height: 1.4 !important;
}
.wb-seo-body {
  font-size: 0.975rem !important;
  line-height: 1.8 !important;
  color: #374151 !important;
}
.wb-seo-body strong {
  color: #1a56db !important;
  font-weight: 600 !important;
}


/* ── Nearby Cities Section ───────────────────────────────── */
.wb-nearby-cities-section {
  background: #fff !important;
  padding: 48px 0 44px !important;
  border-top: 1px solid #e5e9f4 !important;
}
.wb-nearby-cities-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #060e38 !important;
  text-align: center !important;
  margin-bottom: 8px !important;
}
.wb-nearby-cities-sub {
  text-align: center !important;
  color: #6b7280 !important;
  font-size: 0.92rem !important;
  margin-bottom: 28px !important;
}
.wb-nearby-cities-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  justify-content: center !important;
}
.wb-nearby-city-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #f0f4ff !important;
  border: 1px solid #c7d6f5 !important;
  border-radius: 100px !important;
  padding: 8px 20px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #1a56db !important;
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.wb-nearby-city-link:hover {
  background: #1a56db !important;
  border-color: #1a56db !important;
  color: #fff !important;
}


/* ── Cities We Serve (index.html) ───────────────────────── */
.wb-cities-serve-section {
  padding: 32px 0 28px !important;
  background: linear-gradient(160deg, #060e38 0%, #0b1755 55%, #0d206e 100%) !important;
  position: relative !important;
  overflow: hidden !important;
}
.wb-cities-serve-section::before,
.wb-cities-serve-section::after { display: none !important; }

.wb-cities-serve-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  text-align: center !important;
  margin-bottom: 4px !important;
  position: relative !important;
}
.wb-cities-serve-sub {
  text-align: center !important;
  color: rgba(255,255,255,0.6) !important;
  max-width: 540px !important;
  margin: 0 auto 16px !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
  position: relative !important;
}

/* ── Compact pill grid ── */
.wb-cities-serve-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
  justify-content: center !important;
  position: relative !important;
}
.wb-city-serve-card {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 14px 6px 10px !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s !important;
  white-space: nowrap !important;
}
/* Pin icon inline */
.wb-city-serve-card::before {
  content: '📍' !important;
  font-size: 11px !important;
  display: inline !important;
  margin-bottom: 0 !important;
  flex-shrink: 0 !important;
  transition: transform 0.18s !important;
}
.wb-city-serve-card:hover {
  background: rgba(26,86,219,0.28) !important;
  border-color: rgba(26,86,219,0.7) !important;
  box-shadow: 0 3px 14px rgba(26,86,219,0.25) !important;
  transform: translateY(-2px) !important;
}
/* Home city (Kaithal) — gold pill */
.wb-city-serve-card:first-child {
  background: rgba(245,158,11,0.15) !important;
  border-color: rgba(245,158,11,0.45) !important;
}
.wb-city-serve-card:first-child::before {
  content: '🏠' !important;
}
.wb-city-serve-card:first-child:hover {
  background: rgba(245,158,11,0.28) !important;
  border-color: rgba(245,158,11,0.7) !important;
  box-shadow: 0 3px 14px rgba(245,158,11,0.2) !important;
}
.wb-city-serve-name {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  display: inline !important;
  margin-bottom: 0 !important;
  letter-spacing: 0.01em !important;
}
.wb-city-serve-dist {
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  display: inline-block !important;
  background: rgba(26,86,219,0.35) !important;
  color: #93c5fd !important;
  padding: 1px 7px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(26,86,219,0.4) !important;
  letter-spacing: 0.02em !important;
  flex-shrink: 0 !important;
}
.wb-city-serve-card:first-child .wb-city-serve-dist {
  background: rgba(245,158,11,0.2) !important;
  color: #fcd34d !important;
  border-color: rgba(245,158,11,0.45) !important;
}
@media (max-width: 600px) {
  .wb-cities-serve-section { padding: 24px 0 20px !important; }
  .wb-cities-serve-grid { gap: 6px !important; }
  .wb-city-serve-card { padding: 5px 11px 5px 8px !important; }
  .wb-city-serve-name { font-size: 0.72rem !important; }
}


/* ================================================================
   CITY SEO PAGES — uses White Banger's own wb-* design system
================================================================ */

/* Eye-brow label above section titles on city pages */
.wb-city-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a56db;
  margin-bottom: 8px;
  text-align: center;
}

.wb-city-section-sub {
  color: #555;
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
  line-height: 1.6;
}

/* ── CITY HERO ─────────────────────────────── */
.wb-city-hero {
  background: linear-gradient(135deg, #060e38 0%, #0b1755 55%, #0d2070 100%);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.wb-city-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(26,86,219,0.22) 0%, transparent 68%);
  pointer-events: none;
}
.wb-city-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(8,145,178,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Override breadcrumb colours inside dark hero */
.wb-city-hero .wb-breadcrumb { color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.wb-city-hero .wb-breadcrumb a { color: rgba(255,255,255,0.55); }
.wb-city-hero .wb-breadcrumb a:hover { color: #fff; }
.wb-city-hero .wb-breadcrumb-sep { color: rgba(255,255,255,0.3); }

.wb-city-hero-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 720px;
}
.wb-city-hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
  max-width: 620px;
  line-height: 1.65;
}
.wb-city-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.wb-city-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.wb-city-badge-nasscom {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.45);
  color: #fcd34d;
}
.wb-city-badge-dist {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: #cbd5e1;
}
.wb-city-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
/* hero stats inherits existing .wb-hero-stats / .wb-hero-stat-pill */
.wb-city-hero .wb-hero-stats { justify-content: flex-start; }

/* ── COURSES SECTION title centring override ─ */
.wb-featured-courses .wb-section-title { text-align: center; }

/* ── COMMUTE SECTION ─────────────────────────── */
.wb-city-commute {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid #e5e7eb;
}
.wb-city-commute .wb-section-title { text-align: center; }
.wb-city-commute-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-top: 28px;
}
.wb-city-commute-text {
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 15px;
}
.wb-city-commute-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.wb-city-commute-list li {
  display: flex;
  gap: 10px;
  color: #444;
  font-size: 14px;
  line-height: 1.55;
}
.wb-city-commute-list li::before {
  content: '→';
  color: #1a56db;
  font-weight: 700;
  flex-shrink: 0;
}
.wb-city-quick-ref {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(6,14,56,0.08);
}
.wb-city-quick-ref th {
  background: #060e38;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
.wb-city-quick-ref td {
  padding: 10px 16px;
  color: #444;
  border-bottom: 1px solid #f0f0f4;
  vertical-align: top;
}
.wb-city-quick-ref tr:nth-child(even) td { background: #f8f9ff; }
.wb-city-quick-ref tr:last-child td { border-bottom: none; }

@media (max-width: 768px) {
  .wb-city-commute-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ── FAQ SECTION ─────────────────────────── */
.wb-city-faq {
  background: #f0f4ff;
  padding: 64px 0;
}
.wb-city-faq .wb-section-title { text-align: center; }
.wb-city-accordion { width: 100%; margin-top: 28px; }
.wb-acc-item.wb-city-acc {
  background: #fff;
  border: 1px solid #dde4f5;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.wb-acc-item.wb-city-acc:hover { box-shadow: 0 2px 12px rgba(26,86,219,0.10); }
.wb-acc-item.wb-city-acc .wb-acc-header {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #111;
  font-size: 15px;
  user-select: none;
}
.wb-acc-item.wb-city-acc .wb-acc-header:hover { background: #f0f4ff; }
.wb-acc-item.wb-city-acc .wb-acc-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
  color: #555;
  font-size: 14px;
  line-height: 1.75;
}
.wb-acc-item.wb-city-acc.open .wb-acc-body {
  max-height: 320px;
  padding: 0 20px 18px;
}
.wb-acc-item.wb-city-acc .wb-acc-arrow {
  font-size: 11px;
  color: #1a56db;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.wb-acc-item.wb-city-acc.open .wb-acc-arrow { transform: rotate(180deg); }

/* ── NEARBY CITIES ─────────────────────────── */
.wb-city-nearby {
  background: #060e38;
  padding: 44px 0;
}
.wb-city-nearby-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}
.wb-city-nearby-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.wb-city-nearby-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #cbd5e1;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.wb-city-nearby-pill:hover,
.wb-city-nearby-pill.wb-city-nearby-active {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}

/* ================================================================
   TESTIMONIALS TABS — Student Reviews / National / International
================================================================ */

.wb-testi-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}

.wb-testi-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid #dde4f5;
  background: #fff;
  color: #060e38;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.wb-testi-tab:hover {
  border-color: #1a56db;
  color: #1a56db;
  background: #f0f4ff;
}

.wb-testi-tab.active {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
}

/* International panel — 4 videos, same card size as 7-column grid, centred */
/* Formula: max-width = 4 × (col-width) + 3 × gap
   where col-width = (100% − 6×12px) / 7
   Simplifies to: calc(57.14% − 5px) */
.wb-testi-panel-intl {
  grid-template-columns: repeat(4, 1fr) !important;
  max-width: calc(57.14% - 5px);
  margin-left: auto !important;
  margin-right: auto !important;
}

/* All panels — video fills its column cleanly */
.wb-testi-panel .wb-testimonial-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

/* ================================================================
   MOBILE OVERHAUL — M1: Reduce wasted vertical space
================================================================ */

@media (max-width: 640px) {
  /* City page sections */
  .wb-city-hero        { padding: 32px 0 40px !important; }
  .wb-city-commute     { padding: 40px 0 !important; }
  .wb-city-faq         { padding: 40px 0 !important; }
  .wb-city-nearby      { padding: 28px 0 !important; }
  .wb-cities-serve-section { padding: 24px 0 20px !important; }

  /* Shrink decorative glows so they don't inflate layout */
  .wb-city-hero::before,
  .wb-city-hero::after  { display: none !important; }

  /* City commute — tighter gap on single column */
  .wb-city-commute-inner { gap: 20px !important; }

  /* City FAQ accordion answer height */
  .wb-acc-item.wb-city-acc.open .wb-acc-body { max-height: 600px !important; }

  /* Cities serve section text */
  .wb-cities-serve-sub  { margin-bottom: 12px !important; }
}

@media (max-width: 480px) {
  /* More content, less blank sides */
  .wb-container {
    width: 94vw !important;
    max-width: 94vw !important;
    padding: 0 8px !important;
  }

  /* Testimonials stats — tighter on tiny screens */
  .wb-testimonials-stats { gap: 8px !important; }
  .wb-testimonials-stat strong { font-size: 18px !important; }

  /* City hero title word-wrap safety */
  .wb-city-hero-title { word-break: break-word !important; }

  /* Tab buttons — shorter text + padding on tiny screens */
  .wb-testi-tabs  { gap: 6px !important; }
  .wb-testi-tab   { padding: 8px 12px !important; font-size: 12px !important; }
}

/* ================================================================
   MOBILE OVERHAUL — M2: Video carousels (scroll-snap)
   Converts every wb-testi-panel into a horizontal swipeable carousel
   showing 1.5 videos at a time. Desktop grid is completely untouched.
================================================================ */

@media (max-width: 640px) {
  /* Override grid → flex scroll carousel */
  .wb-testi-panel {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: scroll !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 10px !important;
    padding-bottom: 8px !important;
  }
  .wb-testi-panel::-webkit-scrollbar { display: none !important; }

  /* Each card: 66% width → 1 full visible + 0.5 peeking = swipe hint */
  .wb-testi-panel .wb-testimonial-card {
    scroll-snap-align: start !important;
    flex: 0 0 calc(66.67% - 7px) !important;
    min-width: 0 !important;
  }

  /* Reset the international panel max-width constraint (not needed on mobile) */
  .wb-testi-panel-intl {
    max-width: 100% !important;
    grid-template-columns: unset !important;
  }

  /* Carousel swipe hint label */
  .wb-testi-tabs::after {
    content: 'Swipe videos ›';
    display: block;
    width: 100%;
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
    letter-spacing: 0.05em;
  }
}

/* ================================================================
   MOBILE OVERHAUL — M3: Functional fixes
================================================================ */

@media (max-width: 640px) {
  /* Quick-ref table — scrollable on mobile */
  .wb-city-quick-ref-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 8px !important;
  }
  .wb-city-quick-ref { min-width: 320px !important; }

  /* Google Maps iframe — comfortable height on mobile */
  .wb-loc-map-wrap iframe { height: 220px !important; }
  .wb-loc-map-wrap         { min-height: 220px !important; }

  /* City hero stats row — wrap cleanly */
  .wb-city-hero .wb-hero-stats {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  /* City hero CTA buttons stack on tiny screens */
  .wb-city-hero-cta {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  /* Nearby city pills — smaller on mobile */
  .wb-city-nearby-pill {
    padding: 6px 14px !important;
    font-size: 12px !important;
  }
}

/* ================================================================
   ANNOUNCEMENTS & BLOGS — dominant announce (dark) + secondary blog
================================================================ */

.wb-announce-blogs {
  padding: 36px 0 32px;
  background: #f4f7ff;
}

/* Outer frame */
.wb-ab-frame {
  display: grid;
  grid-template-columns: 1.1fr 1px 0.9fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(6,14,56,0.13);
  min-height: 360px;
}

/* Vertical divider — invisible since backgrounds differ */
.wb-ab-divider {
  background: transparent;
  width: 1px;
  align-self: stretch;
}

/* ── Announcements panel (dark navy) ── */
.wb-ab-announce {
  background: linear-gradient(155deg, #060e38 0%, #0c1d60 100%);
  padding: 26px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
/* subtle grid overlay */
.wb-ab-announce::before {
  content: '';
  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: 28px 28px;
  pointer-events: none;
}

/* ── Blog panel (clean light) ── */
.wb-ab-blogs {
  background: #fff;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Panel headers ── */
.wb-ab-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
}

/* Announce header: title + live dot side by side */
.wb-ab-announce .wb-ab-panel-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.wb-ab-blogs .wb-ab-panel-header {
  border-bottom: 2px solid #eef2fb;
}

.wb-ab-announce-hd-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* Pulsing live ring */
.wb-ab-live-ring {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
  position: relative;
}
.wb-ab-live-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #f59e0b;
  animation: wb-live-pulse 1.6s ease-out infinite;
  opacity: 0;
}
@keyframes wb-live-pulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  80%  { transform: scale(2);   opacity: 0;   }
  100% { transform: scale(2);   opacity: 0;   }
}

.wb-ab-panel-title {
  font-size: 15px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}
.wb-ab-announce .wb-ab-panel-title {
  color: #fff;
}
.wb-ab-blog-heading {
  color: #0f1c3f;
  flex: 1;
}

/* View all links */
.wb-ab-view-all {
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 12px;
  border-radius: 20px;
  transition: all 0.15s;
}
.wb-ab-view-all:not(.wb-ab-view-all-dark) {
  color: #1a56db;
  border: 1px solid #c7d7f8;
}
.wb-ab-view-all:not(.wb-ab-view-all-dark):hover {
  background: #eef3ff;
}
.wb-ab-view-all-dark {
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.18);
}
.wb-ab-view-all-dark:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* ── Featured announcement card ── */
.wb-announce-featured {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,158,11,0.45);
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 14px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.wb-announce-featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.wb-announce-featured-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #f59e0b;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 2px 9px;
  border-radius: 20px;
}

.wb-announce-featured-text {
  font-size: 14px;
  font-weight: 600;
  color: #e8eeff;
  margin: 0;
  line-height: 1.55;
}

.wb-announce-featured-cta {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: #f59e0b;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}
.wb-announce-featured-cta:hover {
  opacity: 0.8;
}

/* ── Secondary announcements list ── */
.wb-announce-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.wb-announce-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wb-announce-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.wb-announce-item:hover .wb-announce-text {
  color: #93c5fd;
}

.wb-announce-badge {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 2px;
}
.wb-announce-badge.wb-badge-info {
  background: rgba(99,179,237,0.18);
  color: #93c5fd;
  border: 1px solid rgba(99,179,237,0.25);
}
.wb-announce-badge.wb-badge-success {
  background: rgba(52,211,153,0.15);
  color: #6ee7b7;
  border: 1px solid rgba(52,211,153,0.22);
}
.wb-announce-badge.wb-badge-warning {
  background: rgba(245,158,11,0.18);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.3);
}

.wb-announce-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wb-announce-text {
  font-size: 13px;
  color: rgba(220,228,255,0.88);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
  transition: color 0.15s;
}

.wb-announce-date {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
}
.wb-announce-date-light {
  color: rgba(255,255,255,0.42);
}

/* ── Blog list ── */
.wb-blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wb-blog-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid #f0f4fb;
  transition: background 0.15s;
}
.wb-blog-item:first-child {
  padding-top: 4px;
}
.wb-blog-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.wb-blog-item:hover .wb-blog-title {
  color: #1a56db;
}

.wb-blog-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wb-blog-cat {
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
  line-height: 1.2;
}

.wb-blog-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  justify-content: center;
}

.wb-blog-title {
  font-size: 13px;
  font-weight: 600;
  color: #1e2d5a;
  margin: 0;
  line-height: 1.48;
  transition: color 0.15s;
}

.wb-blog-date {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 400;
}

/* ── Mobile: stack vertically ── */
@media (max-width: 640px) {
  .wb-announce-blogs {
    padding: 24px 0 20px;
  }
  .wb-ab-frame {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }
  .wb-ab-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
  }
  .wb-ab-announce {
    padding: 20px 18px 18px;
  }
  .wb-ab-blogs {
    padding: 18px 18px 16px;
  }
}

/* ================================================================
   NAV — Courses mega-menu with two collapsible categories
================================================================ */

/*
 * Old wb-dd-group accordion replaced by wb-mega-col 3-column layout.
 * All mega menu + wb-mega-col CSS is now in wb-header-v2.css.
 * wb-dd-count badge is also defined there.
 * Nothing needed here — block intentionally left empty.
 */

/* ================================================================
   COURSES — Category headers & NASSCOM track cards
================================================================ */

/* Section subtitle */
.wb-section-sub {
  text-align: center;
  color: #64748b;
  font-size: 15px;
  margin: -8px auto 36px;
  max-width: 560px;
  line-height: 1.55;
}

/* Category wrapper — adds visual separation between categories */
.wb-course-category {
  margin-bottom: 52px;
}
.wb-course-category:last-child {
  margin-bottom: 0;
}

/* Category header row */
.wb-course-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e8edf8;
}

.wb-cat-label-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wb-cat-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.wb-cat-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f1c3f;
  margin: 0 0 2px;
  line-height: 1.2;
}

.wb-cat-desc {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.wb-cat-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #1a56db;
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 14px;
  border: 1.5px solid #c7d7f8;
  border-radius: 50px;
  transition: background 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.wb-cat-view-all:hover {
  background: #eef3ff;
  border-color: #1a56db;
}

/* ── NASSCOM category background tint ── */
.wb-course-cat-nasscom {
  background: linear-gradient(135deg, #f0f6ff 0%, #f8faff 100%);
  border: 1px solid #dce8fb;
  border-radius: 16px;
  padding: 28px 28px 24px;
}
.wb-course-cat-nasscom .wb-course-cat-header {
  border-bottom-color: #c8dcf8;
}
.wb-course-cat-nasscom .wb-cat-title {
  color: #1a3a7a;
}

/* ── NASSCOM track cards grid ── */
.wb-nasscom-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.wb-nasscom-track-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

/* IT & ITeS — blue */
.wb-nasscom-track-it {
  background: linear-gradient(135deg, #0f1c3f 0%, #1a56db 100%);
  color: #fff;
}
.wb-nasscom-track-it:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(26,86,219,0.32);
}

/* Emerging Tech — deep purple-navy */
.wb-nasscom-track-tech {
  background: linear-gradient(135deg, #0e1a33 0%, #0891b2 100%);
  color: #fff;
}
.wb-nasscom-track-tech:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(8,145,178,0.32);
}

.wb-nasscom-track-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wb-nasscom-track-icon {
  font-size: 32px;
  line-height: 1;
}

.wb-nasscom-count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.wb-nasscom-track-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

.wb-nasscom-track-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.55;
  flex: 1;
}

.wb-nasscom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wb-nasscom-tags span {
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 2px 9px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.wb-nasscom-track-link {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* NASSCOM trust bar */
.wb-nasscom-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  padding-top: 6px;
}
.wb-nasscom-trust span {
  font-size: 12px;
  font-weight: 600;
  color: #3b5ea6;
}

/* ── University Programs — Homepage category cards ── */
.wb-course-cat-uni {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f0ff 100%);
  border-radius: 16px;
  padding: 28px 28px 24px;
}
.wb-uni-program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.wb-uni-prog-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px 18px;
  box-shadow: 0 2px 14px rgba(6,14,56,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.wb-uni-prog-card:hover {
  box-shadow: 0 8px 28px rgba(6,14,56,0.13);
  transform: translateY(-2px);
}
.wb-uni-prog-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.wb-uni-prog-info { flex: 1; }
.wb-uni-prog-name {
  font-size: 18px;
  font-weight: 800;
  color: #060e38;
  margin: 0 0 4px;
  line-height: 1.2;
}
.wb-uni-prog-full {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  margin-top: 2px;
}
.wb-uni-prog-desc {
  font-size: 12px;
  color: #5a6072;
  line-height: 1.55;
  margin: 0 0 10px;
}
.wb-uni-prog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wb-uni-prog-meta span {
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  background: #f0f4ff;
  padding: 3px 8px;
  border-radius: 50px;
}
.wb-uni-prog-arrow {
  font-size: 20px;
  font-weight: 700;
  align-self: flex-end;
  line-height: 1;
}
.wb-uni-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  padding-top: 6px;
}
.wb-uni-trust-bar span {
  font-size: 12px;
  font-weight: 600;
  color: #5b21b6;
}
@media (max-width: 900px) {
  .wb-uni-program-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .wb-uni-program-cards {
    grid-template-columns: 1fr;
  }
  .wb-course-cat-uni {
    padding: 18px 14px 16px;
    border-radius: 12px;
  }
}

/* ── Mobile: NASSCOM tracks stack ── */
@media (max-width: 640px) {
  .wb-nasscom-tracks {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .wb-course-cat-nasscom {
    padding: 18px 14px 16px;
    border-radius: 12px;
  }
  .wb-course-cat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .wb-cat-view-all {
    align-self: flex-start;
  }
  .wb-cat-title { font-size: 17px; }
  .wb-nasscom-track-title { font-size: 16px; }
  .wb-nasscom-track-card { padding: 16px 14px 14px; }
  .wb-section-sub { font-size: 13px; margin-bottom: 24px; }
}

/* ================================================================
   HOMEPAGE POLISH — Hero full-bleed on mobile
================================================================ */

@media (max-width: 640px) {
  .wb-hero {
    border-radius: 0 !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
  }
  .wb-hero-slide {
    border-radius: 0 !important;
  }
}

/* ================================================================
   HOMEPAGE POLISH — Hero stat pills wrap on mobile
================================================================ */

.wb-hero-stats {
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 480px) {
  .wb-hero-stats {
    justify-content: center;
    gap: 6px;
  }
  .wb-hero-stat {
    font-size: 11px !important;
    padding: 4px 10px !important;
  }
}

/* ================================================================
   HOMEPAGE POLISH — "Watch Student Stories" no wrap
================================================================ */

.wb-hero-ghost-nowrap {
  white-space: nowrap;
}

/* ================================================================
   HOMEPAGE POLISH — Hero slide dots
================================================================ */

.wb-hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.wb-hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
}

.wb-hero-dot.active,
.wb-hero-dot:hover {
  background: #fff;
  border-color: #fff;
}

/* ================================================================
   HOMEPAGE POLISH — Section background rhythm
================================================================ */

/* Testimonials — soft blue tint */
section.wb-testimonials {
  background: #f0f4ff;
}

/* Accreditation bar — warm off-white */
.wb-accreditation {
  background: #fafaf7;
}

/* Why White Banger — keep white, add subtle top border */
.wb-why-section {
  border-top: 1px solid #e8ecf3;
}

/* Placement section — very light grey */
.wb-placement-section {
  background: #f6f8fb;
}

/* ================================================================
   HOMEPAGE POLISH — Play button overlay on testimonial cards
================================================================ */

.wb-testimonial-card {
  position: relative;
  overflow: hidden;
}

.wb-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  z-index: 5;
  border-radius: inherit;
  transition: background 0.2s;
  pointer-events: none;
}

.wb-testimonial-card:hover .wb-play-overlay {
  background: rgba(0, 0, 0, 0.08);
}

.wb-play-overlay span {
  font-size: 38px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
  transition: transform 0.2s;
}

.wb-testimonial-card:hover .wb-play-overlay span {
  transform: scale(1.12);
}

/* Hide overlay once video starts playing */
.wb-testimonial-video:not([paused]) ~ .wb-play-overlay,
.wb-testimonial-card.playing .wb-play-overlay {
  opacity: 0;
  pointer-events: none;
}

/* ================================================================
   HOMEPAGE POLISH — Swipe hint — mobile only
================================================================ */

.wb-testi-swipe-hint {
  display: none;
}

@media (max-width: 640px) {
  .wb-testi-swipe-hint {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #64748b;
    margin-top: 8px;
    letter-spacing: 0.02em;
  }
}

/* ================================================================
   HOMEPAGE POLISH — FAB resize (44 px touch target)
================================================================ */

.wb-fab,
.wb-fab-btn {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
}

.wb-fab svg,
.wb-fab-btn svg,
.wb-fab img,
.wb-fab-btn img {
  width: 22px !important;
  height: 22px !important;
}

/* ================================================================
   HOMEPAGE POLISH — Testimonials stats chips
================================================================ */

.wb-testi-stats-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  padding: 20px 0 8px;
}

.wb-testi-stats-chips .wb-stat-chip,
.wb-testi-stats-chips > * {
  background: #fff;
  border: 1px solid #dbe3f4;
  border-radius: 50px;
  padding: 10px 22px;
  box-shadow: 0 1px 4px rgba(26,86,219,0.07);
  font-size: 14px;
  font-weight: 600;
  color: #1e2d5a;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .wb-testi-stats-chips {
    gap: 8px 12px;
    padding: 16px 0 4px;
  }
  .wb-testi-stats-chips .wb-stat-chip,
  .wb-testi-stats-chips > * {
    font-size: 12px !important;
    padding: 8px 14px !important;
  }
}

/* ================================================================
   HOMEPAGE POLISH — "View All Courses" CTA
================================================================ */

.wb-courses-cta-wrap {
  text-align: center;
  margin-top: 36px;
}

.wb-courses-view-all {
  display: inline-block;
  background: #1a56db;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 10px rgba(26,86,219,0.22);
}

.wb-courses-view-all:hover {
  background: #1448c0;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .wb-courses-view-all {
    font-size: 14px;
    padding: 11px 24px;
  }
}

/* ================================================================
   MOBILE POLISH — 4 targeted fixes (desktop untouched)
================================================================ */

/* ── 1. Topbar headline marquee — smaller on mobile ── */
@media (max-width: 640px) {
  .wb-topbar {
    padding: 6px 0 !important;
  }
  .wb-topbar-item {
    font-size: 11px !important;
    gap: 60px !important;
  }
  .wb-topbar-item::before {
    font-size: 5px !important;
    margin-right: 5px !important;
  }
  .wb-topbar a {
    font-size: 11px !important;
  }
}

/* ── 2. Hero section — both slides optimised for mobile ── */
@media (max-width: 640px) {

  /* Hero container: 93vw, fixed pixel height (vh is unreliable on mobile browsers) */
  .wb-hero {
    width: 93vw !important;
    max-width: 93vw !important;
    margin: 10px auto 0 !important;
    height: 300px !important;
    min-height: 300px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
  }

  /* Each slide: full height of container, flex-centered (same for both slides) */
  .wb-hero-slide {
    display: flex !important;
    align-items: flex-end !important;  /* anchor content to bottom */
    justify-content: center !important;
    padding-bottom: 18px !important;
  }

  /* Stronger bottom-up gradient so text is always legible */
  .wb-hero-overlay {
    opacity: 0.65 !important;
  }

  /* Content block: centred column, tight */
  .wb-hero-content {
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    text-align: center !important;
    padding: 0 14px !important;
  }

  /* Title: both slides — compact single-line feel */
  .wb-hero-title {
    font-size: 17px !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
    color: #fff !important;
    font-weight: 800 !important;
  }

  /* Subtitle text (span inside title) */
  .wb-hero-subtitle {
    font-size: 11px !important;
    display: block !important;
    margin-top: 3px !important;
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 400 !important;
  }

  /* CTA buttons: side by side, auto width, compact */
  .wb-hero-cta-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 10px !important;
    margin-bottom: 8px !important;
  }
  .wb-btn-hero,
  .wb-btn-hero-ghost {
    font-size: 11px !important;
    padding: 7px 13px !important;
    white-space: nowrap !important;
    border-radius: 6px !important;
    line-height: 1.3 !important;
    flex-shrink: 0 !important;
  }

  /* Stats row: single scrollable line, no wrapping */
  .wb-hero-stats {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 5px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    width: 100% !important;
  }
  .wb-hero-stats::-webkit-scrollbar { display: none !important; }
  .wb-hero-stat-pill,
  .wb-hero-stat {
    font-size: 9px !important;
    padding: 3px 7px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  /* Slide dots */
  .wb-hero-dots {
    bottom: 6px !important;
  }

  /* Accreditation bar — 93vw on mobile */
  .wb-accreditation {
    width: 93vw !important;
    max-width: 93vw !important;
    margin: 10px auto 24px !important;
    border-radius: 10px !important;
  }
}

/* ── 3. Every section container = 93 vw on mobile ── */
@media (max-width: 640px) {
  .wb-container {
    width: 93vw !important;
    max-width: 93vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
}

/* ── 4. Trusted Partners logos — bigger on mobile ── */
@media (max-width: 640px) {
  .wb-partner-logo {
    height: 48px !important;
    max-width: 130px !important;
    object-fit: contain !important;
  }
  .wb-partner-card {
    padding: 16px 18px !important;
    min-width: 120px !important;
  }
  .wb-partners-logos {
    gap: 12px !important;
  }
}

/* ================================================================
   UNIVERSITY PROGRAMS — BCA / MCA / PGDCA
   wb-uni-* component system
================================================================ */

/* ── Shared section labels & titles ── */
.wb-uni-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wb-uni-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #060e38;
  line-height: 1.25;
  margin: 0 0 10px;
}
.wb-uni-section-sub {
  font-size: 15px;
  color: #5a6072;
  max-width: 640px;
  margin: 0 0 36px;
  line-height: 1.6;
}

/* ── HERO ── */
.wb-uni-hero {
  position: relative;
  background: linear-gradient(135deg, #060e38 0%, #0a1852 60%, #091540 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}
.wb-uni-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(26,86,219,0.18) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(8,145,178,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.wb-uni-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wb-uni-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #e0e7ff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.wb-uni-hero-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 14px;
}
.wb-uni-hero-program {
  display: block;
  font-size: clamp(38px, 5.5vw, 62px);
  letter-spacing: -1px;
}
.wb-uni-hero-tagline {
  font-size: 16px;
  color: #c7d2fe;
  line-height: 1.6;
  margin: 0 0 28px;
}
.wb-uni-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
}
.wb-uni-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 80px;
}
.wb-uni-stat-val {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.wb-uni-stat-label {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 2px;
  text-align: center;
}
.wb-uni-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  margin: 0 4px;
}
.wb-uni-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.wb-uni-btn-primary {
  display: inline-block;
  background: #1a56db;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.wb-uni-btn-primary:hover { background: #1648c0; transform: translateY(-1px); }
.wb-uni-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #e0e7ff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.wb-uni-btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

/* Hero card (right side) */
.wb-uni-hero-visual {
  display: flex;
  justify-content: center;
}
.wb-uni-hero-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.wb-uni-hero-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 12px;
}
.wb-uni-hero-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: #060e38;
  margin: 0 0 4px;
}
.wb-uni-hero-card p {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 16px;
}
.wb-uni-hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wb-uni-hero-card-list li {
  font-size: 13px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.wb-uni-card-apply {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.wb-uni-card-apply:hover { opacity: 0.88; }

/* ── PHILOSOPHY ── */
.wb-uni-philosophy {
  padding: 64px 0;
  background: #f8faff;
}
.wb-uni-pillars {
  display: flex;
  align-items: center;
  gap: 0;
}
.wb-uni-pillar {
  flex: 1;
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(6,14,56,0.07);
}
.wb-uni-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
}
.wb-uni-pillar h3 {
  font-size: 18px;
  font-weight: 800;
  color: #060e38;
  margin: 0 0 8px;
}
.wb-uni-pillar p {
  font-size: 13px;
  color: #5a6072;
  line-height: 1.6;
  margin: 0;
}
.wb-uni-pillar-arrow {
  font-size: 24px;
  font-weight: 700;
  padding: 0 16px;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── JOURNEY TIMELINE ── */
.wb-uni-journey {
  padding: 64px 0;
  background: #fff;
}
.wb-uni-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.wb-uni-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, #1a56db 0%, #e2e8f0 100%);
}
.wb-uni-step {
  display: flex;
  gap: 24px;
  padding: 0 0 36px;
  position: relative;
}
.wb-uni-step:last-child { padding-bottom: 0; }
.wb-uni-step-marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(26,86,219,0.15);
}
.wb-uni-step-content {
  flex: 1;
  background: #f8faff;
  border-radius: 12px;
  padding: 20px 24px;
  border-left: 3px solid transparent;
}
.wb-uni-step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.wb-uni-step-heading {
  font-size: 18px;
  font-weight: 800;
  color: #060e38;
  margin: 0 0 8px;
}
.wb-uni-step-desc {
  font-size: 14px;
  color: #5a6072;
  line-height: 1.65;
  margin: 0 0 12px;
}
.wb-uni-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.wb-uni-tag {
  display: inline-block;
  background: rgba(26,86,219,0.08);
  color: #1a56db;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}
.wb-uni-step-outcome {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #374151;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}
.wb-uni-outcome-icon {
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── DOMAINS GRID ── */
.wb-uni-domains {
  padding: 64px 0;
  background: #f8faff;
}
.wb-uni-domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.wb-uni-domain-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(6,14,56,0.06);
  border: 1px solid #eef0f8;
  transition: box-shadow 0.2s, transform 0.2s;
}
.wb-uni-domain-card:hover {
  box-shadow: 0 8px 24px rgba(26,86,219,0.12);
  transform: translateY(-2px);
}
.wb-uni-domain-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}
.wb-uni-domain-name {
  font-size: 13px;
  font-weight: 700;
  color: #060e38;
  line-height: 1.3;
}
.wb-uni-domains-note {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  margin-top: 4px;
  font-style: italic;
}

/* ── INTERNSHIP ── */
.wb-uni-internship {
  padding: 64px 0;
  background: linear-gradient(135deg, #060e38 0%, #0a1852 100%);
  position: relative;
  overflow: hidden;
}
.wb-uni-internship::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,86,219,0.2) 0%, transparent 70%);
}
.wb-uni-internship-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wb-uni-internship-inner .wb-uni-section-label { color: #93c5fd !important; }
.wb-uni-internship-inner .wb-uni-section-title { color: #fff; }
.wb-uni-internship-inner .wb-uni-section-sub { color: rgba(255,255,255,0.82); margin-bottom: 24px; }
.wb-uni-intern-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wb-uni-intern-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.wb-uni-intern-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.wb-uni-intern-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.wb-uni-internship h4,
.wb-uni-internship strong { color: #fff; }
.wb-uni-intern-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin: 0;
}
.wb-uni-internship-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wb-uni-intern-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.wb-uni-intern-stat-val {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.wb-uni-intern-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}

/* ── OUTCOMES ── */
/* ── OUTCOMES v2 (redesigned — dark background with numbered cards) ── */
.wb-uni-outcomes-v2 {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.wb-uni-outcomes-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
  pointer-events: none;
}
.wb-uni-ov2-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.wb-uni-ov2-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
}
.wb-uni-ov2-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
}
.wb-uni-ov2-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin: 0 auto;
}
.wb-uni-ov2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.wb-uni-ov2-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.wb-uni-ov2-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-3px);
}
.wb-uni-ov2-num {
  position: absolute;
  top: -12px;
  left: 22px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.wb-uni-ov2-icon {
  font-size: 32px;
  margin-top: 8px;
  line-height: 1;
}
.wb-uni-ov2-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}
.wb-uni-ov2-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.wb-uni-ov2-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  align-self: flex-start;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.14);
}
/* Career paths strip */
.wb-uni-ov2-careers {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  position: relative;
  z-index: 1;
}
.wb-uni-ov2-careers-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.wb-uni-ov2-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.wb-uni-career-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  transition: background 0.2s;
}
.wb-uni-career-pill:hover {
  background: rgba(255,255,255,0.18);
}
@media (max-width: 900px) {
  .wb-uni-ov2-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .wb-uni-ov2-grid { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .wb-uni-ov2-card { padding: 22px 16px 18px; }
  .wb-uni-ov2-name { font-size: 14px; }
  .wb-uni-ov2-icon { font-size: 26px; }
}

/* ── COMPARISON TABLE ── */
.wb-uni-compare {
  padding: 64px 0;
  background: #fff;
}
.wb-uni-compare-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(6,14,56,0.08);
}
.wb-uni-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.wb-uni-compare-table th {
  background: #060e38;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
}
.wb-uni-compare-table th:first-child {
  border-radius: 14px 0 0 0;
  width: 35%;
}
.wb-uni-compare-table th:last-child { border-radius: 0 14px 0 0; }
.wb-uni-compare-table td {
  padding: 12px 20px;
  font-size: 13px;
  color: #374151;
  border-bottom: 1px solid #f0f4ff;
  vertical-align: top;
}
.wb-uni-compare-table tr:last-child td { border-bottom: none; }
.wb-uni-compare-table tr:nth-child(even) td { background: #f8faff; }
.wb-uni-col-wb {
  font-weight: 600;
  color: #1a56db !important;
}

/* ── ELIGIBILITY + ADMISSION ── */
.wb-uni-eligibility {
  padding: 64px 0;
  background: #f8faff;
}
.wb-uni-elig-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid #eef0f8;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.wb-uni-elig-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #374151;
  margin-bottom: 2px;
}
.wb-uni-elig-value {
  font-size: 15px;
  font-weight: 700;
  color: #060e38;
}
.wb-uni-elig-note {
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  margin-top: 4px;
}
.wb-uni-admission {
  padding: 64px 0;
  background: #fff;
}
.wb-uni-admission-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.wb-uni-admission-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wb-uni-adm-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #f8faff;
  border-radius: 12px;
  border-left: 3px solid #1a56db;
}
.wb-uni-adm-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a56db;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wb-uni-adm-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: #060e38;
  margin: 0 0 4px;
}
.wb-uni-adm-step p {
  font-size: 13px;
  color: #5a6072;
  margin: 0;
  line-height: 1.5;
}
.wb-uni-adm-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
/* Ghost button on light bg (admission section) — override dark-hero defaults */
/* Inline style provides the program colour; this ensures bg/border are visible */
.wb-uni-adm-ctas .wb-uni-btn-ghost {
  background: transparent;
  /* border-color inherits from inline style via currentColor fallback */
}
.wb-uni-adm-ctas .wb-uni-btn-ghost:hover {
  background: rgba(0,0,0,0.04);
}

/* ── FAQ ── */
.wb-uni-faq {
  padding: 64px 0;
  background: #f8faff;
}
.wb-uni-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wb-uni-faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eef0f8;
  overflow: hidden;
}
.wb-uni-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #060e38;
  cursor: pointer;
  gap: 12px;
}
.wb-uni-faq-arrow {
  font-size: 18px;
  font-weight: 700;
  color: #1a56db;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.wb-uni-faq-item.open .wb-uni-faq-arrow {
  transform: rotate(45deg);
}
.wb-uni-faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 13px;
  color: #5a6072;
  line-height: 1.65;
}
.wb-uni-faq-item.open .wb-uni-faq-a {
  display: block;
}

/* ── CTA BAND ── */
.wb-uni-cta-band {
  padding: 56px 0;
  background: linear-gradient(135deg, #060e38 0%, #1a56db 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wb-uni-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.wb-uni-cta-inner {
  position: relative;
  z-index: 1;
}
.wb-uni-cta-title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
}
.wb-uni-cta-sub {
  font-size: 15px;
  color: #c7d2fe;
  margin: 0 0 28px;
}
.wb-uni-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.wb-uni-cta-btn-primary {
  display: inline-block;
  background: #fff;
  color: #1a56db;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.wb-uni-cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.wb-uni-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.wb-uni-cta-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ── MCA / PGDCA colour overrides ── */
.wb-uni-mca-hero { background: linear-gradient(135deg, #1a0040 0%, #2d0060 60%, #1a0040 100%); }
.wb-uni-pgdca-hero { background: linear-gradient(135deg, #051c2c 0%, #0a3044 60%, #051c2c 100%); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .wb-uni-hero-inner {
    grid-template-columns: 1fr;
  }
  .wb-uni-hero-visual { display: none; }
  .wb-uni-internship-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .wb-uni-admission-inner {
    grid-template-columns: 1fr;
  }
  .wb-uni-pillars {
    flex-direction: column;
  }
  .wb-uni-pillar-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
}
@media (max-width: 640px) {
  .wb-uni-hero { padding: 48px 0 40px; }
  .wb-uni-hero-stats { gap: 4px; padding: 12px; }
  .wb-uni-stat-val { font-size: 12px; }
  .wb-uni-stat-label { font-size: 9px; }
  .wb-uni-hero-ctas { flex-direction: column; }
  .wb-uni-btn-primary, .wb-uni-btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .wb-uni-internship-stats { grid-template-columns: 1fr 1fr; }
  .wb-uni-domain-grid { grid-template-columns: 1fr 1fr; }
  .wb-uni-outcomes-grid { grid-template-columns: 1fr 1fr; }
  .wb-uni-timeline::before { left: 18px; }
  .wb-uni-step-marker { width: 38px; height: 38px; font-size: 16px; }
  .wb-uni-step { gap: 14px; }
  .wb-uni-step-content { padding: 16px; }
  .wb-uni-cta-buttons { flex-direction: column; align-items: center; }
  .wb-uni-cta-btn-primary, .wb-uni-cta-btn-ghost { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
}
