.custom-swiper-button {
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 20;
}

.custom-swiper-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
   color: yellow;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

/* Optional: adjust positions */
.swiper-button-prev {
  left: 10px;
}
.swiper-button-next {
  right: 10px;
}

@keyframes float-x {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float-x {
  animation: float-x 4s ease-in-out infinite;
}

.animate-float-y {
  animation: float-y 4s ease-in-out infinite;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
