.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.cta-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);   
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  background-color: #25D366; /* WhatsApp green */
}

.call-btn {
  background-color: #007bff; /* Phone blue */
}
