html {
    scroll-behavior: smooth;
}

.sidebar {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.sidebar.open {
    transform: translateX(0);
}

.overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;

}

.overlay.active {
    opacity: 0.6;
    visibility: visible;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee {
    display: flex;
    width: 100%;
    /* Change animation to move from right to left instead */
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move completely off-screen to the left */
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .marquee {
        animation: marquee-mobile 15s linear infinite;
    }

    @keyframes marquee-mobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-270%);
        }
    }
}


.shadow-inset-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, rgba(243, 244, 246, 1), rgba(243, 244, 246, 0));
    z-index: 10;
    pointer-events: none;
}

.shadow-inset-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, rgba(243, 244, 246, 1), rgba(243, 244, 246, 0));
    z-index: 10;
    pointer-events: none;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 150px;
    height: 150px;
    opacity: 0;
    transform: scale(0.5);
}

/* Hide main content initially */
.main-content {
    opacity: 0;
    transition: opacity 3s ease-in;
}

.main-content.show {
    opacity: 1;
}

.shine-text-container {
    /* padding: 16px 32px;
    background: rgb(34, 0, 0);
    border-radius: 10px;
    display: inline-block; */
}

.shine-text-container .shine-text {
    font-size: 40px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    padding: 0 48px;

    background: linear-gradient(to right,
            rgb(255 255 255) 4%,
            rgb(3, 202, 252) 16%,
            rgb(54 96 171) 32%);

    -webkit-background-clip: text;
    color: transparent;
    background-position: -40px;
}

.shine-text-container .shine-text {
    animation: shineText 3s infinite;
}

@keyframes shineText {
    to {
        background-position: 240px;
    }
}

.logo-zoom-out {
    animation: logoZoomOut 0.8s ease-in-out forwards;
}

@keyframes logoZoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}