   .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;
    }
    
        .hero {
      background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
      color: white;
      padding: 60px 20px;
      border-radius: 16px;
    }
    .hero h1, .hero p {
      color: white;
    }
    .icon-box {
      transition: transform 0.3s ease-in-out;
    }
    .icon-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .card-custom {
      border-radius: 16px;
      background: #ffffff;
    }
    .btn-primary, .btn-dark {
      border-radius: 50px;
    }


.hover-glow:hover {
    background-color: #f8f9fa;
    transform: translateY(-4px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

	