.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  margin-bottom: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 60px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}

/* call  */

/* Floating Call Button */
.call-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: blue;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-bottom: 60px;
  text-align: center;
  font-size: 26px;
  line-height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.call-float:hover {
  background-color: white;
  transform: scale(1.1);
}

