
    :root {
      --primary-yellow: #F6E309;
      --bg-dark: #010C11;
      --border-color: #2b3038;
      --text-gray: #cfd4dc;
      --text-muted-gray: #a7b0bc;
      --card-dark: #171b22;
    }

    body {
      background-color: #121417;
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }


	/* header logo */
	.brand-logo {
		display: inline-flex;
		align-items: center;
		text-decoration: none;
		padding: 0;
	}

	/* Logo image sizing */
	.brand-logo-img {
		height: 100px;         /* Adjust between 50px - 65px to fit your navbar height */
		width: auto;          /* Maintains the original aspect ratio without distortion */
		max-width: 100%;
		object-fit: contain;
		display: block;
	}

	/* Optional: Make it slightly more compact on smaller mobile screens */
	@media (max-width: 768px) {
		.appointBtn{
			text-align: center;
		}
		.brand-logo-img {
			height: 80px;
		}
		.top-bar {
			display: none;
		}
	}


    /* Top Bar Styling */
    .top-bar {
      background-color: var(--bg-dark);
      border-bottom: 1px solid var(--border-color);
      font-size: 14px;
      padding: 8px 0;
    }

    .top-bar-social a {
      color: #ffffff;
      width: 32px;
      height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #333a44;
      border-radius: 4px;
      margin-right: 6px;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 13px;
    }

    .top-bar-social a:hover {
      color: var(--primary-yellow);
      border-color: var(--primary-yellow);
    }

    .top-bar-contact a {
      color: #ffffff;
      text-decoration: none;
      margin-left: 25px;
      display: inline-flex;
      align-items: center;
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .top-bar-contact a i {
      color: var(--primary-yellow);
      margin-right: 8px;
    }

    .top-bar-contact a:hover {
      color: var(--primary-yellow);
    }

    /* Main Navbar Styling */
    .main-navbar {
      background-color: var(--bg-dark);
      padding: 7px 0;
    }

    /* Logo Styling */
    .brand-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #fff;
    }

    .brand-star {
      color: var(--primary-yellow);
      font-size: 38px;
      margin-right: 10px;
    }

    .brand-title {
      font-size: 22px;
      font-weight: 700;
      font-style: italic;
      color: var(--primary-yellow);
      line-height: 1;
      display: block;
    }

    .brand-sub {
      font-size: 9px;
      letter-spacing: 0.5px;
      color: #cfd4dc;
      display: block;
      margin-top: 3px;
    }

    /* Nav Links */
    .navbar-nav .nav-link {
      color: #ffffff !important;
      font-weight: 600;
      font-size: 15px;
      padding: 8px 14px !important;
      transition: color 0.2s ease;
      white-space: nowrap;
    }

    /* Keep 8 nav items + CTA on one line at mid widths (above hamburger breakpoint) */
    @media (min-width: 992px) and (max-width: 1199.98px) {
      .navbar-nav .nav-link {
        padding: 8px 8px !important;
        font-size: 14px;
      }
      .main-navbar .btn-appointment {
        padding: 10px 14px;
        font-size: 12px;
      }
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--primary-yellow) !important;
    }

    /* Yellow '+' symbol next to dropdowns */
    .nav-plus {
      color: var(--primary-yellow);
      font-size: 14px;
      font-weight: 700;
      margin-left: 4px;
    }

    /* Dropdown Menus on Hover */
    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease-in-out;
        margin-top: 0;
      }
    }

    .dropdown-menu {
      background-color: #0b0d10;
      border: 1px solid #2b3038;
      border-radius: 4px;
      min-width: 190px;
      padding: 6px 0;
    }

    .dropdown-item {
      color: #ffffff;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 20px;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .dropdown-item:hover {
      background-color: #171b22;
      color: var(--primary-yellow);
    }

    /* Appointment CTA Button */
    .btn-appointment {
      color: #ffffff;
      background-color: transparent;
      border: 1px solid #ffffff;
      border-radius: 8px;
      padding: 10px 24px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
    }

    /* Matches Screenshot 00:03 hover state (yellow fill, black text) */
    .btn-appointment:hover {
      background-color: var(--primary-yellow);
      border-color: var(--primary-yellow);
      color: #000000;
    }


	/* bottom or side icon  */
	.bbb-badge {
    position: fixed;
    right: 0;
    top: 50%;
    transform: rotate(90deg);
    right: -40px;
    z-index: 9999;
    padding: 2px;
    margin-right: 6px;
    border-radius: 6px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.mobile-book-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-book-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: #399f37;
        text-align: center;
        padding: 14px 0;
    }
	.mobile-book-btn a{
		color: white;
		text-decoration: auto;
		font-size: 20px;
		font-weight: 600;
	}
}



