
  .whatsapp-icon {
    position: fixed;
    bottom: 20px; /* Adjust as per your design */
    left: 20px; /* Adjust as per your design */
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-icon img {
    width: 60px; /* Adjust the size of the icon */
    height: auto;
    border-radius: 50%;
    border: 2px solid #25d366; /* WhatsApp green color */
    cursor: pointer;
}

.whatsapp-icon img:hover {
    transform: scale(1.1); /* Scale up the icon on hover */
}


