/* Inline critical CSS here */

.whatsapp-icon {
        position: fixed;
        bottom: 20px;
        /* Adjust as needed */
        left: 20px;
        /* Adjust as needed */
        z-index: 1000;
        /* Ensure it's above other content */
    }

    .whatsapp-icon img {
        width: 50px;
        /* Adjust size as needed */
        height: auto;
        transition: transform 0.3s ease;
        /* Add smooth transition for the rotation */
    }

    .whatsapp-icon img:hover {
        transform: rotate(360deg);
        /* Rotate the icon by 360 degrees when hovered */
    }