.whatsapp-button {
    position: fixed;
    width: 60px; /* Adjust as needed */
    height: 60px; /* Adjust as needed */
    bottom: 20px; /* Adjust vertical position */
    right: 20px; /* Adjust horizontal position */
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Ensure it stays on top */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out; /* Add a subtle animation */
}

.whatsapp-button:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

.whatsapp-button img {
    width: 40px; /* Adjust icon size */
    height: 40px; /* Adjust icon size */
}