/* Position the WhatsApp icon in the bottom-right corner */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;  /* Adjust this to move it up/down */
    right: 20px;   /* Adjust this to move it left/right */
    z-index: 1000; /* Ensure it stays on top of other content */
}

.whatsapp-icon img {
    width: 60px;  /* Size of the WhatsApp logo */
    height: 60px; /* Size of the WhatsApp logo */
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional shadow */
    cursor: pointer;
}

.whatsapp-icon img:hover {
    opacity: 0.8; /* Hover effect */
}
