@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes zoom-slow {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes scroll-dot {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateX(-50%) translateY(24px);
        opacity: 0;
    }
}

.animate-gradient-shift {
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

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

.animate-float-delayed {
    animation: float 8s ease-in-out 2s infinite;
}

.animate-zoom-slow {
    animation: zoom-slow 20s ease infinite;
}

.animate-scroll-dot {
    animation: scroll-dot 2s ease-out infinite;
}

.scroll-indicator:hover .animate-scroll-dot {
    animation-duration: 1.5s;
}

.slider-container {
     width: 100%;
     display: flex;
     scroll-snap-type: x mandatory;
}
 .slider-item {
     scroll-snap-align: start;
     transition: opacity 0.5s ease;
}
 @keyframes fadeIn {
     from {
         opacity: 0.5;
    }
     to {
         opacity: 1;
    }
}
 .slider-item.active {
     animation: fadeIn 0.5s ease;
}
