/* Positioning the Call Button above WhatsApp */
.call-action-wrapper {
    position: fixed;
    bottom: 195px;
    right: 20px;
    z-index: 1000;
    display: none;
    /* Hidden by default */
}

.call-action-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
    font-size: 24px;
    text-decoration: none;
    position: relative;
}

.call-action-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: ripple-animation 1.5s infinite;
    box-shadow: 0 0 0 6px rgba(0, 123, 255, 0.3);
}

.call-action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Ripple animation */
@keyframes ripple-animation {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.call-action-btn,
.call-action-btn:visited,
.call-action-btn:active {
    color: white !important;
    background-color: #007bff !important;
}

/* Show only on mobile devices */
@media (max-width: 767px) {
    .call-action-wrapper {
        display: block;
    }
}

/* Show only on mobile and tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .call-action-wrapper {
        display: block;
    }
}


/* ===========================================
   ZOHO SALESIQ POSITION (Mobile & Tablet)
   =========================================== */

@media (max-width:1024px){

    /* Blue Chat Icon */
    #zsiq_float,
    .zsiq_float,
    .zsiq_cnt,
    .zsiq_theme1,
    [aria-label="Live chat widget"]{
        position: fixed !important;
        right: 20px !important;
        bottom: 35px !important;
        left: auto !important;
        transform: none !important;
        margin: 0 !important;
    }

    /* Tooltip */
    #zs-fl-tip,
    .zsiq-float-tooltip{
        right: 0 !important;
        bottom: 105px !important;
    }

}



