/* Keyframe animations for any moving backgrounds or elements */
@keyframes slideBackground {
    from { background-position: 0 0; }
    to { background-position: 100% 0; }
}

/* Apply the animation to your parallax background */
.parallax-background {
    animation: slideBackground 20s linear infinite;
}
