/* Page Loader Styles for Timelsa */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.loader-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loader-dot:nth-child(1) {
    background-color: #0066CC;
    animation-delay: -0.32s;
}

.loader-dot:nth-child(2) {
    background-color: #FF3333;
    animation-delay: -0.16s;
}

.loader-dot:nth-child(3) {
    background-color: #FFCC00;
    animation-delay: 0s;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .loader-dot {
        width: 14px;
        height: 14px;
    }
    
    .loader-container {
        gap: 10px;
    }
}








