/* --- CSS Reset & Variables --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-color: #012758;
  --secondary-color: #FAA51F;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --border-glass: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(1, 39, 88, 0.1);
  --transition: all 0.3s ease;
}

body {
  background-color: #f8fafc;
}

/* --- Header & Glassmorphism Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

/* Scrolled state applied via JS */
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding: 5px 0;
}

.navbar {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  transition: var(--transition);
}

/* --- Brand Logo --- */
.logo {
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-primary {
  color: var(--primary-color);
}

.logo-secondary {
  color: var(--secondary-color);
  margin-left: 2px;
}

/* --- Navigation Desktop Menu --- */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
  background-color: rgba(1, 39, 88, 0.06);
}

/* --- Desktop Dropdown Menus --- */
.nav-item {
  position: relative;
}

.dropdown-icon, .submenu-icon {
  font-size: 11px;
  transition: var(--transition);
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  width: 240px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  border: 1px solid rgba(0,0,0,0.05);
}

.dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: rgba(1, 39, 88, 0.05);
  color: var(--primary-color);
}

/* Desktop Hover States */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
  }

  .dropdown-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Deep Multi-level Nested Submenu Placement */
.dropdown-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: var(--transition);
  list-style: none;
  border: 1px solid rgba(0,0,0,0.05);
}

.submenu-item {
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  padding: 10px 20px;
  font-size: 14px;
  transition: var(--transition);
}

.submenu-item:hover {
  background-color: rgba(250, 165, 31, 0.08);
  color: #c97e0b; /* Slightly darker orange for readability */
}

/* --- Right Side Action Controls --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  background-color: rgba(1, 39, 88, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-enroll {
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(1, 39, 88, 0.2);
  transition: var(--transition);
}

.btn-enroll:hover {
  background-color: #053f73;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(1, 39, 88, 0.3);
}

/* --- Mobile Hamburger Icon --- */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* --- Responsive Media Queries (Mobile/Tablet Adaptations) --- */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  /* Hamburger Toggle Morph Effects */
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Mobile Dropdown Canvas */
  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 0;
    overflow-y: auto;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-link {
    width: 100%;
    padding: 16px 8px;
    font-size: 16px;
    justify-content: space-between;
  }

  .nav-link:hover, .nav-link.active {
    background-color: transparent;
  }

  /* Expandable Mobile Accordions */
  .dropdown-menu, .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    width: 100%;
    box-shadow: none;
    padding: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
    transform: none;
    border: none;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  }

  .dropdown-menu.open, .submenu.open {
    max-height: 1000px; /* Big enough value for inner heights */
    transition: max-height 0.5s ease-in-out;
  }

  .dropdown-item, .submenu-item {
    padding: 12px 8px;
  }

  .dropdown-icon.rotate, .submenu-icon.rotate {
    transform: rotate(180deg);
  }
  
  .submenu-icon {
    transform: rotate(90deg);
  }

  .location-badge {
    display: none; /* Hide badge on tiny screens to optimize whitespace */
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 16px;
  }
  .btn-enroll {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* --- Hero Section Layout Structures --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px 24px;
  background-color: #fcfdfe;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* --- Ambient Background Glow Shapes --- */
.blur-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
}
.blob-1 {
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background-color: rgba(1, 39, 88, 0.15);
}
.blob-2 {
  bottom: 5%;
  left: -5%;
  width: 350px;
  height: 350px;
  background-color: rgba(250, 165, 31, 0.12);
}

/* --- SEO Content Column --- */
.badge-seo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(1, 39, 88, 0.06);
  color: #012758;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(1, 39, 88, 0.1);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.highlight-blue {
  color: #012758;
  position: relative;
}

.hero-description {
  font-size: 17px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 600px;
}

/* Actions & Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  text-decoration: none;
  background-color: #012758;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(1, 39, 88, 0.25);
}

.btn-primary:hover {
  background-color: #053f73;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 39, 88, 0.35);
}

.btn-secondary {
  text-decoration: none;
  background-color: #ffffff;
  color: #1e293b;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

/* Trust Badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 24px;
  color: #1e293b;
  font-weight: 700;
}

.trust-item span {
  font-size: 13px;
  color: #64748b;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background-color: #e2e8f0;
}

/* --- Bento Grid Cards Component --- */
.hero-bento-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bento-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.006);
}

.bento-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 25px -5px rgba(1, 39, 88, 0.08), 0 10px 10px -5px rgba(1, 39, 88, 0.03);
  border-color: rgba(1, 39, 88, 0.15);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* Color Coding Bento Nodes uniquely */
