/* Custom CSS for Tailwind Extensions */

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-wave {
    animation: wave 15s ease-in-out infinite;
}

/* Background Image Slider Animation */
@keyframes bgSlide {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    35% {
        opacity: 0;
    }

    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bg-slide-1 {
    animation: bgSlide 15s infinite;
    animation-delay: 0s;
    opacity: 1;
}

.bg-slide-2 {
    animation: bgSlide 15s infinite;
    animation-delay: 5s;
    opacity: 0;
}

.bg-slide-3 {
    animation: bgSlide 15s infinite;
    animation-delay: 10s;
    opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2ecc71;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #27ae60;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Assamese font support */
body {
    font-family: 'Noto Sans Bengali', sans-serif;
}