/* Page Loader Styles */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.loader-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px;
    opacity: 0;
    animation: loaderCircle 1.5s infinite ease-in-out;
}

@keyframes loaderCircle {
    0%, 100% {
        transform: scale(0.5);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.loader-text {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    animation: textFade 2s infinite;
}

@keyframes textFade {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}