   @font-face {
    font-family: 'bootstrap-icons';
    src: url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/fonts/bootstrap-icons.woff2?1fa40e8') format('woff2');
    font-display: swap;
  }
  
 body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
/* ------------------ Global Elements ------------------ */
img {
  max-width: 100%;
  height: auto;
}

/* ------------------ Card Styles ------------------ */

img-sports {
    aspect-ratio: 4/3; object-fit: cover; border-top-left-radius: .5rem; border-top-right-radius: .5rem;
}

.luxury-card {
  min-height: 350px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}
.luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.car-img-box {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.car-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.luxury-card:hover .car-img-box img {
  transform: scale(1.05);
}

/* ------------------ Badge ------------------ */
.badge-lux {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #000;
}

/* ------------------ Text Info ------------------ */
.car-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
}
.car-subinfo {
  font-size: 0.85rem;
  color: #888;
}
.features {
  font-size: 0.85rem;
}
.features i {
  color: #0d6efd;
  margin-right: 6px;
}

/* ------------------ Button ------------------ */
.rent-btn {
  border-radius: 50px;
  padding: 4px 10px;
  font-weight: 500;
}

/* ------------------ Utility ------------------ */
.bottom-border {
  border-top: 1px solid #e9ecef;
  padding-top: 12px;
}

/* ------------------ Responsive Adjustments ------------------ */
@media (max-width: 991.98px) {
  .car-img-box {
    height: 200px;
  }
}
@media (max-width: 767.98px) {
  .car-img-box {
    height: 260px;
  }
}

/* ------------------ Hero Section ------------------ */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px;
  color: white;
  overflow: hidden;
  
}

.hero-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.search-form {
     max-width: 700px;
}
.search-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.search-box input {
  font-size: 1rem;
  min-height: 48px;
  padding: 10px 12px;
  line-height: 1.5;
  width: 100%;
}

.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.card-img-top {
   width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }

  .search-container {
    margin-top: 40px;
    padding: 15px;
  }
}



/* ------------------ Services Section ------------------ */
.hover-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
  transition: all 0.2s ease-in-out;
}

/* ------------------ Why Section ------------------ */
.icon-box {
  line-height: 1;
}
.why-section h2 {
  letter-spacing: 0.5px;
}

/* ------------------ WhatsApp Button ------------------ */
.new-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.new-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.new-whatsapp-icon {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
}

/* ------------------ Swiper Section ------------------ */
.category-section {
  background-color: #f9f9f9;
  padding: 20px 0;
}
.swiper {
  padding-bottom: 10px;
  min-height: 100px;
  overflow: hidden;
}
.swiper-slide {
  background: white;
  border-radius: 12px;
  text-align: center;
  padding: 5px 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.swiper-slide:hover {
  transform: translateY(-5px);
}
.swiper-slide p {
  font-weight: 600;
  margin-top: 15px;
}
.swiper-slide img {
  height: 80px;
  object-fit: contain;
  width: 80px;
}

/* ------------------ Brand Cards ------------------ */
.brand-card {
  padding: 10px;
  border-radius: 10px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
}
.brand-image {
  width: 80px;
  height: 40px;
  object-fit: contain;
}
#product_search1 {
  height: 48px;
  min-width:200px;
  padding: 0 16px;
  transition: none; /* prevent focus animation from shifting layout */
}
.hero-section h1 {
  font-size: clamp(1.8rem, 5vw, 3rem); /* mobile to desktop */
  line-height: 1.2;
}

/* This section for FAQS and other */

    .highlight {
      color: #dc3545;
      font-weight: 600;
    }
    section.vehicle {
      background-color: #ffffff;
      border-radius: 20px;
      padding: 2rem 2.5rem;
      margin-bottom: 2.5rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    section.vehicle:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }
    h2, h3 {
      font-weight: 700;
    }
    .cta-btn {
      padding: 14px 36px;
      font-size: 1.2rem;
      border-radius: 50px;
      background-color: #0d6efd;
      color: white;
      transition: background-color 0.3s ease;
    }
    .cta-btn:hover {
      background-color: #0b5ed7;
    }
    .accordion-button {
      font-weight: 600;
      font-size: 1.05rem;
      background-color: #f8f9fa;
      color: #212529;
      border: none;
      border-radius: 0;
      box-shadow: none;
      padding: 1rem 1.25rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .accordion-button::after {
      font-family: "bootstrap-icons";
      content: "\f4fe";
      font-size: 1.25rem;
      transition: transform 0.3s;
    }
    .accordion-button:not(.collapsed)::after {
      content: "\f2ea";
      transform: rotate(180deg);
    }
    .accordion-body {
      background-color: #ffffff;
      padding: 1rem 1.5rem;
      border-top: 1px solid #dee2e6;
      font-size: 0.95rem;
      color: #444;
    }
    .accordion-item {
      border: none;
      border-radius: 8px;
      margin-bottom: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    .section-title {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }
    .lead-highlight {
      background: #e9f7ff;
      border-left: 4px solid #0d6efd;
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: 2rem;
    }
    #faqSearch {
      margin-bottom: 2rem;
      padding: 0.75rem 1rem;
      border-radius: 8px;
      border: 1px solid #ccc;
      width: 100%;
      max-width: 400px;
    }
    
    .section-title {
      color: #343a40;
      border-left: 5px solid #0d6efd;
      padding-left: 15px;
      margin-bottom: 30px;
      font-weight: 700;
    }
    .card-custom {
      border: none;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: transform 0.3s ease-in-out;
    }
    .card-custom:hover {
      transform: translateY(-5px);
    }
    .brand-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #0d6efd;
    }
    .faq-item {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 15px 20px;
      margin-bottom: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }    
	
	.faq-item:hover {
     transform: scale(1.05);
    }
    .faq-item h5 {
      font-weight: 600;
    }
    .brand-card-canvas {
      transition: transform 0.2s ease-in-out;
    }
    .brand-card-canvas:hover {
      transform: scale(1.05);
    }
	
    .brand-logo {
      height: 80px;
      object-fit: contain;
    } 
    .mouse-pointer {
       cursor:pointer; 
    }   
    
    
   .section-title1 {
    font-weight: 700;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }

  .section-title1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #EFBF04;
  }

  .benefit-card1 {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .benefit-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .benefit-card1 i {
    font-size: 2.5rem;
    color: #EFBF04;
    margin-bottom: 15px;
  }

  .stats-card1 {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .stats-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .stats-card1 i {
    font-size: 2rem;
    color: #EFBF04;
    margin-bottom: 15px;
  }

  .stats-card1 .number {
    font-size: 2rem;
    font-weight: 700;
    color: black;
  }

  .cta-section1 {
    background: linear-gradient(to right, black, #1a1a1a);
    color: white;
    border-radius: 15px;
    padding: 60px 30px;
    margin-top: 80px;
  }

  .btn-outline-light1 {
    border: 2px solid white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: white;
    background: transparent;
    transition: 0.3s;
  }

  .btn-outline-light1:hover {
    background: white;
    color: black;
  }

  .text-gold {
    color: #EFBF04;
  }   
