body {
margin: 0% !important;

}
/* Header Styles */
/* ====== General Styling ====== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Navbar Styling */
/* Navbar Styling */
.navbar {
  background: transparent; /* Change as needed */
  padding: 15px 20px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

/* Flexbox container */
.container-navbar {
  display: flex;
  justify-content: space-between; /* Ensures Left (Logo) & Right (Button) Alignment */
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Logo Styling */
.logo img {
  height: 50px; /* Adjust size */
  width: auto;
}

/* Contact Us Button */
.btn-quote {
  text-decoration: none;
  background: #ffc107; /* Button color */
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

.btn-quote i {
  margin-left: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container-navbar {
      padding: 0 15px;
  }

  .logo img {
      height: 40px;
  }

  .btn-quote {
      padding: 8px 15px;
      font-size: 14px;
  }
}


/* HERO SECTION STYLING */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Image Overlay Styling */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2; /* Keep text visible above */
  transition: opacity 1s ease-in-out;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Background Video Styling */
.hero-section .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Always behind */
}

/* Content Styling (Always Visible) */
.hero-section .content {
  position: relative;
  z-index: 3;
}

/* Buttons Styling */
.hero-section .buttons {
  display: flex;
  gap: 15px;
}

.hero-section .btn {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
}

.hero-section .btn-warning {
  background-color: #ffc107;
  color: black;
  border: none;
  transition: background 0.3s ease-in-out;
}

.hero-section .btn-warning:hover {
  background-color: #e0a800;
}

.hero-section .btn-outline-light {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  transition: all 0.3s ease-in-out;
}

.hero-section .btn-outline-light:hover {
  background-color: white;
  color: black;
}


/* CAR CARDS */
/* General Styles */
.car-brands {
  background: #000;
  padding: 20px 0;
}

/* Owl Carousel Container */
.car-brands-container {
  display: flex;
}

/* Owl Carousel Card Styles */
.car-brands  .owl-carousel .owl-item img {
display: block;
width: 20% !important;
}

.car-brands-card {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 20px; /* Space between logo and text */
  background-color: #111; /* Dark card background */
  border-radius: 8px;
  padding: 20px;
  height: 100px;
  max-width: 350px;
  flex-shrink: 0; /* Prevent shrinking */
}

.car-logo {
  width: auto;
}

.brands-card {
display: flex;
align-items: center;
gap: 10px; /* Space between logo and text */
background-color: transparent; /* Dark card background */
height: 100px;
flex-shrink: 0; /* Prevent shrinking */
}

.brands-logo {
height: 80px; /* Logo size */
width: 80px;
}

.car-details h3 {
  margin: 0;
  font-size: 1.2rem;
  color: white;
}

.car-link {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  display: block;
  margin-top: 5px;
}

.car-link:hover {
  text-decoration: none;
}
/* Owl Carousel Styling */
.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

/* Styling for the reviews button */
.btn-reviews {
  border-radius: 50px !important; /* Adjust the radius as needed */
  padding-left: 50px !important;
  padding-right: 50px !important;
  margin-top: 10px;
}

.custom-testimonial {
  background: url('assets/images/IMG_4274.jpg') no-repeat center center/cover;
  min-height: auto; /* Adjusts to content */
  width: 100%;
  display: flex;
  align-items: center;
  color: white;
}
.custom-testimonial  .owl-carousel .owl-item img {
  display: block;
  width: 15% !important;
  height: 15% !important;
  }
/* Custom height for the image */
.Luxury_Car {
  max-height: 400px; /* Set a max height */
  object-fit: cover; /* Ensures image fits well */
  width: 100%;
}

/* Adjust review box width */
.custom-review-box {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 10px;
  max-width: 100%;
}
/* Ensure User Reviews and Google Reviews fit inside 7-5 layout */
@media (min-width: 768px) {
  .reviews-carousel {
      max-width: 100%;
  }

  .custom-review-box {
      background: rgba(0, 0, 0, 0.7);
      padding: 5px;
      border-radius: 10px;
      text-align: left;
  }

  .google-reviews {
      max-width: 350px;
  }
}

.car-hire-process {
  background: transparent; /* Transparent background */
  padding: 50px 0;
}

.process-card {
  padding: 30px;
  border-top-left-radius: 10px;  /* Top-left border radius */
  border-top-right-radius: 10px; /* Top-right border radius */
  text-align: center;
  color: white;
  /* border-bottom: 1px solid #ac8101; */
  border-bottom: 1px solid #fffaea;
}
.process-card:hover {
  background-color: black !important;
}


.process-card img  .car-icon{
  width: 20px !important; /* Adjust size */
}

.process-card h5 {
  font-weight: bold;
}
/* Section Styling */
.supercar-hire {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Content Box */
.content-box {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  max-width: 100%;
}

/* Buttons */
.btn-light {
  background: white;
  color: black;
  padding: 10px 20px;
  font-weight: bold;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
}

/* Play Button */
.play-button {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  background: white;
  color: black;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  z-index: 3;
}

/* Section Styling */
.previous-clients {
  background-color: #111;
  padding: 20px 0;
  text-align: center;
}

/* Section Title */
.section-title h2 {
  color: white;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.section-title p {
  color: white;
  font-size: 16px;
}

/* Client Card */
.client-card {
  background-color: #111;
  color: white;
  border-radius: 5px;
  width: 350px; /* Fixed width for uniformity */
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  animation: marquee 10s linear infinite; /* Right-to-left scrolling */
  gap: 20px; /* Space between cards */
}
.client-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.client-card:hover {
  transform: scale(1.05);
}


/* Animate the images from right to left */
.client-card img {
  animation: scroll 10s linear infinite;
  width: 100%;
  height: auto;
}
/* Blog Section Styling */
.blog-section {
  background-color: #111;
  padding: 60px 0;
  text-align: center;
}

/* Section Title */
.section-title h2 {
  color: white;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title p {
  color: white;
  font-size: 16px;
  margin-top: 10px;
}

/* Blog Card */
.blog-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Blog Image */
.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

/* Date Badge */
.date-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
  text-align: center;
  border-radius: 5px;
}

/* Blog Content */
.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-category {
  background: #ffc107;
  color: #111;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-content h3 {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.blog-meta {
  color: #bbb;
  font-size: 14px;
}

.blog-desc {
  color: #ccc;
  font-size: 14px;
  margin: 10px 0;
}

.read-more {
  color: #ffc107;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* View More Button */
.view-more-btn {
  background: transparent;
  border: 1px solid #fff;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.view-more-btn:hover {
  background: white;
  color: #111;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }

  .blog-content h3 {
    font-size: 18px;
  }
}
/* Instagram Section Styling */
.instagram-section {
  background-color: #111;
  padding: 10px 0;
}

/* Section Title */
.section-title h2 {
  color: white;
  font-size: 32px;
  font-weight: bold;
}

.section-title p {
  color: #bbb;
  font-size: 16px;
}

/* Instagram Handle */
.instagram-handle {
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.instagram-handle i {
  font-size: 20px;
  margin-right: 5px;
}

/* Instagram Cards */
.insta-card {
  width: 120%;
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  padding: 0px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.insta-card:hover {
  transform: translateY(-5px);
}

/* Instagram Post */
.insta-post {
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  height: 200px; /* Fixed Height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

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

/* Instagram Post Overlay */
.insta-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background:transparent;
  color: white;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease-in-out;
}

/* Left and Right Positioning */
.overlay-left {
  display: flex;
  align-items: center;
}

.overlay-right {
  display: flex;
  align-items: center;
}

/* Icons */
.overlay-left i, .overlay-right i {
  color: rgb(110, 110, 110);
  margin-right: 5px;
}

/* Show Overlay on Hover */
.insta-post:hover .insta-overlay {
  opacity: 1;
}




/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }

  .instagram-handle {
    font-size: 14px;
  }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 14px;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content-box {
    width: 100% !important;
    text-align: center;
  }
  
  .play-button {
    right: 5%;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* General Social Card Styling */
.social-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.social-card img {
  height: 200px;
  object-fit: cover;
}

/* Hover Effect */
.social-card:hover {
  transform: scale(1.05);
}

/* Overlay */
.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Icons and Titles Always Visible */
.social-icon,
.social-title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.social-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* Hide Follow Button Initially */
.social-btn {
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 14px;
  font-weight: bold;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* Show Follow Button on Hover */
.social-card:hover .social-btn {
  opacity: 1;
}

/* Unique Icon Colors */
.instagram-card .social-icon {
  color: #e1306c;
}

.facebook-card .social-icon {
  color: #1877f2;
}

.snapchat-card .social-icon {
  color: #fffc00;
}

.tiktok-card .social-icon {
  color: #ffffff;
}

/* Button */
.social-btn {
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 14px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .process-card {
      margin-bottom: 20px;
  }
  .logo_google{
    width: 50% !important;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .logo_google{
    width: 50% !important;
  }
  .custom-testimonial {
      text-align: center;
      padding: 10% 0; /* Adjust padding for smaller screens */
  }
  footer .footer-logo {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    text-align: center; /* Ensures text elements inside are centered */
    width: 30% !important;
    height: auto;
}

  
  .custom-review-box {
      max-width: 100%;
  }
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .description {
        font-size: 1rem;
    }

    .hero-section .logos .logo {
        height: 30px;
    }

    .hero-section .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
  
/* CAR BRANDS STYLING */
.car-brands {
    background-color: #000;
    padding: 40px  0;
    overflow: hidden; /* Hide overflow for scrolling effect */
  }
  
  
   .car-card {
    background-color: #111;
    color: white;
    border-radius: 8px;
    width: 315px; /* Fixed width for uniformity */
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  
  .car-logo-container {
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .car-logo {
    max-height: 100%;
  }
  
  .car-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .car-details p {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ffc107;
  }
  
  .icon-circle {
     display: inline-block; 
     width: 40px; height: 40px; 
     line-height: 40px; 
     border-radius: 50%; 
     background-color: #333; 
    text-align: center; color: #fff;
     font-size: 1.2rem;
    transition: background-color 0.3s ease; }

    /* General Styling for Dark Theme */
.car-hire-services {
  background: #111; /* Dark background */
  padding: 60px 0;
}

/* Car Hire Service Card Styling */
.hire-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease-in-out;
}

.hire-card:hover {
  transform: scale(1.05);
}

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

/* Overlay Content on Card */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
}

.card-content h4 {
  font-size: 18px;
  font-weight: bold;
}

.card-content p {
  font-size: 14px;
}

.card-content .btn {
  margin-top: 10px;
  font-weight: bold;
  border-radius: 5px;
}
/* Dark Background Section */

.prestige-car-hire {
  background: #111;
  padding: 10px 0;
  color: #fff;
}

/* Section Title */
.section-title {
  position: relative;
  margin-bottom: 20px;
  text-align: left;
}

.section-title h2 {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

/* Prestige Car Description */
.prestige-description {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Car Cards Container */
.prestige-cars {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Ensures responsiveness */
  justify-content: center; /* Center align on small screens */
}

/* Car Card Styling */
.car-card {
  position: relative;
  border: none;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 250px;
}

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

/* Car Images */
.car-card img {
  height: auto;
  width: 100%;
  border-radius: 10px 10px 0 0;
}

/* Left Image Styling */
.prestige-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}

/* Car Text */
.car-card h4 {
  font-size: 18px;
  color: white;
}

.car-card p {
  font-size: 14px;
  color: #ddd;
}

/* Select Vehicle Button */
.car-card .btn-warning {
  background: gold;
  font-weight: bold;
  padding: 10px;
  border-radius: 50px;
  text-decoration: none;
  display: block;
  width: 90%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .prestige-cars {
    flex-wrap: wrap;
    justify-content: center;
  }
  .car-card .btn-warning {
    background: rgb(201, 171, 0);
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: block;
    width: 100%;
  }
  
  .car-card {
    margin-bottom: 10px;
    max-width: 45%; /* Two cards side by side */
  }
}

@media (max-width: 768px) {
  .prestige-car-hire {
    text-align: center;
  }

  .section-title {
    text-align: center;
  }

  .prestige-cars {
    flex-wrap: wrap;
    justify-content: center;
  }

  .car-card {
    max-width: 48%; /* Ensures two columns layout */
  }
}

@media (max-width: 576px) {
  .car-card {
    max-width: 100%; /* Stacks cards only on very small screens */
  }
}



/* Responsive Design */
@media (max-width: 992px) {
  .col-md-3 {
      width: 50%;
      margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .col-md-3 {
      width: 100%;
  }
}



  
  
  /* RESPONSIVE DESIGN */
  @media (max-width: 1200px) {
    .car-card {
      width: 180px;
    }
  }
  
  @media (max-width: 768px) {
    .car-card {
      width: 150px;
      padding: 10px;
    }
  
    .car-details h3 {
      font-size: 1rem;
    }
  
    .car-details p {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 576px) {
    .car-card {
      width: 120px;
    }
  
    .car-details h3 {
      font-size: 0.9rem;
    }
  
    .car-details p {
      font-size: 0.7rem;
    }
  }
  .car-hire-services {
    background: #111; /* Dark theme background */
}

.hire-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.hire-card:hover {
    transform: scale(1.05);
}

.hire-card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 15px;
}

.card-content h4 {
    font-size: 18px;
    font-weight: bold;
}

.card-content p {
    font-size: 14px;
}

.card-content .btn {
  color: #333 !important;
    margin-top: 10px;
    font-weight: bold;
    border-radius: 25px;
}


/* Responsive */
@media (max-width: 992px) {
    .col-md-3 {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .col-md-3 {
        width: 100%;
    }
    .whatsapp-chat {
      width: 100%;
      background: #25d366;
      padding: 10px 10px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      color: white;
      text-decoration: none;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
}

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
/* Footer Styles */
footer {
    background: transparent;
    background-size: cover;
    color: white;
    position: relative;
    z-index: 1;
    padding: 3rem 0;
  }
  
  
  
  
  footer .footer-logo {
    width: 100%;
    height: auto;
    margin: 15px auto;
  }
  
  footer h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffc107;
    font-weight: bold;
  }
  .footer-text
  {
    font-size: 12px;
  }
  footer ul {
    padding-left: 0;
  }
  
  footer li {
    list-style: none;
  }
  
  footer a {
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 5px;
  }
  
  footer a:hover {
    color: #ffc107;
  }
  
  .icon-circle {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    color: white;
    font-size: 1.3rem;
  }
  
  .bg-primary {
    background-color: #3b5998; /* Facebook */
  }
  
  .bg-black {
    background-color: #1da1f2; /* Twitter */
  }
  
  .bg-danger {
    background-color: #ff0000; /* YouTube */
  }
  
  .bg-success {
    background-color: #25d366; /* WhatsApp */
  }
  
  .bg-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  }
  
  .social-icons a {
    font-size: 1rem;
    color: #fff;
    margin: 0 10px;
  }
  
  .input-group {
    max-width: 100%;
  }
  
  .input-group input {
    width: 100%;
    padding: 0.6rem;
    border: none;
  }
  
  .input-group button {
    background: #ffc107;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-weight: bold;
  }
  
  


hr {
    color: white;
    width: 10px;
    opacity: 0.5;
    margin: 15px 0;
}
/* Styling for the horizontal line */
.horizontal-line {
  border: 1px solid gray; /* Change the color to gray */
}
.horizontal-line-cards {
  /* border: 2px solid #ffc107; */
  border: 2px solid white;
}

/* Contact Page Css */
/* Contact Section */
.contact-section {
  background-color: #111 !important;
  color: white;
}

/* Contact Box */
.contact-box {
  background: #222 !important;
  border-radius: 10px;
  padding: 40px;
  position: relative;
}

/* Title */
.contact-title {
  font-size: 30px;
  font-weight: bold;
}

.contact-subtitle {
  color: #bbb;
  font-size: 16px;
}

/* Input Fields */
.custom-input {
  background: transparent;
  border: 1px solid #555;
  color: white;
}
.iti {
  width: 100% !important; /* Ensures the wrapper takes full width */
}

.iti input {
  width: 100% !important; /* Forces the input field to take full width */
}


/* Submit Button */
.custom-btn {
  font-weight: bold;
  color: black;
  background-color: #ffcc00;
  border: none;
}

/* WhatsApp Chat */
.whatsapp-chat {
  width: 80%;
  background: #25d366;
  padding: 10px 10px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.whatsapp-chat:hover {
  background-color: #1eb653;
  text-decoration: none;
}

.whatsapp-chat img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.whatsapp-text {
  display: flex;
  flex-direction: column;
}

.whatsapp-online {
  font-size: 12px;
  background: white;
  color: green;
  padding: 2px 5px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

/* Contact Box - Transparent Background */
.contact-box {
  border: 1px solid rgba(255, 255, 255, 0.3); /* Optional border for better visibility */
  border-radius: 10px;
  padding: 40px;
  color: white;
}

/* Input Fields - Transparent with White Text */
.form-control {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white !important;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Textarea */
textarea.form-control {
  background: transparent !important;
  color: white !important;
}

/* Recaptcha Background Fix */
.g-recaptcha {
  filter: invert(1); /* Inverts colors for dark backgrounds */
}

/* Submit Button */
.custom-btn {
  background-color: #ffcc00 !important;
  color: black !important;
  font-weight: bold;
}
.contact-card {
  background: #111; /* Dark card background */
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 6px rgba(255, 255, 255, 0.1); /* Subtle glow effect */
}

.contact-card:hover {
  background: #222; /* Slightly lighter background on hover */
  transform: translateY(-5px); /* Lifts the card */
  box-shadow: 0px 6px 12px rgba(255, 255, 255, 0.2);
}

.address-icon-circle {
  width: 60px;
  height: 60px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: auto;
  transition: all 0.3s ease-in-out;
}

.contact-card:hover .address-icon-circle {
  background: #ffcc00; /* Changes address-icon background color on hover */
}

.address-icon-circle i {
  font-size: 26px;
  color: black;
}

.contact-card h5,
.contact-card p {
  color: white;
}
/* Quote Section */
.quote-section {
  background-color: #111;
  padding: 50px 0;
  margin-top: 250px;

}

/* Quote Box */
.quote-box {
  background-color: #1a1a1a;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
}

/* Title & Subtitle */
.quote-title {
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 10px;
}

.quote-subtitle {
  font-size: 18px;
}

/* Inputs & Select */
.quote-input {
  background-color: #222;
  border: 1px solid #444;
}

.quote-input::placeholder {
  color: #888;
}

/* Privacy Policy Link */
.quote-privacy-link {
  color: #ffcc00;
  text-decoration: none;
}

.quote-privacy-link:hover {
  text-decoration: underline;
}

/* reCAPTCHA */
.quote-recaptcha {
  display: flex;
  justify-content: center;
}

/* Submit Button */
.quote-btn {
  font-weight: bold;
  border: none;
}
/* Custom Dropdown Styling */
.custom-dropdown {
  background: transparent !important; /* Transparent background */
  color: white !important; /* White text */
  border: 1px solid white !important; /* White border */
}

/* Change the dropdown options background */
.custom-dropdown option {
  background:  white !important; /* Black background for options */
  color: black !important; /* White text */
}

.car-brands {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

/* Slider Wrapper */
.brands-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  background: black;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animation Track */
.brands-track {
  display: flex;
  width: calc(200px * 20); /* Adjust based on number of brands */
  animation: scroll 25s linear infinite;
}

/* Individual Cards */
.brands-card {
  flex: 0 0 auto;
  width: 200px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Brand Logos */
.brands-logo {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.brands-card:hover .brands-logo {
  transform: scale(1.1);
}

/* Infinite Scroll Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-200px * 10)); } /* Adjust based on duplication */
}