    /* styles for whatsapp chatbot  */
    .whatsapp-float {
    position: fixed;
    bottom: 18%;
    right: 2%;
    width: 60px;
    height: 60px;
    z-index: 10000;
    animation: pulse 2s infinite;
    }
    .whatsapp-float img {
    width: 100%;
    height: 100%;
    }
    @keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); }
    }
    .whatsapp-float:hover {
    animation: none;
    transform: scale(1.2);
    transition: transform 0.2s ease-in-out;
    }
    /* @media (max-width: 768px){
    body .whatsapp-float {
    position: fixed !important;    
    bottom: 10% !important;
    right: 6% !important;
    } */
    

/* styles for whatsapp chatbot ends  */
