html {
    scroll-behavior: smooth;
}

#whatsapp-chat {
    position: fixed;
    bottom: 200px;
    /* Adjust this value as needed to place it above the scroll-up button */
    right: 30px;
    /* Align it with the scroll-up button */
    z-index: 100;
    /* Ensure it appears above other elements */
}

#whatsapp-chat a {
    display: block;
    /* padding: 5px; */
    /* Adjust padding to control the clickable area */
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    background-color: transparent;
    /* Remove background color to show the image */
    animation: glow 2s infinite ease-in-out;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0px 0px 10px rgba(37, 211, 102, 0.8), 0px 0px 20px rgba(37, 211, 102, 0.6), 0px 0px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0px 0px 20px rgba(37, 211, 102, 1), 0px 0px 30px rgba(37, 211, 102, 0.8), 0px 0px 40px rgba(37, 211, 102, 0.6);
    }
}


#whatsapp-chat img {
    width: 75px;
    /* Set the size of the image */
    height: 75px;
    /* Set the size of the image */
    border-radius: 50%;
    /* If you want the image to appear circular */
}

#whatsapp-chat a:hover img {
    opacity: 0.8;
    /* Add a hover effect if desired */
}