:root {
  --red: #ff3e30;
  --orange: #ffaa29;
  --blue: #176bef;
  --green: #00bf63;
  --white: #ffffff;
  --black: #000000;
  --light-grey: #f8f9fa;
  --border-grey: #e9ecef;
  --bacckground: #e9ecee;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 4px 20px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, var(--red), var(--blue));
  --gradient-secondary: linear-gradient(135deg, var(--orange), var(--green));
  --brand-color-1: #fc5e53;
  /* primary accent (orange/yellow tone) */
  --brand-color-2: #ff3d2f;
  /* secondary accent (red/orange tone) */
  --section-title: #222;
  --section-subtitle: #666;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  background: var(--bacckground);
  background-size: 400% 400%;
  animation: bgFlow 20s ease infinite;
  overflow-x: hidden;

  /* Space for bottom nav on mobile */

  /* ========================================================== */
  /* ==================== Home PAge ======================== */
  /* ========================================================== */
}

/* ========== Heading ============== */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--section-title);
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
  display: flex;
  /* text-align: center; */
  /* justify-content: center; */
  /* flex-wrap: nowrap; */
  align-content: center;
  align-items: center;
  flex-direction: column;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 3px;
  margin: 6px auto 0 auto;
  background: linear-gradient(90deg, #ff3d2f, #d00000);

  transition: width 0.4s ease;
}

.section-title:hover::after {
  width: 90px;
}


.section-subtitle {
  font-size: 0.95rem;
  color: var(--section-subtitle);
  margin: 0;
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.4rem !important;
  }
}

/* ======= Padding======== */

.padd-mar {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

@media (min-width: 600px) {
  .padd-mar {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }


}

/* ================= PRELOADER BASE ================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.vs-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  z-index: 10;
}

/* ================= BRAND LOGO ================= */
.brand-logo {
  width: 160px;
  opacity: 0;
  transform: translateY(-40px);
  animation: logoFade 1s 0.5s forwards;
}

@keyframes logoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= FLOATING IMAGES ================= */
.float-img {
  position: absolute;
  opacity: 0;
  z-index: 2;
  width: 150px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 62, 48, 0.5);
}

.float-img.left.top {
  box-shadow: 0 4px 16px var(--red);
}

.float-img.right.top {
  box-shadow: 0 4px 16px var(--green);
}

.float-img.left.bot {
  box-shadow: 0 4px 16px var(--orange);
}

.float-img.right.bot {
  box-shadow: 0 4px 16px var(--blue);
}

.float-img:hover {
  transform: scale(1.05);
}

/* Base positions */
.top {
  top: 40px;
}

.bot {
  bottom: 40px;
}

.left.top,
.left.bot {
  left: 5%;
}

.right.top,
.right.bot {
  right: 5%;
}

/* Natural tilt + slight overlap */
.left.top {
  transform: rotate(-12deg);
  z-index: 5;
}

.right.top {
  transform: rotate(10deg);
  z-index: 5;
}

.left.bot {
  transform: rotate(8deg);
  z-index: 4;
}

.right.bot {
  transform: rotate(-10deg);
  z-index: 4;
}

/* Entry Animations (unchanged) */
.left.top,
.left.bot {
  animation: enterLeft 0.5s 1s ease-out forwards;
}

@keyframes enterLeft {
  0% {
    opacity: 0;
    transform: translate(-120px, -80px) rotate(-10deg);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(-12deg);
  }
}

.right.top,
.right.bot {
  animation: enterRight 0.5s 1.8s ease-out forwards;
}

@keyframes enterRight {
  0% {
    opacity: 0;
    transform: translate(120px, -80px) rotate(10deg);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(10deg);
  }
}

/* ================= COLORFUL CAR ================= */
.loading-window {
  position: relative;
  width: 320px;
  height: 140px;
  margin-top: -60px;
}

.car {
  position: absolute;
  width: 117px;
  height: 42px;
  left: 100px;
  top: 85px;
  animation: carSlide 3s ease-in-out infinite alternate;
  transform: scale(0.9);
}

@keyframes carSlide {
  0% {
    transform: translateX(-20px) scale(0.9);
  }

  100% {
    transform: translateX(20px) scale(0.9);
  }
}

.strike {
  position: absolute;
  width: 11px;
  height: 1px;
  background: #000;
  animation: strikes 0.2s linear infinite;
}

.strike2 {
  top: 11px;
  animation-delay: 0.05s;
}

.strike3 {
  top: 22px;
  animation-delay: 0.1s;
}

.strike4 {
  top: 33px;
  animation-delay: 0.15s;
}

.strike5 {
  top: 44px;
  animation-delay: 0.2s;
}

@keyframes strikes {
  from {
    left: 25px;
    opacity: 1;
  }

  to {
    left: -80px;
    opacity: 0;
  }
}

/* 4-color body parts */
.car-detail {
  position: absolute;
  display: block;
  animation: speed 0.5s linear infinite;
}

.spoiler {
  width: 0;
  height: 0;
  top: 7px;
  border: 20px solid transparent;
  border-bottom: 8px solid #ea4335;
  border-left: 20px solid #ea4335;
}

