/* Container Styles */
.container {
  background: #f9f9f9;
  max-width: 100vw;
  width: 100%;
  /* padding: 40px 0; */
}

/* .container h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
} */

.slide-container {
  margin: 0;
  overflow: hidden;
}

/* Card Styles */
.card {
  background: none;
  /* border-radius: 12px; */
  box-shadow: none;
  overflow: hidden;
  height: 280px;
}

.card .image-box {
  height: 100%;
  width: 100%;
  overflow: hidden;
  /* border-radius: 12px; */
}

.card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Optional Hover Zoom Effect */
.card:hover .image-box img {
  transform: scale(1.05);
}

/* Swiper Navigation Buttons */
.swiper-navBtn {
  color: #000;
  height: 50px;
  width: 50px;
  transform: translateY(-40%);
  background: #fff;
  border-radius: 50%;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 24px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background-color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .card {
    height: 220px;
    /* For tablets and mid-sized screens */
  }
}

@media (max-width: 480px) {
  .card {
    height: 180px;
    /* For mobile phones */
  }
}