/*=========================================================
STATISTICS + CONTACT SECTION
=========================================================*/

.statistics-contact-section{
    padding:80px 0;
    background:#f8f9fa;
    position:relative;
    overflow:hidden;
}

.statistics-contact-section .container{
    position:relative;
    z-index:2;
}

/*=========================================================
SECTION HEADING
=========================================================*/

.section-heading{
    max-width:760px;
    margin:0 auto 55px;
}

.section-badge{
    display:inline-block;
    background:#e8f7ef;
    color:#198754;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
    padding:7px 18px;
    border-radius:50px;
    margin-bottom:16px;
}

.section-heading h2{
    font-size:38px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.section-heading p{
    font-size:16px;
    line-height:1.8;
    color:#6c757d;
    margin:0;
}

/*=========================================================
STATISTICS CARD
=========================================================*/

.stat-card{
    position:relative;
    background:#ffffff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    border:1px solid #ececec;
    transition:.35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    height:100%;
    overflow:hidden;
}

.stat-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#198754;
    transform:scaleX(0);
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-8px);
    border-color:#198754;
    box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.stat-card:hover::before{
    transform:scaleX(1);
}

/*=========================================================
ICON
=========================================================*/

.stat-icon{
    width:78px;
    height:78px;
    margin:0 auto 22px;
    border-radius:50%;
    background:#e8f7ef;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.stat-icon i{
    font-size:34px;
    color:#198754;
    transition:.35s;
}

.stat-card:hover .stat-icon{
    background:#198754;
}

.stat-card:hover .stat-icon i{
    color:#ffffff;
}

/*=========================================================
COUNTER
=========================================================*/

.stat-card h2{
    display:inline-block;
    margin:0;
    font-size:42px;
    font-weight:700;
    color:#198754;
    line-height:1;
}

.counter-plus{
    display:inline-block;
    font-size:32px;
    font-weight:700;
    color:#198754;
    margin-left:2px;
}

.stat-card h5{
    margin:18px 0 12px;
    font-size:20px;
    font-weight:600;
    color:#222;
}

.stat-card p{
    margin:0;
    font-size:15px;
    color:#6c757d;
    line-height:1.8;
}

/*=========================================================
CONTACT BOXES
=========================================================*/

.contact-box,
.map-box{
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.contact-heading{
    margin-bottom:25px;
}

.contact-heading span{
    display:inline-block;
    background:#e8f7ef;
    color:#198754;
    padding:6px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.contact-heading h3{
    font-size:30px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.contact-heading p{
    color:#6c757d;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

/*=========================================================
CONTACT FORM
=========================================================*/

.contact-form label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
    font-size:14px;
}

.contact-form .form-control{
    height:50px;
    border:1px solid #dee2e6;
    border-radius:10px;
    padding:10px 15px;
    font-size:15px;
    transition:.3s;
    box-shadow:none;
}

.contact-form textarea.form-control{
    height:140px;
    resize:none;
    padding-top:14px;
}

.contact-form .form-control:focus{
    border-color:#198754;
    box-shadow:0 0 0 .2rem rgba(25,135,84,.15);
}

.contact-btn{
    border:none;
    background:#198754;
    color:#fff;
    font-weight:600;
    font-size:15px;
    padding:14px 30px;
    border-radius:10px;
    transition:.3s;
}

.contact-btn:hover{
    background:#157347;
    transform:translateY(-2px);
}

/*=========================================================
CONTACT INFO
=========================================================*/

.contact-info-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:30px;
}

.contact-info-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.contact-info-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#e8f7ef;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:.3s;
}

.contact-info-icon i{
    color:#198754;
    font-size:22px;
    transition:.3s;
}

.contact-info-item:hover .contact-info-icon{
    background:#198754;
}

.contact-info-item:hover .contact-info-icon i{
    color:#fff;
}

.contact-info-item h5{
    margin:0 0 6px;
    font-size:17px;
    font-weight:600;
    color:#222;
}

.contact-info-item p{
    margin:0;
    color:#6c757d;
    font-size:14px;
    line-height:1.7;
}

/*=========================================================
GOOGLE MAP
=========================================================*/

.map-wrapper{
    overflow:hidden;
    border-radius:14px;
    border:1px solid #dee2e6;
}

.map-wrapper iframe{
    width:100%;
    height:320px;
    border:0;
    display:block;
}

/*=========================================================
RESPONSIVE
=========================================================*/

@media (max-width:991px){

    .statistics-contact-section{
        padding:70px 0;
    }

    .section-heading{
        margin-bottom:45px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .contact-box,
    .map-box{
        padding:28px;
    }

}

@media (max-width:767px){

    .statistics-contact-section{
        padding:55px 0;
    }

    .section-heading h2{
        font-size:26px;
    }

    .section-heading p{
        font-size:14px;
    }

    .stat-card{
        padding:28px 20px;
    }

    .stat-card h2{
        font-size:34px;
    }

    .counter-plus{
        font-size:28px;
    }

    .contact-heading h3{
        font-size:24px;
    }

    .contact-box,
    .map-box{
        padding:22px;
    }

    .map-wrapper iframe{
        height:260px;
    }

}

@media (max-width:575px){

    .statistics-contact-section{
        padding:45px 0;
    }

    .section-heading h2{
        font-size:22px;
    }

    .stat-card{
        padding:24px 18px;
    }

    .stat-icon{
        width:65px;
        height:65px;
    }

    .stat-icon i{
        font-size:28px;
    }

    .stat-card h2{
        font-size:30px;
    }

    .stat-card h5{
        font-size:18px;
    }

    .contact-box,
    .map-box{
        padding:18px;
    }

    .contact-btn{
        width:100%;
    }

    .contact-info-icon{
        width:48px;
        height:48px;
    }

    .contact-info-icon i{
        font-size:20px;
    }

    .map-wrapper iframe{
        height:220px;
    }

}