/* Enhanced WhatsApp Icon Styling */
.whatsapp-icon {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #25d366; /* WhatsApp Green Color */
  border-radius: 50%; /* Fully Circular */
  padding: 15px; /* Increase padding for a larger button */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Slightly larger shadow for better visibility */
  z-index: 9999; /* Ensures it appears on top of other content */
  transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effects */
}

.whatsapp-icon a {
  color: white;
  font-size: 30px; /* Increase font size for a more prominent icon */
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.whatsapp-icon:hover {
  background-color: #128c7e; /* Darker Green for Hover */
  transform: scale(1.1); /* Slightly enlarge the icon on hover */
}
