.centered-hero {
    position: relative;
    max-width: 900px;
    text-align: center;
    z-index: 2;
}

.centered-hero h2 {
    margin-bottom: 1.5rem;
}

.centered-hero p {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
}

.section-tag {
    display: inline-block;
    font-size: 1.95rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: rgb(68, 149, 162);
}

.about-section {
    background: #ffffff;
    padding: 80px 8%;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    align-items: center;
    gap: 60px;
}

.about-text .about-header {
    margin-bottom: 40px;
}

.about-text .section-tag {
    display: inline-block;
    font-size: 1.95rem;
    font-weight: bold;
    color: rgb(68, 149, 162);
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 700;
    margin-top: 10px;
}

.about-point {
    font-size: 1rem;
    line-height: 1.7;
    color: #2b2b2b;
    margin-bottom: 18px;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.about-point.show {
    opacity: 1;
    transform: translateY(0);
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* =========================
   TEAM SECTION
========================= */

.team-section {
    background: #ffffff;
    padding: 120px 8%;
}

.team-container {
    max-width: 1000px;
    margin: auto;
}

.team-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}

.team-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 18px;
}

.team-content {
    display: grid;
    gap: 36px;
}

.team-point {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2e2e2e;
    padding-left: 34px;
    position: relative;
    opacity: 1;
    text-align: justify;
    transform: translateY(25px);
    transition: all 0.8s ease;
}

.team-point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgb(68, 149, 162);
}

.team-point.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .team-header h2 {
        font-size: 2.4rem;
    }

    .team-point {
        font-size: 1.05rem;
    }
}

.icon-leaf {
    top: 40px;
    right: 40px;
    color: rgb(124, 166, 85);
}

.icon-solar {
    bottom: 80px;
    right: 10px;
    color: rgb(249, 212, 72);
    animation-delay: 1s;
}

.icon-energy {
    bottom: 30px;
    left: 40px;
    color: rgb(68, 149, 162);
    animation-delay: 2s;
}

.icon-chart {
    top: 150px;
    left: -10px;
    color: rgb(124, 166, 85);
    animation-delay: 3s;
}

.mission-section {
    background: white;
    padding: 80px 8%;
}

.mission-container {
    max-width: 1200px;
    margin: auto;
}

.mission-header {
    max-width: 620px;
    margin-bottom: 70px;
}

.mission-header h2 {
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: 700;
    margin-top: 18px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
}

.mission-card {
    padding-left: 28px;
    border-left: 4px solid rgb(124, 166, 85);
    opacity: 1;
    transform: translateY(25px);
    transition: all 0.7s ease;
}

.mission-card h3 {
    font-size: 1.35rem;
    color: rgb(68, 149, 162);
    margin-bottom: 14px;
    font-weight: 600;
}

.mission-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #2f2f2f;
    max-width: 460px;
}

.mission-card::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgb(249, 212, 72);
    border-radius: 50%;
    margin-left: -36px;
    margin-top: 6px;
}

.mission-card.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-header h2 {
        font-size: 2.4rem;
    }
}

.vision-section {
    position: relative;
    padding: 120px 8%;
    background:
        linear-gradient(
            rgba(68,149,162,0.04),
            rgba(68,149,162,0.04)
        );
}

.vision-container {
    max-width: 1000px;
    margin: auto;
}

.vision-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}

.vision-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 18px;
}

.vision-content {
    display: grid;
    gap: 36px;
}

.vision-point {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2e2e2e;
    padding-left: 34px;
    position: relative;
    opacity: 1;
    transform: translateY(25px);
    transition: all 0.8s ease;
}

.vision-point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgb(124, 166, 85);
}

.vision-point.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .vision-header h2 {
        font-size: 2.4rem;
    }

    .vision-point {
        font-size: 1.05rem;
    }
}

.vision-pillars {
    background: white;
    padding: 120px 8%;
}

.pillars-container {
    max-width: 1200px;
    margin: auto;
}

.pillars-header {
    max-width: 640px;
    margin-bottom: 80px;
}

.pillars-header h2 {
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: 700;
    margin-top: 18px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.vision-pillars .pillar-card {
    padding-top: 22px;
    border-top: 4px solid rgb(124, 166, 85);
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.vision-pillars .pillar-card.show {
    opacity: 1;
    transform: translateY(0);
}

.vision-pillars .pillar-card h3 {
    font-size: 1.4rem;
    color: rgb(68, 149, 162);
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
}

.vision-pillars .pillar-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #2f2f2f;
}

.vision-pillars .pillar-card ul {
    margin: 0;
    padding-left: 1.15rem;
    list-style: disc;
}

.vision-pillars .pillar-card li {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #2f2f2f;
    margin-bottom: 8px;
}

.vision-pillars .pillar-card li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1000px) {
    .vision-pillars .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .vision-pillars .pillars-grid {
        grid-template-columns: 1fr;
    }
}

