/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed; /* Use 'fixed' to position the button relative to the viewport */
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    z-index: 1000; /* Ensure it stays on top of other elements */
    display: flex; /* Use 'flex' for better alignment */
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button img {
    width: 100px;
    height: 100px;
}

.whatsapp-button:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 500px) {
    .whatsapp-button {
        bottom: 40px; /* Adjust distance from the bottom for mobile screens */
        right: 10px; /* Adjust right margin for smaller screens */
    }

    .whatsapp-button img {
        width: 70px;  /* Smaller icon size for mobile */
        height: 70px;
    }
}
