.fleet-section {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}

.fleet-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

.fleet-title span {
  color: #2757F7;
  position: relative;
}

.fleet-title span::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #2757F7;
  margin: 10px auto 0;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.fleet-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.fleet-card img {
  max-width: 220px;
  margin-bottom: 30px;
}

.fleet-card h3 {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
}

.fleet-card h3::after {
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  background: #ffffff;
  margin: 10px auto 0;
}

.fleet-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.fleet-card.vip {
  border: none;
}

/* Responsive */
@media (max-width: 992px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    
  }
}
.fleet-card {
  transition: all 0.3s ease;
}

.fleet-card h3::after {
  background: #2f80ed; /* blue */
}

}
.fleet-card {
  transition: all 0.3s ease;
}

.fleet-card:hover {
  background: #ffffff; /* soft pastel blue/green */
}

.fleet-card:hover h3 {
  color: #69c18c; /* soft green like your image */
}

.fleet-card:hover p {
  color: #2f3b45;
}
.fleet-card:hover {
  background: #edf4ff;
}

.fleet-card h3 {
  transition: color 0.3s ease;
}

.fleet-card:hover h3 {
  color: #2f80ed; /* nice soft blue */
}
