/* WhatsApp floating icon */
.whatsapp-float {
    position: fixed;
    bottom: 20px; /* Adjust this value to change the vertical position */
    right: 20px; /* Adjust this value to change the horizontal position */
    z-index: 9999; /* Ensure the icon is on top of other elements */
  }
  
  .whatsapp-float img {
    width: 60px; /* Adjust this value to resize the icon */
    height: auto;
    display: block;
    opacity: 0.8; /* Adjust this value for desired opacity */
    transition: opacity 0.3s ease-in-out;
  }
  
  .whatsapp-float img:hover {
    opacity: 1; /* Adjust this value for desired hover opacity */
  }
  