/* Infinite Bob Animation */
@keyframes bob {
    0%, 100% {
        transform: translateY(0); /* Start and end at the same position */
    }
    50% {
        transform: translateY(-8px); /* Move up slightly */
    }
}

.bob {
    animation: bob 2.5s ease-in-out infinite; /* Adjust duration as needed */
}