.card-banking .card-icon { background: rgba(1, 39, 88, 0.08); color: #012758; }
.card-ielts .card-icon { background: rgba(250, 165, 31, 0.08); color: #d98407; }
.card-english .card-icon { background: rgba(1, 39, 88, 0.08); color: #012758; }

.card-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.card-info p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Pills / Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  background-color: #f1f5f9;
  color: #475569;
}

.card-arrow {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.bento-card:hover .card-arrow {
  background-color: #FAA51F;
  color: #ffffff;
}

/* --- Viewport Media Adaptations --- */
@media (max-width: 1200px) {
  .hero-title { font-size: 40px; }
}

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
}

@media (max-width: 576px) {
  .hero-title { font-size: 32px; }
  .bento-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
  }
  .tags {
    justify-content: center;
  }
  .card-arrow {
    display: none; /* Hide cosmetic arrows on simple phone lists */
  }
}

/* --- Banner Base Structure --- */
.promo-carousel-section {
  padding: 80px 24px;
  background-color: #f8fafc;
  position: relative;
}

.carousel-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(1, 39, 88, 0.05);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

/* --- Track Layout Config --- */
.carousel-track {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr;
}

.carousel-slide {
  grid-area: 1 / 1 / 2 / 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
  width: 100%;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

/* --- Left Column Content --- */
.slide-content {
  padding: 60px;
}

.slide-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.badge-blue { background-color: rgba(1, 39, 88, 0.08); color: #012758; }
.badge-orange { background-color: rgba(250, 165, 31, 0.1); color: #d98407; }

.slide-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  margin-bottom: 16px;
}

.slide-lead {
  font-size: 16px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Feature Lists Structure */
.slide-features {
  list-style: none;
  margin-bottom: 36px;
}

.slide-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #475569;
  margin-bottom: 12px;
  font-weight: 500;
}

.slide-features i {
  color: #FAA51F;
  font-size: 16px;
}

/* Actions Elements */
.slide-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-promo-primary {
  text-decoration: none;
  background-color: #012758;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(1, 39, 88, 0.15);
}

.btn-promo-primary:hover {
  background-color: #FAA51F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 165, 31, 0.25);
}

.offer-text {
  font-size: 14px;
  color: #e11d48;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- Right Side Visual Image Zone --- */
.slide-image-zone {
  position: relative;
  height: 100%;
  min-height: 520px;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.carousel-slide.active .promo-img {
  transform: scale(1.04);
}

/* Interactive floating elements badges */
.floating-stat-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.box-orange .stat-num { color: #FAA51F; }
.box-blue .stat-num { color: #012758; }

.stat-num {
  font-size: 24px;
  font-weight: 750;
  line-height: 1;
}

.stat-lbl {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
}

/* --- Carousel Functional Navigation Buttons --- */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.carousel-nav:hover {
  background-color: #012758;
  color: #ffffff;
  border-color: #012758;
}

.btn-prev { left: 20px; }
.btn-next { right: 20px; }

/* --- Slider Dots Navigation Indicator --- */
.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 60px; /* Aligned neatly with text layouts */
  display: flex;
  gap: 8px;
  z-index: 20;
}

.dot {
  width: 24px;
  height: 5px;
  background-color: #cbd5e1;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #012758;
  width: 40px;
}

/* --- Breakpoint Framework Adaptations --- */
@media (max-width: 1024px) {
  .slide-content { padding: 40px; }
  .slide-title { font-size: 28px; }
}

@media (max-width: 901px) {
  .slide-container {
    grid-template-columns: 1fr;
  }
  .slide-image-zone {
    min-height: 320px;
    height: 320px;
    grid-row: 1; /* Invert positions for mobile: image on top, contents below */
  }
  .carousel-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
  .carousel-nav {
    top: 160px; /* Center button triggers on the mobile top header frame */
  }
}

@media (max-width: 576px) {
  .slide-content { padding: 30px 20px 60px 20px; }
  .slide-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn-promo-primary { width: 100%; text-align: center; }
}

/* --- About Section Container Setups --- */
.about-section {
  padding: 40px 24px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

/* --- Left Side: Multi-layered Creative Layouts --- */
.about-image-wrapper {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.main-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(1, 39, 88, 0.08);
  z-index: 5;
}

.about-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.main-image-box:hover .about-img {
  transform: scale(1.03);
}

/* Decorative Framing Lines */
.image-accent-border {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 70%;
  height: 70%;
  border-left: 5px solid #012758;
  border-top: 5px solid #012758;
  border-top-left-radius: 20px;
  z-index: 1;
}

/* Floating Metrics Badge Card */
.exp-badge-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(1, 39, 88, 0.12);
  border-radius: 16px;
  padding: 24px 32px;
  width: 220px;
  z-index: 10;
  text-align: center;
}

.badge-accent-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: #FAA51F;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.exp-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: #012758;
  line-height: 1.1;
  margin-bottom: 4px;
}

.exp-text {
  font-size: 13px;
  color: #475569;
  font-weight: 600;
  line-height: 1.4;
}

/* --- Right Side: Text & Elements Setups --- */
.about-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #FAA51F;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.about-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: #1e293b;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.text-gradient {
  color: #012758;
}

.about-paragraph {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-paragraph.highlight {
  font-size: 16px;
  color: #334155;
  font-weight: 500;
}

/* Internal Twin Columns Features Layout */
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.about-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(1, 39, 88, 0.06);
  color: #012758;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-text-box h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.feature-text-box p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

/* CTA Row Configurations */
.about-cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.btn-about-primary {
  text-decoration: none;
  background-color: #012758;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(1, 39, 88, 0.15);
}

.btn-about-primary:hover {
  background-color: #053f73;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(1, 39, 88, 0.25);
}

.about-contact-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.call-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(250, 165, 31, 0.1);
  color: #d98407;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.call-details {
  display: flex;
  flex-direction: column;
}

.call-details span {
  font-size: 12px;
  color: #64748b;
}

.call-details strong {
  font-size: 16px;
  color: #1e293b;
  font-weight: 700;
}

/* --- Breakpoint Adjustments --- */
@media (max-width: 1100px) {
  .about-container { gap: 40px; }
  .about-title { font-size: 32px; }
  .about-img { height: 440px; }
}

@media (max-width: 901px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-image-wrapper {
    max-width: 540px;
    margin: 0 auto;
    padding-right: 20px;
  }
  .about-content-wrapper {
    text-align: center;
  }
  .about-subtitle { justify-content: center; }
  .about-features-grid { text-align: left; }
  .about-cta-row { justify-content: center; }
}

@media (max-width: 520px) {
  .about-features-grid {
    grid-template-columns: 1fr;
  }
  .about-image-wrapper {
    padding-right: 0;
    padding-bottom: 0;
  }
  .image-accent-border, .exp-badge-card {
    display: none; /* Strip deep absolute frames on thin viewports */
  }
  .about-img { height: 320px; }
}

/* --- Courses Container System --- */
.courses-section {
  padding: 60px 24px;
  background-color: #f8fafc;
  position: relative;
}

.courses-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- SEO Centered Header Structures --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px auto;
}

.section-tagline {
  font-size: 14px;
  font-weight: 700;
  color: #FAA51F;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  margin-bottom: 16px;
}

.text-highlight {
  color: #012758;
}

.section-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* --- Filter Buttons Toolbar Layout --- */
.filter-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.filter-btn:hover {
  border-color: #012758;
  color: #012758;
  background-color: rgba(1, 39, 88, 0.02);
}

.filter-btn.active {
  background-color: #012758;
  border-color: #012758;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(1, 39, 88, 0.2);
}

/* --- Dynamic Flex Grid Grid System --- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
  transition: all 0.4s ease;
}

/* --- Course Card Element Structuring --- */
.course-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(1, 39, 88, 0.1);
  border-color: rgba(1, 39, 88, 0.15);
}

/* Card Header Box Area */
.card-image-wrapper {
  height: 140px;
  background: linear-gradient(135deg, #012758 0%, #053a69 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Visual color swap depending on focus states */
.course-card[data-category="ielts"] .card-image-wrapper {
  background: linear-gradient(135deg, #FAA51F 0%, #d48711 100%);
}

.course-vector-icon {
  font-size: 50px;
  color: rgba(255, 255, 255, 0.15);
  position: absolute;
  right: 20px;
  bottom: -10px;
  transform: rotate(-15deg);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bg-blue { background-color: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255,255,255,0.3); }
.bg-orange { background-color: rgba(255, 255, 255, 0.25); border: 1px solid rgba(255,255,255,0.3); }

/* Card Inner Content */
.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-cat {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FAA51F;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.course-card[data-category="ielts"] .course-cat {
  color: #d98407;
}

.course-title {
  font-size: 19px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  margin-bottom: 12px;
}

.course-summary {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Quick Metrics Row */
.course-meta-list {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #e2e8f0;
}

.meta-item {
  font-size: 12px;
  color: #475569;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item i {
  color: #012758;
}

/* Tag Modules List */
.sub-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.module-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background-color: #f1f5f9;
  color: #475569;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

/* Actions link button positioning */
.card-footer-action {
  margin-top: auto;
}

.btn-course-details {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #012758;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.btn-course-details:hover {
  color: #FAA51F;
  gap: 10px;
}

/* --- Responsive Media Adjustments --- */
@media (max-width: 991px) {
  .section-title { font-size: 30px; }
}

@media (max-width: 480px) {
  .courses-grid {
    grid-template-columns: 1fr; /* Stack into clean single column cards on tiny frames */
  }
  .section-title { font-size: 26px; }
  .card-body { padding: 20px; }
}

/* --- Core Structural Canvas Setup --- */
.vision-mission-section {
  padding: 120px 24px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.purpose-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* --- Left Column: Media Graphic Panel Area --- */
.purpose-media-side {
  position: relative;
  width: 100%;
  height: 520px;
}

.abstract-card-ui {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Core Dashboard Content Box Layout */
.main-graphic-box {
  width: 85%;
  height: 90%;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border-radius: 32px;
  position: relative;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.15);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Abstract design elements to replicate a professional vector composition layout */
.g-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 39, 88, 0.2) 0%, rgba(1, 39, 88, 0) 70%);
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  background: radial-gradient(circle, rgba(250,165,31,0.15) 0%, rgba(250,165,31,0) 70%);
}

.graphic-core-content {
  position: relative;
  z-index: 2;
}

.core-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FAA51F;
  display: inline-block;
  margin-bottom: 12px;
}

.core-h {
  font-size: 28px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.core-p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Interactive Floating Statistics Components */
.stats-pill-top {
  position: absolute;
  top: 30px;
  right: 0;
  background: #ffffff;
  padding: 16px 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  border: 1px solid #f1f5f9;
}

.stat-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(250, 165, 31, 0.1);
  color: #FAA51F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.stat-pill-info {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

.stat-txt {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
}

.stats-pill-bottom {
  position: absolute;
  bottom: 10px;
  right: 40px;
  background: #012758;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 30px rgba(1, 39, 88, 0.25);
  z-index: 10;
}

.check-i {
  color: #FAA51F;
}

/* Smooth micro-animations for interactive floating feel */
.animate-float {
  animation: floatAnim 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: floatAnim 6s ease-in-out infinite;
  animation-delay: 3s;
}

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

/* --- Right Column: Text & Content Block Layouts --- */
.purpose-content-side {
  padding-left: 20px;
}

.purpose-tagline {
  font-size: 14px;
  font-weight: 700;
  color: #012758;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 12px;
}

.purpose-title {
  font-size: 38px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  margin-bottom: 20px;
}

.text-gradient {
  color: #012758;
  background: linear-gradient(to right, #012758, #FAA51F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.purpose-lead-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 40px;
}

/* Vertical Stack Blocks for Vision vs Mission */
.purpose-blocks-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.purpose-block-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.p-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.vision-theme {
  background-color: rgba(1, 39, 88, 0.08);
  color: #012758;
}

.mission-theme {
  background-color: rgba(250, 165, 31, 0.08);
  color: #d48711;
}

.p-block-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.p-block-desc {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
}

/* Footer Action Panel alignment row */
.purpose-action-row {
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid #e2e8f0;
  padding-top: 32px;
}

.btn-primary-action {
  text-decoration: none;
  background-color: #012758;
  color: #ffffff;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(1, 39, 88, 0.15);
}

.btn-primary-action:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(30, 41, 59, 0.2);
}

.support-signature {
  display: flex;
  flex-direction: column;
}

.sig-title {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}

.sig-sub {
  font-size: 12px;
  color: #64748b;
}

/* --- Responsive Layout Rules --- */
@media (max-width: 1120px) {
  .purpose-container { gap: 40px; }
  .purpose-title { font-size: 32px; }
}

@media (max-width: 991px) {
  .purpose-container {
    grid-template-columns: 1fr;
  }
  .purpose-media-side {
    max-width: 550px;
    margin: 0 auto 20px auto;
  }
  .purpose-content-side {
    padding-left: 0;
  }
}

@media (max-width: 540px) {
  .purpose-media-side { display: none; } /* Conceal decorative UI widgets on tight devices to protect viewport spacing */
  .purpose-title { font-size: 28px; }
  .purpose-action-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}


/* --- Core Container Setups --- */
.why-choose-section {
  padding: 60px 24px;
  background-color: #f8fafc;
  position: relative;
}

.why-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Section Title Formatting --- */
.why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px auto;
}

.why-tagline {
  font-size: 14px;
  font-weight: 700;
  color: #FAA51F;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}

.why-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  margin-bottom: 16px;
}

.color-blue {
  color: #012758;
}

.why-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* --- Core Feature Grid Configuration --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* --- Feature Card Element Blocks --- */
.why-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(1, 39, 88, 0.08);
}

/* Structural Theme Highlights */
.why-card.card-accent-blue:hover { border-color: rgba(1, 39, 88, 0.2); }
.why-card.card-accent-orange:hover { border-color: rgba(250, 165, 31, 0.25); }

/* Decorative Icon Enclosures */
.why-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.card-accent-blue .why-icon-wrapper {
  background-color: rgba(1, 39, 88, 0.06);
  color: #012758;
}

.card-accent-orange .why-icon-wrapper {
  background-color: rgba(250, 165, 31, 0.08);
  color: #d48711;
}

.why-card:hover .why-icon-wrapper {
  transform: scale(1.05) rotate(5deg);
}

/* Inner Text Elements */
.why-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.why-body p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Statistics Mini Highlight Footers */
.why-stat-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  margin-top: auto;
  letter-spacing: 0.2px;
}

.card-accent-blue .why-stat-label {
  background-color: rgba(1, 39, 88, 0.05);
  color: #012758;
}

.card-accent-orange .why-stat-label {
  background-color: rgba(250, 165, 31, 0.06);
  color: #b87104;
}

/* --- Viewport Adaptive Breakpoints --- */
@media (max-width: 991px) {
  .why-title { font-size: 30px; }
  .why-card { padding: 30px 24px; }
}

@media (max-width: 480px) {
  .why-title { font-size: 26px; }
  .why-grid { grid-template-columns: 1fr; }
}


/* --- Canvas & Layout Containers --- */
.testimonials-video-section {
  padding: 60px 24px;
  background-color: #ffffff;
  position: relative;
}

.test-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Section Heading Typography --- */
.test-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.test-tagline {
  font-size: 14px;
  font-weight: 700;
  color: #FAA51F;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}

.test-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  margin-bottom: 16px;
}

.text-blue {
  color: #012758;
}

.test-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* --- Video Flex Grid Box System --- */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

/* --- Video Card Element Layouts --- */
.video-test-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -10px rgba(1, 39, 88, 0.12);
  border-color: rgba(1, 39, 88, 0.15);
}

/* Video Header Thumbnail Box */
.thumbnail-wrapper {
  height: 210px;
  position: relative;
  overflow: hidden;
}

.fallback-thumb-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s ease;
}

.bg-gradient-blue { background: linear-gradient(135deg, #012758 0%, #1e293b 100%); }
.bg-gradient-orange { background: linear-gradient(135deg, #FAA51F 0%, #d48711 100%); }
.bg-gradient-dark { background: linear-gradient(135deg, #334155 0%, #0f172a 100%); }

.academy-bg-icon {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.08);
}

.video-test-card:hover .fallback-thumb-bg {
  transform: scale(1.04);
}

/* Dynamic Interactive Pulse Play Trigger Ring */
.play-button-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #012758;
  margin-left: 4px;
}

.video-test-card:hover .play-button-ring {
  background-color: #FAA51F;
  transform: translate(-50%, -50%) scale(1.12);
}

.video-test-card:hover .play-triangle {
  border-left-color: #ffffff;
}

.video-duration-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background-color: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* Card Information Body Box */
.video-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rating-stars {
  color: #FAA51F;
  font-size: 12px;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}

.student-name {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.student-achievement {
  font-size: 13px;
  font-weight: 600;
  color: #012758;
  margin-bottom: 14px;
}

.student-quote {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}

/* SEO Keyword Inline Pill Tags */
.target-keyword-tag {
  margin-top: auto;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  background-color: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid #e2e8f0;
}

/* --- High-Fidelity Video Modal Pop-Up Window Engine --- */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: opacity 0.4s ease;
}

.video-modal-overlay.modal-active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-container {
  width: 90%;
  max-width: 900px;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-overlay.modal-active .modal-content-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: #FAA51F;
}

.video-responsive-iframe-box {
  position: relative;
  padding-bottom: 56.25%; /* Clean responsive 16:9 Aspect Ratio Frame Lock */
  height: 0;
  background-color: #000000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-responsive-iframe-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Responsive Layout Breakpoints --- */
@media (max-width: 991px) {
  .test-title { font-size: 30px; }
}

@media (max-width: 480px) {
  .test-title { font-size: 26px; }
  .video-testimonials-grid { grid-template-columns: 1fr; }
  .video-card-body { padding: 20px; }
}


/* --- Ticker Container Canvas Configuration --- */
.marquee-ticker-section {
  background-color: #0f172a; /* Deep Slate Background for strong aesthetic text pop */
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  display: flex;
  align-items: center;
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

/* --- Static Anchor Label Styling --- */
.ticker-label-pin {
  background: #012758;
  color: #ffffff;
  padding: 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 10px 0 30px rgba(15, 23, 42, 0.9);
  border-radius: 0 8px 8px 0;
}

/* Hardware-inspired Live Pulse Dot Indicator */
.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: #FAA51F;
  border-radius: 50%;
  position: relative;
}

.pulse-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FAA51F;
  animation: livePulse 1.8s infinite ease-in-out;
}

@keyframes livePulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* --- Infinite Linear Scrolling Track Engine --- */
.ticker-scroll-track {
  display: flex;
  width: max-content;
  padding-left: 160px; /* Offset text initialization window clear of static label pin */
}

.ticker-loop-group {
  display: flex;
  align-items: center;
  gap: 60px; /* Space padding separation between discrete alert content tags */
  padding-right: 60px;
  animation: continuousMarquee linear infinite;
  animation-duration: 35s; /* Control track velocity smoothly */
}

/* Pause scroll behavior on pointer hovering profiles to optimize copy-read execution */
.ticker-scroll-track:hover .ticker-loop-group {
  animation-play-state: paused;
}

@keyframes continuousMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); } /* Seamless reset translation coordinate lock */
}

/* --- Ticker Item Child Formats --- */
.ticker-item {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap; /* Force inline horizontal flow constraint explicitly */
}

.ticker-text {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.ticker-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* Pill Categorization Badge Variants */
.badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.badge-red { background-color: #ef4444; }
.badge-orange { background-color: #FAA51F; color: #0f172a; }
.badge-blue { background-color: #012758; }
.badge-purple { background-color: #a855f7; }

/* --- Responsive Media Viewport Adaptations --- */
@media (max-width: 768px) {
  .ticker-label-pin {
    padding: 0 16px;
    font-size: 12px;
  }
  .ticker-text { font-size: 13px; }
  .ticker-loop-group { gap: 40px; padding-right: 40px; }
}

/* --- Base Grid Canvas Architecture --- */
.staff-faculty-section {
  padding: 60px 24px;
  background-color: #ffffff;
  position: relative;
}

.staff-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Section Typography Elements --- */
.staff-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px auto;
}

.staff-tagline {
  font-size: 14px;
  font-weight: 700;
  color: #FAA51F;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}

.staff-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  margin-bottom: 16px;
}

.text-blue {
  color: #012758;
}

.staff-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* --- Professional Asymmetric Cards Matrix --- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

/* --- Individual Member Card Layout --- */
.staff-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(1, 39, 88, 0.1);
  border-color: rgba(1, 39, 88, 0.15);
}

/* Top Media Box Wrapper Frame */
.staff-image-frame {
  height: 240px;
  position: relative;
  overflow: hidden;
  background-color: #f8fafc;
}

.staff-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.bg-gradient-blue { background: linear-gradient(135deg, #012758 0%, #1e293b 100%); }
.bg-gradient-orange { background: linear-gradient(135deg, #FAA51F 0%, #d48711 100%); }
.bg-gradient-dark { background: linear-gradient(135deg, #475569 0%, #0f172a 100%); }

.portrait-icon {
  font-size: 90px;
  color: rgba(255, 255, 255, 0.12);
}

.staff-card:hover .staff-avatar-placeholder {
  transform: scale(1.05);
}

/* Dynamic Interactive Social Actions Drawer Menu Overlay */
.staff-social-drawer {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  gap: 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
  border: 1px solid #e2e8f0;
}

.staff-card:hover .staff-social-drawer {
  bottom: 20px;
}

.staff-social-drawer a {
  color: #475569;
  font-size: 15px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.staff-social-drawer a:hover {
  color: #012758;
}

/* Base Body Area Formatting */
.staff-info-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.faculty-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.badge-blue { background-color: rgba(1, 39, 88, 0.08); color: #012758; }
.badge-orange { background-color: rgba(250, 165, 31, 0.1); color: #b87104; }
.badge-purple { background-color: rgba(168, 85, 247, 0.1); color: #7c3aed; }

.member-name {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.member-credentials {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 14px;
  display: block;
}

.member-bio {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Individual Specialty Skill Micro Tags */
.faculty-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.pill-spec {
  font-size: 11px;
  font-weight: 600;
  background-color: #f1f5f9;
  color: #475569;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

/* --- Viewport Adaptive Media Breaks --- */
@media (max-width: 991px) {
  .staff-title { font-size: 30px; }
  .staff-info-body { padding: 24px; }
}

@media (max-width: 480px) {
  .staff-title { font-size: 26px; }
  .staff-grid { grid-template-columns: 1fr; }
}


/* --- Core Section Structure System Layouts --- */
.contact-agency-section {
  padding: 120px 24px;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start;
}

/* --- Left Column: Context Branding Area Formatting --- */
.contact-info-side {
  width: 100%;
}

.contact-tagline {
  font-size: 14px;
  font-weight: 700;
  color: #FAA51F;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 12px;
}

.contact-title {
  font-size: 38px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  margin-bottom: 20px;
}

.text-highlight {
  color: #012758;
}

.contact-lead-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 44px;
}

/* Metadata Rows Display Matrix Layouts */
.contact-meta-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.meta-row-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.meta-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pin-blue { background-color: rgba(1, 39, 88, 0.06); color: #012758; }
.pin-orange { background-color: rgba(250, 165, 31, 0.08); color: #d48711; }

.meta-text-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.meta-text-box p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.5;
}

.phone-link-text {
  font-weight: 600;
  color: #1e293b !important;
}

.timing-span {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
  font-weight: 500;
}

/* Integrated Google Map Wrapper Framework */
.map-embed-frame {
  width: 100%;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  border: 1px solid #e2e8f0;
}

.map-embed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Right Column: High-Performance Premium Form Card Architecture --- */
.contact-form-side {
  position: sticky;
  top: 100px; /* Locks location fluidly when viewport scroll rules activate */
}

.glass-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
}

.form-header-node {
  margin-bottom: 32px;
}

.form-header-node h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.form-header-node p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* Inputs Field Layout Foundations */
.interactive-lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-input-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-input-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-input-group label i {
  color: #012758;
  font-size: 13px;
}

.form-input-group input,
.form-input-group select,
.form-input-group textarea {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px 16px;
  font-size: 14px;
  color: #1e293b;
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
  font-family: inherit;
}

.form-input-group input:focus,
.form-input-group select:focus,
.form-input-group textarea:focus {
  background-color: #ffffff;
  border-color: #012758;
  outline: none;
  box-shadow: 0 0 0 4px rgba(1, 39, 88, 0.06);
}

/* Style adjustments specific to selection lists formatting frames */
.form-input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

/* Text Area Override Dimensions Lock */
.form-input-group textarea {
  resize: vertical;
}

/* Security Disclaimer Row Checkbox Panel Area */
.form-security-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 4px;
}

.form-security-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #012758;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.form-security-consent label {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  user-select: none;
  cursor: pointer;
}

/* Submissions Form Action Button Layout Trigger Parameters */
.btn-submit-lead-form {
  background-color: #012758;
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(1, 39, 88, 0.15);
  margin-top: 8px;
}

.btn-submit-lead-form:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(30, 41, 59, 0.2);
}

.btn-submit-lead-form:active {
  transform: translateY(0);
}

/* --- Viewport Responsive Layout Adapters --- */
@media (max-width: 1200px) {
  .contact-container { gap: 40px; }
  .contact-title { font-size: 32px; }
  .glass-form-card { padding: 32px; }
}

@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-form-side {
    position: relative;
    top: 0;
  }
  .map-embed-frame { height: 280px; }
}

@media (max-width: 580px) {
  .contact-title { font-size: 28px; }
  .form-input-row-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .glass-form-card { padding: 24px 20px; border-radius: 20px; }
}

/* --- Base Structural Groundwork --- */
.modern-agency-footer {
  background-color: #0f172a; /* Premium Deep Dark Slate Background */
  padding: 80px 24px 0 24px;
  border-top: 1px solid #1e293b;
  font-family: inherit;
}

.footer-core-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

/* --- Column 1 Layout Details --- */
.brand-summary-box {
  display: flex;
  flex-direction: column;
}

.brand-logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.brand-logo-text .text-accent {
  color: #FAA51F; /* Primary Golden Orange highlight accent block */
}

.brand-pitch-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 20px 0 24px 0;
  max-width: 320px;
}

.footer-social-channels {
  display: flex;
  gap: 12px;
}

.footer-social-channels a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #1e293b;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-channels a:hover {
  background-color: #012758; /* High-contrast corporate brand response color */
  color: #ffffff;
  transform: translateY(-3px);
}

/* --- Navigation & Links Columns --- */
.footer-heading {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  position: relative;
}

/* Minimalist design accent rule line below section headers */
.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 24px;
  height: 2px;
  background-color: #012758;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 14.5px;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* --- Column 4 Layout Details (Contact Parameters) --- */
.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact-info li i {
  color: #012758;
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.phone-highlight {
  color: #ffffff;
  font-weight: 600;
}

/* --- Bottom Baseline Border Strip Frame Rules --- */
.footer-bottom-baseline {
  border-top: 1px solid #1e293b;
  padding: 28px 0;
}

.baseline-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 13px;
  color: #64748b;
}

.baseline-legal-links {
  display: flex;
  gap: 24px;
}

.baseline-legal-links a {
  color: #64748b;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.baseline-legal-links a:hover {
  color: #94a3b8;
}

/* --- Responsive Layout Breakpoints --- */
@media (max-width: 1024px) {
  .footer-core-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .modern-agency-footer {
    padding: 60px 16px 0 16px;
  }
  .footer-core-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }
  .baseline-content-wrapper {
    flex-direction: column-reverse;
    gap: 16px;
    text-align: center;
  }
  .baseline-legal-links {
    justify-content: center;
  }
}

/* --- Core Hero Outer Frame Container --- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 680px;
  background-color: #0f172a;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* --- Slide Layer Stack Rules --- */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  display: flex;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s ease;
}

.hero-slide.active-slide {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* --- Responsive Media Asset Properties --- */
.slide-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

/* Premium dark gradient mesh overlay layer to ensure typography readability passes WCAG contrast thresholds */
.slide-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0.4) 100%);
  z-index: -1;
}

/* --- Interactive Content Layout Cards --- */
.slide-content-card {
  max-width: 760px;
  padding: 0 60px;
  margin-left: 8%;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.hero-slide.active-slide .slide-content-card {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s; /* Delay entry slightly until back canvas fade operation stabilizes */
}

/* Typography elements and labels mapping setups */
.slide-mini-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 6px;
  color: #ffffff;
  margin-bottom: 24px;
}

.bg-blue { background-color: #012758; }
.bg-orange { background-color: #FAA51F; color: #0f172a; }
.bg-purple { background-color: #a855f7; }

.slide-main-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.text-gold {
  color: #FAA51F;
}

.slide-supporting-text {
  font-size: 16.5px;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 640px;
}

/* Call To Action Buttons Row Styles */
.slide-action-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-action, .btn-secondary-action {
  padding: 16px 28px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.btn-primary-action {
  background-color: #012758;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(1, 39, 88, 0.25);
}

.btn-primary-action:hover {
  background-color: #FAA51F;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(250, 165, 31, 0.3);
}

.btn-secondary-action {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-secondary-action:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* --- Slider Navigation Arrow Elements --- */
.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.slider-arrow-btn:hover {
  background-color: #012758;
  border-color: #012758;
  color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.arrow-left { left: 32px; }
.arrow-right { right: 32px; }

/* --- Slider Bullets Indicators Navigation Bar --- */
.slider-bullets-indicator-container {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.bullet-node {
  width: 28px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bullet-node.active-bullet {
  background-color: #FAA51F;
  width: 48px; /* Expand horizontally dynamically to emphasize the currently selected node path */
}

/* --- Layout Responsive Adaptation Viewports --- */
@media (max-width: 991px) {
  .hero-slider-section { height: 600px; }
  .slide-main-title { font-size: 38px; }
  .slide-content-card { padding: 0 40px; margin-left: 4%; }
  .arrow-left { left: 16px; }
  .arrow-right { right: 16px; }
}

@media (max-width: 768px) {
  .hero-slider-section { height: 560px; }
  .slide-main-title { font-size: 30px; }
  .slide-supporting-text { font-size: 14.5px; margin-bottom: 28px; }
  .slide-content-card { padding: 0 20px; margin-left: 0; text-align: center; max-width: 100%; margin: 0 auto; }
  .slide-action-row { justify-content: center; }
  .slider-arrow-btn { display: none; } /* Hide heavy structural arrows on small touch devices to enhance natural swipe layout UX */
  .slide-bg-overlay { background: rgba(15, 23, 42, 0.85); }
}

/* --- Outer Section Canvas --- */
.faq-agency-section {
  padding: 60px 24px;
  background-color: #f8fafc;
  position: relative;
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

/* --- Section Header --- */
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-badge {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  border-radius: 20px;
  background-color: rgba(1, 39, 88, 0.1);
  color: #012758;
  margin-bottom: 16px;
}

.faq-title {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.text-highlight-blue {
  color: #012758;
}

.faq-subtitle {
  font-size: 15.5px;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Filter Navigation Tabs --- */
.faq-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-tab-btn {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  background-color: #ffffff;
  color: #64748b;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq-tab-btn:hover {
  background-color: #f1f5f9;
  color: #1e293b;
}

.faq-tab-btn.active-tab {
  background-color: #012758;
  color: #ffffff;
  border-color: #012758;
  box-shadow: 0 4px 14px rgba(1, 39, 88, 0.2);
}

/* --- Accordion Item Stack --- */
.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.faq-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card.active-card {
  border-color: rgba(1, 39, 88, 0.3);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

/* Interactive Accordion Button */
.faq-question-btn {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.question-text {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.faq-card.active-card .question-text {
  color: #012758;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #012758;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.faq-card.active-card .accordion-icon {
  transform: rotate(45deg); /* Rotates plus icon into a close 'x' icon */
  background-color: #012758;
  color: #ffffff;
}

/* Accordion Collapsible Answer Container */
.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.answer-content {
  padding: 0 28px 24px 28px;
  color: #475569;
  font-size: 15px;
  line-height: 1.65;
  border-top: 1px solid transparent;
}

.faq-card.active-card .answer-content {
  border-top-color: #f1f5f9;
  padding-top: 16px;
}

/* --- Bottom Conversion Banner --- */
.faq-footer-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #ffffff;
}

.cta-avatar-group {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #FAA51F;
  flex-shrink: 0;
}

.cta-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cta-text p {
  font-size: 13.5px;
  color: #94a3b8;
}

.btn-faq-contact {
  background-color: #FAA51F;
  color: #0f172a;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-faq-contact:hover {
  background-color: #ffffff;
  color: #012758;
  transform: translateY(-2px);
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
  .faq-agency-section { padding: 60px 16px; }
  .faq-title { font-size: 28px; }
  .faq-question-btn { padding: 18px 20px; }
  .question-text { font-size: 15.5px; }
  .answer-content { padding: 0 20px 20px 20px; }
  .faq-footer-cta { flex-direction: column; text-align: center; padding: 28px 20px; }
  .btn-faq-contact { width: 100%; justify-content: center; }
}

/* Hide Enroll Now button on screens smaller than 768px (Mobile) */
@media screen and (max-width: 767px) {
  .nav-actions .btn-enroll {
    display: none !important;
  }
}

/* --- Light-Theme Outer Section --- */
.sbi-course-wrapper {
  padding: 40px 24px;
  background-color: #ffffff;
  color: #1e293b;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sbi-course-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Section Header Block --- */
.sbi-header-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px auto;
}

.sbi-category-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #012758;
  background-color: #eff6ff;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #dbeafe;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.sbi-heading-main {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.text-accent-blue {
  color: #012758;
}

.sbi-subtext-main {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* --- 3-Tier Grid Layout --- */
.sbi-curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.sbi-tier-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.sbi-tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
  border-color: #cbd5e1;
}

/* Featured Card Highlight */
.sbi-tier-card.sbi-featured-card {
  background-color: #ffffff;
  border: 2px solid #012758;
  box-shadow: 0 12px 28px rgba(1, 39, 88, 0.1);
}

.featured-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: #012758;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 10px;
}

/* Card Header Components */
.sbi-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.tier-chip {
  font-size: 11px;
  font-weight: 800;
  color: #012758;
  background-color: #dbeafe;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.chip-orange { background-color: #ffedd5; color: #c2410c; }
.chip-purple { background-color: #f3e8ff; color: #6b21a8; }

.tier-target {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.tier-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.tier-desc {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 24px;
}

/* Topics Checklist */
.tier-topics-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.topic-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.topic-icon {
  color: #012758;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.topic-item strong {
  display: block;
  font-size: 13.5px;
  color: #1e293b;
  margin-bottom: 2px;
}

.topic-item p {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

.tier-stat-box {
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #64748b;
}

.tier-stat-box strong {
  color: #012758;
  font-size: 14px;
  font-weight: 800;
}

/* --- Facilities Perks Banner --- */
.sbi-perks-banner {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.perk-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.perk-icon {
  font-size: 22px;
  color: #012758;
  background-color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.perk-box h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.perk-box p {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
}

/* --- Call To Action Bar --- */
.sbi-cta-card {
  background-color: #012758;
  color: #ffffff;
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-text-content h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.cta-text-content p {
  font-size: 14px;
  color: #dbeafe;
  margin: 0;
}

.btn-sbi-action {
  background-color: #FAA51F;
  color: #0f172a;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-sbi-action:hover {
  background-color: #ffffff;
  color: #012758;
  transform: translateY(-2px);
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
  .sbi-curriculum-grid { grid-template-columns: 1fr; }
  .sbi-perks-banner { grid-template-columns: 1fr; }
  .sbi-cta-card { flex-direction: column; text-align: center; }
  .btn-sbi-action { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .sbi-course-wrapper { padding: 60px 16px; }
  .sbi-heading-main { font-size: 26px; }
  .sbi-cta-card { padding: 24px 20px; }
}

/* --- Light Theme Variables --- */
:root {
  --bc-bg-color: #f8fafc;        /* Subtle slate-50 background */
  --bc-text-muted: #64748b;      /* Slate-500 */
  --bc-text-active: #0f172a;     /* Slate-900 */
  --bc-accent: #012758;          /* Brand Primary Accent */
  --bc-border-color: #e2e8f0;    /* Slate-200 border */
}

/* Outer Container */
.breadcrumb-wrapper {
  margin-top: 11vh;
  background-color: var(--bc-bg-color);
  border-bottom: 1px solid var(--bc-border-color);
  padding: 14px 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.breadcrumb-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* List Structure */
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* List Items */
.breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

/* Links */
.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bc-text-muted);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  border-radius: 4px;
}

.breadcrumb-link:hover {
  color: var(--bc-accent);
}

.breadcrumb-link:focus-visible {
  outline: 2px solid var(--bc-accent);
  outline-offset: 2px;
}

/* Active State */
.breadcrumb-item.active {
  color: var(--bc-text-active);
  font-weight: 600;
}

/* Icons */
.breadcrumb-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  color: #94a3b8;
}

.breadcrumb-separator svg {
  width: 16px;
  height: 16px;
}

/* Responsive adjust for mobile */
@media (max-width: 640px) {
  .breadcrumb-wrapper {
    margin-top: 12vh;
    padding: 10px 16px;
  }
  
  .breadcrumb-list {
    font-size: 13px;
    gap: 6px;
  }

  .breadcrumb-icon,
  .breadcrumb-separator svg {
    width: 14px;
    height: 14px;
  }
}
/* --- Outer Contact Wrapper --- */
.contact-wrapper {
  padding: 40px 24px;
  background-color: #f8fafc;
  color: #1e293b;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-container-new {
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Section Header --- */
.contact-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px auto;
}

.contact-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #012758;
  background-color: #eff6ff;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #dbeafe;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 14px;
}

.text-accent {
  color: #012758;
}

.contact-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* --- Main Grid Layout --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  margin-bottom: 48px;
}

/* Left Column: Info Cards */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.25s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
  border-color: #cbd5e1;
}

.info-icon {
  width: 46px;
  height: 46px;
  background-color: #eff6ff;
  color: #012758;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid #dbeafe;
}

.info-details h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.info-details p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.info-details a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.info-details a:hover {
  color: #012758;
}

/* Right Column: Form */
.contact-form-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.form-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
}

.required {
  color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  font-size: 14px;
  color: #0f172a;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background-color: #ffffff;
  border-color: #012758;
  box-shadow: 0 0 0 3px rgba(1, 39, 88, 0.12);
}

.btn-submit {
  background-color: #012758;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  margin-top: 8px;
}

.btn-submit:hover {
  background-color: #053b6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(1, 39, 88, 0.25);
}

/* --- Map Container --- */
.map-container {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.map-header {
  padding: 16px 24px;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.map-header i {
  color: #012758;
}

.map-frame-wrapper iframe {
  display: block;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-wrapper {
    padding: 50px 16px;
  }
  
  .contact-title {
    font-size: 26px;
  }
  
  .contact-form-card {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}




/* =========================
   Fortes Academy Corrections
   ========================= */
.logo-wordmark{
  color:#012758;
  font-family:Georgia,"Times New Roman",serif;
  font-size:20px;
  font-weight:800;
  letter-spacing:.6px;
  line-height:1.1;
  text-transform:uppercase;
}
.facilities-section{padding:80px 24px;background:#fff}
.facilities-container{max-width:1280px;margin:0 auto}
.facilities-header{text-align:center;max-width:760px;margin:0 auto 42px}
.facilities-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.facility-card{background:#fff;border:1px solid #e2e8f0;border-radius:20px;overflow:hidden;box-shadow:0 12px 30px rgba(15,23,42,.06)}
.facility-card img{display:block;width:100%;height:260px;object-fit:cover}
.facility-content{padding:34px 22px 22px}
.facility-content h3{font-size:18px;color:#0f172a;margin:0 0 8px}
.facility-content p{font-size:14px;color:#64748b;line-height:1.6;margin:0}
.director-section{padding:108px 24px 80px;background:#f8fafc}
.director-container{max-width:1000px;margin:0 auto}
.director-header{text-align:center;margin-bottom:36px}
.director-card{background:#fff;border:1px solid #e2e8f0;border-radius:22px;padding:40px;box-shadow:0 12px 30px rgba(15,23,42,.05)}
.director-card p{font-size:15px;line-height:1.8;color:#475569;margin:0 0 20px}
.director-card blockquote{margin:28px 0;padding:20px 24px;border-left:4px solid #012758;background:#f8fafc;color:#1e293b;font-weight:700;font-style:italic;line-height:1.7}
.director-signoff{color:#0f172a!important}
.promotional-banners-section{padding:60px 24px;background:#fff}
.promotional-banners-container{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:24px}
.promotional-banner{border-radius:18px;overflow:hidden;border:1px solid #e2e8f0;box-shadow:0 10px 25px rgba(15,23,42,.05)}
.promotional-banner img{display:block;width:100%;height:auto}
@media(max-width:900px){
 .facilities-grid{grid-template-columns:1fr 1fr}
 .promotional-banners-container{grid-template-columns:1fr}
}
@media(max-width:640px){
 .logo-wordmark{font-size:15px}
 .facilities-section,.director-section,.promotional-banners-section{padding:55px 16px}
 .facilities-grid{grid-template-columns:1fr}
 .facility-card img{height:220px}
 .director-card{padding:24px 18px}
}


/* =========================================================
   FORTES ACADEMY MOBILE RESPONSIVE OVERRIDES
   Keeps course cards, tables, navigation and CTAs usable
   from small phones through tablets.
   ========================================================= */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, iframe { max-width: 100%; }

.sbi-course-wrapper { width: 100%; overflow: hidden; }
.sbi-course-container { width: min(100%, 1240px); margin-inline: auto; }
.sbi-curriculum-grid { width: 100%; }
.sbi-tier-card { min-width: 0; }
.sbi-heading-main { overflow-wrap: anywhere; }
.sbi-perks-banner { width: 100%; }
.perk-box { min-width: 0; }
.perk-box p, .perk-box h4, .tier-title, .tier-desc, .topic-item p { overflow-wrap: anywhere; }
.exam-details-section { width: 100%; overflow: hidden; }
.exam-details-container { width: min(100%, 1240px); margin-inline: auto; }
.exam-table { min-width: 680px; }

@media (max-width: 991px) {
  .navbar { padding: 12px 18px; min-height: 72px; }
  .logo img { width: 58px !important; height: auto; }
  .logo-wordmark { font-size: 18px; line-height: 1.1; }
  .logo > div > span { font-size: 9px !important; }
  .nav-actions { gap: 10px; }
  .btn-enroll { white-space: nowrap; }
  .nav-menu { top: 72px; height: calc(100dvh - 72px); padding: 12px 18px 32px; }
  .dropdown-menu, .submenu { padding-left: 10px; }
  .nav-link { min-height: 48px; }

  .sbi-course-wrapper { padding-inline: 16px !important; }
  .sbi-course-container { padding-inline: 0 !important; }
  .sbi-curriculum-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .sbi-tier-card { width: 100%; }
  .sbi-heading-main { font-size: clamp(27px, 5vw, 40px) !important; line-height: 1.18 !important; }
  .sbi-subtext-main { font-size: 14px !important; line-height: 1.7 !important; }
  .sbi-perks-banner { grid-template-columns: 1fr !important; gap: 12px !important; }
  .perk-box { padding: 18px !important; }
  .sbi-cta-card { grid-template-columns: 1fr !important; gap: 16px !important; text-align: center; }
  .cta-btn-wrapper { justify-content: center !important; }
  .exam-details-container { padding-inline: 16px !important; }
  .exam-table { display: table; }
  .exam-details-container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 640px) {
  .navbar { padding: 10px 12px; }
  .logo { gap: 8px !important; }
  .logo img { width: 48px !important; }
  .logo-wordmark { font-size: 15px; }
  .logo > div > span { display: block !important; }
  .btn-enroll { padding: 8px 12px !important; font-size: 12px !important; }
  .hamburger { margin-left: 2px; }

  .sbi-course-wrapper { padding: 34px 12px !important; }
  .sbi-header-block { padding-inline: 4px; }
  .sbi-heading-main { font-size: 25px !important; }
  .sbi-category-badge { font-size: 11px !important; }
  .sbi-tier-card { padding: 20px !important; border-radius: 16px !important; }
  .tier-title { font-size: 20px !important; line-height: 1.3 !important; }
  .tier-desc { font-size: 13px !important; }
  .topic-item { align-items: flex-start !important; }
  .topic-item p { font-size: 12px !important; line-height: 1.55 !important; }
  .perk-box { display: flex; align-items: flex-start; gap: 12px; }
  .perk-icon { flex: 0 0 auto; }
  .btn-sbi-action { width: 100%; justify-content: center; }
  .exam-details-container { padding-inline: 12px !important; }
  .exam-details-header h2 { font-size: 26px !important; }
  .exam-details-header p { font-size: 13px !important; line-height: 1.65 !important; }
}

/* Careers page */
.careers-page { background: #f8fafc; padding-top: 138px; }
.careers-hero { padding: 72px 24px 54px; background: linear-gradient(135deg, #f7fbff 0%, #fff8ed 100%); border-bottom: 1px solid #e7edf4; }
.careers-hero-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.careers-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(1,39,88,.08); color: #012758; font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.careers-hero h1 { margin: 18px auto 12px; max-width: 900px; color: #10243e; font-size: clamp(36px, 5vw, 62px); line-height: 1.08; }
.careers-hero p { max-width: 760px; margin: 0 auto; color: #5b6b7f; font-size: 16px; line-height: 1.8; }
.careers-grid { max-width: 1180px; margin: 0 auto; padding: 66px 24px 92px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px; align-items: start; }
.career-card { background: #fff; border: 1px solid #e4ebf3; border-radius: 22px; padding: 32px; box-shadow: 0 14px 38px rgba(15,23,42,.06); display: flex; flex-direction: column; min-width: 0; gap: 2px; scroll-margin-top: 140px; }
.career-card:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(15,23,42,.09); transition: .25s ease; }
.career-badge { display: inline-flex; width: fit-content; padding: 6px 10px; border-radius: 8px; background: #eef6ff; color: #012758; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.career-card h2 { margin: 18px 0 12px; color: #12263f; font-size: 24px; line-height: 1.25; }
.career-meta { color: #64748b; font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.career-section-title { margin: 16px 0 8px; color: #1e3a5f; font-size: 14px; }
.career-list { margin: 0; padding-left: 20px; color: #536579; line-height: 1.75; font-size: 14px; }
.career-list li + li { margin-top: 5px; }
.career-salary { margin-top: 18px; padding: 13px 15px; border-radius: 12px; background: #fff8e9; color: #8a5a00; font-weight: 700; font-size: 13px; }
.career-apply { margin-top: 22px; padding-top: 18px; border-top: 1px solid #edf1f5; color: #4b5e73; font-size: 13px; line-height: 1.7; }
.career-apply strong { color: #12263f; }
.career-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.career-actions a { display: inline-flex; align-items: center; gap: 7px; padding: 10px 14px; border-radius: 10px; text-decoration: none; font-size: 12px; font-weight: 700; }
.career-actions .whatsapp { background: #e9f9ef; color: #167b43; }
.career-actions .email { background: #eef5ff; color: #012758; }
.careers-footer-cta { max-width: 1180px; margin: 0 auto 70px; padding: 30px; border-radius: 22px; background: #012758; color: #fff; text-align: center; }
.careers-footer-cta h2 { font-size: 26px; margin-bottom: 8px; }
.careers-footer-cta p { opacity: .9; line-height: 1.7; }

@media (max-width: 760px) {
  .careers-page { padding-top: 96px; }
  .careers-hero { padding: 48px 16px 36px; }
  .careers-hero h1 { font-size: 34px; }
  .careers-hero p { font-size: 14px; }
  .careers-grid { grid-template-columns: 1fr; padding: 44px 14px 64px; gap: 24px; }
  .career-card { padding: 22px; border-radius: 18px; }
  .career-card h2 { font-size: 21px; }
  .careers-footer-cta { margin: 0 14px 44px; padding: 24px 18px; }
}

/* Website correction: additional separation between academy images/descriptions and Director's Desk. */
.facilities-section{padding-bottom:108px}


/* --- Student Hall of Fame --- */
.hall-of-fame-section{padding:96px 24px;background:#fff}
.hall-of-fame-container{max-width:1280px;margin:0 auto}
.hall-of-fame-header{text-align:center;margin-bottom:42px}
.hall-of-fame-header .section-desc{margin-top:10px}
.hall-of-fame-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:30px;align-items:stretch}
.hall-card{background:#fff;border:1px solid #e2e8f0;border-radius:24px;overflow:hidden;box-shadow:0 14px 36px rgba(15,23,42,.07);display:flex;flex-direction:column}
.hall-photo-wrap{height:250px;background:#f1f5f9;display:flex;align-items:center;justify-content:center;overflow:hidden}
.hall-photo-wrap img{width:100%;height:100%;object-fit:cover;object-position:center top}
.hall-body{padding:30px}
.hall-body h3{margin:0 0 6px;color:#12263f;font-size:21px}
.hall-role{display:block;color:#012758;font-weight:700;font-size:12px;letter-spacing:.04em;margin-bottom:18px}
.hall-body p{color:#475569;line-height:1.75;font-size:14px;margin:0 0 14px}
.hall-stars{font-weight:700;color:#d48711!important}
.hall-card-compact{justify-content:center;min-height:360px}
.hall-note{color:#64748b!important;font-style:italic}
@media(max-width:800px){.hall-of-fame-section{padding:70px 16px}.hall-of-fame-grid{grid-template-columns:1fr;gap:22px}.hall-photo-wrap{height:230px}.hall-body{padding:24px}}

/* Leadership messages and corrected facility presentation */
.leadership-messages-section{padding:100px 24px;background:#f8fafc}
.leadership-container{max-width:1280px;margin:0 auto}
.leadership-header{text-align:center;max-width:820px;margin:0 auto 46px}
.leadership-message-card{display:grid;grid-template-columns:270px 1fr;gap:42px;background:#fff;border:1px solid #e2e8f0;border-radius:26px;padding:42px;margin-bottom:28px;box-shadow:0 14px 34px rgba(15,23,42,.06)}
.leadership-profile{text-align:center;padding:10px 0}
.leadership-profile img{width:190px;height:220px;object-fit:cover;border-radius:20px;display:block;margin:0 auto 18px;box-shadow:0 10px 24px rgba(15,23,42,.12)}
.leadership-profile span{display:block;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:#b07b20;margin-bottom:6px}
.leadership-profile strong{display:block;font-size:20px;color:#0f172a}
.leadership-profile small{display:block;color:#64748b;margin-top:4px}
.leadership-message-content{min-width:0}
.message-label{display:inline-block;font-size:13px;font-weight:800;letter-spacing:1.2px;text-transform:uppercase;color:#012758;margin-bottom:16px}
.leadership-message-content p{font-size:15px;line-height:1.85;color:#475569;margin:0 0 18px}
.message-pillars{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:24px 0}
.message-pillars>div{padding:18px;border-left:3px solid #b78a3a;background:#f8fafc;color:#475569;font-size:14px;line-height:1.7}
.message-pillars strong{color:#0f172a}
.message-signoff{color:#0f172a!important}
.staff-member-photo{display:block;width:100%;height:100%;object-fit:cover}
@media(max-width:900px){.leadership-message-card{grid-template-columns:1fr;gap:24px}.leadership-profile img{width:170px;height:200px}.message-pillars{grid-template-columns:1fr}}
@media(max-width:640px){.leadership-messages-section{padding:55px 16px}.leadership-message-card{padding:24px 18px}.leadership-message-content p{font-size:14px}.message-pillars>div{padding:15px}}