.back {
  height: 20px;
  width: 92px;
  top: 15px;
  left: 0;
  background: linear-gradient(90deg, #ea4335, #fbbc05);
}

.center {
  height: 35px;
  width: 75px;
  left: 12px;
  border-top-left-radius: 30px;
  border-top-right-radius: 45px 40px;
  background: linear-gradient(90deg, #34a853, #4285f4);
  border: 3px solid #fff;
  box-sizing: border-box;
}

.center1 {
  height: 35px;
  width: 35px;
  left: 12px;
  border-top-left-radius: 30px;
  background: linear-gradient(90deg, #4285f4, #ea4335);
}

.front {
  height: 20px;
  width: 50px;
  top: 15px;
  left: 67px;
  border-top-right-radius: 50px 40px;
  border-bottom-right-radius: 10px;
  background: linear-gradient(90deg, #fbbc05, #34a853);
}

.wheel {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  top: 20px;
  left: 12px;
  border: 3px solid #fff;
  background: radial-gradient(#000 40%, #333 42%, transparent 60%), #000;
  animation: spin 1s linear infinite;
}

.wheel2 {
  left: 82px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes speed {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-1px, 1px);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .float-img {
    width: 150px;
  }

  .top {
    top: 25px;
  }

  .bot {
    bottom: 25px;
  }

  .left.top,
  .left.bot {
    left: 4%;
  }

  .right.top,
  .right.bot {
    right: 4%;
  }

  .brand-logo {
    width: 160px;
  }
}

@media (min-width: 1200px) {
  .float-img {
    width: 300px;
  }

  .brand-logo {
    width: 240px;
  }
}

/* ================= COLORFUL CAR ================= */
.loading-window {
  position: relative;
  width: 320px;
  height: 140px;
  margin-top: -60px;
}

.car {
  position: absolute;
  width: 117px;
  height: 42px;
  left: 100px;
  top: 85px;
  animation: carSlide 3s ease-in-out infinite alternate;
  transform: scale(0.9);
}

@keyframes carSlide {
  0% {
    transform: translateX(-20px) scale(0.9);
  }

  100% {
    transform: translateX(20px) scale(0.9);
  }
}

.strike {
  position: absolute;
  width: 11px;
  height: 1px;
  background: #000;
  animation: strikes 0.2s linear infinite;
}

.strike2 {
  top: 11px;
  animation-delay: 0.05s;
}

.strike3 {
  top: 22px;
  animation-delay: 0.1s;
}

.strike4 {
  top: 33px;
  animation-delay: 0.15s;
}

.strike5 {
  top: 44px;
  animation-delay: 0.2s;
}

@keyframes strikes {
  from {
    left: 25px;
    opacity: 1;
  }

  to {
    left: -80px;
    opacity: 0;
  }
}

/* 4-color body parts */
.car-detail {
  position: absolute;
  display: block;
  animation: speed 0.5s linear infinite;
}

.spoiler {
  width: 0;
  height: 0;
  top: 7px;
  border: 20px solid transparent;
  border-bottom: 8px solid #ea4335;
  border-left: 20px solid #ea4335;
}

.back {
  height: 20px;
  width: 92px;
  top: 15px;
  left: 0;
  background: linear-gradient(90deg, #ea4335, #fbbc05);
}

.center {
  height: 35px;
  width: 75px;
  left: 12px;
  border-top-left-radius: 30px;
  border-top-right-radius: 45px 40px;
  background: linear-gradient(90deg, #34a853, #4285f4);
  border: 3px solid #fff;
  box-sizing: border-box;
}

.center1 {
  height: 35px;
  width: 35px;
  left: 12px;
  border-top-left-radius: 30px;
  background: linear-gradient(90deg, #4285f4, #ea4335);
}

.front {
  height: 20px;
  width: 50px;
  top: 15px;
  left: 67px;
  border-top-right-radius: 50px 40px;
  border-bottom-right-radius: 10px;
  background: linear-gradient(90deg, #fbbc05, #34a853);
}

.wheel {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  top: 20px;
  left: 12px;
  border: 3px solid #fff;
  background: radial-gradient(#000 40%, #333 42%, transparent 60%), #000;
  animation: spin 1s linear infinite;
}

.wheel2 {
  left: 82px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes speed {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-1px, 1px);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .float-img {
    width: 150px;
  }

  .top {
    top: 25px;
  }

  .bot {
    bottom: 25px;
  }

  .left.top,
  .left.bot {
    left: 4%;
  }

  .right.top,
  .right.bot {
    right: 4%;
  }

  .brand-logo {
    width: 160px;
  }
}

@media (min-width: 1200px) {
  .float-img {
    width: 300px;
  }

  .brand-logo {
    width: 240px;
  }
}




/* ===================== HEADER ===================== */

/* Base Mobile Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 1px;
  width: 100%;
  height: 70px;

  /* ✅ Fully transparent */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  /* ✅ Remove blur */
  padding: 0.6rem 1rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;

  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  /* ✅ No shadow or overlay */
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo--mobile img {
  width: 40px;
  height: auto;
}

/* Default (mobile first) */
.logo--mobile {
  display: flex;
  align-items: center;
}

.logo--desktop {
  display: none;
}

/* Swap for desktop view */
@media (min-width: 992px) {
  .logo--mobile {
    display: none !important;
  }

  .header-container {
    padding-right: 35px;
  }

  .logo--desktop {
    display: flex !important;
    align-items: center;
  }
}

/* Profile Icon */
/* Profile Icon */
.header-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: black;
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Hover effect – rotate gradient + glow */
.header-icon:hover {
  transform: rotate(8deg) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 62, 48, 0.5),
    0 0 10px rgba(23, 107, 239, 0.5);
}

.header-icon:hover {
  background: linear-gradient(135deg, var(--green), var(--blue));
  transform: translateY(-2px);
}

/* Search Bar */
.mobile-search {
  width: 100%;
  position: relative;
  margin-top: 0.6rem;
}

.mobile-search input {
  width: 100%;
  padding: 0.8rem 3rem 0.8rem 1rem;
  border: none;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.95rem;
}

.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.9);
}

/* Sticky search bar on scroll */
/* .mobile-search.stuck {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(10px);
      border-radius: 0;
      z-index: 1100;
      padding: 0.4rem 1rem;
      animation: slideDown 0.4s ease;
  } */

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===================== BOTTOM NAV ===================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--white);
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* Normal Nav Items */
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 12px;
  padding: 0.4rem 0.5rem;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

/* Icons */
.nav-item i {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

/* Text */
.nav-item span {
  font-size: 0.7rem;
  font-weight: 500;
}

/* Hover Effect */
.nav-item:hover {
  color: var(--blue);
  transform: scale(1.05);
}

/* Active Nav Item — Gradient Fill */
.nav-item.active {
  background: linear-gradient(135deg,
      var(--red),
      var(--orange),
      var(--green),
      var(--blue));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

/* Optional: Gradient Animation for Active Only */
.nav-item.active {
  background-size: 300% 300%;
  animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.desktop-nav {
  display: none;
}

/* ===================== DESKTOP ===================== */
@media (min-width: 992px) {
  .main-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    width: 90%;
    height: 80px;
    margin: 1rem auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 0 2rem;
  }

  .logo--mobile img {
    width: 160px;
  }

  .bottom-nav {
    display: none;
  }

  .desktop-nav {
    display: flex;
    gap: 1rem;
  }

  /* Desktop Navigation Links */
  .nav-link {
    position: relative;
    color: var(--black);
    font-weight: 500;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  /* Gradient background for hover/active */
  .nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg,
        var(--red),
        var(--orange),
        var(--green),
        var(--blue));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    background-size: 300% 300%;
    animation: gradientFlow 6s ease infinite;
  }

  /* Hover or Active State */
  .nav-link:hover::before,
  .nav-link.active::before {
    opacity: 0.2;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--black);
    transform: translateY(-2px);
  }

  /* Keep text above gradient */
  .nav-link {
    position: relative;
    z-index: 1;
  }

  /* Gradient animation */
  @keyframes gradientFlow {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }
}

/* BANNER SECTION */
/* ===================== FULL WIDTH BANNER ===================== */

#banner-section {
  width: 100vw;
  position: relative;
  overflow: visible;
  border-radius: 0;
  margin: 0;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  box-shadow: none;
  z-index: 1;
}

.banner-swiper {
  width: 100%;
  height: 80vh;
}

.banner-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.banner-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 2s ease-in-out;
}

.banner-swiper .swiper-slide-active img {
  transform: scale(1.1);
}

.banner-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  animation: fadeInUp 1.5s ease forwards;
}

.banner-center h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s infinite linear;
}

.banner-center h2 span {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.banner-center p {
  font-size: 1.1rem;
  color: #ffffff;
  opacity: 0.95;
  letter-spacing: 1px;
  animation: fadeIn 2.2s ease forwards;
}

.swiper-pagination-bullet {
  background: linear-gradient(135deg, var(--red), var(--blue));
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 768px) {
  .banner-swiper {
    height: 40vh;
  }

  .banner-center h2 {
    font-size: 1.2rem;
  }

  .banner-center p {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  #banner-section {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .banner-swiper img {
    height: auto;
    object-fit: contain;
  }
}






/* ===================== BANNER EDGE SEARCH ===================== */
.sticky-search {
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  z-index: 1200;
}

.sticky-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: linear-gradient(90deg,
      var(--red),
      var(--blue),
      var(--orange),
      var(--green));
  font-size: 1rem;
  padding: 0.4rem 0.5rem;
}

.sticky-search input::placeholder {
  color: linear-gradient(90deg,
      var(--red),
      var(--blue),
      var(--orange),
      var(--green));
}

.sticky-search i {
  color: linear-gradient(90deg,
      var(--red),
      var(--blue),
      var(--orange),
      var(--green));
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

/* ===== On Scroll (Sticky Mode — Only for Mobile) ===== */
@media (max-width: 991px) {
  .sticky-search.active {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 1rem;
    animation: fadeSlideDown 0.3s ease;
  }

  .sticky-search.active input {
    color: linear-gradient(90deg,
        var(--red),
        var(--blue),
        var(--orange),
        var(--green));
  }

  .sticky-search.active input::placeholder {
    color: linear-gradient(90deg,
        var(--red),
        var(--blue),
        var(--orange),
        var(--green));
  }

  .sticky-search.active i {
    color: linear-gradient(90deg,
        var(--red),
        var(--blue),
        var(--orange),
        var(--green));
  }

  @keyframes fadeSlideDown {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

/* ===== Desktop Behavior (Fixed in Place, Never Sticky) ===== */
@media (min-width: 992px) {
  .sticky-search {
    position: absolute;
    bottom: -1.5rem;
    width: 50%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }

  .sticky-search.active {
    /* forcefully neutralize mobile sticky style */
    position: absolute !important;
    top: auto !important;
    bottom: -1.5rem !important;
    transform: translateX(-50%) !important;
    width: 50% !important;
    max-width: 600px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
  }

  .sticky-search input {
    color: linear-gradient(90deg,
        var(--red),
        var(--blue),
        var(--orange),
        var(--green));
  }

  .sticky-search input::placeholder {
    color: linear-gradient(90deg,
        var(--red),
        var(--blue),
        var(--orange),
        var(--green));
  }

  .sticky-search i {
    color: var(--white);
  }
}

/* =============== Sticky Logo Courasel ================ */

.logo-carousel .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px 0;
}

.logo-courasel {
  padding-top: 45px !important;
  padding-bottom: 20px !important;
  background-color: var(--bacckground);
  max-width: 100% !important;
}

.logo-carousel img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  margin-bottom: 8px;
}

.logo-carousel .brand-caption {
  font-size: 1rem;
  color: #333;
}

@media (max-width: 576px) {
  .logo-carousel img {
    width: 50px;
    height: 50px;
  }

  .logo-carousel .brand-caption {
    font-size: 0.85rem;
  }
}

/* ================================================= */

/*============ Car services =============== */

/* ================================== */

/* ================ About Section For Desktop Only =========================== */

.about-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #fff6eb, #e8f6ff);
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 350px;
}

.about-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #222;
}

.about-short {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.about-extra {
  display: none;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.about-img img {
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  display: block;
}

.btn-group {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.read-more-btn {
  padding: 10px 22px;
  font-size: 1rem;
  background: white;
  border: 2px solid #ff3d2f;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.read-more-btn:hover {
  background: #ff3d2f;
  color: #222;
}

.service-btn {
  padding: 10px 22px;
  font-size: 1rem;
  background: #ff3d2f;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  transition: 0.2s;
}

.service-btn:hover {
  background: #222;
  color: #fffde7;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .btn-group {
    justify-content: center;
  }

  .read-more-btn {
    font-size: .8rem;

  }

  .service-btn {
    font-size: .8rem;

  }
}

/* =========================================== */

/* <!-- ========== Top services Near You ============== --> */

.services-nearu {
  background: var(--bacckground);

  max-width: 100% !important;
}

.car-service-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.service-image-wrapper {
  flex-shrink: 0;
}

.car-service-card-body {
  flex-grow: 1;
}

.car-service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 20px 0 rgba(32, 32, 32, 0.1);
  overflow: hidden;
  transition: transform 0.12s;
  min-width: 176px;
  max-width: 210px;
  margin-bottom: 8px;
}

.service-image-wrapper {
  position: relative;
  width: 100%;
  height: 138px;
  /* Increased image height */
  overflow: hidden;
}

/* Make the image take full width and height of its container */
.service-image-wrapper,
.card-service-img {
  width: 100% !important;
  height: 148px !important;
  /* adjust height as needed */
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 12px 12px 0 0 !important;
  overflow: hidden !important;
  background: #eee;
}

.card-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-badge {
  position: absolute;
  left: 0px;
  top: 0px;
  background: #111;
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
  padding: 5px 15px 7px 10px;
  border-radius: 12px 0 18px 0;
  z-index: 2;
  opacity: 0.93;
}

/* Remove excessive spacing from text/body div */
.car-service-card-body {
  padding: 6px 6px 4px 6px !important;
  min-height: unset !important;
  max-height: unset !important;
  display: block !important;
}

.car-service-title {
  font-weight: bold;
  font-size: 1.01rem;
}

.card-service-img {
  object-fit: cover !important;
  display: block;
}

/* Full image on mobile: increase height if needed */
@media (max-width: 576px) {

  .service-image-wrapper,
  .card-service-img {
    height: 110px !important;
    border-radius: 7px 7px 0 0 !important;
  }

  .car-service-card-body {
    padding: 5px 4px 3px 4px !important;
  }
}

@media (max-width: 576px) {
  .car-service-card {
    min-width: 142px;
    max-width: 162px;
    border-radius: 10px;
  }

  .service-image-wrapper {
    height: 84px;
  }

  .car-service-card-body {
    min-height: 40px;
    padding: 5px 5px 6px 6px;
  }
}

/* ============================================== */

/* <!-- ================= Banner Sliders with Offers ===================  --> */

.banner-slider {
  background: var(--bacckground);
  max-width: 100% !important;
}

.banner-carousel .swiper-slide {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 310px;
  background: var(--bacckground);
}

/* IMAGE */
.banner-carousel .slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

/* GRADIENT OVER IMAGE ONLY */
.banner-carousel .slide-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.6) 80%,
      rgba(0, 0, 0, 0.08) 100%);
  z-index: 2;
}

