/* =============================================
   CSS DESIGN TOKENS — Single source of truth
   ============================================= */
:root {
  /* Brand Colors */
  --navy:        #0B1F3A;
  --navy-deep:   #061228;
  --navy-mid:    #123D7A;
  --gold:        #F59E0B;
  --gold-dark:   #D97706;
  --gold-light:  #FFF7ED;

  /* Neutrals */
  --bg-page:     #f8fafc;
  --bg-white:    #ffffff;
  --bg-light:    #f9fafb;
  --text-dark:   #0B1F3A;
  --text-body:   #475569;
  --text-muted:  #94a3b8;
  --border:      #e2e8f0;

  /* Typography Scale */
  --fs-xs:   0.75rem;   /* 12px */
  --fs-sm:   0.875rem;  /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-lg:   1.125rem;  /* 18px */
  --fs-xl:   1.25rem;   /* 20px */
  --fs-2xl:  1.5rem;    /* 24px */
  --fs-3xl:  1.875rem;  /* 30px */
  --fs-4xl:  2.25rem;   /* 36px */
  --fs-5xl:  3rem;      /* 48px */

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  60px;
  --space-2xl: 80px;

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(11,31,58,0.06);
  --shadow-md:  0 8px 24px rgba(11,31,58,0.08);
  --shadow-lg:  0 16px 48px rgba(11,31,58,0.12);
  --shadow-gold: 0 8px 24px rgba(245,158,11,0.25);

  /* Transitions */
  --transition: 0.3s ease;
}

/* =============================================
   RESET & GLOBAL
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-page);
  overflow-x: hidden;
  color: var(--text-body);
  line-height: 1.65;
  font-size: var(--fs-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-offer-bar {
  background: linear-gradient(90deg, #0B1F3A, #1E3A8A);
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  position: relative;
  z-index: 1000;
}

.topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-text {
  font-weight: 500;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-text {
  color: #F59E0B;
  font-weight: 600;
  position: relative;
  display: inline-block;
  animation: pulseGlow 1.8s infinite;
}

.contact-text a {
  color: #F59E0B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-text a:hover {
  color: #ffb83b;
  text-decoration: underline;
}

@keyframes pulseGlow {
  0%   { transform: scale(1);    text-shadow: 0 0 0px  rgba(245,158,11,0.4); }
  50%  { transform: scale(1.08); text-shadow: 0 0 8px  rgba(245,158,11,0.8); }
  100% { transform: scale(1);    text-shadow: 0 0 0px  rgba(245,158,11,0.4); }
}

/* =============================================
   HEADER
   ============================================= */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  z-index: 999;
  transition: all 0.2s;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  width: clamp(90px, 12vw, 140px);
  height: auto;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

/* DESKTOP NAV */
.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #0B1F3A;
  font-weight: 500;
  position: relative;
  transition: 0.25s;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-menu a::after {
  content: "";
  width: 0%;
  height: 2.5px;
  background: #F59E0B;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: 0.3s ease;
  border-radius: 2px;
}

