/* 
   Maulana Karim Khan Landing Page - Light Professional Theme CSS (Green, White, Black & Gold)
   Created: 2026-07-01
   Aesthetic: Modern, Minimalist, High-End Clean, Trustworthy
*/

/* Custom Properties & Design System Tokens */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f6f9f7;
  --bg-dark: #0d110f;
  --brand-green: #0a3d24;
  --brand-green-light: #125c38;
  --brand-green-rgb: 10, 61, 36;
  --primary-gold: #c5a059;
  --accent-gold: #ffcc00;
  --text-dark: #1f2421;
  --text-muted: #5e6c64;
  --text-light: #ffffff;
  --border-color: #e4ece8;
  --border-light: rgba(10, 61, 36, 0.06);
  --border-glow: rgba(197, 160, 89, 0.4);
  
  /* Gradients */
  --green-gradient: linear-gradient(135deg, #0a3d24 0%, #125c38 100%);
  --gold-gradient: linear-gradient(135deg, #f5d082 0%, #c5a059 50%, #9e7a33 100%);
  --shadow-sm: 0 4px 20px rgba(10, 61, 36, 0.03);
  --shadow-md: 0 12px 35px rgba(10, 61, 36, 0.06);
  --shadow-lg: 0 20px 50px rgba(10, 61, 36, 0.1);
  
  /* Fonts */
  --font-heading: 'Outfit', 'Oswald', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Styles & Custom Scrollbar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: clip;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold);
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-green);
}

.text-gold {
  color: var(--primary-gold);
}

.text-green {
  color: var(--brand-green);
}

/* Top Blinker & Trust Info Bar (Seamless Infinite Marquee) */
.top-blinker {
  background-color: var(--accent-gold);
  color: #000000;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1030;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.top-blinker-marquee-content {
  display: inline-flex;
  gap: 80px;
  animation: marquee-infinite 30s linear infinite;
}

.top-blinker-marquee-content span {
  display: inline-block;
}

@keyframes marquee-infinite {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.social-links-top a {
  font-size: 1.05rem;
  transition: var(--transition-fast);
  color: rgba(255, 255, 255, 0.75) !important;
}

.social-links-top a:hover {
  color: var(--primary-gold) !important;
  transform: translateY(-1px);
}

.top-trust-bar {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 10px 0;
  font-size: 0.85rem;
  z-index: 1025;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.google-review-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-review-line .stars-icon {
  color: var(--accent-gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.flag-container {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.flag-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: var(--transition-fast);
}

.flag-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag-icon:hover {
  transform: scale(1.2);
}

/* Sticky Navigation Bar */
.custom-navbar {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1040 !important;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  transition: var(--transition-smooth);
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.logo-head {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.navbar-toggler-icon {
  height: auto !important;
}
.nav-link:hover, .nav-link.active {
  color: var(--brand-green) !important;
  background-color: rgba(10, 61, 36, 0.04);
}

.nav-cta {
  background-color: var(--brand-green);
  color: var(--text-light) !important;
  border-radius: 50px;
  padding: 10px 24px !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(10, 61, 36, 0.15);
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  background-color: var(--bg-dark);
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Section / Banner Slider */
.banner-part {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.banner-part .carousel-item {
  height: 520px;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-part .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 61, 36, 0.8) 0%, rgba(13, 17, 15, 0.6) 100%);
  z-index: 1;
}

.hero-overlay-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  text-align: left;
  width: 85%;
  max-width: 650px;
  z-index: 10;
  color: var(--text-light);
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-weight: 400;
}

/* Global Section Layout */
section {
  padding: 80px 0;
  position: relative;
}

.section-tag {
  color: var(--primary-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-green);
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 45px;
}

/* Stats Counter Section */
.stats-section {
  background: var(--brand-green);
  color: var(--text-light);
  padding: 50px 0;
  border-bottom: 3px solid var(--primary-gold);
}

.stat-card {
  text-align: center;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Services Section */
.ser-section {
  background-color: var(--bg-secondary);
}

.ser-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.ser-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
}

.ser-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.ser-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--brand-green);
}

.cta-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--brand-green);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
  margin-top: auto;
}

.cta-card-link:hover {
  background: var(--brand-green);
  color: var(--text-light);
  border-color: var(--brand-green);
}

/* About Section */
.about-section {
  background-color: var(--bg-primary);
}

.about-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  border: 6px solid var(--bg-secondary);
  box-shadow: var(--shadow-md);
}

.about-image::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--primary-gold);
  border-left: 3px solid var(--primary-gold);
  top: -10px;
  left: -10px;
  z-index: 0;
}

.about-content {
  flex: 1.2;
}

.top-line {
  color: var(--primary-gold);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.highlight-box {
  background: var(--bg-secondary);
  border-left: 4px solid var(--brand-green);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--brand-green);
  line-height: 1.7;
}

.about-content .sub-title {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.about-content .desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.about-content .btn-about {
  background: var(--brand-green);
  color: var(--text-light);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(10, 61, 36, 0.15);
}

.about-content .btn-about:hover {
  background: var(--bg-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-section {
  background: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.why-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.why-card .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: inline-block;
}

.why-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--brand-green);
  margin: 0;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
}

/* Awards Carousel Section (UPDATED FOR CLEAN SLIDER) */
.awards-section {
  background: var(--bg-primary);
}

.awards-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.awards-sub span {
  width: 40px;
  height: 2px;
  background: var(--primary-gold);
}

.awards-sub p {
  color: var(--primary-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-size: 0.85rem;
}

.awards-carousel-container {
  max-width: 1000px;
  margin: 0 auto;
}

.award-slide-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin: 10px;
  height: 100%;
}

.award-slide-card img {
  max-height: 140px;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin: 0 auto 20px;
}

.award-slide-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 8px;
}

