/* Initial state: Hide the element off-screen at the bottom */
.emerge {
    position: relative;
    opacity: 0;
    transform: translateY(100px);
    /* Move it off-screen */
    transition: all 0.5s ease;
    /* Transition for smoother appearance */
}

/* Final state after 2 seconds: Fully visible and back to original position */
.emerge.show {
    opacity: 1;
    transform: translateY(0);
    /* Bring it back to its position */
    transition: all 0.5s ease;
}