
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fb;
}

.fleet-section {
  padding: 50px 20px;
  background-color: #f8f9fb;
  text-align: center;
}

.fleet-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #E53935;
  margin-bottom: 40px;
  font-family: 'DM Serif Text', serif;
}

.fleet-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.fleet-box {
  background-color: #fff;
  width: 250px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.fleet-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #1d3b8b;
}

.fleet-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0052cc;
}

.fleet-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .fleet-container {
    flex-direction: column;
    align-items: center;
  }
}






body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9fafb;
  margin: 0;
  padding: 0;
}

.vehicle-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

.vehicle-container h2 {
  text-align: center;
  color: #E53935;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
  font-family: 'DM Serif Text', serif;
}

.vehicle-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.vehicle-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  overflow: hidden;
  transition: transform 0.5s ease; /* Smooth zoom animation */
}

.vehicle-card:hover img {
  transform: scale(0.9); /* Zoom 10% */
}

.vehicle-content {
  padding: 1rem;
}

.vehicle-content h3 {
  font-size: 1.4rem;
  margin: 0;
  color: #0052cc;
  font-weight: bold;
}

.passengers {
  color: #333333;
  font-size: 0.95rem;
  margin: 0.3rem 0;
}

.desc {
  color: #000;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.price-block {
  background: #E6FAFF;
  padding: 0.6rem;
  border-radius: 8px;
  text-align: left;
}

.km-range {
  color: #E53935;
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.features span {
  background: #f1f2fd;
  color: #1a237e;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
}

.book-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #0052cc; /* Blue theme base */
  color: #fff;
  padding: 12px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 82, 204, 0.6),
              0 0 30px rgba(0, 82, 204, 0.4),
              0 0 45px rgba(0, 82, 204, 0.2);
  animation: blueGlow 2s infinite alternate;
}

.book-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

@keyframes blueGlow {
  0% {
    box-shadow: 
      0 0 10px rgba(0, 82, 204, 0.6),
      0 0 20px rgba(0, 82, 204, 0.4),
      0 0 30px rgba(0, 82, 204, 0.2);
  }
  100% {
    box-shadow: 
      0 0 20px #e0f7fa(0, 82, 204, 0.9),
      0 0 40px rgba(0, 82, 204, 0.7),
      0 0 60px #e0f7fa(0, 82, 204, 0.5);
  }
}
/* Responsive */
@media (min-width: 640px) {
  .vehicle-card {
    flex-direction: row;
  }

  .vehicle-card img {
    width: 45%;
    height: auto;
  }

  .vehicle-content {
    width: 55%;
  }

  .pricing {
    flex-direction: row;
    justify-content: space-between;
  }

  .price-block {
    width: 48%;
  }
}









