.floating-buttons {
  position: fixed;
  bottom: 40%;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}



.floating-pop-up {
  position: fixed;
  bottom: 1%;
  right: 5px;
  width: 250px;
  height: 250px;
  
}

.floating-btn-call {
  position: fixed;
  bottom: 50%;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-btn-whatsapp {
  background-color: #25d366; /* WhatsApp green */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.floating-btn-whatsapp:hover {
  transform: scale(1.1);
}

.floating-btn-call:hover {
  transform: scale(1.1);
}