/* TEXT BELOW IMAGE */
.slide-text {
  position: relative;
  margin-top: 310px;
  /* equal to slide height */
  padding: 10px 9px;
  background: var(--bacckground);
  z-index: 5;
  border-radius: 0 0 10px 10px;
}

.slide-headline {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 3px;
}

.slide-subtext {
  font-size: 0.95rem;
  opacity: 0.86;
}

/* MOBILE VIEW */
@media (max-width: 576px) {
  .banner-carousel .swiper-slide {
    min-height: 150px;
    border-radius: 12px;
  }

  /* Lower text for smaller image */
  .slide-text {
    margin-top: 150px;
    padding: 8px 7px;
  }

  .slide-headline {
    font-size: 0.8rem;
  }

  .slide-subtext {
    font-size: 0.5rem;
    opacity: 1;
  }
}

/* =============================================== */

/* =============== Offer Banner ===================== */

.responsive-offer-banner {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 6px 28px 0 rgba(16, 24, 40, 0.11);
  display: flex;
  align-items: stretch;
  /* background: #000; */
  /* fallback color */
}

.responsive-offer-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}

.responsive-offer-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.offer-banner-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 32px;
  padding-right: 32px;
}

.offer-banner-text {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 17px;
  letter-spacing: -1px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
  min-height: 2.3em;
}

