/* WhatsApp Floating Button CSS */
#whatsapp-button {
  position: fixed;
  bottom: 20px; /* Adjust vertical position */
  right: 20px;  /* Adjust horizontal position */
  z-index: 9999; /* Ensures it's above other content */
}

#whatsapp-button a img {
  width: 60px;  /* Adjust the size of the icon */
  height: auto;
  border-radius: 50%; /* Makes the icon circular */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Optional shadow effect */
}

#whatsapp-button a img:hover {
  transform: scale(1.05); /* Optional hover effect */
  transition: transform 0.3s ease;
}
