    .car-card {
      border: 1px solid #e1e1e1;
      border-radius: 10px;
      overflow: hidden;
      transition: box-shadow 0.3s ease-in-out;
    }

    .car-card:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .car-title {
      font-weight: 600;
    }

    .price-tag {
      font-size: 1.5rem;
      font-weight: bold;
      color: #000;
    }

    .seo-highlight {
      color: #555;
      font-size: 0.95rem;
    }

    .badge-custom {
      font-size: 0.75rem;
    }

.image-wrapper {
  width: 100%;
  max-height: 300px; /* or remove to auto-fit */
  overflow: hidden;
  border-radius: 8px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


.zoom-img {
  transition: transform 0.5s ease;
}

.image-wrapper:hover .zoom-img {
  transform: scale(1.08);
}

.cursor-pointer {
  cursor: pointer;
}

    .modal-body {
      padding: 2rem;
    }	
    
 
    .section-padding {
      padding: 60px 0;
    }
    .blog-content {
      background: #fff;
      padding: 20px;
      border-radius: 16px;
      box-shadow: 0 0 30px rgba(0,0,0,0.05);
    }
    h2, h3 {
      margin-top: 40px;
    }
    .faq-section {
      background-color: #ffffff;
      padding: 10px;
      border-radius: 16px;
      box-shadow: 0 0 20px rgba(0,0,0,0.03);
    }
    .fleet-link:hover {
  color: var(--bs-primary) !important;
  
}
    .luxury-section {
      padding: 60px 0;
    }
    .luxury-heading {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .luxury-text {
      font-size: 1.1rem;
      line-height: 1.7;
	  text-align:justify;
    }

.btn-custom {
      background-color: #dc3545;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 50px;
      transition: 0.3s;
    }
    .btn-custom:hover {
      background-color: #b02a37;
      color: #fff;
    }
    .lazy-load-img {
    filter: blur(8px);  
    transition: filter 0.5s ease-in-out;
}
.lazy-load-img.loaded {
    filter: blur(0);
}