
.fixed-contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
h5{color:white}

.fixed-contact-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.call-btn {
  background-color: #28a745; /* green */
}

.call-btn:hover {
  background-color: #218838;
}

.whatsapp-btn {
  background-color: #25d366; /* whatsapp green */
}

.whatsapp-btn:hover {
  background-color: #1ebe57;
}