.hero-section {
      /* background: url('car/images/a1.jpg') no-repeat center center/cover; */
      background-image: url('images/a1.jpg');
      position: relative;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-size: 48px;
      font-weight: 700;
    }

    .breadcrumb-custom {
      margin-top: 15px;
      font-size: 16px;
    }

    .breadcrumb-custom a {
      color: white;
      text-decoration: none;
    }

    .breadcrumb-custom span {
      color: #084B82;
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 32px;
      }
    }
/* cars */
body {
      background: #f8f9fa;
    }

    .car-card {
      border-radius: 20px;
      box-shadow: 0 0 15px rgba(0,0,0,0.06);
      padding: 20px;
      background: #fff;
      height: 100%;
      transition: all 0.3s ease;
    }

    .car-card:hover {
      transform: translateY(-5px);
    }

    .car-badge {
      font-size: 12px;
      background: #f1f1f1;
      padding: 4px 10px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 10px;
    }

    .car-image {
      width: 100%;
      height: auto;
      max-height: 240px;
      object-fit: contain;
    }

    .icon-label {
      font-size: 14px;
      color: #6c757d;
      margin-right: 10px;
    }

    .price-tag {
      font-weight: bold;
      font-size: 18px;
      color: #000;
    }

    .arrow-btn {
      background-color: #084B82;
      color: white;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
    }