.elementor-4752 .elementor-element.elementor-element-8451d5d{--display:flex;}.elementor-4752 .elementor-element.elementor-element-80d909b{width:100%;max-width:100%;}.elementor-4752 .elementor-element.elementor-element-a60317b{--display:flex;}/* Start custom CSS for html, class: .elementor-element-80d909b *//* =========================
   GLOBAL CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#edf5f1;
    color:#2b2b2b;
    overflow-x:hidden;
}

/* =========================
   SECTION
========================= */

.purpose-section{
    position:relative;
    padding:100px 0;
    overflow:hidden;
}

/* Top Wave */
.purpose-section::before{
    content:"";
    position:absolute;
    top:-40px;
    left:0;
    width:100%;
    height:120px;
    background:#ffffff;
    clip-path:ellipse(70% 60% at 50% 40%);
}

/* Bottom Wave */
.purpose-section::after{
    content:"";
    position:absolute;
    bottom:-70px;
    left:0;
    width:100%;
    height:120px;
    background:#ffffff;
    clip-path:ellipse(70% 60% at 50% 60%);
}

/* =========================
   CONTAINER
========================= */

.custom-container{
    width:100%;
    padding:0 70px;
    position:relative;
    z-index:2;
}

/* =========================
   TITLE
========================= */

.section-subtitle{
    text-align:center;
    font-size:12px;
    letter-spacing:4px;
    color:#7f8884;
    margin-bottom:15px;
}

.section-title{
    text-align:center;
    font-size:56px;
    font-weight:600;
    margin-bottom:20px;
    line-height:1.2;
}

.section-title span{
    color:#d79a3f;
    font-style:italic;
    font-weight:500;
}

.section-description{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
    line-height:1.9;
    color:#616966;
    font-size:16px;
}

/* =========================
   STATS
========================= */

.stats-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:90px;
    flex-wrap:wrap;
    margin-bottom:80px;
}

.stat-box{
    text-align:center;
}

.stat-box h2{
    font-size:42px;
    color:#24312c;
    margin-bottom:6px;
}

.stat-box p{
    color:#6b7470;
    font-size:15px;
}

/* =========================
   CARDS
========================= */

.cards-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* Card */
.info-card{
    background:#ffffff;
    border-radius:24px;
    padding:50px 35px;
    text-align:center;
    position:relative;
    transition:0.4s ease;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* Top Border */
.info-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(to right,#6db377,#e2a34a);
}

/* Hover */
.info-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.10);
}

/* Icon */
.icon-outer{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#edf8ef;
    border:2px dashed #d4e5d8;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-inner{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#dff2e4;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

/* Card Title */
.info-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#28332f;
}

/* Card Description */
.info-card p{
    font-size:15px;
    line-height:1.8;
    color:#69716e;
}

/* =========================
   QUOTE
========================= */

.bottom-quote{
    margin-top:70px;
    text-align:center;
    font-size:22px;
    font-style:italic;
    color:#69716e;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .cards-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title{
        font-size:44px;
    }

}

@media(max-width:768px){

    .custom-container{
        padding:0 20px;
    }

    .cards-wrapper{
        grid-template-columns:1fr;
    }

    .stats-wrapper{
        gap:40px;
    }

    .section-title{
        font-size:34px;
    }

    .section-description{
        font-size:15px;
    }

    .bottom-quote{
        font-size:18px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8a8411f *//* =========================
   INITIATIVE SECTION
========================= */

.initiative-section{
    padding:120px 0;
    background:#ffffff;
}

.initiative-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* Left Content */
.initiative-title{
    font-size:48px;
    line-height:1.3;
    margin-bottom:25px;
    color:#24312c;
}

.initiative-title span{
    color:#d79a3f;
}

.initiative-description{
    font-size:16px;
    line-height:1.9;
    color:#66706c;
    margin-bottom:35px;
}

/* Points */
.initiative-points{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:40px;
}

.point-item{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:16px;
    color:#2c3632;
}

.point-icon{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#dff2e4;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#4a8d56;
    font-weight:600;
}

/* Button */
.initiative-btn{
    display:inline-block;
    padding:15px 35px;
    background:#24312c;
    color:#ffffff;
    text-decoration:none;
    border-radius:50px;
    transition:0.3s ease;
    font-weight:500;
}

.initiative-btn:hover{
    background:#d79a3f;
}

/* Right Cards */
.initiative-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.initiative-box{
    background:#edf5f1;
    padding:35px 30px;
    border-radius:24px;
    transition:0.3s ease;
}

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

.initiative-number{
    font-size:42px;
    font-weight:700;
    color:#d79a3f;
    margin-bottom:15px;
}

.initiative-box h3{
    font-size:24px;
    margin-bottom:12px;
    color:#24312c;
}

.initiative-box p{
    font-size:15px;
    line-height:1.8;
    color:#66706c;
}

/* Responsive */
@media(max-width:992px){

    .initiative-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .initiative-title{
        font-size:34px;
    }

    .initiative-cards{
        grid-template-columns:1fr;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9a6ac47 *//* =========================
   IMPACT SECTION
========================= */

.impact-gallery-section{
    padding:120px 0;
    background:#edf5f1;
    position:relative;
    overflow:hidden;
}

/* Wave Top */
.impact-gallery-section::before{
    content:"";
    position:absolute;
    top:-50px;
    left:0;
    width:100%;
    height:120px;
    background:#ffffff;
    clip-path:ellipse(70% 60% at 50% 40%);
}

/* Wave Bottom */
.impact-gallery-section::after{
    content:"";
    position:absolute;
    bottom:-60px;
    left:0;
    width:100%;
    height:120px;
    background:#ffffff;
    clip-path:ellipse(70% 60% at 50% 60%);
}

/* Header */
.gallery-header{
    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.gallery-title{
    font-size:52px;
    margin-bottom:20px;
    color:#24312c;
}

.gallery-title span{
    color:#d79a3f;
}

.gallery-description{
    max-width:760px;
    margin:auto;
    font-size:16px;
    line-height:1.9;
    color:#66706c;
}

/* =========================
   GRID
========================= */

.impact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

/* Card */
.impact-card{
    background:#ffffff;
    border-radius:28px;
    padding:45px 35px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* Top Border */
.impact-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(to right,#72b07a,#d79a3f);
}

/* Hover */
.impact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.10);
}

/* Icon */
.impact-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#e7f4ea;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    border:2px dashed #d4e5d8;
}

/* Title */
.impact-card h3{
    font-size:26px;
    margin-bottom:15px;
    color:#24312c;
}

/* Text */
.impact-card p{
    font-size:15px;
    line-height:1.8;
    color:#66706c;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .impact-grid{
        grid-template-columns:1fr;
    }

    .gallery-title{
        font-size:36px;
    }

    .impact-gallery-section{
        padding:90px 0;
    }

}/* End custom CSS */