html,
body{
    overflow-x: hidden;
}
.conference-header {
  background: #18864a;
  padding: 70px 0;
  color: #fff;
}
.text-center {
  text-align: center !important;
}

body{

font-family: 'Poppins',sans-serif;

background:#fff;

color:#555;

}

/*=====================*/

.overview-section{

padding:80px 0;

}

.section-title{

font-size:38px;

font-weight:700;

color:#217a37;

margin-bottom:25px;

}

.overview-section p{

line-height:2;

font-size:16px;

}

/*====================*/

.counter-box{

background:#eef6e8;

padding:35px 20px;

border-radius:15px;

text-align:center;

transition:.4s;

}

.counter-box:hover{

transform:translateY(-5px);

box-shadow:0 12px 25px rgba(0,0,0,.08);

}

.counter-box i{

font-size:28px;

color:#2f8b46;

margin-bottom:15px;

}

.counter-box h2{

font-size:42px;

font-weight:700;

color:#111;

}

.counter-box p{

margin:0;

font-size:14px;

text-transform:uppercase;

letter-spacing:1px;

color:#2f8b46;

font-weight:600;

}

/*====================*/

.objective-section{

background:#f5f9ef;

padding:90px 0;

}

.objective-title{

font-size:42px;

font-weight:700;

color:#23773a;

}

.underline{

width:80px;

height:4px;

background:#c4d600;

margin:15px auto 50px;

border-radius:10px;

}

/*====================*/

.objective-card{

background:#fff;

padding:25px;

border-radius:10px;

display:flex;

gap:15px;

align-items:flex-start;

height:100%;

box-shadow:0 3px 10px rgba(0,0,0,.06);

transition:.3s;

}

.objective-card:hover{

transform:translateY(-5px);

}

.objective-card i{

width:25px;

height:25px;

background:#eef6e8;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:12px;

color:#3aa44d;

}

.objective-card span{

font-size:15px;

line-height:1.8;

font-weight:500;

color:#444;

}

/*====================*/

@media(max-width:992px){

.section-title{

text-align:center;

}

.counter-box{

margin-top:20px;

}

}
/******program***/
.programs-section{
    background:#f8fbf5;
}

.section-title{
    color:#1f7a3d;
    font-size:38px;
    font-weight:700;
}

.program-card{
    background:#fff;
    padding:5px 30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    border-top:4px solid #198754;
}

.program-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.icon-box{
    width:50px;
    height:50px;
    background:#e8f5e9;
    color:#198754;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
   /* margin-bottom:20px;*/
}

.program-card h4{
    font-weight:500;
    color:#198754;
   /* margin-bottom:20px;*/
}

.program-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.program-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    line-height:1.6;
}

.program-card ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#28a745;
    font-weight:bold;
}