/* --- HERO SECTION STYLES --- */
/* :root {
  --primary-yellow: #ffcc00;
  --bg-dark-hero: #07090b;
} */

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: #ffffff;
}

/* Background image layers */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Left-to-right dark gradient so text remains readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(7, 9, 11, 0.95) 0%,
    rgba(7, 9, 11, 0.85) 45%,
    rgba(7, 9, 11, 0.45) 75%,
    rgba(7, 9, 11, 0.3) 100%
  );
}

/* Main Hero Typography */
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 60px;
  padding-bottom: 40px;
}

.min-vh-75 {
  min-height: 60vh;
}

.hero-badge {
  color: var(--primary-yellow);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  display: inline-block;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.hero-subtext {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #cfd4dc;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Appointment Button */
.btn-appointment-hero {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-appointment-hero:hover {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: #000000;
}

/* Bottom Feature Highlight Strip */
.hero-features-bar {
  position: relative;
  z-index: 3;
  /* background: rgba(11, 13, 16, 0.85); */
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}

.feature-box {
  display: flex;
  align-items: center;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 204, 0, 0.4);
  background-color: rgba(255, 204, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-yellow);
  font-size: 20px;
  flex-shrink: 0;
  margin-right: 15px;
}

.feature-text h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  color: #ffffff;
}

.feature-text p {
  font-size: 13px;
  color: #9aa0a6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-overlay {
    background: rgba(7, 9, 11, 0.88);
  }
}




/* ---ABOUT SECTION STYLES --- */
.about-booking-section {
  background-color: var(--bg-dark);
  padding: 60px 0 80px;
  color: #ffffff;
  overflow-x: hidden; /* Prevents horizontal scrollbar during slide-in */
}
/* 1. Yellow Booking Card */
.booking-card {
  background-color: var(--primary-yellow);
  padding: 25px;
  color: #111;
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  left: 70px;
  top: 170px;
  z-index: 5;

  /* --- Initial state before scrolling into view --- */
  opacity: 0;
  transform: translateX(-120px);
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease-out;
  will-change: transform, opacity;
}

/* --- State triggered when visible in viewport --- */
.booking-card.animate-in {
  opacity: 1;
  transform: translateX(0);
}



.booking-title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
  color: #0b0d10;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.booking-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  margin-bottom: 24px;
  line-height: 1.4;
}

/* Yellow Input Fields */
.yellow-input {
  background-color: transparent !important;
  border: 1.5px solid rgba(0, 0, 0, 0.4) !important;
  border-radius: 6px;
  color: #111 !important;
  font-size: 14px;
  padding: 7px 14px;
  transition: all 0.2s ease;
}

.yellow-input::placeholder {
  color: #444444;
  font-weight: 500;
}

.yellow-input:focus {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: #000000 !important;
  box-shadow: none;
}

/* Submit Button */
.btn-request-service {
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  /* font-weight: 800; */
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.btn-request-service:hover {
  background-color: #1c2025;
  color: var(--primary-yellow);
}

/* 2. Center Image Wrapper (Fixes the thumbnail bug) */
.image-wrapper {
  height: 100%;
  min-height: 600px;
  /* border-radius: 6px; */
  overflow: hidden;
}

.section-feature-img {
  width: 100% !important;
  height: 100% !important;
  max-height: 100%;
  object-fit: cover;
  display: block;
}

/* 3. Content Column */
.badge-tag {
  color: var(--primary-yellow);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.info-item {
  margin-bottom: 24px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 204, 0, 0.5);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-yellow);
  font-size: 20px;
  flex-shrink: 0;
  margin-right: 18px;
}

