.elementor-571 .elementor-element.elementor-element-6a09a328{--display:flex;}.elementor-571 .elementor-element.elementor-element-6b9b372c .e-contact-buttons{--e-contact-button-chat-button-animation-delay:1ms;--e-contact-buttons-button-icon-hover:var( --e-global-color-0c15d97 );--e-contact-buttons-button-bg-hover:#25D366;}.elementor-571 .elementor-element.elementor-element-6b9b372c .e-contact-buttons__chat-button-shadow{box-shadow:0px 0px 13px 12px #25D366;}/* Start custom CSS for contact-buttons-var-5, class: .elementor-element-6b9b372c *//* WhatsApp Floating Button Container */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 70px;
      height: 0px;
      border-radius: 50%;
      background-color: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: white;
      z-index: 9999;
      
      /* Green glow effect */
      box-shadow: 0 0 40px 10px rgba(37, 211, 102, 0.7);

      /* Pulse animation */
      animation: pulse 2s infinite ease-in-out;
    }
    
    /* WhatsApp Icon SVG */
    .whatsapp-float svg {
      width: 36px;
      height: 36px;
      fill: white;
    }

    /* Pulse animation keyframes */
    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px 10px rgba(37, 211, 102, 0.7);
      }
      50% {
        transform: scale(1.15);
        box-shadow: 0 0 60px 15px rgba(37, 211, 102, 0.9);
      }
    }/* End custom CSS */