/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
}

.ips-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circles {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.circle {
    width: 15px;
    height: 15px;
    background-color: #2c9e95; /* var(--brand-color) */
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.circle:nth-child(2) {
    animation-delay: 0.2s;
    background-color: #f6b81d; /* var(--brand-gold) */
}

.circle:nth-child(3) {
    animation-delay: 0.4s;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo-text .ips {
    color: #444;
}

.logo-text .nissi {
    color: #2c9e95;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}
