/*==========================================================
    VARTIKA INDIA SERVICES
    SERVICES PAGE
==========================================================*/

/*==============================
PAGE HEADER
==============================*/

.page-banner{

    padding:140px 0 90px;

    background:linear-gradient(135deg,#0f4cdd,#2563eb,#3b82f6);

    color:#fff;

    position:relative;

    overflow:hidden;

}

.page-banner::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-280px;

    right:-220px;

}

.page-banner::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    bottom:-140px;

    left:-80px;

}

.page-banner .container{

    position:relative;

    z-index:2;

}

.page-banner h1{

    color:#fff;

    font-size:58px;

    font-weight:800;

    margin-bottom:20px;

}

.page-banner p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.8;

    max-width:700px;

}

.breadcrumb{

    background:none;

    margin:0;

}

.breadcrumb a{

    color:#fff;

    text-decoration:none;

}

.breadcrumb-item.active{

    color:#dbeafe;

}

.breadcrumb-item+.breadcrumb-item::before{

    color:#fff;

}

/*==============================
SERVICES
==============================*/

.services-section{

    padding:100px 0;

    background:#f5f8fd;

}

.service-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    height:100%;

    border:1px solid #edf1f7;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    display:flex;

    flex-direction:column;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(37,99,235,.15);

}

.service-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:#eff6ff;

    color:#2563eb;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:25px;

    transition:.35s;

}

.service-card:hover .service-icon{

    background:#2563eb;

    color:#fff;

    transform:rotate(8deg);

}

.service-card h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

    color:#1f2937;

}

.service-card p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:30px;

    flex:1;

}

/*==============================
BUTTON
==============================*/

.service-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    width:100%;

    padding:14px;

    border-radius:12px;

    background:#2563eb;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.service-btn:hover{

    background:#1d4ed8;

    color:#fff;

    gap:16px;

}

.service-btn i{

    transition:.35s;

}

/*==============================
CTA
==============================*/

.service-cta{

    padding:100px 0;

    background:#fff;

}

.cta-box{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:#fff;

    border-radius:28px;

    text-align:center;

    padding:70px;

}

.cta-box h2{

    color:#fff;

    font-size:44px;

    font-weight:700;

    margin-bottom:20px;

}

.cta-box p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    margin-bottom:35px;

}

.cta-box .btn{

    background:#fff;

    color:#2563eb;

    border:none;

    border-radius:50px;

    padding:16px 40px;

    font-weight:700;

}

.cta-box .btn:hover{

    background:#f8fafc;

    color:#1d4ed8;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1200px){

    .page-banner h1{

        font-size:48px;

    }

}

@media(max-width:992px){

    .page-banner{

        text-align:center;

        padding:120px 0 80px;

    }

    .page-banner h1{

        font-size:40px;

    }

    .page-banner p{

        margin:auto;

    }

    .breadcrumb{

        justify-content:center!important;

        margin-top:25px;

    }

    .cta-box{

        padding:50px 35px;

    }

}

@media(max-width:768px){

    .services-section{

        padding:70px 0;

    }

    .page-banner h1{

        font-size:34px;

    }

    .page-banner p{

        font-size:16px;

    }

    .service-card{

        padding:28px;

    }

    .service-card h4{

        font-size:24px;

    }

    .cta-box h2{

        font-size:32px;

    }

}

@media(max-width:576px){

    .page-banner{

        padding:100px 0 60px;

    }

    .service-card{

        padding:24px;

    }

    .service-icon{

        width:65px;

        height:65px;

        font-size:26px;

    }

    .cta-box{

        padding:40px 25px;

    }

    .cta-box .btn{

        width:100%;

    }

}