/* Slideshow container takes full screen */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  margin: 0; /* remove all margins */
  overflow: hidden;
}

/* Each slide fits the screen */
.mySlides {
  display: none;
  width: 100%;
  height: 100%;
}

/* Image fits full screen without white spaces */
.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Next button fixed at bottom center */
.next-btn {
  position: fixed;
  bottom: 20px; /* spacing from bottom */
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
}

category-card {
  position: relative;
  overflow: hidden;
}
.category-card .details-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.category-card:hover .details-button {
  opacity: 1;
}
.category-card:hover .category-title {
  opacity: 0;
}

