/* Define the bottom-to-top animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Right-to-left animation for the image */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply the animation to the main content */
.vayulogi-top {
    animation: slideUp 1.5s ease-out;
}
/* Apply the right-to-left animation to the image */
.vayulogi-top .image-content {
    animation: slideLeft 1.5s ease-out;
}