.partners .swiper-container {
  width: 100%;
}

.partners .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners .swiper-slide img {
  width: calc(100% - 20px); /* Adjust for gap */
  margin: 0 10px; /* Half of the gap on each side */
  border-radius: 4px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Simple shadow effect */
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-top: -15px;
  margin-bottom: 35px;
}

/* New styles added for task */
.height-100 {
  height: 100%;
}

.min-height-200 {
  min-height: 200px;
}

.cta-black-bg {
  background-color: black;
  color: white;
}

.main-btn {
  display: inline-block;
  /* existing styles for main-btn can be here or in style.css */
}

/* Updated button style for CTA section with theme yellow */
.main-btn-cta-yellow {
  background-color: #ffcc06;
  color: black !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.main-btn-cta-yellow:hover {
  background-color: white;
  color: black;
}
.cta-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* More Details button */
.more-details-btn {
  color: #fff;
  border-bottom: 1.5px solid #fff;
}

.more-details-btn:hover {
  color: #fff;
}

/* vans sections */

.vehicle-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  backdrop-filter: blur(10px);
}

.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.vehicle-image {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}



.vehicle-image i {
  font-size: 4rem;
  color: #000;
  z-index: 1;
}

.vehicle-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.vehicle-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #ffcc06;
  border-radius: 2px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  margin-bottom: 10px;
  background: #000;
  border-radius: 12px;
  border-left: 4px solid #ffcc06;
  transition: all 0.3s ease;
}

.spec-label {
  font-weight: 600;
  color: #ffcc06;
  display: flex;
  align-items: center;
}

.spec-label i {
  margin-right: 10px;
  color: #ffcc06;
  width: 20px;
}

.spec-value {
  font-weight: 700;
  color: #ffcc06;
  background: linear-gradient(135deg, #ffcc06, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  color: #ffcc06;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  color: #fff;
}

.badge-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .vehicle-card {
    padding: 10px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .vehicle-image {
    height: 150px;
  }
}
