
/** ADD YOUR AWESOME CODES HERE **/
#preloader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9); /* Set your desired background color and opacity */
    z-index: 9999;
}

.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.loader-logo {
    animation: rotate 2s linear infinite; /* Adjust the animation duration and type as needed */
}

.logo-img {
    max-width: 100%;
    height: auto;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

