/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    font-size: 32px;
    z-index: 1000;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    
    /* The continuous raising and lowering animation */
    animation: whatsapp-bounce 2.5s ease-in-out infinite;
}

/* Pause animation and keep it raised on hover */
.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    animation-play-state: paused;
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6) !important;
}

/* Continuous Bounce Animation */
@keyframes whatsapp-bounce {
    0%, 100% { 
        transform: translateY(0);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    }
    50% { 
        transform: translateY(-12px);
        box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
    }
}

/* Make it slightly smaller on mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}
