/*.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 10px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 999;
}
.whatsapp-float:hover{
    background-color: #1ebe5d;
    color: #fff;
}*/
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: pulse 2s infinite;
  transition: 0.3s ease-in-out;
}
.whatsapp-float img {
  width: 22px;
  height: 22px;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}
/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/* Mobile Responsive */
@media(max-width: 576px) {
  .whatsapp-text {
    display: none;
  }
  .whatsapp-float {
    padding: 12px;
    border-radius: 50%;
  }
}
.loader {
  position: relative;
  width: 100%;
  height: 4px;
  background: #2eca6a;
  z-index: 100000000;
}
.loader::before {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #052e5b;
  transform-origin: left;
  animation: animate 8s linear infinite;
}
@keyframes animate {
  0%, 20% {
    transform: scalex(0);
  }
  40% {
    transform: scaleX(1);
    transform-origin: left;
  }
  40.000001%, 60% {
    transform: scaleX(1);
    transform-origin: right;
  }
  80%, 100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
loader::after {
  content: ' ';
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  background: #0bec7c;
  border-radius: 50%;
  animation: animateDot 8s linear infinite;
}
@keyframes animateDot {
  0% {
    transform: translateY(-50%) scale(0);
  }
  5% {
    transform: translateY(-50%) scale(1);
  }
  15%, 20% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 4px #0bec7c22, 0 0 20px #0bec7c, 0 0 10px #0bec7c22, 0 0 40px 5px #0bec7c, 0 0 60px 10px #0bec7c;
  }
  40% {
    transform: translateY(-50%) scale(1) translateX(395px);
  }
  80% {
    transform: translateY(-50%) scale(1) translateX(395px);
    box-shadow: 0 0 0 4px #0bec7c22, 0 0 0 10px #0bec7c22, 0 0 20px #0bec7c, 0 0 40px 5px #0bec7c, 0 0 60px 10px #0bec7c;
  }
  95% {
    transform: translateY(-50%) scale(1) translateX(395px);
    box-shadow: none;
  }
  100% {
    transform: translateY(-50%) scale(0) translateX(395px);
  }
}