.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover        { color: #F59E0B; }

.nav-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-login {
  border: 1.5px solid #0B1F3A;
  background: transparent;
  padding: 8px 20px;
  border-radius: 40px;
  text-decoration: none;
  color: #0B1F3A;
  font-weight: 500;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-login:hover {
  background: #0B1F3A;
  color: #fff;
  transform: translateY(-1px);
}

.btn-enroll {
  background: #F59E0B;
  color: #fff;
  padding: 8px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(245,158,11,0.2);
}

.btn-enroll:hover {
  background: #e68a00;
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(245,158,11,0.3);
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  color: #0B1F3A;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.menu-toggle:hover { background-color: rgba(0,0,0,0.06); }

/* OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  z-index: 980;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active { opacity: 1; visibility: visible; }

.nav-item { position: relative; }

/* DROPDOWN ARROW */
.arrow {
  display: inline-block;
  width: 8px; height: 8px;
  margin-left: 6px;
  border-right: 2px solid #0B1F3A;
  border-bottom: 2px solid #0B1F3A;
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.25s;
  position: relative;
  top: -1px;
}

/* MEGA MENU — DESKTOP */
.mega-menu {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  width: 850px;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
  border: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

.mega-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mega-content h4 {
  margin-bottom: 12px;
  font-size: 15px;
  color: #0B1F3A;
}

.mega-content a {
  display: block;
  color: #555;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.25s;
  font-size: 0.9rem;
}

.mega-content a:hover {
  color: #F59E0B;
  padding-left: 6px;
}

/* MOBILE BUTTONS — hidden on desktop */
.mobile-drawer-buttons {
  display: none;
  border-bottom: none !important;
}

/* =============================================
   DESKTOP CLICK-TO-OPEN (min 993px)
   ============================================= */
@media (min-width: 993px) {
  .dropdown.active .arrow { transform: rotate(225deg); border-color: #F59E0B; }
  .dropdown.active > a    { color: #F59E0B; }

  .dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

/* =============================================
   MOBILE NAV (max 992px)
   ============================================= */
@media (max-width: 992px) {

  .menu-toggle { display: flex; }
  .nav-actions  { display: none; }

  .nav-menu {
    position: fixed;
    top: 0; left: -100%;
    width: 100%; height: 100vh;
    background: #fff;
    z-index: 99999;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 80px;
    transition: left 0.4s ease;
  }

  .nav-menu.active { left: 0; }

  body.menu-open { overflow: hidden; }

  .nav-item { width: 100%; border-bottom: 1px solid #eee; }

  .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 22px;
    color: #0B1F3A;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-sizing: border-box;
  }

  .nav-menu a::after { display: none; }
  .nav-menu a:hover  { color: #F59E0B; }

  .arrow { margin-left: auto; flex-shrink: 0; }

  .dropdown.active > a .arrow {
    transform: rotate(225deg);
    border-color: #F59E0B;
  }

  .mega-menu,
  .dropdown.active .mega-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    background: #f8fafc;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0; margin: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: max-height 0.4s ease;
  }

  .dropdown.active .mega-menu { max-height: 2500px !important; }

  .mega-content {
    display: flex;
    flex-direction: column;
    width: 100%; gap: 0;
  }

  .mega-content > div {
    width: 100%;
    padding: 14px 22px;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
  }

  .mega-content h4 {
    margin-bottom: 10px;
    color: #F59E0B;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  .mega-content a {
    display: block;
    padding: 8px 0;
    color: #334155;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 0;
  }

  .mega-content a:hover { color: #F59E0B; padding-left: 5px; }

  .mobile-drawer-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px;
    padding-bottom: max(20px, env(safe-area-inset-bottom, 20px));
    border-top: 1px solid #e2e8f0;
    border-bottom: none !important;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    position: sticky;
    bottom: 0;
    z-index: 2;
  }

  .mobile-drawer-buttons .btn-login-mobile,
  .mobile-drawer-buttons .btn-enroll-mobile {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 40px;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    box-sizing: border-box;
    transition: 0.25s;
  }

  .btn-login-mobile  { border: 1.5px solid #0B1F3A; color: #0B1F3A; background: transparent; }
  .btn-login-mobile:hover  { background: #0B1F3A; color: #fff; }
  .btn-enroll-mobile { background: #F59E0B; color: #fff; border: none; }
  .btn-enroll-mobile:hover { background: #d97706; }
}

@media (max-width: 768px) {
  .topbar-flex { flex-direction: column; text-align: center; gap: 6px; }
  .offer-text, .contact-text { font-size: 12px; }
  .nav-container { height: 65px; }
  .logo img { width: clamp(70px, 28vw, 110px); max-height: 46px; }
  .nav-menu { padding-top: 75px; }
}

@media (max-width: 480px) {
  .container { width: 94%; }
  .logo img { width: clamp(64px, 25vw, 100px); max-height: 42px; }
}

/* =============================================
   TOP BANNER / CAROUSEL
   ============================================= */
.top-banner { width: 100%; overflow: hidden; }
.top-banner .carousel-item img { width: 100%; object-fit: cover; }

@media (max-width: 992px) { .top-banner .carousel-item img { height: 360px; } }
@media (max-width: 768px) { .top-banner .carousel-item img { height: 230px; } }
@media (max-width: 480px) { .top-banner .carousel-item img { height: 170px; } }

/* =============================================
   STATS BAR
   ============================================= */
.stats-section { background: #0B1F3A; padding: 40px 0; color: #fff; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 10px;
}

.stat            { padding: 10px 0; }
.stat img        { width: 65px; height: 65px; object-fit: contain; margin: 0 auto 8px; }
.stat h3         { font-size: 37px; font-weight: 800; color: #fbfbfb; margin-bottom: 4px; }
.stat p          { font-size: 15px; opacity: 0.9; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat { border-right: none !important; }
}

@media (max-width: 480px) {
  .stats-section { padding: 28px 0; }
  .stat h3       { font-size: 22px; }
  .stat img      { width: 32px; height: 32px; }
}

/* =============================================
   CATEGORIES
   ============================================= */
.categories-section { padding: 70px 0; background: #f9fafb; text-align: center; }

.cat-label { color: #F59E0B; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.cat-title { font-size: 30px; font-weight: 700; margin-bottom: 40px; color: #0B1F3A; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.cat-card {
  padding: 28px 16px;
  border-radius: 16px;
  text-align: center;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cat-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.cat-icon img   { width: 36px; height: 36px; object-fit: contain; }
.cat-card h3    { font-size: 15px; margin-bottom: 10px; color: #0B1F3A; }
.cat-card a     { font-size: 13px; text-decoration: none; color: #555; transition: 0.3s; }
.cat-card a:hover { color: #F59E0B; }
.cat-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,0.10); }
.cat-card:hover .cat-icon { transform: scale(1.12) rotate(6deg); }

.cat-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: 0.3s;
}

.cat-card:hover::before { border-color: #F59E0B; }

.bg1 { background: #eaf2f8; } .bg2 { background: #fdf2e9; }
.bg3 { background: #e8f8f5; } .bg4 { background: #f4ecf7; }
.bg5 { background: #fef9e7; } .bg6 { background: #ebf5fb; }
.bg7 { background: #eafaf1; } .bg8 { background: #f5eef8; }

@media (max-width: 992px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } .categories-section { padding: 60px 0; } }
@media (max-width: 480px) {
  .cat-grid    { gap: 12px; }
  .cat-title   { font-size: 24px; margin-bottom: 26px; }
  .cat-card    { padding: 20px 12px; }
  .cat-icon    { width: 56px; height: 56px; }
  .cat-icon img { width: 28px; height: 28px; }
  .cat-card h3 { font-size: 13px; }
}

/* =============================================
   PLACEMENT
   ============================================= */
.placement-section { padding: 70px 0; background: #0B1F3A; color: #fff; }

.placement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.placement-left h2 { font-size: 28px; margin-bottom: 14px; line-height: 1.3; }
.placement-left p  { margin-bottom: 18px; opacity: 0.9; font-size: 15px; line-height: 1.7; }
.placement-list    { list-style: none; margin-bottom: 22px; }
.placement-list li { margin-bottom: 8px; font-size: 15px; }

.placement-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.stat-box {
  background: rgba(255,255,255,0.08);
  padding: 22px 16px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-box h3 { color: #F59E0B; font-size: 24px; margin-bottom: 4px; }
.stat-box p  { font-size: 13px; opacity: 0.85; }

@media (max-width: 992px) { .placement-grid { grid-template-columns: 1fr; gap: 36px; } .placement-section { padding: 60px 0; } }
@media (max-width: 480px) {
  .placement-left h2 { font-size: 22px; }
  .stat-box h3       { font-size: 20px; }
  .placement-stats   { gap: 12px; }
  .stat-box          { padding: 16px 10px; }
}

/* =============================================
   ABOUT
   ============================================= */
.about-section { padding: 70px 0; background: #ffffff; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.about-left h2 { font-size: 30px; margin-bottom: 18px; color: #0B1F3A; line-height: 1.3; }
.about-text { color: #555; margin-bottom: 12px; line-height: 1.7; font-size: 15px; }

.about-image { position: relative; border-radius: 18px; overflow: hidden; }
.about-image img { width: 100%; height: auto; border-radius: 18px; transition: 0.4s ease; }
.about-image:hover img { transform: scale(1.04); }

.about-image::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245,158,11,0.3), rgba(30,58,138,0.3));
  opacity: 0; transition: 0.4s;
}

.about-image:hover::after { opacity: 1; }

.btn-primary2 {
  display: inline-block;
  background: #F59E0B;
  padding: 12px 28px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.btn-primary2:hover { background: #d97706; transform: translateY(-2px); }

@media (max-width: 992px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } .about-section { padding: 60px 0; } }
@media (max-width: 480px) { .about-left h2 { font-size: 24px; } }

/* =============================================
   COMMON
   ============================================= */
.section-label { color: #F59E0B; font-weight: 600; margin-bottom: 8px; font-size: 14px; }
.section-title { font-size: 30px; margin-bottom: 36px; color: #0B1F3A; font-weight: 700; line-height: 1.3; }
.section-title.white { color: #fff; }

.btn-primary { display: inline-block; background: #F59E0B; padding: 12px 28px; border-radius: 30px; color: #fff; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-primary:hover { background: #d97706; transform: translateY(-2px); }

.btn-outline { display: inline-block; border: 1.5px solid #0B1F3A; padding: 12px 28px; border-radius: 30px; color: #0B1F3A; text-decoration: none; font-weight: 500; transition: 0.3s; }
.btn-outline:hover { background: #0B1F3A; color: #fff; }

@media (max-width: 480px) { .section-title { font-size: 24px; margin-bottom: 24px; } }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-section { padding: 70px 0; background: linear-gradient(to bottom, #f9fafb, #eef2ff); text-align: center; }
.testimonial-wrapper { overflow: hidden; }
.testimonial-slider  { display: flex; transition: transform 0.5s ease; }

.testimonial-card {
  min-width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
  text-align: left;
}

.testimonial-card p { font-size: 15px; color: #444; line-height: 1.7; position: relative; padding-left: 10px; }
.testimonial-card p::before { content: "\201C"; font-size: 40px; color: #F59E0B; position: absolute; left: -8px; top: -8px; }

.user { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.user img  { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.user h4   { margin: 0; font-size: 15px; color: #0B1F3A; }
.user span { font-size: 13px; color: #777; }

.testimonial-dots { margin-top: 22px; }
.testimonial-dots span { width: 10px; height: 10px; background: #ccc; border-radius: 50%; display: inline-block; margin: 0 5px; cursor: pointer; transition: background 0.3s; }
.testimonial-dots .active { background: #F59E0B; }

@media (max-width: 768px) { .testimonial-section { padding: 55px 0; } .testimonial-card { padding: 22px 18px; } .testimonial-card p { font-size: 14px; } }
@media (max-width: 480px) { .testimonial-card { padding: 18px 14px; border-radius: 14px; } .user img { width: 44px; height: 44px; } }

/* =============================================
   COMPANIES
   ============================================= */
.companies-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0B1F3A, #1E3A8A);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.companies-section::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(245,158,11,0.2);
  filter: blur(120px);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.company-stats { display: flex; justify-content: center; gap: 20px; margin: 36px 0; flex-wrap: wrap; }

.c-stat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 22px 30px;
  border-radius: 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
  min-width: 120px;
}

.c-stat:hover { transform: translateY(-5px); background: rgba(255,255,255,0.18); }
.c-stat h3    { color: #F59E0B; font-size: 22px; margin-bottom: 4px; }
.c-stat p     { font-size: 13px; opacity: 0.85; }

.logo-marquee { overflow: hidden; position: relative; margin-top: 40px; padding: 16px 0; }

.logo-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.logo-track img {
  height: 44px; width: 110px;
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
  border-radius: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-track img:hover { transform: translateY(-5px) scale(1.06); box-shadow: 0 8px 20px rgba(245,158,11,0.35); }
.logo-marquee:hover .logo-track { animation-play-state: paused; }

@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .logo-track { gap: 18px; }
  .logo-track img { height: 34px; width: 88px; padding: 6px; }
  .companies-section { padding: 60px 0; }
  .company-stats { gap: 12px; }
  .c-stat { padding: 16px 20px; }
}

@media (max-width: 480px) { .c-stat { min-width: 100px; padding: 14px 16px; } .c-stat h3 { font-size: 18px; } }

/* =============================================
   TEAM SECTION
============================================= */

.team-section {
    padding: 80px 0;
    background: #f9fafb;
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* =============================================
   TEAM CARD
============================================= */

.team-card {
    width: 340px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* =============================================
   IMAGE
============================================= */

.team-img {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: #eee;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

/* =============================================
   BADGE
============================================= */

.badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: #F59E0B;
    color: #fff;
    padding: 7px 18px;
    font-size: 13px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(245,158,11,0.35);
}

.badge.mentor {
    background: #0B1F3A;
}

/* =============================================
   CONTENT
============================================= */

.team-content {
    padding: 28px;
    text-align: left;
}

.team-content h3 {
    font-size: 28px;
    margin-bottom: 6px;
    color: #0B1F3A;
    font-weight: 700;
}

.role {
    font-size: 15px;
    color: #F59E0B;
    font-weight: 600;
    margin-bottom: 16px;
}

.desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* =============================================
   HOVER EFFECT
============================================= */

.team-card::before {
    content: "";
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(245,158,11,0.12), transparent);
    top: -60%;
    left: -60%;
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.team-card:hover::before {
    opacity: 1;
}

/* =============================================
   RESPONSIVE
============================================= */

@media (max-width: 992px) {

    .team-grid {
        gap: 28px;
    }

    .team-card {
        width: 320px;
    }

    .team-img {
        height: 300px;
    }

    .team-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    .team-section {
        padding: 60px 15px;
    }

    .team-card {
        width: 100%;
        max-width: 420px;
    }

    .team-img {
        height: 280px;
    }

    .team-content {
        padding: 24px;
    }

    .team-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {

    .team-grid {
        gap: 22px;
    }

    .team-img {
        height: 250px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .team-content {
        padding: 22px;
    }

    .team-content h3 {
        font-size: 20px;
    }

    .role {
        font-size: 14px;
    }

    .desc {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* =============================================
   DIRECTOR
   ============================================= */
.director-section { padding: 80px 0; background: linear-gradient(135deg, #0B1F3A, #1E3A8A); position: relative; overflow: hidden; }

.director-section::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(245,158,11,0.18);
  filter: blur(120px);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.director-grid { display: flex; flex-direction: column; gap: 40px; margin-top: 50px; }

.director-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
}

.director-card:hover   { transform: translateY(-6px); }
.director-card.reverse { flex-direction: row-reverse; }
.director-img          { flex-shrink: 0; }
.director-img img      { width: 240px; height: 240px; object-fit: cover; border-radius: 16px; }
.director-content      { color: #fff; flex: 1; }
.director-content h3   { font-size: 24px; margin: 10px 0 8px; }
.director-content p    { font-size: 14px; color: #ddd; line-height: 1.7; }

.role-badge { display: inline-block; background: #F59E0B; color: #fff; padding: 5px 14px; font-size: 12px; border-radius: 20px; font-weight: 600; }
.role-badge.alt { background: #fff; color: #0B1F3A; }

.director-content ul    { margin-top: 14px; padding-left: 0; }
.director-content ul li { list-style: none; font-size: 14px; margin-bottom: 6px; color: #e2e8f0; }

@media (max-width: 992px) {
  .director-card, .director-card.reverse { flex-direction: column; text-align: center; padding: 28px 22px; gap: 24px; }
  .director-img img { width: 180px; height: 180px; }
  .director-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .director-card       { padding: 22px 16px; border-radius: 14px; }
  .director-img img    { width: 150px; height: 150px; }
  .director-content h3 { font-size: 20px; }
  .director-grid       { gap: 24px; margin-top: 30px; }
}

/* =============================================
   CTA
   ============================================= */
.simple-cta { padding: 80px 0; background: #ffffff; }

.simple-cta-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 50px; flex-wrap: wrap; }

.cta-left  { flex: 1; min-width: 280px; }
.cta-right { flex: 1; min-width: 280px; text-align: center; }
.cta-label { color: #F59E0B; font-weight: 600; margin-bottom: 10px; font-size: 14px; }

.cta-left h2 { font-size: 32px; font-weight: 700; color: #0B1F3A; margin-bottom: 16px; line-height: 1.3; }
.cta-left h2 span { color: #F59E0B; }
.cta-desc { color: #555; font-size: 15px; margin-bottom: 18px; line-height: 1.7; }

.cta-features    { list-style: none; padding: 0; margin-bottom: 24px; }
.cta-features li { margin-bottom: 10px; color: #333; font-size: 15px; }
.cta-buttons     { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-right img { width: 100%; max-width: 560px; border-radius: 18px; box-shadow: 0 12px 36px rgba(0,0,0,0.1); }

@media (max-width: 992px) {
  .simple-cta-wrapper { flex-direction: column; text-align: center; gap: 36px; }
  .cta-buttons { justify-content: center; }
  .cta-left, .cta-right { min-width: unset; width: 100%; }
  .simple-cta { padding: 60px 0; }
}

@media (max-width: 480px) {
  .cta-left h2 { font-size: 24px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-buttons .btn-primary, .cta-buttons .btn-outline { width: 100%; text-align: center; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer-pro { position: relative; background: linear-gradient(135deg, #0B1F3A, #0F2A50); color: #fff; padding: 80px 0 20px; overflow: hidden; }

.footer-pro::before { content: ""; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,158,11,0.12), transparent); top: -100px; right: -100px; pointer-events: none; }

.footer-pro-wrapper { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }

.footer-brand h2 { font-size: 26px; background: linear-gradient(90deg, #fff, #F59E0B); -webkit-background-clip: text; color: transparent; margin-bottom: 12px; }
.footer-brand p  { color: #cbd5e1; font-size: 14px; line-height: 1.7; }

.footer-social { margin-top: 16px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; margin-right: 8px; border-radius: 50%; background: rgba(255,255,255,0.08); transition: 0.3s; text-decoration: none; }
.footer-social a:hover { background: #F59E0B; transform: translateY(-3px); }

.footer-links h4, .footer-newsletter h4 { margin-bottom: 18px; font-size: 15px; position: relative; padding-bottom: 10px; }
.footer-links h4::after, .footer-newsletter h4::after { content: ""; width: 28px; height: 2px; background: #F59E0B; position: absolute; bottom: 0; left: 0; }

.footer-links a { display: block; margin-bottom: 10px; color: #94a3b8; text-decoration: none; font-size: 14px; transition: 0.3s; }
.footer-links a:hover { color: #fff; transform: translateX(4px); }

.footer-newsletter p { font-size: 14px; color: #94a3b8; margin-bottom: 12px; }

.newsletter-box { display: flex; background: rgba(255,255,255,0.08); border-radius: 30px; overflow: hidden; }
.newsletter-box input { flex: 1; border: none; padding: 12px 14px; background: transparent; color: #fff; outline: none; font-size: 14px; }
.newsletter-box input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-box button { background: #F59E0B; border: none; padding: 12px 16px; cursor: pointer; color: #fff; font-size: 14px; font-weight: 600; transition: 0.3s; white-space: nowrap; }
.newsletter-box button:hover { background: #d97706; }

.footer-bottom-pro { text-align: center; margin-top: 50px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); color: #64748b; font-size: 13px; }

.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo-wrap img { width: 44px; height: 44px; object-fit: contain; border-radius: 10px; background: #fff; padding: 5px; }
.footer-logo-wrap h2 { font-size: 22px; font-weight: 700; background: linear-gradient(90deg, #fff, #F59E0B); -webkit-background-clip: text; color: transparent; }

@media (max-width: 992px) { .footer-pro-wrapper { grid-template-columns: 1fr 1fr; gap: 30px; } }

@media (max-width: 600px) {
  .footer-pro-wrapper { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .footer-logo-wrap  { justify-content: center; }
  .footer-social     { text-align: center; }
  .footer-links h4::after, .footer-newsletter h4::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 480px) { .footer-pro { padding: 60px 0 16px; } .footer-pro-wrapper { gap: 22px; } }

.cat-link  { text-decoration: none; color: inherit; display: block; }
.read-more { display: inline-block; margin-top: 10px; }


/* =============================================
   POPUP OVERLAY
   — hidden by default; JS adds .visible to show
============================================= */

.dp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  display: flex;                      /* kept so flex layout always works      */
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 30px 16px;
  overflow-y: auto;

  /* SMOOTH FADE */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

/* Shown state — toggled by JS */
.dp-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* =============================================
   POPUP MODAL
============================================= */

.dp-modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  display: flex;
  overflow: visible;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);

  /* SMOOTH SCALE-IN */
  transform: scale(0.88) translateY(24px);
  transition: transform 0.45s cubic-bezier(0.34, 1.28, 0.64, 1),
              opacity   0.45s ease;
  opacity: 0;
}

/* Modal animates in when overlay is visible */
.dp-overlay.visible .dp-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* =============================================
   CLOSE BUTTON
============================================= */

.dp-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #ffb000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: .3s ease;
}

.dp-close:hover {
  background: #071b49;
  transform: rotate(90deg);
}

/* =============================================
   LEFT SIDE
============================================= */

.dp-left {
  width: 42%;
  background: linear-gradient(180deg, #102b73, #1b3180);
  color: #fff;
  padding: 34px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dp-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.dp-c1 { width: 140px; height: 140px; top: -35px;  left: -35px; }
.dp-c2 { width: 90px;  height: 90px;  bottom: 30px; left: 12px;  }
.dp-c3 { width: 110px; height: 110px; right: -20px; bottom: -20px; }

.dp-badge {
  display: inline-block;
  background: #ffb000;
  color: #000;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.dp-percent {
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  margin-top: 18px;
  color: #ffb000;
}

.dp-percent span { font-size: 34px; }

.dp-off {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 6px;
}

.dp-sub {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.dp-stars {
  margin-top: 24px;
  color: #ffb000;
  font-size: 18px;
}

.dp-rating {
  margin-top: 10px;
  font-size: 13px;
  opacity: .92;
}

/* =============================================
   RIGHT SIDE
============================================= */

.dp-right {
  width: 58%;
  padding: 30px 28px;
}

.dp-eyebrow {
  color: #ff9800;
  font-size: 13px;
  font-weight: 700;
}

.dp-title {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.25;
  color: #071b49;
  font-weight: 800;
}

.dp-desc {
  margin-top: 10px;
  color: #5f6b85;
  font-size: 14px;
  line-height: 1.5;
}

/* =============================================
   COUNTDOWN
============================================= */

.dp-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.dp-unit {
  background: #071b49;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  min-width: 62px;
}

.dp-unit span {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #ffb000;
}

.dp-unit small {
  font-size: 10px;
  letter-spacing: 1px;
}

.dp-sep {
  font-size: 20px;
  font-weight: 700;
  color: #071b49;
}

/* =============================================
   FORM
============================================= */

.dp-form { margin-top: 18px; }

.dp-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7dbe7;
  border-radius: 10px;
  font-size: 13px;
  outline: none;
  margin-bottom: 10px;
  transition: .3s;
}

.dp-input:focus { border-color: #ffb000; }

.dp-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 14px;
  background: linear-gradient(180deg, #ffb000, #f39a00);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease;
}

.dp-btn:hover { transform: translateY(-2px); }

.dp-note {
  margin-top: 12px;
  color: #7f889d;
  font-size: 12px;
  line-height: 1.5;
}

/* =============================================
   MOBILE RESPONSIVE
============================================= */

@media (max-width: 768px) {

  .dp-overlay {
    align-items: flex-start;
    padding: 20px 12px;
  }

  .dp-modal {
    flex-direction: column;
    max-width: 95%;
    margin-top: 24px;
  }

  .dp-left,
  .dp-right { width: 100%; }

  .dp-left  { padding: 24px 16px; }
  .dp-right { padding: 22px 16px; }

  .dp-title   { font-size: 22px; }
  .dp-percent { font-size: 54px; }
  .dp-percent span { font-size: 26px; }
  .dp-off     { font-size: 22px; letter-spacing: 5px; }
  .dp-sub     { font-size: 13px; }

  .dp-unit       { min-width: 54px; padding: 8px 10px; }
  .dp-unit span  { font-size: 18px; }
  .dp-sep        { font-size: 16px; }

  .dp-input { padding: 11px 12px; font-size: 12px; }
  .dp-btn   { padding: 12px; font-size: 14px; }

  .dp-close { width: 26px; height: 26px; font-size: 14px; top: -8px; right: -8px; }
}

@media (max-width: 480px) {
  .dp-title   { font-size: 20px; }
  .dp-desc    { font-size: 13px; }
  .dp-percent { font-size: 48px; }
  .dp-percent span { font-size: 22px; }
  .dp-off     { font-size: 18px; }
}

/* =============================================
   FLOATING WHATSAPP ICON
============================================= */

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.7);
  text-decoration: none;
  animation: whatsappPulse 2s infinite;
  transition: 0.3s ease;
}

.floating-whatsapp:hover { transform: scale(1.08); background: #1ebe5d; }
.floating-whatsapp img   { width: 34px; height: 34px; }

@keyframes whatsappPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.7),  0 8px 25px rgba(0,0,0,0.25); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0),  0 8px 25px rgba(0,0,0,0.25); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0),     0 8px 25px rgba(0,0,0,0.25); }
}

@media (max-width: 768px) {
  .floating-whatsapp       { width: 56px; height: 56px; right: 14px; bottom: 14px; }
  .floating-whatsapp img   { width: 30px; height: 30px; }
}

/* =============================================
   FAQ SECTION
============================================= */

.faq-section { padding: 90px 0; background: #f8fafc; }

.faq-header {
  text-align: center;
  max-width: 760px;
  margin: auto;
}

.faq-label {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: #f59e0b;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.faq-title {
  margin-top: 18px;
  font-size: 46px;
  font-weight: 800;
  color: #071b49;
  line-height: 1.2;
}

.faq-subtitle {
  margin-top: 14px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.faq-wrapper {
  max-width: 900px;
  margin: 55px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: .3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.faq-item.active {
  border-color: #f59e0b;
  box-shadow: 0 10px 35px rgba(245,158,11,0.15);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #071b49;
  text-align: left;
  transition: .3s ease;
}

.faq-question:hover { background: rgba(245,158,11,0.03); }

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(245,158,11,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  transition: .3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #f59e0b;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-item.active .faq-answer { padding: 0 28px 24px; }

@media (max-width: 768px) {
  .faq-section   { padding: 70px 0; }
  .faq-title     { font-size: 32px; }
  .faq-subtitle  { font-size: 14px; }
  .faq-wrapper   { margin-top: 40px; gap: 14px; }
  .faq-question  { padding: 18px; font-size: 15px; gap: 14px; }
  .faq-answer    { padding: 0 18px; font-size: 13px; line-height: 1.7; }
  .faq-item.active .faq-answer { padding: 0 18px 18px; }
  .faq-icon      { width: 28px; height: 28px; font-size: 18px; }
}

@media (max-width: 480px) {
  .faq-title    { font-size: 26px; }
  .faq-subtitle { font-size: 13px; }
  .faq-question { font-size: 14px; }
}

/* =========================================
   PLACED SECTION
========================================= */

.placed-section{
  padding:90px 0;
  background:#f8fafc;
  position:relative;
  overflow:hidden;
}

/* =========================================
   HEADING
========================================= */

.placed-heading{
  text-align:center;
  margin-bottom:40px;
  padding:0 15px;
}

.placed-label{
  color:#F59E0B;
  font-weight:600;
  margin-bottom:10px;
  font-size:15px;
  letter-spacing:0.5px;
}

.placed-heading h2{
  font-size:clamp(2rem,5vw,3.5rem);
  line-height:1.2;
  color:#0B1F3A;
  margin-bottom:15px;
  font-weight:800;
}

.placed-heading h2 span{
  color:#F59E0B;
}

.placed-heading p{
  max-width:750px;
  margin:auto;
  color:#64748b;
  line-height:1.8;
  font-size:16px;
}

/* =========================================
   BANNER
========================================= */

.placed-banner-wrap{
  position:relative;
  overflow:hidden;
  border-radius:28px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.12);

  transition:0.4s ease;
}

.placed-banner{
  width:100%;
  display:block;
  border-radius:28px;
  transition:0.5s ease;
}

/* HOVER */

.placed-banner-wrap:hover .placed-banner{
  transform:scale(1.01);
}

/* =========================================
   GLOW EFFECT
========================================= */

.placed-section::before{
  content:"";
  position:absolute;

  width:400px;
  height:400px;

  background:
  rgba(245,158,11,0.15);

  filter:blur(120px);

  top:-100px;
  right:-100px;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

.placed-section{
  padding:80px 0;
}

.placed-heading{
  margin-bottom:30px;
}

.placed-heading h2{
  font-size:2.7rem;
}

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

.placed-section{
  padding:60px 0;
}

.placed-heading{
  margin-bottom:22px;
  padding:0 10px;
}

.placed-label{
  font-size:13px;
}

.placed-heading h2{
  font-size:2rem;
  line-height:1.3;
}

.placed-heading p{
  font-size:14px;
  line-height:1.7;
}

.placed-banner-wrap,
.placed-banner{
  border-radius:18px;
}

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

.placed-section{
  padding:50px 0;
}

.placed-heading h2{
  font-size:1.7rem;
}

.placed-heading p{
  font-size:13px;
}

.placed-banner-wrap,
.placed-banner{
  border-radius:14px;
}

}


/* =============================================
   LATEST BLOGS SECTION
   Add at the end of style.css
   ============================================= */

.latest-blogs-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.latest-blogs-section::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.06), transparent 70%);
  bottom: -80px; left: -80px;
  pointer-events: none;
}

/* Heading */
.lb-heading { text-align: center; margin-bottom: 44px; }
.lb-label {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: #F59E0B;
  padding: 6px 18px; border-radius: 40px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 12px;
}
.lb-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: #0B1F3A;
  line-height: 1.2; margin-bottom: 12px;
}
.lb-heading h2 span { color: #F59E0B; }
.lb-sub { color: #64748b; font-size: 15px; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* Grid — 2x2 equal cards */
.lb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

/* Card */
.lb-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.lb-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(11,31,58,0.12);
  border-color: #F59E0B;
}

/* Image */
.lb-img {
  position: relative;
  overflow: hidden;
  background: #f0f4f8;
  height: 200px;
}
.lb-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.lb-card:hover .lb-img img { transform: scale(1.06); }
.lb-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  display: flex; align-items: center;
  justify-content: center; font-size: 3rem;
}

/* Category Badge */
.lb-cat-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 30px;
  letter-spacing: 0.3px;
}

/* Body */
.lb-body {
  padding: 20px 18px 18px;
  display: flex; flex-direction: column;
  gap: 9px; flex: 1;
}
.lb-meta {
  display: flex; gap: 12px;
  font-size: 11px; color: #94a3b8; flex-wrap: wrap;
}
.lb-meta i { color: #F59E0B; margin-right: 3px; }
.lb-body h3 {
  font-size: 14px; font-weight: 700;
  color: #0B1F3A; line-height: 1.4; margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lb-body p {
  font-size: 12px; color: #64748b;
  line-height: 1.65; margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lb-read-more {
  display: inline-flex; align-items: center;
  gap: 6px; color: #F59E0B;
  font-size: 12px; font-weight: 700;
  margin-top: auto; transition: gap 0.2s;
}
.lb-card:hover .lb-read-more { gap: 10px; }

/* View All */
.lb-footer { text-align: center; margin-top: 44px; }
.lb-view-all {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0B1F3A; color: #fff;
  padding: 13px 32px; border-radius: 40px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.3s;
}
.lb-view-all:hover {
  background: #185FA5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24,95,165,0.25);
}
.lb-view-all:hover i { transform: translateX(4px); }
.lb-view-all i { transition: transform 0.2s; }

/* Responsive */
@media (max-width: 1024px) {
  .lb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .latest-blogs-section { padding: 55px 0; }
  .lb-grid { grid-template-columns: 1fr; gap: 16px; }
  .lb-img  { height: 200px; }
  .lb-heading h2 { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .lb-view-all { padding: 11px 22px; font-size: 13px; }
  .lb-body { padding: 16px 14px 14px; }
}

/* =============================================
   BROCHURE SECTION — Orange + Navy Theme
   ============================================= */
.brochure-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fffdf8 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.brochure-section::before {
  content: "";
  position: absolute;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 70%);
  top: -150px; right: -120px;
  pointer-events: none;
}

.brochure-section::after {
  content: "";
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(11,31,58,0.08), transparent 70%);
  bottom: -120px; left: -120px;
  pointer-events: none;
}

/* Heading */
.brochure-heading { text-align: center; margin-bottom: 55px; position: relative; z-index: 2; }

.brochure-label {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: #F59E0B;
  padding: 8px 20px; border-radius: 50px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 18px;
}

.brochure-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: #0B1F3A;
  line-height: 1.2; margin-bottom: 12px;
}

.brochure-heading h2 span { color: #F59E0B; }

.brochure-sub {
  color: #64748b; font-size: 15px;
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* Grid */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Card */
.b-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 12px 35px rgba(2,6,23,0.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
}

.b-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245,158,11,0.25);
  box-shadow: 0 25px 60px rgba(245,158,11,0.16);
}

/* Card Top */
.b-card-top {
  background: linear-gradient(135deg, #fff7e6 0%, #fffdf7 100%);
  padding: 32px 20px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  position: relative;
}

.b-card-reviews {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.85);
  font-size: 11px; color: #475569;
  padding: 5px 10px; border-radius: 20px; font-weight: 600;
}

.b-card-icon {
  width: 82px; height: 82px; border-radius: 50%;
  object-fit: cover; background: #fff;
  border: 4px solid rgba(255,255,255,0.9);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

.b-card:hover .b-card-icon { transform: scale(1.08); }

.b-card-icon-placeholder {
  width: 82px; height: 82px; border-radius: 50%;
  background: linear-gradient(135deg, #0B1F3A, #185FA5);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.b-stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }

/* Card Body */
.b-card-body { padding: 20px; }

.b-course-title {
  font-size: 14px; font-weight: 700;
  color: #0B1F3A; text-align: center;
  margin-bottom: 14px; line-height: 1.5;
}

.b-meta { font-size: 13px; color: #64748b; margin-bottom: 8px; }
.b-meta strong { color: #F59E0B; }

/* Download Button */
.b-btn-download {
  display: flex; align-items: center;
  justify-content: center; gap: 7px;
  width: 100%; margin-top: 18px; padding: 13px;
  background: linear-gradient(135deg, #F59E0B, #FFB800);
  color: #fff; border: none; border-radius: 12px;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  font-family: 'Poppins', sans-serif;
}

.b-btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245,158,11,0.3);
  background: linear-gradient(135deg, #e69000, #ff9900);
}

.b-btn-download i { font-size: 14px; }

/* Modal */
.b-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(2,6,23,0.6); z-index: 9999;
  align-items: center; justify-content: center; padding: 16px;
}

.b-modal-overlay.open { display: flex; }

.b-modal {
  background: #fff; border-radius: 22px;
  width: 100%; max-width: 430px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(2,6,23,0.3);
  animation: bSlideUp 0.25s ease;
}

@keyframes bSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.b-modal-header {
  background: linear-gradient(135deg, #0B1F3A, #123D7A);
  padding: 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.b-modal-header h3 { color: #fff; font-size: 15px; font-weight: 600; }

.b-modal-close {
  background: rgba(255,255,255,0.15); border: none;
  color: #fff; width: 30px; height: 30px;
  border-radius: 50%; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}

.b-modal-close:hover { background: rgba(255,255,255,0.3); }

.b-modal-body { padding: 24px; }
.b-modal-sub  { font-size: 13px; color: #64748b; margin-bottom: 18px; }

.b-modal input {
  width: 100%; padding: 13px 14px;
  border: 1px solid #e2e8f0; border-radius: 12px;
  font-size: 13px; margin-bottom: 14px;
  outline: none; transition: .3s;
  font-family: 'Poppins', sans-serif;
}

.b-modal input:focus {
  border-color: #F59E0B;
  box-shadow: 0 0 0 4px rgba(245,158,11,0.1);
}

.b-modal-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, #F59E0B, #FFB800);
  color: #fff; border: none; border-radius: 12px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  gap: 8px; transition: .3s;
  font-family: 'Poppins', sans-serif;
}

.b-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245,158,11,0.25);
}

.b-modal-submit:disabled { background: #94a3b8; cursor: not-allowed; transform: none; box-shadow: none; }

.b-error {
  font-size: 12px; color: #dc2626;
  margin-bottom: 10px; display: none;
  padding: 8px 12px; background: #fef2f2;
  border-radius: 8px; border: 1px solid #fecaca;
}

/* Responsive */
@media (max-width: 768px) {
  .brochure-section { padding: 60px 0; }
  .brochure-heading h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .brochure-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .brochure-section { padding: 50px 0; }
}


/* =============================================
   BATCHES SECTION — Orange + Navy Theme
   ============================================= */
.batches-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fffdf8 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.batches-section::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.1), transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.batches-section::after {
  content: "";
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(11,31,58,0.07), transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

/* Heading */
.batches-heading { text-align: center; margin-bottom: 30px; position: relative; z-index: 2; }

.batches-label {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: #F59E0B;
  padding: 8px 20px; border-radius: 50px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 12px;
}

.batches-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: #0B1F3A;
  line-height: 1.2; margin-bottom: 10px;
}

.batches-heading h2 span { color: #F59E0B; }
.batches-sub { color: #64748b; font-size: 15px; }

/* Filter Tabs */
.batch-tabs {
  display: flex; justify-content: center;
  gap: 10px; margin-bottom: 28px; flex-wrap: wrap;
  position: relative; z-index: 2;
}

.batch-tab {
  padding: 8px 22px; border-radius: 40px;
  border: 1.5px solid #e2e8f0;
  background: #fff; color: #555;
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}

.batch-tab:hover { border-color: #F59E0B; color: #F59E0B; }

.batch-tab.active {
  background: linear-gradient(135deg, #F59E0B, #FFB800);
  color: #fff; border-color: #F59E0B;
  box-shadow: 0 4px 14px rgba(245,158,11,0.3);
}

/* Grid */
.batches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative; z-index: 2;
}

/* Batch Card */
.batch-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 22px 18px 18px;
  border: 1.5px solid rgba(15,23,42,0.06);
  box-shadow: 0 8px 24px rgba(2,6,23,0.06);
  transition: all 0.3s ease;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}

.batch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.3);
}

.batch-card.urgent { border-color: #DC2626; }
.batch-card.urgent:hover { box-shadow: 0 20px 45px rgba(220,38,38,0.15); }
.batch-card.low    { border-color: #F59E0B; }

/* Card Top */
.batch-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
}

.batch-icon {
  width: 52px; height: 52px;
  background: rgba(245,158,11,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.batch-icon img { width: 32px; height: 32px; object-fit: contain; }

.batch-mode-badge {
  font-size: 10px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  background: rgba(245,158,11,0.1);
  color: #b45309;
  border: 1px solid rgba(245,158,11,0.25);
}

/* Course name */
.batch-course {
  font-size: 14px; font-weight: 700;
  color: #0B1F3A; line-height: 1.3;
}

/* Meta rows */
.batch-meta { display: flex; flex-direction: column; gap: 6px; }

.batch-meta-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #64748b;
}

.batch-meta-row i { color: #F59E0B; font-size: 11px; flex-shrink: 0; width: 12px; }
.batch-meta-row strong { color: #0B1F3A; }

/* Seats */
.batch-seats { margin-top: auto; }

.batch-seats-label {
  display: flex; justify-content: space-between;
  font-size: 11px; color: #888; margin-bottom: 5px;
}

.seats-urgent { color: #DC2626 !important; font-weight: 600; }

.batch-seats-bar {
  height: 5px; background: #e2e8f0;
  border-radius: 10px; overflow: hidden;
}

.batch-seats-fill {
  height: 100%; border-radius: 10px;
  background: linear-gradient(90deg, #F59E0B, #FFB800);
  transition: width 1s ease;
}

.batch-card.urgent .batch-seats-fill { background: linear-gradient(90deg, #DC2626, #f87171); }
.batch-card.low    .batch-seats-fill { background: linear-gradient(90deg, #F59E0B, #FFB800); }

/* Urgent Tag */
.batch-urgent-tag {
  font-size: 11px; font-weight: 600;
  color: #DC2626; background: #FEF2F2;
  border: 1px solid #FECACA;
  padding: 4px 10px; border-radius: 6px;
  text-align: center;
}

/* CTA Button */
.batch-cta {
  display: block;
  background: linear-gradient(135deg, #0B1F3A, #123D7A);
  color: #fff; text-align: center;
  padding: 11px 14px; border-radius: 10px;
  font-size: 12px; font-weight: 600;
  text-decoration: none; transition: all 0.25s;
  margin-top: 4px;
}

.batch-cta:hover {
  background: linear-gradient(135deg, #F59E0B, #FFB800);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,158,11,0.3);
}

/* Nav arrows (mobile) */
.batch-nav {
  display: none; justify-content: center;
  gap: 12px; margin-top: 20px;
}

.batch-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid #F59E0B;
  background: #fff; color: #F59E0B;
  font-size: 16px; cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}

.batch-nav-btn:hover { background: linear-gradient(135deg, #F59E0B, #FFB800); color: #fff; border-color: #F59E0B; }

/* Hidden card */
.batch-card.hidden { display: none; }

/* Responsive */
@media (max-width: 1200px) { .batches-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .batches-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) {
  .batches-grid {
    display: flex; overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px; padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .batches-grid::-webkit-scrollbar { display: none; }
  .batch-card { min-width: 260px; scroll-snap-align: start; }
  .batch-nav  { display: flex; }
  .batches-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .batches-heading h2 { font-size: 1.6rem; }
  .batch-card { min-width: 240px; padding: 18px 14px 14px; }
}

/* =============================================
   COMPANIES SECTION — Orange + Navy Theme
   ============================================= */
.companies-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0B1F3A, #123D7A);
  position: relative;
  overflow: hidden;
  text-align: center;
}
 
.companies-section::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(245,158,11,0.15);
  filter: blur(130px);
  top: -120px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
 
.companies-section::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(245,158,11,0.08);
  filter: blur(100px);
  bottom: -80px; right: -80px;
  pointer-events: none;
}
 
/* Heading */
.companies-heading { margin-bottom: 36px; position: relative; z-index: 2; }
 
.companies-label {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  color: #F59E0B;
  padding: 7px 20px; border-radius: 50px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px;
}
 
.companies-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 10px;
}
 
.companies-heading h2 span { color: #F59E0B; }
 
.companies-sub { color: rgba(255,255,255,0.65); font-size: 15px; }
 
/* Stats */
.company-stats {
  display: flex; justify-content: center;
  gap: 16px; margin: 0 auto 36px;
  flex-wrap: wrap; position: relative; z-index: 2;
}
 
.c-stat {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  padding: 20px 28px; border-radius: 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s; min-width: 110px;
}
 
.c-stat:hover {
  transform: translateY(-4px);
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.3);
}
 
.c-stat h3 { color: #F59E0B; font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.c-stat p  { font-size: 12px; opacity: 0.8; }
 
/* Tabs */
.company-tabs {
  display: flex; justify-content: center;
  gap: 0; margin-bottom: 36px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  position: relative; z-index: 2;
  flex-wrap: wrap;
}
 
.company-tab {
  padding: 12px 26px;
  background: transparent; border: none;
  color: rgba(255,255,255,0.55);
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.25s;
  position: relative; bottom: -2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
 
.company-tab:hover { color: #fff; }
 
.company-tab.active {
  color: #F59E0B;
  border-bottom: 2px solid #F59E0B;
  font-weight: 600;
}
 
/* Logo Wrap */
.company-logos-wrap { display: none; position: relative; z-index: 2; }
.company-logos-wrap.active { display: block; }
 
/* Marquee */
.logo-marquee {
  overflow: hidden; position: relative;
  padding: 16px 0;
}
 
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute; top: 0; width: 100px; height: 100%;
  z-index: 2; pointer-events: none;
}
 
.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #0d2447, transparent);
}
 
.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #0d2447, transparent);
}
 
.logo-track {
  display: flex; align-items: center;
  gap: 20px; width: max-content;
  animation: scrollLogos 28s linear infinite;
}
 
.logo-marquee:hover .logo-track { animation-play-state: paused; }
 
.logo-track img {
  height: 48px; width: 120px;
  object-fit: contain;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  transition: all 0.3s ease;
  filter: grayscale(20%);
}
 
.logo-track img:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 10px 28px rgba(245,158,11,0.35);
  filter: grayscale(0%);
}
 
@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
 
/* Responsive */
@media (max-width: 768px) {
  .companies-section { padding: 60px 0; }
  .company-stats     { gap: 10px; }
  .c-stat            { padding: 14px 18px; min-width: 90px; }
  .c-stat h3         { font-size: 18px; }
  .company-tab       { padding: 10px 16px; font-size: 13px; }
  .logo-track img    { height: 38px; width: 96px; padding: 8px 10px; }
}
 
@media (max-width: 480px) {
  .companies-heading h2 { font-size: 1.6rem; }
  .company-tab          { padding: 9px 12px; font-size: 12px; }
  .c-stat               { min-width: 80px; padding: 12px 14px; }
}


/* =============================================
   TYPOGRAPHY SYSTEM — Consistent hierarchy
   ============================================= */

/* Section labels */
.section-label,
.cat-label,
.placed-label,
.batches-label,
.brochure-label,
.lb-label,
.companies-label,
.faq-label,
.cta-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 10px;
}

/* Section titles */
.section-title,
.cat-title,
.faq-title,
.placed-heading h2,
.batches-heading h2,
.brochure-heading h2,
.lb-heading h2,
.companies-heading h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Body paragraphs — consistent max-width for readability */
.about-text,
.cta-desc,
.placed-heading p,
.batches-sub,
.brochure-sub,
.lb-sub,
.companies-sub,
.faq-subtitle {
  font-size: var(--fs-sm);
  color: var(--text-body);
  line-height: 1.75;
  max-width: 640px;
}

/* Headings inside sections */
h2 { letter-spacing: -0.02em; }
h3 { letter-spacing: -0.01em; }

/* =============================================
   ANIMATED GRADIENT HERO BACKGROUND
   ============================================= */
.hero-gradient-bg {
  background: linear-gradient(135deg, #0B1F3A 0%, #123D7A 40%, #0B1F3A 70%, #1a0a3a 100%);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =============================================
   GLASS CARDS — Floating stats / trust elements
   ============================================= */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.glass-card-dark {
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
}

/* =============================================
   FLOATING STATS STRIP — Hero section
   ============================================= */
.floating-stats-strip {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.floating-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: var(--transition);
}

.floating-stat-pill:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: rgba(245, 158, 11, 0.5);
}

.floating-stat-pill .pill-num {
  color: var(--gold);
  font-weight: 700;
  font-size: var(--fs-base);
}

/* =============================================
   PLACEMENT TRUST CARDS — Glass style
   ============================================= */
.trust-cards-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  justify-content: center;
}

.trust-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  color: #fff;
  min-width: 140px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-6px);
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
}

.trust-card:hover::before { opacity: 1; }

.trust-card .tc-num {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-card .tc-label {
  font-size: var(--fs-xs);
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* =============================================
   COURSE COMPARISON TABLE
   ============================================= */
.comparison-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.comparison-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.06), transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: var(--bg-white);
}

.comparison-table thead tr {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

.comparison-table thead th {
  padding: 18px 20px;
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.3px;
}

.comparison-table thead th:first-child {
  border-radius: var(--radius-xl) 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 var(--radius-xl) 0 0;
}

.comparison-table thead th .th-highlight {
  color: var(--gold);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--gold-light); }

.comparison-table tbody td {
  padding: 16px 20px;
  font-size: var(--fs-sm);
  color: var(--text-body);
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.comparison-table .salary-badge {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: var(--gold-dark);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 700;
}

.comparison-table .placement-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #16a34a;
  font-weight: 600;
  font-size: var(--fs-sm);
}

.comparison-table .enroll-link {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.comparison-table .enroll-link:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .comparison-section { padding: var(--space-xl) 0; }
}

/* =============================================
   STICKY MOBILE CTA BAR
   ============================================= */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom, 10px));
  box-shadow: 0 -4px 20px rgba(11,31,58,0.12);
  gap: 10px;
}

.sticky-mobile-cta .smc-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.sticky-mobile-cta .smc-enroll {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), #FFB800);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.sticky-mobile-cta .smc-call:hover  { background: var(--navy-mid); }
.sticky-mobile-cta .smc-enroll:hover { background: var(--gold-dark); }

@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; }

  /* Push page content up so it's not hidden behind the bar */
  body { padding-bottom: 72px; }
}

/* =============================================
   ENHANCED STATS SECTION — Animated counters
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 50px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(245,158,11,0.12);
  filter: blur(100px);
  top: -100px; right: -100px;
  pointer-events: none;
}

.stat h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1;
}

.stat p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* =============================================
   ENHANCED CATEGORIES — Better whitespace
   ============================================= */
.categories-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-light);
  text-align: center;
}

.cat-card {
  padding: 32px 20px;
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.28, 0.64, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

.cat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.cat-card h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

/* =============================================
   ENHANCED PLACEMENT SECTION
   ============================================= */
.placement-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.placement-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(245,158,11,0.08);
  filter: blur(120px);
  bottom: -200px; right: -200px;
  pointer-events: none;
}

.placement-left h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.stat-box {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px 18px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-4px);
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.3);
}

.stat-box:hover::before { opacity: 1; }

.stat-box h3 {
  color: var(--gold);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-box p {
  font-size: var(--fs-xs);
  opacity: 0.8;
  letter-spacing: 0.3px;
}

/* =============================================
   ENHANCED ABOUT SECTION
   ============================================= */
.about-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-white);
}

.about-left h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-text {
  font-size: var(--fs-sm);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* =============================================
   ENHANCED TESTIMONIALS
   ============================================= */
.testimonial-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, #eef2ff 100%);
  text-align: center;
}

.testimonial-card {
  padding: 36px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: left;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,0.3);
}

.testimonial-card p {
  font-size: var(--fs-base);
  color: var(--text-body);
  line-height: 1.8;
  position: relative;
  padding-left: 12px;
}

.testimonial-card p::before {
  content: '\201C';
  font-size: 48px;
  color: var(--gold);
  position: absolute;
  left: -10px;
  top: -12px;
  line-height: 1;
  font-family: Georgia, serif;
}

/* =============================================
   ENHANCED TEAM SECTION
   ============================================= */
.team-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-light);
  text-align: center;
}

.team-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* =============================================
   ENHANCED CTA SECTION
   ============================================= */
.simple-cta {
  padding: var(--space-2xl) 0;
  background: var(--bg-white);
}

.cta-left h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-left h2 span { color: var(--gold); }

/* =============================================
   ENHANCED FAQ SECTION
   ============================================= */
.faq-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-page);
}

.faq-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.faq-question {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--navy);
}

/* =============================================
   ENHANCED DIRECTOR SECTION
   ============================================= */
.director-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.director-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* =============================================
   MOBILE TYPOGRAPHY IMPROVEMENTS
   ============================================= */
@media (max-width: 768px) {
  body { font-size: 15px; }

  .section-title,
  .cat-title,
  .faq-title,
  .placed-heading h2,
  .batches-heading h2,
  .brochure-heading h2,
  .lb-heading h2,
  .companies-heading h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .about-left h2,
  .placement-left h2,
  .cta-left h2 {
    font-size: clamp(1.3rem, 4.5vw, 1.6rem);
  }

  .testimonial-card { padding: 24px 20px; }
  .testimonial-card p { font-size: var(--fs-sm); }

  .stat-box { padding: 18px 12px; }
  .stat-box h3 { font-size: 1.3rem; }

  .categories-section { padding: var(--space-xl) 0; }
  .placement-section  { padding: var(--space-xl) 0; }
  .about-section      { padding: var(--space-xl) 0; }
  .simple-cta         { padding: var(--space-xl) 0; }
  .faq-section        { padding: var(--space-xl) 0; }
  .team-section       { padding: var(--space-xl) 0; }
  .director-section   { padding: var(--space-xl) 0; }
}

@media (max-width: 480px) {
  .stats-section { padding: 36px 0; }
  .stat h3 { font-size: 1.6rem; }
  .stat img { width: 36px; height: 36px; }

  .cat-card { padding: 22px 14px; }
  .cat-icon { width: 58px; height: 58px; }
  .cat-icon img { width: 30px; height: 30px; }
  .cat-card h3 { font-size: var(--fs-sm); }

  .faq-question { font-size: var(--fs-sm); padding: 16px; }
  .faq-answer   { font-size: var(--fs-xs); }
}

/* =============================================
   HERO BANNER — Tighter mobile padding
   ============================================= */
@media (max-width: 768px) {
  .top-banner .carousel-item img { height: 220px; object-fit: cover; }
}

@media (max-width: 480px) {
  .top-banner .carousel-item img { height: 160px; }
}

/* =============================================
   PLACEMENT MARQUEE — Glow effect on logos
   ============================================= */
.logo-track img {
  transition: all 0.35s ease;
  filter: grayscale(15%);
}

.logo-track img:hover {
  filter: grayscale(0%) drop-shadow(0 0 8px rgba(245,158,11,0.5));
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 30px rgba(245,158,11,0.4);
}

/* =============================================
   SECTION DIVIDERS — Subtle gradient lines
   ============================================= */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
  border: none;
}

/* =============================================
   SCROLL REVEAL ANIMATION CLASSES
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   PULSE ANIMATION — For CTAs
   ============================================= */
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

.btn-enroll,
.btn-primary,
.btn-primary2 {
  animation: ctaPulse 2.5s infinite;
}

.btn-enroll:hover,
.btn-primary:hover,
.btn-primary2:hover {
  animation: none;
}

/* =============================================
   ENHANCED MOBILE NAV — Tighter spacing
   ============================================= */
@media (max-width: 768px) {
  .nav-container { height: 60px; }
  .logo img { max-height: 42px; }
  .top-offer-bar { padding: 8px 0; }
  .offer-text, .contact-text { font-size: 11px; }
}

@media (max-width: 480px) {
  .topbar-flex { flex-direction: column; gap: 4px; text-align: center; }
}

/* =============================================
   ENHANCED FOOTER — Already good, minor tweaks
   ============================================= */
.footer-pro {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0F2A50 100%);
}

.footer-links a {
  font-size: var(--fs-xs);
  color: #94a3b8;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.fw-800      { font-weight: 800; }
.fw-700      { font-weight: 700; }
.fw-600      { font-weight: 600; }
.mt-auto     { margin-top: auto; }
.text-center { text-align: center; }

/* =============================================
   COMPARISON TABLE SECTION — Responsive
   ============================================= */
@media (max-width: 768px) {
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 12px 14px;
    font-size: var(--fs-xs);
  }
}


/* =============================================
   TRUST STRIP SECTION — Redesigned
   ============================================= */
.trust-strip-section {
  background: #fff;
  border-top:    1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 36px 0;
}

/* ── TOP: 4 stat cards ── */
.ts-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 28px;
}

.ts-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  border-right: 1px solid #e2e8f0;
  text-align: center;
  transition: background 0.2s;
}

.ts-stat-card:last-child { border-right: none; }
.ts-stat-card:hover { background: #fffbeb; }

.ts-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0B1F3A;
  line-height: 1;
  letter-spacing: -0.03em;
}

.ts-stat-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ── Divider ── */
.ts-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0 20%, #e2e8f0 80%, transparent);
  margin-bottom: 24px;
}

/* ── BOTTOM: Ratings row ── */
.ts-ratings-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ts-rated-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.3px;
  margin-right: 4px;
  white-space: nowrap;
}

/* ── Rating pills ── */
.ts-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.ts-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  padding: 7px 14px;
  text-decoration: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.ts-pill:hover {
  background: #fff;
  border-color: #F59E0B;
  box-shadow: 0 4px 14px rgba(245,158,11,0.15);
  transform: translateY(-2px);
}

.ts-pill-star {
  color: #F59E0B;
  font-size: 0.82rem;
  line-height: 1;
}

.ts-pill-score {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0B1F3A;
  line-height: 1;
}

.ts-pill-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  line-height: 1;
}

/* Brand colours */
.ts-google     { color: #4285F4; }
.ts-facebook   { color: #1877F2; }
.ts-trustpilot { color: #00b67a; }
.ts-shiksha    { color: #e84c3d; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .ts-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .ts-stat-card:nth-child(2) { border-right: none; }
  .ts-stat-card:nth-child(3) { border-right: 1px solid #e2e8f0; border-top: 1px solid #e2e8f0; }
  .ts-stat-card:nth-child(4) { border-right: none; border-top: 1px solid #e2e8f0; }
  .ts-stat-num { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .trust-strip-section { padding: 28px 0; }
  .ts-stat-card { padding: 16px 10px; }
  .ts-stat-num  { font-size: 1.25rem; }
  .ts-pill      { padding: 6px 10px; }
  .ts-pill-score { font-size: 0.78rem; }
  .ts-pill-name  { font-size: 0.7rem; }
}


/* =============================================
   ACCESSIBILITY & SEO UTILITIES
   ============================================= */

/* Visually hidden — for screen readers & SEO h1 on banner pages */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  z-index: 99999;
  transition: top 0.2s;
}

.skip-link:focus { top: 0; }