/* Add blinking cursor */
.offer-banner-text::after {
  content: "|";
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.offer-banner-btn {
  font-weight: 700;
  padding: 8px 30px 9px 30px;
  background: #ff3d2f;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 1.13rem;
  box-shadow: 0 2px 12px 0 rgba(17, 15, 5, 0.04);
  margin-top: 9px;
  transition: background 0.14s;
  text-decoration: none;
}

.offer-banner-btn:hover {
  background: #ffd657;
  color: #1c1a00;
}

@media (max-width: 600px) {
  .responsive-offer-banner {
    height: 140px;
    border-radius: 10px;
  }

  .offer-banner-content {
    padding-left: 13px;
    padding-right: 13px;
  }

  .offer-banner-text {
    font-size: 1.06rem;
    margin-bottom: 9px;
  }

  .offer-banner-btn {
    font-size: 0.98rem;
    padding: 6px 17px;
  }
}

/* ==================================== */

/* <!-- ============== Types of Car Wash============================= --> */

.car-wash-type-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 160px;
  background: #ccc;
  margin-bottom: 20px;
  box-shadow: 0 6px 28px 0 rgba(16, 24, 40, 0.13);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.car-wash-type-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: transform 0.3s;
}

.car-wash-type-card:hover .car-wash-type-bg {
  transform: scale(1.05);
}

