/* Custom animations for the banner section */
@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-right {
  animation: slideFromRight 0.8s ease-out forwards;
  opacity: 0;
}

.animate-slide-left {
  animation: slideFromLeft 0.8s ease-out forwards;
  opacity: 0;
}

.animate-slide-up {
  animation: slideFromBottom 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.5s;
}

.delay-3 {
  animation-delay: 0.8s;
}

/* Water Ripple Animation */
.ripple-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 6s ease-out infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.ripple-1 {
  width: 300px;
  height: 300px;
  right: 15%;
  top: 50%;
  margin-top: -150px;
  animation-delay: 0s;
}

.ripple-2 {
  width: 500px;
  height: 500px;
  right: 15%;
  top: 50%;
  margin-top: -250px;
  animation-delay: 1.5s;
}

.ripple-3 {
  width: 700px;
  height: 700px;
  right: 15%;
  top: 50%;
  margin-top: -350px;
  animation-delay: 3s;
}

@keyframes ripple-animation {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