.vision-pillars .pillar-card i {
    font-size: 2.5rem;           /* size of the icon */
    color: rgb(124, 166, 85);    /* matches your theme */
    margin-bottom: 1rem;         /* spacing from the heading */
    display: block;              /* ensures it sits above the h3 */
    text-align: center;
}

.projects-section {
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.20),
            rgba(255, 255, 255, 0.20)
        ),
        url("images/trees1.png") center / cover no-repeat;
}

.aboutus-image {
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.20),
            rgba(255, 255, 255, 0.20)
        ),
        url("images/windmill.jpeg") center/cover no-repeat;
}

.project-overview {
    background: #ffffff;
    padding: 5rem 10%;
}

.overview-container {
    max-width: 1200px;
    margin: auto;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2rem;
    color: rgb(68,149,162);
    margin-bottom: 0.5rem;
}

.overview-text h4 {
    font-size: 1.3rem;
    color: rgb(124,166,85);
    margin-bottom: 1.5rem;
}

.overview-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: #2f2f2f;
}

.overview-image {
    display: flex;
    justify-content: center;
}

.overview-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

.overview-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.stat-card {
    flex: 1 1 28%;
    background: rgba(68,149,162,0.08);
    padding: 2rem;
    border-left: 4px solid rgb(68,149,162);
    border-radius: 8px;
}

.stat-card span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: rgb(68,149,162);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    color: #2f2f2f;
}

@media (max-width: 900px) {
    .overview-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .overview-text h2,
    .overview-text h4,
    .overview-text p {
        text-align: center;
        margin: 0 auto;
    }

    .overview-image img {
        max-width: 100%;
    }

    .overview-stats {
        flex-direction: column;
    }

    .stat-card {
        flex: 1 1 100%;
    }
}

.overview-stats div {
    background: rgba(68,149,162,0.08);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid rgb(68,149,162);
}

.overview-stats span {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(68,149,162);
}

.project-goals {
    padding: 5rem 10%;
    background: #f8f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: rgb(68,149,162);
    font-size: 1.6rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.project-goals .pillar-card {
    background: white;
    padding: 2.5rem 2rem;
    border-left: 4px solid rgb(68, 149, 162);
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.project-goals .pillar-card.show {
    opacity: 1;
    transform: translateY(0);
}

.project-goals .pillar-card i {
    font-size: 1.6rem;
    color: rgb(124,166,85);
    margin-bottom: 1rem;
}

.project-goals .pillar-card h3 {
    margin-bottom: 1rem;
}

.project-goals .pillar-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2f2f2f;
    margin-bottom: 1rem;
}

.project-goals .pillar-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1000px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .goals-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   GLOBAL MOBILE ALIGNMENT
   (consolidated: consistent header→text spacing, justified body text)
========================= */
@media (max-width: 900px) {

    /* Standard section padding */
    section {
        padding: 80px 6% !important;
    }

    /* Section main headings */
    .about-header h2,
    .mission-header h2,
    .vision-header h2,
    .team-header h2,
    .pillars-header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        font-weight: 700;
        margin-top: 10px;
        text-align: center;
    }

    .about-header .section-tag,
    .mission-header .section-tag,
    .vision-header .section-tag,
    .team-header .section-tag,
    .pillars-header .section-tag {
        font-size: 1.95rem;
        font-weight: bold;
        margin-bottom: 15px;
        color: rgb(68, 149, 162);
        display: inline-block;
        text-align: center;
    }

    /* Center all headers with one consistent gap before the text that follows */
    .about-header,
    .mission-header,
    .vision-header,
    .pillars-header,
    .team-header {
        text-align: center;
        max-width: 620px;
        margin: 0 auto 48px;
    }

    /* Normalize text blocks: justified, with a consistent gap before the next heading */
    .about-point,
    .mission-card p,
    .vision-point,
    .pillar-card p,
    .pillar-card li,
    .team-point {
        padding-left: 0;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        text-align: justify;
        text-align-last: center;
    }

    .pillar-card li:last-child {
        margin-bottom: 0;
    }

    /* Remove decorative dots/lines on mobile */
    .vision-point::before,
    .team-point::before,
    .mission-card::before {
        display: none;
    }

    /* Grid → stacked alignment */
    .about-grid,
    .mission-grid,
    .pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    /* Mission & pillar cards centering */
    .mission-card,
    .pillar-card {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid rgb(124, 166, 85);
        padding-top: 24px;
        text-align: center;
    }

    /* Icons centered properly */
    .pillar-card i {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* =========================
   TEAM SECTION BACKGROUND (matches Vision)
========================= */
.team-section {
    position: relative;
    padding: 120px 8%;
    background:
        linear-gradient(
            rgba(68,149,162,0.04),
            rgba(68,149,162,0.04)
        );
}

