/* --- CSS Reset & Variables --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-color: #075294;
  --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(7, 82, 148, 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(7, 82, 148, 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(7, 82, 148, 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(7, 82, 148, 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(7, 82, 148, 0.2);
  transition: var(--transition);
}

.btn-enroll:hover {
  background-color: #053f73;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(7, 82, 148, 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(7, 82, 148, 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(7, 82, 148, 0.06);
  color: #075294;
  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(7, 82, 148, 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: #075294;
  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: #075294;
  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(7, 82, 148, 0.25);
}

.btn-primary:hover {
  background-color: #053f73;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7, 82, 148, 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(7, 82, 148, 0.08), 0 10px 10px -5px rgba(7, 82, 148, 0.03);
  border-color: rgba(7, 82, 148, 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(7, 82, 148, 0.08); color: #075294; }
.card-ielts .card-icon { background: rgba(250, 165, 31, 0.08); color: #d98407; }
.card-english .card-icon { background: rgba(7, 82, 148, 0.08); color: #075294; }

.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;
  }
}

@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(7, 82, 148, 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(7, 82, 148, 0.08); color: #075294; }
.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: #075294;
  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(7, 82, 148, 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: #075294; }

.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: #075294;
  color: #ffffff;
  border-color: #075294;
}

.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: #075294;
  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: 100px 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(7, 82, 148, 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 #075294;
  border-top: 5px solid #075294;
  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(7, 82, 148, 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: #075294;
  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: #075294;
}

.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(7, 82, 148, 0.06);
  color: #075294;
  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: #075294;
  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(7, 82, 148, 0.15);
}

.btn-about-primary:hover {
  background-color: #053f73;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(7, 82, 148, 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: 100px 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: #075294;
}

.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: #075294;
  color: #075294;
  background-color: rgba(7, 82, 148, 0.02);
}

.filter-btn.active {
  background-color: #075294;
  border-color: #075294;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(7, 82, 148, 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(7, 82, 148, 0.1);
  border-color: rgba(7, 82, 148, 0.15);
}

/* Card Header Box Area */
.card-image-wrapper {
  height: 140px;
  background: linear-gradient(135deg, #075294 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: #075294;
}

/* 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: #075294;
  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(7,82,148,0.2) 0%, rgba(7,82,148,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: #075294;
  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(7, 82, 148, 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: #075294;
  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: #075294;
  background: linear-gradient(to right, #075294, #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(7, 82, 148, 0.08);
  color: #075294;
}

.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: #075294;
  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(7, 82, 148, 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: 100px 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: #075294;
}

.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(7, 82, 148, 0.08);
}

/* Structural Theme Highlights */
.why-card.card-accent-blue:hover { border-color: rgba(7, 82, 148, 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(7, 82, 148, 0.06);
  color: #075294;
}

.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(7, 82, 148, 0.05);
  color: #075294;
}

.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: 100px 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: #075294;
}

.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(7, 82, 148, 0.12);
  border-color: rgba(7, 82, 148, 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, #075294 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 #075294;
  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: #075294;
  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: #075294;
  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: #075294; }
.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: 100px 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: #075294;
}

.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(7, 82, 148, 0.1);
  border-color: rgba(7, 82, 148, 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, #075294 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: #075294;
}

/* 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(7, 82, 148, 0.08); color: #075294; }
.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: #075294;
}

.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(7, 82, 148, 0.06); color: #075294; }
.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: #075294;
  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: #075294;
  outline: none;
  box-shadow: 0 0 0 4px rgba(7, 82, 148, 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: #075294;
  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: #075294;
  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(7, 82, 148, 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: #075294; /* 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: #075294;
}

.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: #075294;
  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: #075294; }
.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: #075294;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(7, 82, 148, 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: #075294;
  border-color: #075294;
  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); }
}