#loaderWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fadeOut {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.imgBox {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 420px;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.dropAnim {
    animation: dropImage 0.20s ease-out forwards; /* ⭐ smooth + fast */
}

@keyframes dropImage {
    0% {
        opacity: 0;
        transform: translate(-50%, calc(-50% - 25px));
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}



@media (max-width: 480px) {
    .imgBox {
        width: 140px;
    }
}
