@keyframes softPulse {
    0%, 100%{
        opacity: 1;
    }
    50%{
        opacity: 0.7;
    }
}
.animate-soft-pulse {
    animation: softPulse 3s ease-in-out infinite;
}


@keyframes softBounce {
    0%, 100%{
        transform: translateY(5px);
    }
    50%{
        transform: translateY(-10px);
    }
}
.animate-soft-bounce {
    animation: softBounce 3s ease-in-out infinite;
}