/*==========================================================
    VARTIKA INDIA SERVICES
    ABOUT PAGE
==========================================================*/

/*==============================
PAGE BANNER
==============================*/

.page-banner{

    padding:140px 0 90px;

    background:linear-gradient(135deg,#0f4cdd,#2563eb,#3b82f6);

    color:#ffffff;

    position:relative;

    overflow:hidden;

}

.page-banner::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-250px;

    right:-200px;

}

.page-banner::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    left:-100px;

    bottom:-120px;

}

.page-banner .container{

    position:relative;

    z-index:2;

}

.page-banner h1{

    color:#ffffff;

    font-size:56px;

    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:#ffffff;

    text-decoration:none;

}

.breadcrumb-item.active{

    color:#dbeafe;

}

.breadcrumb-item+.breadcrumb-item::before{

    color:#ffffff;

}

/*==============================
ABOUT COMPANY
==============================*/

.about-company{

    padding:100px 0;

    background:#f8fafc;

}

.about-company img{

    width:100%;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.section-badge{

    display:inline-block;

    padding:10px 20px;

    background:#eaf2ff;

    color:#2563eb;

    border-radius:50px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.about-company h2{

    font-size:42px;

    font-weight:800;

    margin-bottom:25px;

    color:#1f2937;

}

.about-company p{

    color:#6b7280;

    line-height:1.9;

    margin-bottom:20px;

}

.mini-card{

    background:#ffffff;

    border-radius:18px;

    padding:25px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.mini-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(37,99,235,.12);

}

.mini-card h3{

    color:#2563eb;

    font-size:36px;

    font-weight:700;

    margin-bottom:10px;

}

.mini-card p{

    margin:0;

    color:#666;

}

/*==============================
MISSION
==============================*/

.mission-section{

    padding:100px 0;

    background:#ffffff;

}

.mission-card{

    background:#f8fafc;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    height:100%;

    transition:.35s;

    border:1px solid #edf2f7;

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(37,99,235,.12);

}

.mission-card i{

    width:90px;

    height:90px;

    background:#2563eb;

    color:#ffffff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin:0 auto 30px;

}

.mission-card h3{

    margin-bottom:20px;

    font-size:30px;

}

.mission-card p{

    color:#666;

    line-height:1.8;

}

/*==============================
CTA
==============================*/

.service-cta{

    padding:100px 0;

    background:#f8fafc;

}

.cta-box{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    border-radius:30px;

    text-align:center;

    color:#ffffff;

    padding:70px;

}

.cta-box h2{

    color:#ffffff;

    font-size:42px;

    font-weight:800;

    margin-bottom:20px;

}

.cta-box p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    margin-bottom:35px;

}

.cta-box .btn{

    background:#ffffff;

    color:#2563eb;

    border:none;

    padding:16px 40px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.cta-box .btn:hover{

    background:#f3f4f6;

    color:#1d4ed8;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1200px){

    .page-banner h1{

        font-size:46px;

    }

}

@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;

    }

    .about-company{

        text-align:center;

    }

    .about-company img{

        margin-bottom:40px;

    }

    .cta-box{

        padding:55px 35px;

    }

}

@media(max-width:768px){

    .page-banner h1{

        font-size:34px;

    }

    .about-company h2{

        font-size:32px;

    }

    .mission-card{

        padding:35px 25px;

    }

    .cta-box h2{

        font-size:32px;

    }

}

@media(max-width:576px){

    .page-banner{

        padding:100px 0 60px;

    }

    .mini-card{

        margin-bottom:20px;

    }

    .cta-box{

        padding:40px 25px;

    }

    .cta-box .btn{

        width:100%;

    }

}
/*=================================
SCROLL ANIMATION
=================================*/

.hidden{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}