/* Fullscreen loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    /* or your brand color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    text-align: center;
}

/* Logo styling */
.loader-logo {
    width: 80px;
    /* adjust as needed */
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

/* Spinner animation */
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ddd;
    border-top: 6px solid #d4242a;
    /* brand color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

/* Animations */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Hide loader smoothly */
#loader.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}