.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 999;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}
.whatsapp-float img {
  width: 50px;
  height: 50px;
  margin-top: 0px;
  margin-left: 1px;
}
.phone-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #00A8E2;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}
.phone-float img {
  width: 50px;
  height: 50px;
  margin-top: 0px;
  margin-left: 0px;
}
.pulse {
  animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
  0% {
   box-shadow: 0 0 0 0px #25d36657; 
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

