 body {
      font-family: 'Poppins', sans-serif;
      background-color: #0a0a0a;
      color: white;
      overflow-x: hidden;
    }
    /* Hero */
    .hero {
      height: 100vh;
      position: relative;
      background: url("Image/c27.jpeg") center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .btn-luxury {
      padding: 10px 25px;
      border-radius: 30px;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    .btn-luxury:hover {
      background-color: #d4af37 !important;
      color: black !important;
      transform: scale(1.05);
    }
    /* about-us */
/* General styling for the section */
.about-us-section {
    background-color: rgba(0,0,0,0.95); /* Dark blue background */
    color: #ffffff;
    padding: 20px 10px;
    font-family: Arial, sans-serif;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

/* Image styling */
.about-us-image-container {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.about-us-main-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.about-us-badge {
    position: absolute;
    top: 50px;
    right: 50px;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-us-badge i {
    font-size: 1.2rem;
    color: #f1c40f;
}

/* Content styling */
.about-us-content {
    flex: 1;
    text-align: left;
}

.subtitle {
    font-size: 0.9rem;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 30px;
}

.learn-more-button {
    display: inline-block;
    background-color: #d4af37;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.learn-more-button:hover {
    background-color: #d4af37;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-us-container {
        flex-direction: column;
        text-align: center;
    }

    .about-us-image-container {
        order: 2;
    }

    .about-us-content {
        order: 1;
        text-align: center;
        margin-bottom: 40px;
    }
}

    /* Car cards */
    .car-card {
      overflow: hidden;
      border: none;
      border-radius: 15px;
      transition: transform 0.3s ease;
    }
    .car-card img {
      transition: transform 0.4s ease;
    }
    .car-card:hover img {
      transform: scale(1.1);
    }
    .car-card:hover {
      transform: translateY(-5px);
    }
    .car-store {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: rgba(0,0,0,0.95);
            overflow-y: auto;
            z-index: 1050;
            padding: 20px;
        }
        .car-cardst {
            background-color: #1f1f1f;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .car-cardst img {
            width: 100%;
            object-fit: cover;
        }
        .close-btn {
            position: absolute;
            top: 20px; right: 30px;
            font-size: 2rem;
            cursor: pointer;
            color: #fff;
        }
        .car-info {
            padding: 15px;
        }
    /* Parallax About */
    .about-section {
      background: url("Image/c29.jpeg") center/cover no-repeat fixed;
      padding: 120px 0;
    }

    /* Why Choose Us Section */
.why-choose-us {
    background-color: rgba(0,0,0,0.95); /* Dark background color */
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.why-choose-us .col-left {
    flex: 1;
    min-width: 300px;
}

.why-choose-us .col-right {
    flex: 1;
    min-width: 300px;
}

.why-choose-us .content-wrapper {
    max-width: 500px;
}

.why-choose-us .section-subtitle {
    font-size: 0.9rem;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.why-choose-us .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-choose-us .section-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 30px;
}

.why-choose-us .button-group {
    display: flex;
    gap: 15px;
}

.why-choose-us .btn-primary {
    background-color: #d4af37;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.why-choose-us .btn-primary:hover {
    background-color: #d4af37;
}

.why-choose-us .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.why-choose-us .btn-secondary:hover {
    background-color: #ffffff;
    color: #0d1a29;
}

/* Feature Cards */
.why-choose-us .feature-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-us .card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: rgba(0,0,0,0.95);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.why-choose-us .card-icon {
    font-size: 2.5rem;
    color: #d4af37;
}

.why-choose-us .card-content {
    flex: 1;
}

.why-choose-us .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.why-choose-us .card-description {
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.5;
}

.why-choose-us .read-more {
    font-size: 0.9rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.why-choose-us .read-more:hover {
    color: #d4af37;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-choose-us .row {
        flex-direction: column;
    }

    .why-choose-us .col-left,
    .why-choose-us .col-right {
        width: 100%;
    }

    .why-choose-us .content-wrapper {
        text-align: center;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .why-choose-us .section-title {
        font-size: 2rem;
    }

    .why-choose-us .button-group {
        justify-content: center;
    }
}

    /* how-it-works */
.just-color{
    color: #d4af37;
}    
    .how-it-works {
  background: rgba(0,0,0,0.95);
  color: #fff;
}

.how-it-works h2, 
.how-it-works h5 {
  color: #fff;
}

.how-it-works .text-muted {
  color: #aaa;
}

.step {
  display: flex;
  align-items: flex-start;
}

.step-number {
    width: 40px; /* Set a fixed width for the circle */
    height: 40px; /* Set a fixed height */
    clip-path: circle(50% at 50% 50%);
    border: 2px solid #d4af37; /* Adds a border with a blue color */
    display: flex; /* Centers the number inside the circle */
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #d4af37; /* Number color */
    margin-right: 15px; /* Adds space between the circle and the text */
}

.step-content h5 {
  margin-bottom: 0.25rem;
}

.partner-logos img {
  max-height: 50px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

    /* Footer */
.footer {
  background: #0d0d0d;
  font-size: larger;
}
.text-gold {
  color: #d4af37;
}
.border-gold {
  border-color: #d4af37;
}
.footer-link {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.footer-link:hover {
  color: #d4af37;
  text-shadow: 0 0 10px #d4af37;
}
.social-icon {
  display: inline-block;
  margin: 0 8px;
  font-size: 1.2rem;
  color: #aaa;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}
.social-icon:hover {
  color: #d4af37;
  transform: scale(1.2);
  text-shadow: 0 0 15px #d4af37;
}
.send{
  padding-bottom: 10px;
}
/* General dark theme for the body to match the Figma design */
.testimonial-section-dark {
  background-color: #212121;
  padding: 40px;
}

.testimonial-card-dark {
  background-color: #101011; /* A slightly lighter shade of the background for the card */
  border: 1px solid #d4af37; /* Subtle border */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  color: #cccccc;
}

.testimonial-author img {
  border: 2px solid #d4af37;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.author-name {
  font-weight: bold;
  color: #ffffff;
}

.author-title {
  font-size: 0.9rem;
  color: #aaaaaa;
}
