
.floating-buttons {
  position: fixed;
  bottom: 12%;
  left: 0;
  width: 100%;
  z-index: 1050;
  pointer-events: none; /* allows page clicks except buttons */
}




/* Buttons positioned individually */
.floating-buttons .call-btn,
.floating-buttons .whatsapp-btn {
  position: absolute;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  font-size: 24px;
  pointer-events: all;
  animation: pulse 2s infinite ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

/* Left and right placement */
.floating-buttons .call-btn {
  left: 20px;
  background-color: #0d6efd;
  animation-delay: 0.3s; /* slight delay difference */
}
.floating-buttons .whatsapp-btn {
  right: 20px;
  background-color: #25d366;
}

/* Hover effects */
.floating-buttons .call-btn:hover,
.floating-buttons .whatsapp-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  }
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .floating-buttons .call-btn,
  .floating-buttons .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}