.car-wash-type-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;

  z-index: 2;
}

.car-wash-type-content {
  display: flex;
  justify-content: center;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 3;
  position: relative;
  padding: 6px 6px 6px 6px;
  color: #fff;
  width: 100%;
}

.car-wash-type-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.11);
}

.car-wash {
  background: var(--bacckground);
  max-width: 100% !important;
}

.car-wash-type-title {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

@media (max-width: 576px) {
  .car-wash-type-card {
    min-height: 120px;
    border-radius: 12px;
  }

  .car-wash-type-content {
    padding: 2px 2px 2px 2px;
  }

  .car-wash-type-title {
    font-size: 1.05rem;
  }

  .car-wash-type-logo {
    width: 26px;
    height: 26px;
  }
}

/* ===================================== */

/* <!-- =============== Tyre POlish =================== --> */

.tyre-polish-deals-section {
  background: var(--bacckground);
}

.tyre-polish-header {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4em;
  color: #222;
}

.tyre-polish-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.tyre-polish-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 12px 0 rgba(22, 24, 35, 0.07);
  min-width: 164px;
  max-width: 180px;
  flex: 0 0 auto;
  padding: 10px 8px 10px 8px;
  text-align: center;
  border: 1px solid #eff1f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.13s;
}

.tyre-polish-card:hover {
  box-shadow: 0 5px 20px 0 rgba(20, 30, 60, 0.11);
}

.tyre-polish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 7px;
  margin-top: 4px;
}

.tyre-polish-title {
  font-size: 1.09rem;
  font-weight: 700;
  color: #1a1d21;
  margin-bottom: 3px;
}

.tyre-polish-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: #5b606a;
}

@media (max-width: 576px) {
  .tyre-polish-card {
    min-width: 124px;
    max-width: 150px;
  }

  .tyre-polish-img {
    width: 100%;
    height: 100%;
  }

  .tyre-polish-title {
    font-size: 0.97rem;
  }

  .tyre-polish-label {
    font-size: 0.86rem;
  }
}

/* ================================= */

/* ================ Why Chooses Us ============================ */
/* Box sizing globally */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Section styling */
.features-section {
  background-color: var(--bacckground);

  color: #333;
}



/* Feature row: single row always */
.feature-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  /* prevent wrapping */
  gap: 15px;
}

/* Feature card styling */
.feature-card {
  flex: 1 1 22%;
  /* 4 cards in a row, shrink if needed */
  min-width: 50px;
  /* avoid cards getting too small */
  background-color: #cacaca;
  text-align: center;
  padding: clamp(10px, 2vw, 20px);
  /* responsive padding */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon */
.feature-icon i {
  font-size: clamp(1.2rem, 4vw, 2rem);
  /* responsive icon size */
  color: var(--brand-color-2);
  transition: transform 0.3s ease;
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 24px rgb(0 0 0 / 20%);
}

.feature-card:hover .feature-icon i {
  transform: scale(1.2) rotate(10deg);
}

/* Feature title */
.feature-title {
  font-weight: 600;
  font-size: clamp(0.6rem, 2vw, 1rem);
  /* responsive text */
  margin-top: 8px;
}

/* ============================================== */

/* ============= Choose UR PAckages =================== */
.form-select {
  font-size: 1rem;
}

.packages-section {
  background-color: var(--bacckground);
}



.section-underline {
  width: 80px;
  height: 4px;
  background: var(--brand-color-1, #ff6600);
  margin-top: 8px;
  border-radius: 2px;
}

/* Package card styling */
.package-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.package-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 24px rgb(0 0 0 / 20%);
  background-color: #f0f8ff;
}

.package-img img {
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto 0px;
  display: block;
}

.package-card h5 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 7px;
}

.package-card ul {
  list-style: none;
  padding-left: 0;
  font-size: clamp(0.8rem, 2vw, 1rem);
  text-align: center;
  margin-bottom: 7px;
}

