

/* Floating WhatsApp Button Styles */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

