﻿/* Floating WhatsApp Button */
.whatsapp-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

    .whatsapp-link:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
        background-color: #1ebe5d;
    }

.whatsapp-icon {
    width: 28px;
    height: 28px;
    animation: bounce 2s infinite;
}

/* Glowing Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 1);
    }

    100% {
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.7);
    }
}

/* Subtle Icon Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}
