/* Animation styles */
.animate {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation-name: fadeIn;
}

/* Slide up animation */
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-up {
    animation-name: slideUp;
}

/* Animation delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* Apply animations to specific elements */
.md_cs_lft.animate,
.md_htp_lft.animate,
.md_htp_rgt.animate,
.md_htp_blk.animate,
.md_wheels_con.animate,
.punter .left.animate,
.punter .right.animate {
    animation-name: slideUp;
}

/* Add transition for smoother animations */
.md_cs_lft,
.md_htp_lft,
.md_htp_rgt,
.md_htp_blk,
.md_wheels_con,
.punter .left,
.punter .right {
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.md_cs_lft.active,
.md_htp_lft.active,
.md_htp_rgt.active,
.md_htp_blk.active,
.md_wheels_con.active,
.punter .left.active,
.punter .right.active {
    opacity: 1;
}