/* LEFT SIDE – Call Button */
.floating-call {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

/* RIGHT SIDE – WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Common Styles */
.floating-call a,
.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

/* WhatsApp Style */
.float-whatsapp {
  background-color: #25d366;
}

/* Call Style */
.float-call {
  background-color: #1e90ff;
}

/* Hover Effects */
.floating-call a:hover,
.floating-whatsapp a:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

