/*====================================================
IMPACT STATISTICS
====================================================*/

.impact-section{
    padding:70px 0;
    background:#ffffff;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.impact-box{
    background:#ffffff;
    border-radius:15px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:all .35s ease;
    box-sizing:border-box;
}

.impact-box h2{
    font-size:45px;
    color:#056718;
    margin:0 0 10px;
    font-weight:700;
}

.impact-box p{
    margin:0;
    font-size:17px;
    color:#555;
    line-height:1.6;
}

.impact-box:hover{
    transform:translateY(-8px);
    border-bottom:4px solid #F7941D;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}


/*====================================================
ABOUT SECTION
====================================================*/

.about-section{
    padding:110px 0;
    background:#ffffff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image-wrapper {
    position:relative;
    border-radius:20px;
    overflow:hidden;
}

.about-image img,
.about-image-wrapper img{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
}

.experience-card{
    position:absolute;
    bottom:30px;
    right:-25px;
    background:#00843D;
    color:#ffffff;
    padding:25px 35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.18);
    border-bottom:4px solid #F7941D;
    z-index:2;
}

.experience-card h3{
    margin:0;
    font-size:42px;
    color:#ffffff;
    line-height:1;
}

.experience-card span{
    display:block;
    margin-top:8px;
    font-size:15px;
}

.about-content{
    max-width:650px;
}

.about-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.sub-line {
    width: 30px;
    height: 3px;
    background-color: #F7941D;
    border-radius: 2px;
}

.sub-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00843D;
}

.section-subtitle{
    display:inline-block;
    color:#F7941D;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:46px;
    line-height:1.25;
    color:#004B2D;
    margin:0 0 25px;
}

.about-content h2 span {
    color: #F7941D;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    color:#666666;
    margin-bottom:20px;
}

.about-lead-text {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-body-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* 2024 Transition Highlight Block */
.about-transition-box {
    display: flex;
    gap: 16px;
    background: #f8fafc;
    border-left: 4px solid #F7941D;
    padding: 20px 24px;
    border-radius: 0 14px 14px 0;
    margin-bottom: 30px;
}

.transition-icon {
    font-size: 24px;
    color: #F7941D;
    margin-top: 2px;
}

.transition-content h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: #004B2D;
    font-weight: 700;
}

.transition-content p {
    margin: 0;
    font-size: 15px;
    color: #444444;
    line-height: 1.6;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;
}

.feature{
    display:flex;
    align-items:center;
    gap:15px;
}

.feature span{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#00843D;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:bold;
    flex-shrink:0;
}

.feature p{
    margin:0;
    color:#333333;
    font-size:16px;
    font-weight:600;
    line-height:1.5;
}


/*====================================================
COMMUNITY PROGRAMMES
====================================================*/

.programs-section{
    padding:100px 0;
    background:#f8fafc;
}

.programs-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.program-card{
    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.program-card:hover{
    transform:translateY(-10px);
    border-bottom:4px solid #F7941D;
}

.program-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    background:#00843D;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
}

.program-card h3{
    font-size:24px;
    color:#056718;
    margin-bottom:15px;
}

.program-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.programs-button{
    text-align:center;
    margin-top:60px;
}

@media(max-width:992px){

.programs-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.programs-section{
    padding:70px 0;
}

.programs-grid{
    grid-template-columns:1fr;
}

.program-card{
    padding:30px 25px;
}

}


/*====================================================
FACILITIES SECTION
====================================================*/

.facilities-section{
    padding:110px 0;
    background:#f8fafc;
}

.section-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-header h2{
    font-size:46px;
    color:#004B2D;
    margin:20px 0;
}

.section-header p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.facilities-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.facility-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.facility-card:hover{
    transform:translateY(-10px);
}

.facility-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.facility-content{
    padding:30px;
}

.facility-content h3{
    color:#056718;
    font-size:24px;
    margin-bottom:15px;
}

.facility-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.facility-content a{
    color:#F7941D;
    font-weight:700;
    text-decoration:none;
}

.facility-content a:hover{
    color:#056718;
}

@media(max-width:1200px){

.facilities-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.facilities-section{
    padding:70px 0;
}

.section-header h2{
    font-size:34px;
}

.facilities-grid{
    grid-template-columns:1fr;
}

}


/*====================================================
REMOVE ASTRA DEFAULT FOOTER
====================================================*/

.site-footer,
.ast-footer-wrap,
.ast-builder-footer,
.ast-footer-overlay,
.ast-builder-grid-row-container,
.site-below-footer-wrap,
.ast-small-footer,
.ast-footer-copyright,
.ast-footer-html,
.footer-adv{
    display:none !important;
}


/*====================================================
TABLET
====================================================*/

@media (max-width:991px){

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-content{
        max-width:100%;
        text-align:center;
    }

    .about-subtitle-wrapper{
        justify-content: center;
    }

    .about-transition-box{
        text-align: left;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .feature{
        justify-content:center;
    }

    .experience-card{
        right:20px;
    }

}


/*====================================================
MOBILE
====================================================*/

@media (max-width:768px){

    .impact-section{
        padding:50px 0;
    }

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .impact-box{
        padding:25px 15px;
    }

    .impact-box h2{
        font-size:36px;
    }

    .impact-box p{
        font-size:15px;
    }

    .about-section{
        padding:70px 0;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-content p{
        font-size:16px;
    }

    .experience-card{
        position:relative;
        right:auto;
        bottom:auto;
        margin:20px auto 0;
        width:220px;
    }

}


/*====================================================
SMALL MOBILE
====================================================*/

@media (max-width:480px){

    .impact-grid{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:28px;
    }

    .about-content p{
        font-size:15px;
    }

    .feature{
        justify-content:flex-start;
    }

}