html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modern mobile menu animations - full screen overlay */
.mobile-menu-enter {
    animation: fadeIn 0.3s ease-out forwards;
}

.mobile-menu-exit {
    animation: fadeOut 0.2s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Scrollable carousel styles - completely hide scrollbars */
.scrollable-container {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollable-container::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.scrollable-container::-webkit-scrollbar-track {
    display: none;
}

.scrollable-container::-webkit-scrollbar-thumb {
    display: none;
}

.scrollable-container::-webkit-scrollbar-corner {
    display: none;
}

.bg-beige-custom {
    background-color: #f5debe;
}

/* Auto-scroll animation - much slower */
.auto-scroll {
    animation: autoScroll 60s linear infinite;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(0);
    }
}

.auto-scroll:hover {
    animation-play-state: paused;
}

/* Profile image fix */
.profile-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

/* Pulse animation for floating button */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}



/* video css  */
/* Hide scrollbar completely */
#videoContainer::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

#videoContainer {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

/* Extra enforcement */
.scrollbar-hide::-webkit-scrollbar {
    display: none !important;
}

.scrollbar-hide {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}