.package-card ul li {
  margin-bottom: 6px;
  text-align: center;
}

.package-price {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--brand-color-1, #ff6600);
}

/* Responsive selects in one row on mobile */
@media (max-width: 576px) {
  .packages-section .row.g-2>div {
    flex: 0 0 48%;
  }

  .form-select {
    font-size: 0.8rem;
  }
}

/* ==================================== */

/* ==============Youtube Shorts Area ===================*/
.shorts-section {
  background: var(--background);
}

/* Swiper slide cards */
.portrait-slider .swiper-slide {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 18px 0 rgba(30, 25, 30, 0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Video container — 9:16 for mobile */
.portrait-slider .video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #222;
  border-radius: 12px;
  overflow: hidden;
}

/* YouTube iframe */
.portrait-slider iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .portrait-slider .swiper-slide {
    min-width: 140px;
    border-radius: 8px;
  }
}

/* Tablet — slightly less tall */
@media (min-width: 768px) and (max-width: 1023px) {
  .portrait-slider .video-container {
    aspect-ratio: 9 / 15;
    /* slightly shorter */
  }
}

/* Desktop/Laptop — 3 shorts, compact height */
@media (min-width: 1024px) {
  .portrait-slider .video-container {
    aspect-ratio: 9 / 13;
    /* less height */
    max-width: 300px;
    /* adjust to fit 3 per row */
    margin: 0 auto;
  }

  .portrait-slider .swiper-slide {
    min-width: 0;
    max-width: none;
  }
}

/* Navigation buttons */
.responsive-offer-banner .portrait-slider .swiper-button-next,
.portrait-slider .swiper-button-prev {
  color: #333;
  background: rgba(255, 255, 255, 0.92);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.portrait-slider .swiper-button-next::after,
.portrait-slider .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 700;
}

/* Show arrows on desktop */
@media (min-width: 768px) {

  .portrait-slider .swiper-button-next,
  .portrait-slider .swiper-button-prev {
    display: flex;
  }
}

/* Smaller arrows on mobile */
@media (max-width: 767px) {

  .portrait-slider .swiper-button-next,
  .portrait-slider .swiper-button-prev {
    width: 32px;
    height: 32px;
  }

  .portrait-slider .swiper-button-next::after,
  .portrait-slider .swiper-button-prev::after {
    font-size: 14px;
  }
}

/* ===================== ENABLE TOUCH SWIPE OVER YOUTUBE IFRAME ===================== */

/* Disable touch capture by iframe */
.portrait-slider iframe {
  pointer-events: none;
}

/* Re-enable interaction ONLY on active slide */
.portrait-slider .swiper-slide-active iframe {
  pointer-events: auto;
}




/* =============================================== */

/* ===========  FAQ Section ================== */

/* FAQ Section */
.door-services {
  position: relative;
  background: url("../img/contact_us.jpeg") no-repeat center center/cover !important;
  color: #fff;
  overflow: hidden;
}

.faq-section {
  position: relative;
  background: url("../img/newimg/3.png") no-repeat center center/cover;
  color: #fff;
  overflow: hidden;
}

.faq-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.faq-section .container {
  position: relative;
  z-index: 2;
}




