/* Floating WhatsApp Button */
.whatsapp-button {
    position: fixed; /* Makes the button float */
    bottom: 20px;    /* Distance from the bottom of the viewport */
    right: 20px;     /* Distance from the right of the viewport */
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50%; /* Makes it a perfect circle */
    width: 60px;     /* Width of the button */
    height: 60px;    /* Height of the button */
    display: flex;   /* For centering the icon */
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    font-size: 30px; /* Size of the WhatsApp icon */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    z-index: 1000;   /* Ensures it stays on top of other content */
    text-decoration: none; /* Remove underline from the link */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

.whatsapp-button:hover {
    background-color: #1DA851; /* Slightly darker green on hover */
}
