.horizontal-slide-from-right-to-left {
  animation: horizontal-slide-from-right-to-left linear 10s infinite;
}

@keyframes horizontal-slide-from-right-to-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.horizontal-slide-from-left-to-right {
  animation: horizontal-slide-from-left-to-right linear 10s infinite;
}

@keyframes horizontal-slide-from-left-to-right {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

.animation-duration-2s {
  animation-duration: 2s;
}
.animation-duration-5s {
  animation-duration: 5s;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

.rotate-full {
  animation: rotate-full 10s linear infinite;
}
@keyframes rotate-full {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.scrolling {
  animation: fadeInDown 0.9s 1;
  backdrop-filter: blur(4px);
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-scrollbar-drag {
  cursor: pointer;
  width: 85px !important;
  height: 50px;
  top: -24px;
  left: -2px;
  position: absolute;
  background-size: cover;
  background-color: transparent;
  background-image: url(../img/icons/icon-white-slider-drug-arrow.svg);
}

.testimonial-custom-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 6px;
  border-radius: 6px;
  background-color: #a58a6a;
}

.testimonial-custom-pagination .swiper-pagination-bullet-active {
  background-color: #221f1a;
}

.offcanvas-body {
  transition: transform 0.3s ease;
}

/* Custom gradient utilities */
.bg-gradient-radial {
  background: radial-gradient(circle, var(--tw-gradient-stops));
}

/* Hero light rays effects */
.hero-main-glow {
  background: radial-gradient(ellipse 90% 120% at 0% 0%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 15%, rgba(255, 255, 255, 0.4) 30%, rgba(255, 255, 255, 0.15) 50%, transparent 80%);
  filter: blur(12px);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.8;
}

/* Individual light rays */
.hero-light-ray {
  position: absolute;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0.1) 70%, transparent 100%);
  transform-origin: top left;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(3px);
}

.hero-light-ray-1 {
  width: 250%;
  height: 90%;
  top: 0;
  left: 0;
  transform: rotate(15deg) skewY(-5deg);
  opacity: 1;
}

.hero-light-ray-2 {
  width: 220%;
  height: 80%;
  top: 3%;
  left: 1%;
  transform: rotate(25deg) skewY(-3deg);
  opacity: 0.9;
}

.hero-light-ray-3 {
  width: 200%;
  height: 70%;
  top: 7%;
  left: 2%;
  transform: rotate(35deg) skewY(-2deg);
  opacity: 0.8;
}

.hero-light-ray-4 {
  width: 180%;
  height: 60%;
  top: 12%;
  left: 4%;
  transform: rotate(45deg) skewY(-1deg);
  opacity: 0.7;
}

.hero-light-ray-5 {
  width: 160%;
  height: 50%;
  top: 18%;
  left: 6%;
  transform: rotate(55deg) skewY(1deg);
  opacity: 0.6;
}

.hero-light-ray-6 {
  width: 140%;
  height: 40%;
  top: 25%;
  left: 8%;
  transform: rotate(65deg) skewY(2deg);
  opacity: 0.5;
}

.hero-light-ray-7 {
  width: 120%;
  height: 35%;
  top: 32%;
  left: 10%;
  transform: rotate(75deg) skewY(3deg);
  opacity: 0.45;
}

/* Atmospheric glow layers */
.hero-atmosphere-1 {
  background: radial-gradient(ellipse 120% 140% at 0% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.1) 50%, transparent 80%);
  filter: blur(25px);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero-atmosphere-2 {
  background: radial-gradient(ellipse 100% 120% at 0% 0%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.05) 60%, transparent 100%);
  filter: blur(35px);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.6;
}

/* Subtle shimmer effect */
.hero-shimmer {
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.5;
}

/* Shimmer animation for light rays */
@keyframes shimmer {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(-100%) translateY(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(0%) translateY(0%);
  }
}

/* Debug light effect - very visible */
.debug-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  pointer-events: none;
}

/* Enhanced visibility for troubleshooting */
.visible-light-test {
  background: linear-gradient(45deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.2) 30%, rgba(255,255,255,0.1) 60%, transparent 100%);
  filter: blur(10px);
}
