/*==================================================
                PROCESS SECTION
==================================================*/

.process-section{
    padding:100px 0;
    background:#fff;
}

.process-heading{
    text-align:center;
    margin-bottom:70px;
}

.process-heading small{
    display:inline-block;
    font-size:15px;
    font-weight:600;
    color:#2563eb;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.process-heading h2{
    font-size:44px;
    font-weight:700;
    color:#222;
}

.process-grid{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
}

.process-item{
    text-align:center;
    transition:.35s;
}

.process-item:hover{
    transform:translateY(-8px);
}

.process-icon{
    width:150px;
    height:150px;
    margin:0 auto 20px;

    border-radius:50%;
    border:5px solid #2563eb;
    background:#f4f8ff;

    display:flex;
    justify-content:center;
    align-items:center;
}

.process-icon img{
    width:75%;
    object-fit:contain;
}

.step-no{
    display:block;
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.red{color:#ef4444;}
.green{color:#22c55e;}
.yellow{color:#f59e0b;}
.purple{color:#7c3aed;}
.pink{color:#ec4899;}

.process-item h4{
    font-size:20px;
    color:#222;
    margin-bottom:12px;
}

.process-item p{
    color:#666;
    font-size:15px;
    line-height:1.8;
}


/*==================================================
                CASE STUDY
==================================================*/

.case-study-new{
    width:90%;
    max-width:1400px;
    margin:100px auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* Left */

.case-left{
    width:100%;
}

.india-map-wrapper{
    width:100%;
}

#indiaMap{
    width:100%;
    height:500px;
    border-radius:18px;
    overflow:hidden;
}

.tooltip{
    position:absolute;
    background:#111;
    color:#fff;
    padding:6px 10px;
    border-radius:6px;
    font-size:14px;
    opacity:0;
    pointer-events:none;
}

.cartoon-wrapper{
    text-align:center;
    margin-top:25px;
}

.cartoon-img{
    width:320px;
    max-width:100%;
}

/* Right */

.case-label{
    display:block;
    color:#2563eb;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:12px;
}

.cs-title{
    font-size:44px;
    color:#222;
    margin-bottom:20px;
}

.cs-desc{
    color:#666;
    line-height:1.9;
    margin-bottom:40px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.stat-box{
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.stat-box h3{
    font-size:34px;
    color:#2563eb;
    margin-bottom:10px;
}

.stat-box h3 span{
    display:block;
    color:#222;
    font-size:18px;
    margin-top:8px;
    font-weight:600;
}

.stat-box p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1200px){

.process-grid{
    grid-template-columns:repeat(3,1fr);
}

.case-study-new{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.process-grid{
    grid-template-columns:repeat(2,1fr);
}

.process-heading h2{
    font-size:34px;
}

.process-icon{
    width:120px;
    height:120px;
}

.process-icon img{
    width:65%;
}

#indiaMap{
    height:350px;
}

.cartoon-img{
    width:220px;
}

.cs-title{
    font-size:34px;
}

.stats-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:576px){

.process-grid{
    grid-template-columns:1fr;
}

.process-item{
    max-width:320px;
    margin:auto;
}

.process-heading h2{
    font-size:30px;
}

.process-icon{
    width:100px;
    height:100px;
}

.process-icon img{
    width:60%;
}

.step-no{
    font-size:20px;
}

.process-item h4{
    font-size:20px;
}

.process-item p{
    font-size:15px;
}

#indiaMap{
    height:280px;
}

.cartoon-img{
    width:170px;
}

.cs-title{
    font-size:30px;
}

.stat-box{
    padding:22px;
}

.stat-box h3{
    font-size:28px;
}

}
/*=========================================
            PAGE BANNER
=========================================*/

.page-banner{
    padding:180px 0 100px;
    background:linear-gradient(135deg,#2563eb,#4f8df7);
    color:#fff;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.page-banner .container{
    max-width:1100px;
    margin:0 auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

.page-banner span{
    display:inline-block;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.page-banner h1{
    font-size:56px;
    font-weight:700;
    margin-bottom:20px;
}

.page-banner p{
    max-width:750px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}
#indiaMap{
    width:100%;
    height:500px;
    border-radius:15px;
    position:relative;
    z-index:1;
}