/* WhatsApp Button Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

.whatsapp-btn {
    animation: bounce 2s infinite;
    position: relative;
}

.whatsapp-btn .offer-message {
    background-color: #fff;
    color: #25D366;
    padding: 8px 12px;
    border-radius: 20px;
    position: absolute;
    top: -40px; /* Adjust as needed */
    right: 60px; /* Adjust as needed */
    white-space: nowrap;
    font-weight: bold;
    font-size: 0.9em;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.whatsapp-btn:hover .offer-message {
    opacity: 1;
}
