/* Style for the floating WhatsApp button with animated glow effect */
.whatsapp__floating {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7); /* Initial glow effect */
    cursor: pointer;
    z-index: 1000;
    animation: glowAnimation 1.5s infinite; /* Apply the glowing animation */
}

.whatsapp__floating img {
    width: 30px;
    height: 30px;
}

/* Style for the popup message */
.popup {
    display: none;
    position: fixed;
    bottom: 80px;
    left: 20px;
    background-color: #333;
    color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-width: 200px;
    text-align: center;
}

.popup.show {
    display: block;
}

.popup a {
    color: #25D366;
    text-decoration: underline;
}

/* Keyframes for glowing animation */
@keyframes glowAnimation {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
}
