/* LOADING OVERLAY */
.loading {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        #003d7a,
        #005fb8,
        #003d7a
    );
    backdrop-filter: blur(8px);
}

/* KART */
.loading-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 4rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeScale 0.8s ease;
}

/* LOGO */
.loaderLogos {
    width: 140px;
    animation: pulseLogo 2s ease-in-out infinite;
}

/* MODERN SPINNER */
.modern-spinner {
    display: flex;
    gap: 0.6rem;
}

.modern-spinner span {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.modern-spinner span:nth-child(1) {
    animation-delay: -0.32s;
}
.modern-spinner span:nth-child(2) {
    animation-delay: -0.16s;
}

/* TEXT */
.loading-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* HIDDEN */
.loading.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

/* ANIMATIONS */
@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.3;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
