/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin-top: 0;
}


/*


*/

/*///////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////*/
/* WhatsApp Floating Button */

/* html, body {
  transform: none !important;
} */


/* .whatsapp-float { */
    /* position: fixed; */
    /* inset: auto 24px 24px auto; bottom-right */
    /* position: sticky; */
    /* position: absolute; */

    /* width: 60px;
    height: 60px;
    border-radius: 50px;
    
    background-color: #25d366;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    text-decoration: none;

    z-index: 2147483647;
    pointer-events: auto;

    will-change: transform; */



    
    /* bottom: 60px; */
    /* right: 30px; */

    
    /* text-align: center; */
    
    
    /* transition: all 0.3s ease-in-out; */
/* } */

/* .whatsapp-float:hover { */
    /* background-color: #128C7E; */
    /* background-color: #25d366;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    color: white;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover i {
    transform: rotate(360deg);
} */

/* Pulse Animation */
/* .whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
} */

/* ============================================
   RESPONSIVE BREAKPOINTS FOR ALL DEVICES
   ============================================ */

/* Extra Small Mobile (320px - 374px) */
/* @media (max-width: 374px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
} */

/* Small Mobile (375px - 479px) */
/* @media (min-width: 375px) and (max-width: 479px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 25px;
        bottom: 18px;
        right: 18px;
    }
} */

/* Medium Mobile (480px - 575px) */
/* @media (min-width: 480px) and (max-width: 575px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
} */

/* Large Mobile / Phablet (576px - 767px) */
/* @media (min-width: 576px) and (max-width: 767px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 27px;
        bottom: 22px;
        right: 22px;
    }
} */

/* Tablet Portrait (768px - 991px) */
/* @media (min-width: 768px) and (max-width: 991px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 25px;
        right: 25px;
    }
} */

/* Tablet Landscape / Small Laptop (992px - 1199px) */
/* @media (min-width: 992px) and (max-width: 1199px) {
    .whatsapp-float {
        width: 58px;
        height: 58px;
        font-size: 29px;
        bottom: 28px;
        right: 28px;
    }
} */

/* Desktop / Laptop (1200px - 1439px) */
/* @media (min-width: 1200px) and (max-width: 1439px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 30px;
        right: 30px;
    }
} */

/* Large Desktop (1440px - 1919px) */
/* @media (min-width: 1440px) and (max-width: 1919px) {
    .whatsapp-float {
        width: 65px;
        height: 65px;
        font-size: 32px;
        bottom: 35px;
        right: 35px;
    }
} */

/* Extra Large Desktop / 4K (1920px and above) */
/* @media (min-width: 1920px) {
    .whatsapp-float {
        width: 70px;
        height: 70px;
        font-size: 35px;
        bottom: 40px;
        right: 40px;
    }
} */

/* Ensure button stays visible even when scrolling on mobile */
/* @media (max-width: 991px) {
    .whatsapp-float {
        position: fixed !important; /* Force fixed position on mobile 
        
        }
} */
    