   /* Full-page loading overlay */
   .loading-overlay {
    /* background-image: url(/assets/media/background/sunray.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fefcfe;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.airplane-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.airplane {
    width: 25vw;
    height: 25vw;
    background-image: url(/assets/media/logos/loader_425.gif);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* left: -35vw; */
    /* animation: slideRight 5s ease-in-out infinite; */
}

/* @keyframes slideRight {
    0% { left: -35vw; }
    60% { left: 30vw; }
    100% { left: 200vw; }
} */


/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .airplane {
        width: 65vw;   /* Adjust airplane width for smaller screens */
        height: 65vw;  /* Adjust height as well */
        /* left: -50vw;   */
        /* animation: slideRightMobile 5s ease-in-out infinite; */
    }

    /* Adjust the animation for mobile devices */
/* @keyframes slideRightMobile {
        0% {
            left: -50vw; 
        }
        50% {
            left: 20vw;  
        }
        100% {
            left: 100vw; 
        }
    } */
}

/* Adjust for extra small screens (portrait mobile view) */
@media (max-width: 480px) {
    .airplane {
        width: 65vw;   /* Further adjust for very small screens */
        height: 65vw;
        /* left: -60vw;  */
    }
}


.loading-overlay h1 {
    font-size: 2.5rem;
    color: #333;
}

.loading-overlay.hidden {
    display: none;
}

/* Hide the content by default */
.content-hidden {
    display: none;
}