/* Loader Container */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); 
    /* background-color: rgba(13, 110, 253, 0.1); *//* Very light blue */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px); /* Frosted glass effect */
}

/* Logo Loader Animation */
.logo-loader {
    width: 150px;
    height: 150px;
    animation: pulse 1.5s infinite ease-in-out;
     /* animation: spin 2s infinite linear; */
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* @keyframes spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
} */

/* .progress-bar {
    width: 200px;
    height: 10px;
    background: #e9ecef;
    margin-top: 20px;
    border-radius: 2px;
    overflow: hidden;
}
.progress {
    height: 100%;
    width: 0%;
    background: #0d6efd;
    animation: load 1.5s forwards;
}
@keyframes load {
    0% { width: 0%; }
    100% { width: 100%; }
} */

/* For smaller screens */
@media (max-width: 768px) {
    .logo-loader {
        width: 100px;
        height: 100px;
    }
}
