/* -- Tour Detail -- */
/* Force slide container to have consistent height */
.slider-for .slick-slide {
  height: 400px !important; /* Or whatever fixed height you want */
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Force images to fill the slide perfectly */
.slider-for .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-nav .slick-slide {
  height: 100px !important; /* Adjust height as needed */
  margin: 0 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make all thumbnail images fill container consistently */
.slider-nav .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
