.whatsapp-float {
  position: fixed;
  bottom: 95px;
  right: 25px;
  z-index: 9999;
}

.whatsapp-btn {
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #1EBE57;
}

