

.fleet-section {
  padding: 70px 15px;
  text-align: center;
  
  
  float: left;
  width: 100%;
}

.fleet-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #111;

  
}

/* Slider */
.fleet-slider {
  max-width: 1300px;   /* bigger */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.fleet-track {
  display: flex;
  gap: 25px;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* 3 cards always on desktop */
/* bigger card size */
.fleet-card {
  flex: 0 0 calc((100% - 50px) / 3);
  max-width: calc((100% - 50px) / 3);

  padding: 22px;        /* bigger padding */
}

.fleet-card img {
  height: 230px;        /* bigger image height */
}

.fleet-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}

.fleet-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  min-height: 65px;
  margin-bottom: 14px;
}

.fleet-btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 8px;
  background: #225378;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* Active center */
.fleet-card.active {
  opacity: 1;
  filter: brightness(1);
  transform: scale(1);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* Dots */
.fleet-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.fleet-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  transition: 0.25s ease;
}

.fleet-dot.active {
  background: rgba(0,0,0,0.85);
  transform: scale(1.25);
}

/* Mobile = 1 card */
@media (max-width: 768px) {
  .fleet-card {
    flex: 0 0 100%;
    max-width: 100%;
    opacity: 1;
    filter: brightness(1);
    transform: scale(1);
  }
}
