/* 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-out, visibility 0.5s ease-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 80px;
    /* Adjust size as needed */
    height: auto;
    z-index: 2;
    position: relative;
}

/* Wavy / Ripple Effect */
.wavy-effect {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(63, 153, 183, 0.2);
    /* Using the blue color from the logo/header */
    z-index: 1;
    animation: ripple 2s infinite ease-out;
}

.wavy-effect:nth-child(2) {
    animation-delay: 0.5s;
}

.wavy-effect:nth-child(3) {
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}