.section-underline {
  width: 80px;
  height: 4px;
  background: var(--brand-color-1, #ff6600);
  margin-top: 8px;
  border-radius: 2px;
}

/* Accordion Styles */
.accordion-item {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 10px;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.accordion-button {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.accordion-button.collapsed {
  background: rgba(255, 255, 255, 0.1);
}

.accordion-button:hover {
  background: rgba(255, 255, 255, 0.25);
}

.accordion-button:not(.collapsed) {
  background: var(--brand-color-1, #565554);
  color: #fff;
  box-shadow: none;
}

.accordion-body {
  background: rgba(0, 0, 0, 0.35);
  color: #f1f1f1;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  padding: 1rem 1.25rem;
  line-height: 1.6;
  animation: fadeIn 0.4s ease;
}

/* Plus / Minus Icon */
.faq-icon {
  font-weight: bold;
  font-size: 1.3rem;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(45deg);
  color: #fff;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .accordion {
    display: flex;
    flex-direction: column;

    align-items: center;
  }

  .accordion-item {
    width: 700px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .accordion-button {
    font-size: 0.9rem;
    padding: 0.75rem;
  }

  .faq-icon {
    font-size: 1.1rem;
  }
}

/* =================================== */

/* =============== Bottom Text ================ */

.polish-hero-bg {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  height: 450px;
  margin-right: -50vw;
  position: relative;
  background: #fafdff;
  padding: 80px 0;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  /* Remove corners for true full-bleed */
  text-align: center;
  box-shadow: 0 4px 24px 0 rgba(0, 10, 30, 0.03);
}

.polish-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #434a50;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  line-height: 1.1;
}

.polish-hero-heart {
  color: #ef4242;
  font-size: 2.5rem;
  vertical-align: sub;
  margin-left: 10px;
}

.polish-hero-brand {
  font-size: 1.16rem;
  color: #b9c1c7;
  font-weight: 700;
  margin-top: 23px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  opacity: 0.86;
}

@media (max-width: 768px) {
  .polish-hero-bg {
    padding: 38px 0 32px 0;
    min-height: 120px;
    height: 350px;
  }

  .polish-hero-title {
    font-size: 1.55rem;
  }

  .polish-hero-heart {
    font-size: 1.91rem;
  }

  .polish-hero-brand {
    font-size: 1.32rem;
    margin-top: 12px;
  }
}

/* ================================================ */

/* =============== Footer Section ================= */

.subscribe-container {
  text-align: center;

  padding: 40px;
  color: white;
}

.subscribe-container h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--section-title);
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.footer-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 3px;

  background: linear-gradient(90deg,
      var(--brand-color-1),
      var(--brand-color-2));
  transition: width 0.4s ease;
  align-items: flex-start;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.email-input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #444;
  margin-right: 10px;
  border-radius: 5px;
  width: 250px;
}

.subscribe-btn {
  padding: 10px 20px;
  background-color: #f1c232;
  /* Yellow color */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.subscribe-btn:hover {
  background-color: #e0b91c;
}

.classic-footer {
  position: relative;
  background: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  color: #fff;
  padding: 70px 20px 20px;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.classic-footer h4 .section-title::after {
  text-align: left !important;
  display: flex !important;
  align-items: flex-start !important;
}

.classic-footer h6 {
  text-align: left !important;
  align-items: left !important;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  z-index: 0;
}

.footer-container {
  padding-bottom: 0px;
  padding-top: 80px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  z-index: 1;
}

.footer-section p {
  color: #ccc;
  font-size: 13px;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section p {
  color: #ccc;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffcc00;
  padding-left: 5px;
}

.footer-section p:hover {
  color: #ffcc00;
  padding-left: 5px;
}

/* Logo */
.footer-logo-box {
  margin-bottom: 15px;
}

.footer-logo-img {
  width: 300px;
}

/* Socials */
.footer-socials {
  margin-top: 15px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 25px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: linear-gradient(90deg,
      var(--red),
      var(--blue),
      var(--orange),
      var(--green));
  /*color: #ffcc00; */
  transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 50px;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
  z-index: 1;
  position: relative;
}

.footer-bottom span {
  color: #ffcc00;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .classic-footer {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .classic-footer h4 {
    text-align: center;
  }

  .classic-footer h6 {
    text-align: center;
  }

  .footer-logo-img {
    margin: 0 auto;
  }

  .footer-socials {
    margin-top: 15px;
  }
}

/* ======================================================== */

/* ========================================================== */
/* ==================== Services PAge ======================== */
/* ========================================================== */

/* ============= car services =============== */




.services-grid-2col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 10px;
}

.services-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 49%;
  min-width: 200px;
  max-width: 410px;
}

/* Tall and short cards */
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(60, 86, 125, 0.11);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.service-card.tall {
  height: 470px;
}

.service-card.short {
  height: 240px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  /* Semi-transparent background */
  border-radius: 0 0 18px 18px;
  /* Rounded bottom corners */
  display: flex;
  justify-content: center;
}

.card-title {
  font-size: 1.23rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.book-btn {
  display: none;
}

/* Responsive: 2 columns always, cards keep heights */
@media (max-width: 900px) {
  .services-col {
    max-width: 49vw;
  }
}

@media (max-width: 650px) {
  .services-grid-2col {
    gap: 7px;
    padding: 16px 2vw;
  }

  .services-col {
    width: 49vw;
    min-width: 120px;
    gap: 7px;
  }

  .service-card.tall {
    height: 210px;
  }

  .service-card.short {
    height: 110px;
  }

  .card-content {
    padding: 9px 7px 4px 7px;
  }

  .card-title {
    font-size: .92rem;
  }
}


/* ================================================== */

/* ============== Testimonial google review Section ================== */

/* Section Styles */
.google-review-slider-section {
  padding: 48px 14px;
  background: var(--bacckground);
}

/* Card Styles */
.google-review-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(60, 86, 125, .10);
  padding: 24px 22px 20px;
  min-height: 220px;
  text-align: left;
  position: relative;
  width: 100%;
  /* Important for Swiper */
  max-width: none;
  /* Remove width restriction */
  box-sizing: border-box;
}

.google-review-card .review-header {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}

.google-review-card .review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  background: #eee;
}

.google-review-card .reviewer-details {
  flex: 1;
}

.google-review-card .review-name {
  font-weight: 700;
  font-size: 1.07rem;
  color: #222;
}

.google-review-card .review-date {
  font-size: 0.83rem;
  color: #939ba4;
  margin-bottom: 1px;
  display: block;
}

.google-review-card .review-google {
  position: absolute;
  right: 18px;
  top: 17px;
}

.google-review-card .review-google img {
  width: 50px;
  height: 23px;
}

.google-review-card .review-stars {
  color: #ff3d2f;
  font-size: 1.12rem;
  margin-bottom: 7px;
  margin-top: 1px;
}

.google-review-card .review-content {
  color: #3e4044;
  font-size: 0.98rem;
  margin-bottom: 13px;
}

.google-review-card .read-more {
  font-weight: 600;
  color: #5256e3;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: underline;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #dadce0;
  opacity: 0.66;
}

.swiper-pagination-bullet-active {
  background: #ff3d2f;
  opacity: 1;
}

.swiper {
  width: 100%;
  padding-bottom: 26px;
}

/* Responsive */
@media (max-width: 1023px) {
  .google-review-card {
    max-width: 95vw;
  }
}



/* ================================================== */

/* ======== Work Gallery ============= */

/* ===================================== */

/* ========================================================== */
/* ==================== Contact us Page  ======================== */
/* ========================================================== */

/* ======== Banner ================== */

/* ===================================== */

/* =========== Connect Us ================ */

