/* Pulse Animation */
@keyframes pulseBtn {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* Apply animation */
.whatsapp-float,
.call-float {
    animation: pulseBtn 2s infinite;
}


/* Floating WhatsApp Button (Top Right) */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 9vh;      /* 👈 top position */
    left: 20px;    /* 👈 right side */
    background-color: #25d366;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    cursor: pointer;
}

.whatsapp-icon {
    width: 32px;
    margin-top: 11px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

/* Floating Call Button (Top Left) */
.call-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 21vh;     /* adjust position above WhatsApp */
    left: 20px;       /* same left side */
    background-color: #f97f05; /* Orange – perfect contrast */
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    cursor: pointer;
}

.call-icon {
    width: 30px;
    margin-top: 12px;
}

.call-float:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

/* Mobile fade + slide animation */
@media (max-width: 768px) {
    .call-float {
    bottom: 18vh;
    }
    .floating-btn {
        opacity: 0;
        transform: translateX(-40px);
        transition: all 0.5s ease;
    }

    .floating-btn.visible {
        opacity: 1;
        transform: translateX(0);
    }

}


/* contact page css */
  .custom a{
    color: #f37a01;
    }
        .custom a:hover{
    color: #4ebb6bff;
    }
.icon-boxs {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f37a01;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-title {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.contact-text {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

.icon-boxs  i {
    font-size: 22px !important;
}

/*busy pricing plan css */
        .pricing-toggle-container {
            display: flex;
            justify-content: center;
        }

        .pricing-switch {
            background: #FFF0E0;
            padding: 10px;
            border-radius: 10px;
            display: flex;
            gap: 5px;
        }

        .switch-btn {
            border: none;
            padding: 10px 25px;
            border-radius: 10px;
            font-size: 16px;
            cursor: pointer;
            background: transparent;
            color: #545759ff;
            font-weight: 500;
            transition: 0.3s;
        }

        .switch-btn.active {
            background: #fd7a1c; /* BUSY blue */
            color: white;
        }
        .user-toggle-label {
            font-size: 18px;
            color: #0d1b4c;
            font-weight: 500;
        }

        /* Main switch container */
        .switch {
            position: relative;
            display: inline-block;
            width: 70px;
            height: 32px;
        }

        /* HIDE THE CHECKBOX (only slider visible) */
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        /* Background track */
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #d9d4d1ff;
            transition: .4s;
            border-radius: 34px;
        }

        /* The round knob */
        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 3px;
            background-color: white;
            border-radius: 50%;
            transition: .4s;
        }

        /* When toggled ON */
        input:checked + .slider {
            background-color: #fd7a1c;
        }

        input:checked + .slider:before {
            transform: translateX(35px);
        }
        .price-suffix {
            font-size: 16px;
            color: #555;
            font-weight: 400;
        }
        /* -----------------------------------------
   MOBILE RESPONSIVE STYLING
------------------------------------------ */
@media (max-width: 768px) {

    /* Stack items vertically */
    .d-flex.justify-content-center.align-items-center.gap-5.my-5 {
        flex-direction: column !important;
        gap: 20px !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    /* Make switch group center */
    .pricing-toggle-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Make the pricing switch full responsive */
    .pricing-switch {
        padding: 8px 12px;
        width: 95%;
        max-width: 320px;
        justify-content: space-between;
    }

    .switch-btn {
        flex: 1;
        text-align: center;
        padding: 10px;
        font-size: 15px;
    }

    /* Single/Multi user group alignment */
    .user-toggle-wrapper {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .user-toggle-label {
        font-size: 16px;
    }

    /* Resize toggle for mobile */
    .switch {
        width: 60px;
        height: 28px;
    }

    .slider:before {
        height: 22px;
        width: 22px;
        left: 3px;
        bottom: 3px;
    }

    input:checked + .slider:before {
        transform: translateX(30px);
    }
}