.swiper{
    margin-top: 40px;
}

/* Set a fixed height for the Swiper container */
.swiper-container {
  width: 100%;
  max-width: 800px; /* Adjust as needed */
  height: 400px; /* Adjust based on your design */
  overflow: hidden;
  margin: auto;
  margin-top:50px;
}

/* Make sure slides fit within the container */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

/* Restrict image size */
.swiper-slide__img img {
  width: 100%;
  max-width: 100%;
  max-height: 400px; /* Adjust to fit within the section */
  object-fit: contain;
}

/* Ensure responsiveness */
@media (max-width: 1023px) {
  .swiper-container {
    max-width: 100%;
    height: 400px; /* Smaller for mobile */
  }
  .swiper-slide__img img {
    max-height: 400px; /* Reduce image size on mobile */
  }
}

