/*Loader CSS Start*/

#topLoader {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #38bdf8, #6366f1);
    z-index: 9999;
    transition: width 0.3s ease;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85); /* dark glass */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-container {
    text-align: center;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255,255,255,0.2);
    border-top: 5px solid #38bdf8; /* neon blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-container p {
    margin-top: 15px;
    font-size: 18px;
    letter-spacing: 1px;
}

/*Loader CSS End*/
