﻿/* ===== GLOBAL LOADER ===== */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.loader-content {
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

/* 🔵 LOGO — 2x bigger */
.loader-logo {
    width: 240px; /* was 120px */
    margin-bottom: 24px;
    animation: pulse 1.6s infinite ease-in-out;
}

/* 🔵 TEXT — bigger & clearer */
.loader-text {
    font-size: 28px; /* was 16px */
    font-weight: 600;
    color: #1976d2;
    letter-spacing: 0.5px;
}

/* Fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Subtle breathing animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.95;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.95;
    }
}

/* Rotating dots animation */
.dots span {
    font-size: 28px;
    font-weight: 600;
    animation: blink 1.4s infinite both;
}

    .dots span:nth-child(1) {
        animation-delay: 0s;
    }

    .dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}
