.about_premium{
    background:#fff;
    padding:100px 0;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.tag_line{
    color: #5b7cff;
    font-size: 20px;
    /* letter-spacing: 3px; */
    font-weight: 600;
}

.premium_title{
    font-size:34px;
    font-weight:700;
    line-height:1.2;
    margin:10px 0;
}

.premium_text{
   color: #000000;
    line-height: 1.9;
    font-size: 18px;
    margin-bottom: 35px;
}

.feature_card{
    background:#162360;
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.12);
    padding:22px;
    border-radius:20px;
    margin-bottom:18px;
    transition:.4s;
}

.feature_card:hover{
    transform:translateY(-6px);
}

.feature_card h5{
    font-size:22px;
    margin-bottom:10px;
    color: #fff;
}

.feature_card p{
    margin:0;
    color:#cbd5e1;
}

.counter_area{
    display:flex;
    gap:50px;
    margin:25px 0;
    padding-left: 15px;
}

.counter_area h3{
    font-size: 32px;
    font-weight: 700;
    color: #3763f8;
    margin-bottom: 0px;
}

.counter_area span{
   color: #646464;
}

.premium_btn{
    padding: 10px 30px;
    background: linear-gradient(90deg, #4f46e5, #ed3a4f);
    color:#fff;
    border-radius:50px;
    display:inline-block;
    text-decoration:none;
}
.premium_btn:hover{
    padding: 10px 30px;
    background: linear-gradient(90deg, #ed3a4f, #4f46e5);
    color:#fff;
    border-radius:50px;
    display:inline-block;
    text-decoration:none;
}

.office_img img{
    width:100%;
    border-radius:30px;
    position:relative;
    z-index:2;
}

.ai_circle{
    width:380px;
    height:380px;
    position:absolute;
    left:-90px;
    top:140px;
    border-radius:50%;
    overflow:hidden;
    z-index:3;
    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.ai_circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.blur_shape{
    position:absolute;
    width:400px;
    height:400px;
    background:#4f46e5;
    filter:blur(180px);
    right:-100px;
    top:100px;
    opacity:.35;
}

@media(max-width:991px){

.premium_text {
    color: #000000;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 35px;
}


.premium_title{
    font-size:20px;
}

.counter_area{
    gap:25px;
}

.ai_circle{
    width:250px;
    height:250px;
    left:0;
    top:-80px;
    position:relative;
    margin:auto;
    display: none;
}

}


/*------------------------------------------------*/


.service-box-1{
    overflow:hidden;
}

.service-box-1 img{
    width:100%;
    transition:transform 0.7s ease;
}

.service-box-1:hover img{
    transform:scale(1.15);
}

/*------------------------------------------*/

.toogleform{
   padding: 0px 0px; 
}
.toogleform input{
    height: 38px;
    border-radius: 4px;
}
.toogleform input::placeholder{
    font-size: 16px;
}
.toogleform input:focus{
    outline: none !important;
    box-shadow: none;
}
.toogleform textarea{
    outline: none !important;
    box-shadow: none;
    resize: none;
}
.toogleform textarea:focus{
    outline: none !important;
    box-shadow: none;
    resize: none;
}
.toogleform label{
    margin-bottom: 2px;
}


.open-text img {
    width: 26px;
}


.enquiry-wrapper{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;
}

/* Tooltip */

.chat-tooltip{
    position:absolute;
    right:76px;
    bottom:10px;
    background:#fff;
    width:220px;
    border-radius:14px;
    padding:10px 18px;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
    transition:.3s;
}

.chat-tooltip h5{
    margin:0;
    font-size:18px;
    color:#333;
    font-weight:600;
}

.chat-tooltip p{
    margin:0px 0 0;
    color:#777;
    font-size:15px;
    padding-left: 30px;
    line-height: 20px;
}

/* Arrow */

.chat-tooltip:after{
    content:"";
    position:absolute;

    right:-10px;
    top:50%;

    transform:translateY(-50%);

    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
    border-left:10px solid #fff;
}

/* Floating Button */

.toggle-btn{
    width:56px;
    height:56px;
    border:none;
    border-radius:50%;
    background:#3d5afe;
    color:#fff;
    font-size:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    cursor:pointer;
}

.close-text{
    display:none;
}

.toggle-btn.active .open-text{
    display:none;
}

.toggle-btn.active .close-text{
    display:block;
    font-size:34px;
}

/* Enquiry Box */

.enquiry-box{
    position:absolute;
    right:0;
    bottom:85px;
    width:340px;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.2);
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s;
}

.enquiry-box.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.form-header{
    background:#3d5afe;
    color:#fff;
    padding:15px 20px;
}

.form-header h5{
    margin:0;
    color:#fff;
    font-size: 16px;
}

/* Form */

.form-body{
    padding:20px;
}

.form-control{
    border-radius:10px;
    height:48px;
}

textarea.form-control{
    height:auto;
    resize:none;
}

.submit-btn{

    width:100%;

    border:none;

    background:#b3bdfd;

    color:#fff;

    padding:12px;

    border-radius:10px;

    font-weight:600;
}

/* Mobile */

@media(max-width:767px){

.enquiry-box{
    width:300px;
}

.chat-tooltip{
    width:210px;
    right:75px;
}

}

.online-status .text-onlineww{
   font-size: 17px;
    font-weight: 700;
    color: #000;
    padding-left: 6px;
    line-height: 26px;
}
.online-status{
    display:flex;
    align-items:center;
    gap:10px;
}

.online-dot{
    width:12px;
    height:12px;
    background:#20c863;
    border-radius:50%;
    position:relative;
}

/* Pulse Animation */

.online-dot::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;

    width:12px;
    height:12px;

    background:#20c863;
    border-radius:50%;

    transform:translate(-50%,-50%);
    animation:pulse-online 1.8s infinite;
}

@keyframes pulse-online{

    0%{
        transform:translate(-50%,-50%) scale(1);
        opacity:.8;
    }

    100%{
        transform:translate(-50%,-50%) scale(3);
        opacity:0;
    }

}