.info-text h5 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.info-text p {
  font-size: 13.5px;
  color: var(--text-muted-gray);
  line-height: 1.55;
  margin-bottom: 0;
}

.section-bottom-line {
  border-color: rgba(255, 255, 255, 0.2);
  width: 100%;
}














/* SERVICES STYLE */
.solutions-section {
  background-color: #010608;
  padding: 80px 0 100px;
  color: #ffffff;
}

.solutions-section .badge-tag {
  color: var(--primary-yellow);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.solutions-heading {
  font-size: clamp(26px, 2.7vw, 40px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 18px;
}

.solutions-subtext {
  font-size: 14px;
  color: var(--text-muted-gray);
  line-height: 1.6;
  max-width: 950px;
}

/* --- 3D Flip Card Styles --- */
.service-flip-card {
  perspective: 1000px;
  height: 260px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.service-flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back Common Rules */
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* --- Front Face (Black Card) --- */
.flip-card-front {
  background-color: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-icon {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 25px;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-muted-gray);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --- Back Face (Yellow Card) --- */
.flip-card-back {
  background-color: var(--primary-yellow);
  color: #0b0d10;
  transform: rotateY(180deg);
}

.hover-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  color: #0b0d10;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.hover-desc {
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 24px;
  max-width: 220px;
}

.btn-card-action {
  background-color: #0b0d10;
  color: var(--primary-yellow);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-card-action:hover {
  background-color: #ffffff;
  color: #000000;
}











/* STATS STYLE> */
.stats-cta-section {
  background-color: var(--bg-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
/* --- Upper Section with Background Image & Gradient --- */
.stats-top-banner {
  position: relative;
  padding: 85px 0 75px;
  background-image: url('/images/yellow-star-3-scaled-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* <-- Enables the scrollable parallax effect */
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(8 9 12 / 33%) 0%, rgb(8 10 12 / 52%) 40%, rgb(8 10 12 / 41%) 100%);
  z-index: 1;
}

.stats-top-banner .container-fluid {
  z-index: 2;
}

/* Left CTA Box */
.cta-headline {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.cta-subheading {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-yellow);
  margin-bottom: 22px;
}

.btn-book-now {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-book-now:hover {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: #0b0d10;
}

/* Right Description & Dividers */
.stats-description {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.5;
  margin-bottom: 18px;
}

.stats-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  margin-bottom: 28px;
}

/* Counters Row */
.counter-val {
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -1px;
  display: flex;
  align-items: baseline;
}

.counter-unit {
  color: var(--primary-yellow);
  margin-left: 2px;
}

.counter-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 8px;
}

/* --- Lower 4 Feature Pillars Strip --- */
.features-bottom-strip {
  background-color: #060709;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0;
}

.feature-pillar {
  display: flex;
  align-items: flex-start;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 204, 0, 0.45);
  background-color: rgba(255, 204, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-yellow);
  font-size: 17px;
  flex-shrink: 0;
  margin-right: 14px;
}

.pillar-info h5 {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.pillar-info p {
  font-size: 12.5px;
  color: var(--text-muted-gray);
  line-height: 1.45;
  margin-bottom: 0;
}












/* TESTIMONIALS STYLE */
.testimonials-section {
  background-color: var(--bg-dark);
  padding: 80px 0 100px;
  color: #ffffff;
  overflow: hidden;
}

.testimonials-section .badge-tag {
  color: var(--primary-yellow);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.testimonials-heading {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 16px;
}

.testimonials-subtext {
  font-size: 14px;
  color: var(--text-muted-gray);
  line-height: 1.6;
  max-width: 680px;
}

/* --- Left Google Badge --- */
.google-rating-card {
  background-color: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.google-badge-top {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  margin-bottom: 16px;
}

.google-badge-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
}

.google-business-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.google-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.rating-score {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-yellow);
}

.stars-gold {
  color: var(--primary-yellow);
  font-size: 14px;
  display: flex;
  gap: 3px;
}

.reviews-count-text {
  font-size: 12px;
  color: var(--text-muted-gray);
  margin-bottom: 8px;
}

.google-wordmark {
  height: 22px;
  display: block;
}

.btn-review-us {
  background-color: var(--primary-yellow);
  color: #0b0d10;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}

.btn-review-us:hover {
  opacity: 0.9;
  color: #000000;
}

/* --- Right Side Carousel Viewport & Cards --- */
.carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding: 4px 0;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.client-card {
  flex: 0 0 calc((100% - (2 * 16px)) / 3); /* Shows exactly 3 cards per row */
  background-color: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  box-sizing: border-box;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  flex-shrink: 0;
}

.avatar-pink { background-color: #d81b60; }
.avatar-gray { background-color: #546e7a; }
.avatar-dark { background-color: #37474f; }
.avatar-teal { background-color: #00897b; }
.avatar-blue { background-color: #1e88e5; }

.user-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.review-date {
  font-size: 11px;
  color: #788290;
}

.card-g-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.card-stars {
  margin-bottom: 12px;
  font-size: 13px;
}

.comment-text {
  font-size: 13px;
  color: #cfd6e0;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Nav Buttons */
.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(15, 18, 23, 0.95);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  z-index: 15;
  transition: all 0.25s ease;
}

.slider-arrow-btn:hover {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: #000;
}

.prev-btn { left: -14px; }
.next-btn { right: -14px; }

.slider-arrow-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .client-card {
    flex: 0 0 calc((100% - 16px) / 2); /* 2 cards on tablets */
  }
}

@media (max-width: 576px) {
  .client-card {
    flex: 0 0 100%; /* 1 card on mobile */
  }
  .slider-arrow-btn {
    display: none;
  }
  .carousel-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .client-card {
    scroll-snap-align: start;
  }
}














/* FAQ STYLE */
.faq-section {
  background-color: #010608;
  padding: 90px 0 110px;
  color: #ffffff;
  overflow: hidden;
}

/* --- Right Column Typography --- */
.faq-header-content .badge-tag {
  color: var(--primary-yellow);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.faq-heading {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 18px;
}

.faq-description {
  font-size: 14px;
  color: var(--text-muted-gray);
  line-height: 1.6;
  max-width: 500px;
}

/* --- Left Accordion Styling --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgb(194, 192, 192);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
}

.faq-question {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 700;
  color: #ffffff;
  transition: color 0.25s ease;
}

.faq-trigger:hover .faq-question {
  color: var(--primary-yellow);
}

/* Icon rotation for plus/minus effect */
.faq-icon {
  color: #ffffff;
  font-size: 16px;
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
}

/* When active, rotate the '+' 45 degrees into an '×' or keep minus look */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-yellow);
}

/* Smooth Accordion Expansion */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: max-height;
}

.faq-inner-text {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #cfd4dc;
  max-width: 520px;
}



















/* CONTACT US STYLE */
:root {
  --yellow-accent: #F6E309;
  --bg-pure-black: #000000;
  --card-dark-blue: #03080e;
  --line-border: rgba(255, 255, 255, 0.12);
  --placeholder-color: #8c96a4;
}

/* Base Section */
.exact-contact-section {
  background-color: var(--bg-pure-black);
  padding: 100px 0;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Left Typography */
.exact-badge {
  color: var(--yellow-accent);
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 18px;
}

.exact-heading {
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: #ffffff;
  margin-bottom: 28px;
}

.exact-paragraph {
  font-size: 13.5px;
  line-height: 1.7;
  color: #9ea8b6;
  max-width: 530px;
}

.exact-paragraph strong {
  color: #ffffff;
  font-weight: 700;
}

/* Right Elevated Box */
.exact-form-card {
  background-color: var(--bg-dark);
  /* border: 1px solid rgba(255, 255, 255, 0.05); */
  border-radius: 4px;
  padding: 50px 45px 55px;
  max-width: 560px;
  margin: 0 auto 0 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.exact-form-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 35px;
}

/* Inputs with Bottom Underline */
.exact-field {
  margin-bottom: 28px;
}

.exact-underline-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-border);
  color: #ffffff;
  font-size: 14px;
  padding: 10px 0;
  outline: none;
  border-radius: 0;
  transition: border-bottom-color 0.25s ease;
}

.exact-underline-input::placeholder {
  color: var(--placeholder-color);
}

.exact-underline-input:focus {
  border-bottom-color: var(--yellow-accent);
}

/* Message Area */
.exact-plain-textarea {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 0;
  outline: none;
  resize: vertical;
}

.exact-plain-textarea::placeholder {
  color: var(--placeholder-color);
}

/* Checkbox Alignment */
.exact-consent-wrap {
  margin-top: 15px;
  margin-bottom: 25px;
}

.exact-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.exact-checkbox-label input[type="checkbox"] {
  display: none;
}

.exact-custom-box {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  border-radius: 1px;
}

.exact-checkbox-label input[type="checkbox"]:checked + .exact-custom-box {
  background-color: var(--yellow-accent);
  border-color: var(--yellow-accent);
}

.exact-checkbox-label input[type="checkbox"]:checked + .exact-custom-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.exact-checkbox-text {
  font-size: 12.5px;
  color: #e1e7f0;
  font-weight: 500;
}

/* Yellow Submit Button */
.exact-btn-submit {
  background-color: var(--yellow-accent);
  color: #000000;
  border: none;
  border-radius: 2px;
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.2s ease;
}

.exact-btn-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}















/* footer style */
:root {
  --primary-yellow: #F6E309;
  --bg-pure-black: #000000;
  --text-muted-light: #b0b8c4;
  --footer-line: rgba(255, 255, 255, 0.12);
}

.site-footer {
  background-color: var(--bg-pure-black);
  color: #ffffff;
  padding-top: 55px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- Top CTA Strip --- */
.footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  gap: 20px;
}

.footer-brand-wrap {
  flex-shrink: 0;
}

.footer-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-cta-headline {
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

.footer-cta-btn-wrap {
  flex-shrink: 0;
}

.btn-footer-appointment {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-footer-appointment:hover {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: #000000;
}

/* Horizontal Dividers */
.footer-divider {
  border: none;
  border-top: 1px solid var(--footer-line);
  opacity: 1;
  margin: 15px 0 45px;
}

/* --- Main 4 Column Content --- */
.footer-main-content {
  padding-bottom: 40px;
}

.footer-col-title {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}

.footer-about-text {
  font-size: 13px;
  color: var(--text-muted-light);
  line-height: 1.65;
  margin: 0;
}

/* Yellow Dot Lists */
.footer-bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-bullet-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
}

.footer-bullet-list li::before {
  content: "•";
  color: var(--primary-yellow);
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 18px;
  line-height: 1;
}

.footer-bullet-list li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-bullet-list li a:hover {
  color: var(--primary-yellow);
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-contact-list li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
  color: var(--primary-yellow);
}

.contact-icon {
  color: var(--primary-yellow);
  font-size: 15px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Social Icon Squares */
.footer-social-boxes a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  margin-right: 8px;
  transition: all 0.25s ease;
}

.footer-social-boxes a:hover {
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
}

/* --- Bottom Copyright Bar --- */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 30px;
  font-size: 13px;
  color: var(--text-muted-light);
}

.privacy-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.privacy-link:hover {
  color: var(--primary-yellow);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-cta-row {
    flex-direction: column;
    text-align: center;
  }
}
/* Contact form: honeypot stays hidden from humans, error output styling */
.antispam {
  display: none;
}
.output2 {
  color: #f5c518;
  font-weight: 600;
}