.award-slide-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Trust Badges / Faculties Section */
.faculties {
  background: var(--brand-green);
  color: var(--text-light);
  padding: 60px 0;
}

.fac-1 {
  padding: 20px;
  /* border-right: 1px solid rgba(255, 255, 255, 0.1); */
  height: 100%;
  text-align: center;
}

.fac-1 .icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.4rem;
  color: var(--primary-gold);
  transition: var(--transition-smooth);
}

.fac-1:hover .icon-wrapper {
  background: var(--primary-gold);
  color: var(--bg-dark);
  transform: scale(1.08);
}

.fac-1 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.fac-1 p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.fac-1 a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 700;
}

/* WhatsApp Lead Form / Request Dua Section */
.form-section {
  background: var(--bg-secondary);
}

.form-wrapper {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-wrapper h2 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
  color: var(--brand-green);
}

.form-wrapper p {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 30px;
}

.form-control, .form-select {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-dark) !important;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
  background: #ffffff;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(10, 61, 36, 0.08);
  outline: none;
}

.form-control::placeholder {
  color: #8fa099;
}

.form-label {
  font-weight: 600;
  color: var(--brand-green);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.btn-submit {
  background: var(--brand-green);
  color: var(--text-light);
  font-weight: 700;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(10, 61, 36, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--bg-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Testimonials Carousel Section (UPDATED FOR MODERN CLEAN CARD) */
.testimonials-section {
  background: var(--bg-primary);
}

.testimonials-carousel-container {
  max-width: 720px;
  margin: 0 auto;
}

.card-testimonial {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-testimonial::before {
  content: '“';
  font-size: 4rem;
  color: rgba(197, 160, 89, 0.12);
  font-family: Georgia, serif;
  position: absolute;
  top: 15px;
  left: 30px;
  line-height: 1;
}

.avatar-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  border: 2px solid #ffffff;
}

.name-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  margin: 0 auto 15px;
  color: var(--brand-green);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.name-box small {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.name-box .flag-img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #ddd;
}

.stars {
  background: rgba(197, 160, 89, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  display: inline-block;
}

.stars span {
  color: var(--primary-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.card-testimonial .text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 0;
  max-width: 580px;
}

/* FAQ Accordion Section */
.faq-section {
  background: var(--bg-secondary);
}

.accordion-item {
  background: var(--bg-primary) !important;
  border: 1px solid var(--border-color) !important;
  margin-bottom: 12px;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  background: transparent !important;
  color: var(--brand-green) !important;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 18px 24px;
  box-shadow: none !important;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--brand-green) !important;
  background-color: rgba(10, 61, 36, 0.02) !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.accordion-button::after {
  filter: hue-rotate(90deg) saturate(1.5);
}

.accordion-body {
  color: var(--text-muted);
  padding: 18px 24px;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Bottom CTA section */
.cta-part {
  background: var(--bg-dark) !important;
  color: var(--text-light);
  padding: 70px 0;
  text-align: center;
  border-top: 3px solid var(--primary-gold);
}

.cta-part h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.cta-part p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.btn-link.yellow-back {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 14px 40px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
}

.btn-link.yellow-back:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(197, 160, 89, 0.4);
  color: var(--bg-dark);
}

/* Footer Section */
.ftr-sec {
  background: #080b09;
  color: rgba(255, 255, 255, 0.5);
  padding: 40px 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dsclmr p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.dsclmr span {
  display: block;
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 20px auto;
}

.footer-social-icons a {
  color: rgba(255, 255, 255, 0.6) !important;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-social-icons a:hover {
  color: var(--primary-gold) !important;
  transform: translateY(-2px);
}

/* Call and WhatsApp Sticky Bottom Footer */
.call-part {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-dark);
  border-top: 2px solid var(--primary-gold);
  z-index: 999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}

.call-part ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.call-part li {
  flex: 1;
  text-align: center;
}

.call-part li a {
  display: block;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.call-part li.whats {
  background: #25d366;
}

.call-part li:not(.whats) {
  background: var(--brand-green);
}

.call-part li a:hover {
  filter: brightness(0.9);
}

/* Custom styles for carousel controls & indicators */
#awardsCarousel .carousel-inner,
#testimonialsCarousel .carousel-inner {
  padding: 15px 5px 35px 5px !important;
}

.custom-carousel-controls {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  z-index: 10;
}

.carousel-btn {
  background: var(--brand-green);
  color: #ffffff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background: var(--primary-gold);
  color: var(--bg-dark);
}

.carousel-indicators-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.carousel-indicators-custom li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-indicators-custom li.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--brand-green);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .about-container {
    gap: 40px;
  }
  .hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content {
    text-align: center !important;
  }
  .about-image {
    width: 60%;
    margin-bottom: 20px;
  }
  .about-image::before {
    display: none;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
  }
  .stat-card:last-child {
    border-bottom: none;
  }
  .nav-cta {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
  }
  .navbar-nav {
    padding: 15px 0;
  }
  .flag-container {
    justify-content: center;
    margin-top: 5px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .carousel-item {
    /* height: 420px; */
  }
  .fac-1 {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 10px;
  }
  .fac-1:last-child {
    border-bottom: none;
  }
  .top-trust-bar {
    font-size: 0.8rem;
  }
  .google-review-line {
    justify-content: center;
    margin-bottom: 8px;
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    width: 90%;
  }
  .form-wrapper {
    padding: 25px 15px;
  }
  body {
    padding-bottom: 54px;
  }
  .logo-head {
    max-height: 45px;
  }
}
