/* ================= FLOATING WHATSAPP BUTTON ================= */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    color: #ffffff;
    transform: scale(1.08);
}

/* WhatsApp Icon */
.whatsapp-float svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* Text */
.whatsapp-text {
    display: inline-block;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 767px) {
    .whatsapp-text {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }
}




/* ================= FLOATING CALL BUTTON ================= */

.call-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2563eb;;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.call-float:hover {
    background: #2563eb;;
    color: #ffffff;
    transform: scale(1.08);
}

/* Phone Icon */
.call-float svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

/* Text */
.call-text {
    display: inline-block;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 767px) {
    .call-text {
        display: none;
    }

    .call-float {
        padding: 14px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }
}