 /*Whats app float button css*/
 .whatsapp-float {
     position: fixed;
     width: 60px;
     height: 60px;
     bottom: 70px;
     right: 10px;
     background-color: #25d366;
     color: #fff;
     border-radius: 50%;
     text-align: center;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
     z-index: 99999;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

     .whatsapp-float img {
         width: 35px;
         height: 35px;
     }

     .whatsapp-float:hover {
         transform: scale(1.12);
         box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
     }
   /*Whats app float button css end*/