  :root {
    --purple-main: #a020f0;
    --purple-dark: #9333ea;
    --purple-gradient: linear-gradient(to right, #6a0dad, #8a2be2);
    --red-gradient: linear-gradient(135deg, #9333ea, #e11d48);
    --light-bg: #f8f9fa;
  }

  body {
    font-family: 'Segoe UI', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    z-index: 1;
  }

  .background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 750px;
    width: 100%;
    overflow: hidden;
    z-index: -1;
  }

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

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

  .search-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 30px;
    max-width: 1000px;
    margin: 60px auto;
    position: relative;
    z-index: 2;
  }

  .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(136, 58, 255, 0.25);
    border-color: var(--purple-dark);
  }

  .search-label {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .fast-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .fast-search-button {
    background: var(--purple-gradient);
    border: 1px solid #7b00a3;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    flex-grow: 1;
    min-width: 150px;
    white-space: nowrap;
    text-align: center;
    transition: all 0.3s ease;
  }

  .fast-search-button:hover {
    background: linear-gradient(to right, #8a2be2, #6a0dad);
    border-color: var(--purple-dark);
  }

  .input-group.custom-search {
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    padding: 6px;
    position: relative;
    z-index: 2;
  }

  .input-group.custom-search .form-control {
    border: none;
    border-radius: 50px;
    padding-left: 50px;
    height: 50px;
  }

  .input-group.custom-search .input-group-text {
    background: none;
    border: none;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .input-group.custom-search .btn {
    border-radius: 50px;
    padding: 0 30px;
    height: 50px;
  }

  .swiper {
    width: 100%;
    padding: 20px 0;
  }

  .swiper-wrapper {
    display: flex;
    height: auto !important;
  }

  .other .swiper-slide {
    background: var(--red-gradient);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    width: 250px;
  }

  .brand-dropdown {
    background: #fff;
    color: #000;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: none;
    position: absolute;
    width: 100%;
    z-index: 9999;
    top: 100%;
    left: 0;
  }

  .brand-dropdown.show {
    display: block;
  }

  .brand-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    cursor: pointer;
  }

  .brand-icon {
    font-size: 1.2rem;
    margin-right: 10px;
  }

  .category-toggle {
    background: linear-gradient(to right, #a100ff, #e14bff);
    color: white;
    font-weight: 500;
  }

  .category-box {
    background-color: #f5f9fc;
    border-radius: 8px;
    padding: 30px;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    color: black;
  }

  .category-box h5 {
    font-weight: bold;
    color: #7a1fa2;
  }

  .hover-shadow:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out;
  }

  .button {
    background: var(--red-gradient);
    border: none;
  }

  .section-title {
    font-weight: 700;
    color: var(--purple-dark);
  }

  .review-box {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.25rem 1rem;
    width: 240px;
  }

  .review-logo {
    width: 201px;
    height: auto;
  }

  .car-card {
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
  }

  .image-zoom-container {
    overflow: hidden;
    height: 220px;
  }

  .image-zoom-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .image-zoom-container:hover img {
    transform: scale(1.05);
  }

  .car-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
  }

  .btn-outline-purple {
    border: 2px solid #a100ff;
    color: #a100ff;
  }

  .btn-outline-purple:hover {
    background-color: #a100ff;
    color: white;
  }

  .btn-purple {
    background: linear-gradient(to right, #a100ff, #e14bff);
    color: white;
  }

  .btn-purple:hover {
    background: linear-gradient(to right, #9100e0, #d440f0);
  }

  .card-footer {
    background: transparent;
    border-top: none;
  }

    .testimonial-section {
      padding: 50px 0;
      background-color: #f8f9fa;
    }
    .testimonial-card {
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 20px;
      background: white;
      height: 100%;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      margin-top: 20px;
    }
    .testimonial-author img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
    }
    .testimonial-author h6 {
      margin: 0;
      font-weight: 600;
    }
    .stars i {
      color: #a020f0;
    }
   .swiper-button-next,
.swiper-button-prev {
  background-color: #a020f0;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 30%;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  top: 50%;
  transform: translateY(-50%);
}

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

    .book-section {
      text-align: center;
      padding: 30px;
    }
    .book-section h2 {
      color: #a020f0;
      font-weight: bold;
    }
    .book-section p {
      color: #6c757d;
    }
    .book-section .btn {
      background-color: #a020f0;
      color: white;
      padding: 10px 20px;
      font-weight: 600;
      border-radius: 10px;
    }
	.testimonial-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;      /* Show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 72px;            /* Keeps all cards the same height */
  color: black;
}

    .accordion-button {
      background-color: white;
      font-weight: 500;
      color: #333;
      border-radius: 8px !important;
      border: 1px solid #e0e0e0;
      box-shadow: none;
      transition: background-color 0.3s ease, padding 0.3s ease;
      position: relative;
      padding-right: 2.5rem;
    }

    .accordion-button::after {
     
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.3s ease;
    }

    .accordion-button:not(.collapsed)::after {
   
      transform: translateY(-50%) rotate(180deg);
    }

    .accordion-button:not(.collapsed) {
      background-color: #f3efff;
      color: #800080;
    }

    .accordion-item {
      background-color: transparent;
      border: none;
      margin-bottom: 10px;
    }

    .accordion-body {
      background-color: #ffffff;
      border-radius: 0 0 8px 8px;
      padding: 1rem 1.25rem;
      border: 1px solid #e0e0e0;
      border-top: none;
      animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .brand-card {
      border: 1px solid #eee;
      border-radius: 8px;
      background: #fff;
      padding: 20px 10px;
      text-align: center;
      transition: all 0.3s ease;
      height: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .brand-card img {
      max-width: 60px;
      max-height: 40px;
      object-fit: contain;
      margin-bottom: 8px;
    }

    .brand-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    }

    .brand-card a {
      text-decoration: none;
      color: #0d6efd;
      font-weight: 500;
      font-size: 15px;
    }

    .brand-section {
      padding: 40px 0;
    }

    .brand-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
    }

    .brand-header h2 {
      font-size: 22px;
      font-weight: 600;
      margin: 0;
    }

    .brand-header a {
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
    }

    .brand-header a:hover {
      text-decoration: underline;
    }


.justify {
  text-align: justify;
  text-indent:20px;
}
  .modal-header {
      background: var(--purple-gradient);
      color: white;
    }
    .contact-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      border: none;
      padding: 10px 20px;
      border-radius: 50px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .contact-btn i {
      margin-right: 8px;
      font-size: 1.2rem;
    }
    .contact-btn.whatsapp {
      background-color: #25D366;
      color: white;
    }
    .contact-btn.telegram {
      background-color: #0088cc;
      color: white;
    }
    .contact-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

.ui-autocomplete {
  z-index: 1050 !important;
  position: absolute;
  background: white;
  color: black;
  border: 1px solid #ddd;
  max-height: 300px;
  overflow-y: auto;
  font-size: 18px;
  list-style: none; /* just in case */
  padding-left: 0;
}



.ui-autocomplete li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ui-menu-item-wrapper {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.ui-menu-item-wrapper:hover {
  background: linear-gradient(to right, #f3e5f5, #ede7f6);  /* Use your root variable here */
  color: black;
}
.highlight {
  font-weight: bold;
  color: purple;
}
 