.contact-info-section {
  padding: 50px 15px;
  background: var(--bacckground);
  text-align: center;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(140, 141, 144, 0.12);
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 36px rgba(68, 33, 29, 0.25);
}

.info-icon {
  font-size: 36px;
  color: #ff3d2f;
  margin-bottom: 15px;
}

.info-title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #222;
}

.info-text {
  font-size: 1rem;
  color: #606973;
  margin-bottom: 0;
  white-space: pre-wrap;
}

@media (min-width: 768px) {
  .info-col {
    margin-bottom: 0;
  }
}

/* ===================================== */

/* <!-- ================= Google Maps================== --> */

.map-container {
  background: var(--bacckground);
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===================================== */

/* =========== Contact Form ============= */

.contact-section {
  padding: 50px 15px;
  background: var(--bacckground);
}

.contact-image {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.contact-form {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.btn-submit {
  background-color: #ff3d2f;
  border: none;
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: #bd2e23;
}

.form-title {
  display: flex;
  justify-content: center;
  position: relative;
  font-family: var(--style-font);
  color: #672b26;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.2em;

  text-transform: capitalize;
  margin-bottom: 10px;
  text-align: center;
}

.form-p {
  padding-top: 10px;
}

/* ===================================== */

/* ============================================= */
/* ============================================== */
/* -----------------------------------------------------------
   UNIVERSAL BANNER BASE STYLE (used by ALL banners)
----------------------------------------------------------- */
.banner {
  position: relative;
  width: 100vw;
  height: 340px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  text-align: center;
  padding-top: 60px;
}

/* Dark overlay */
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Heading styling */
.banner h1 {
  position: relative;
  font-weight: 900;
  font-size: 3.4rem;
  color: #fff;
  white-space: nowrap;
  padding-right: 10px;
  max-width: 90vw;
  overflow: hidden;
  z-index: 2;
  font-family: Arial, sans-serif;
}

/* Typing base */
.typed-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #000;
  width: 0;
}

/* Blink effect */
@keyframes blink {

  0%,
  49%,
  100% {
    border-color: #000;
  }

  50%,
  99% {
    border-color: transparent;
  }
}

/* CHARACTER-LENGTH–BASED TYPING ANIMATION */

.typed-blogs {
  animation: typing-blogs 3s steps(5) forwards, blink 1.2s infinite;
}

.typed-ba {
  animation: typing-ba 3s steps(11) forwards, blink 1.2s infinite;
}

.typed-contact {
  animation: typing-contact 3s steps(10) forwards, blink 1.2s infinite;
}

.typed-service {
  animation: typing-service 2.8s steps(8) forwards, blink 1.2s infinite;
}

/* INDIVIDUAL TYPING KEYFRAMES */

@keyframes typing-blogs {
  from {
    width: 0;
  }

  to {
    width: 5ch;
  }
}

@keyframes typing-ba {
  from {
    width: 0;
  }

  to {
    width: 11ch;
  }
}

@keyframes typing-contact {
  from {
    width: 0;
  }

  to {
    width: 10ch;
  }
}

@keyframes typing-service {
  from {
    width: 0;
  }

  to {
    width: 8ch;
  }
}

/* Responsive */
@media (max-width: 576px) {
  .banner {
    height: 160px;
    padding-top: 40px;
    margin-top: 68px;
  }

  .banner h1 {
    font-size: 2.1rem;
    padding-right: 7px;
    border-right-width: 3px;
  }
}

.blogs-banner {
  background: url("../img/newimg/banner3.png") center center/cover no-repeat;
}

.ba-banner {
  background: url("../img/newimg/banner3.png") center center/cover no-repeat;
}

.contact-banner {
  background: url("../img/newimg/banner3.png") center center/cover no-repeat;
}

.service-banner {
  background: url("../img/newimg/banner3.png") center center/cover no-repeat;
}

.single-blog-banner {
  background: url("../img/newimg/banner3.png") center center/cover no-repeat;
}

/* ================================================== */
/* =================================================== */








/* =================================================== */
/* =============== Befoe After Page ==================== */
/* =================================================== */





.comparison-card h3 {
  margin-top: 15px;
  font-size: 1.08rem;
  color: #222;
}

.comparison-card p {
  color: #666;
  font-size: 0.98rem;
  margin-bottom: 0;
}

.before-after-slider-section {
  padding: 60px 5vw;
  text-align: center;
}



.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* GRID LAYOUT */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 650px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.comparison-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  padding-bottom: 5px;
  transition: transform .28s ease, box-shadow .28s ease;
  will-change: transform;
}

.comparison-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* IMAGE CONTAINER */
.img-comp {
  position: relative;
  overflow: hidden;
  height: 250px;
  user-select: none;
}

.img-comp-img img {
  object-fit: contain !important;
}

.img-comp-img img,
.img-comp-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY (After Image) */
.img-comp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: width .22s cubic-bezier(.25, .1, .25, 1);
}

/* DIVIDER LINE */
.img-comp-line {
  position: absolute;
  width: 3px;
  background: #ff3d2f;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 10;
}

/* SLIDER BUTTON */
.img-comp-slider {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  background: #ff3d2f;
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.28);
  cursor: ew-resize;
  z-index: 12;
  transition: transform .22s ease;
}

.img-comp-slider:hover {
  transform: translate(-50%, -50%) scale(1.12);
}






/* =================================================== */
/* =============== Blog  Page  ==================== */
/* =================================================== */