* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: seagreen;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}


/* ==========================================
   Navigation Bar
   ========================================== */

.navbar {
    width: 100%;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Unstuck from top during scroll */
    background-color: #ffffff;
    padding: 15px 50px;
    border-radius: 0 0 10px 10px;
    font-size: 1.2rem;
    z-index: 100;
}

.nav_logo_cont {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav_logo_img {
    height: 60px;
    width: auto;
}

.nav_pages_wrap {
    display: flex;
    align-items: center;
}

.nav_pages_cont {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav_page {
    display: flex;
    align-items: center;
}

/* Link / Button Base Styling */
.nav_btn {
    position: relative;
    padding: 8px 12px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: rgb(21, 143, 68);
    background-color: transparent;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

/* Bottom Hover Line Effect */
.nav_btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: rgb(13, 67, 35);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav_btn:not(.nav_btn_contact):hover::after {
    width: 100%;
    left: 0;
}

/* contact us btn */
.nav_btn_contact {
    background-color: rgba(21, 143, 68, 1);
    color: rgb(248, 248, 247);
    border-radius: 8px 4px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.nav_btn_contact:hover {
    background-color: rgb(13, 67, 35);
}

.nav_btn_contact::after {
    display: none;
}

/* Mobile Toggle Hamburger Button */
.nav_toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    padding: 0;
    z-index: 1001;
}

.hamburger_bar {
    width: 100%;
    height: 3px;
    background-color: #0d4323;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* === Mobile Navigation === */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px 20px;
        border-radius: 0;
    }

    .nav_logo_cont {
        justify-content: center;
    }

    .nav_toggle {
        display: flex;
    }
    
    .nav_pages_wrap {
        position: absolute;
        top: 100%; /* Opens menu directly below the hamburger/navbar bottom */
        left: 0;
        width: 100%;
        border-radius: 0 0 10px 10px;
        background-color: white;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0.96;
        transition: max-height 0.35s ease-in-out, padding 0.35s ease-in-out;
        z-index: 100;
    }

    /* Active Dropdown State */
    .nav_pages_wrap.active {
        max-height: 400px;
        padding: 20px 0;
        border-bottom: 3px solid #175e34;
    }

    .nav_pages_cont {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .nav_page {
        width: 100%;
        justify-content: center;
    }

    .nav_btn {
        width: 80%;
        text-align: center;
    }

    .nav_btn_contact {
        width: 80%;
    }

    /* Morphing 'X' animation */
    .nav_toggle.active .hamburger_bar:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .nav_toggle.active .hamburger_bar:nth-child(2) {
        opacity: 0;
    }

    .nav_toggle.active .hamburger_bar:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
}

/* *************************Navigation Bar Ends************************* */

/* =======================================
    Home Page
   ======================================== */

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.bg_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

.hero_content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.hero_title_text {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero_subtitle_text {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 15px auto 25px;
    color: #f0f0f0;
    line-height: 1.5;
}

.hero_cta_wrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero_btn {
    padding: 12px 28px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px 4px;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.hero_btn_primary {
    background-color: #158f44;
    color: #ffffff;
}

.hero_btn_secondary {
    background-color: #ffffff;
    color: #158f44;
}

.hero_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


/* Layout Container & Common Headings after hero section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section_title {
    text-align: center;
    font-size: 2.2rem;
    color: rgb(212, 150, 29);
    margin-bottom: 10px;
}

.section_subtitle {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* Mission & Vision Section */
.mission_vision_section {
    padding: 70px 0;
    background-color: #f9fbf9;
}

.mv_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv_card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 5px solid #158f44;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mv_card h2 {
    color: #158f44;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.mv_card p {
    line-height: 1.6;
    color: #444444;
}

.tagline_banner {
    text-align: center;
    margin-top: 35px;
    font-size: 1.25rem;
    color: #0d4323;
}

/* Impact Metrics Section */
.impact_goals_section {
    padding: 70px 0;
}

.impact_metrics_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric_card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.metric_card:hover {
    transform: translateY(-5px);
    border-color: #158f44;
    box-shadow: 0 6px 16px rgba(21, 143, 68, 0.12);
}

.metric_card h3 {
    font-size: 1.6rem;
    color: #158f44;
    margin-bottom: 10px;
    font-weight: 700;
}

.metric_card p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.4;
}

/* Flagship Section */
.flagship_section {
    padding: 50px 0;
    background-color: #eaf4ed;
}

.flagship_card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(21, 143, 68, 0.15);
}

.flagship_badge {
    display: inline-block;
    background: #158f44;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.flagship_card h2 {
    color: #0d4323;
    margin: 15px 0;
    font-size: 1.8rem;
}

.flagship_card p {
    line-height: 1.6;
    color: #444444;
}

.flagship_partners {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
    font-size: 0.95rem;
    color: #555555;
}

.flagship_partners span {
    font-weight: 600;
    color: #0d4323;
}

/* Core Values Section */
.values_title_text {
    margin-bottom: 25px;
}

.values_section {
    padding: 60px 0;
}

.values_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value_item {
    background: #ffffff;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #eeeeee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.value_item h4 {
    color: #158f44;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.value_item p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
}

/* Call to Action */
.home_cta_banner {
    background-color: #ffffff;
    color: #158f44;
    text-align: center;
    padding: 60px 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eeeeee;
}

.home_cta_banner h2 {
    font-size: 2.2rem;
    color: #0d4323;
}

.home_cta_banner p {
    color: #666666;
    font-size: 1.1rem;
    max-width: 600px;
}

.cta_banner_btn {
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/*===screen responsiveness=== */
@media (max-width: 850px) {

     .hero_title_text {
        font-size: 2rem;
        padding: 0 15px;
        text-align: center;
    }

    .hero_subtitle_text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hero_cta_wrap {
        flex-direction: column;
        width: 80%;
    }

    .hero_btn {
        text-align: center;
    }
    
    .mv_grid, 
    .values_grid {
        grid-template-columns: 1fr;
    }
    
    .impact_metrics_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .hero_cta_wrap {
        flex-direction: column;
        width: 100%;
    }

    .hero_btn {
        width: 100%;
        text-align: center;
    }

    .impact_metrics_grid {
        grid-template-columns: 1fr;
    }
}


/* ******************** Home page end ***********************/

/* ==========================================
About Page
============================================= */

.about_body {
    background-color: #ffffff;
    color: #333333;
}

/* About Hero Header */
.about_hero {
    background-color: #f4f8f5;
    padding: 60px 0 40px;
    border-bottom: 2px solid #158f44;
}

.about_hero_title {
    font-size: 2.8rem;
    color: #0d4323;
    margin-bottom: 15px;
    font-weight: 800;
}

.about_hero_subtitle {
    font-size: 1.15rem;
    color: #555555;
    max-width: 800px;
    line-height: 1.5;
}


/* Overview Section & Badges */
.about_overview_section {
    padding: 50px 0;
}

.about_text_block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 18px;
}

.about_stats_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 35px;
}

.stat_badge {
    padding: 20px 10px;
    border-radius: 4px;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.stat_badge_value {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}
.stat_badge_label {
    font-size: 0.82rem;
    margin-top: 5px;
    font-weight: 500;
}

.badge_dark_green { background-color: #175e34; }
.badge_green      { background-color: #27ae60; }
.badge_teal       { background-color: #16a085; }
.badge_navy       { background-color: #1f3a60; }
.badge_amber      { background-color: #d4961d; }

/* Zero Waste Philosophy */
.philosophy_section {
    padding: 50px 0;
    background-color: #f9fbf9;
}

.philosophy_intro,
.hierarchy_intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 25px;
}

.zw_definition_box {
    background-color: #f0f4f8;
    border-left: 5px solid #1f3a60;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.zw_definition_box h3 {
    color: #1f3a60;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.zw_definition_box blockquote {
    font-style: italic;
    color: #333333;
    line-height: 1.6;
    font-size: 1.02rem;
}

.benchmark_note {
    font-size: 1rem;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 35px;
}

.subsection_title {
    color: #1f3a60;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

/* Pillars Grid */
.pillars_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pillar_card {
    padding: 25px;
    border-radius: 4px;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.pillar_card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.pillar_card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.card_navy       { background-color: #1f3a60; }
.card_dark_green { background-color: #175e34; }
.card_teal       { background-color: #16a085; }
.card_green      { background-color: #27ae60; }

/* Zero Waste Hierarchy */
.hierarchy_section {
    padding: 50px 0;
}

.hierarchy_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.hierarchy_row {
    display: flex;
    align-items: center;
    border: 1px dashed #cccccc;
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
}

.hierarchy_num {
    width: 60px;
    min-height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hierarchy_title {
    width: 180px;
    padding: 0 15px;
    font-weight: 700;
    color: #222222;
    flex-shrink: 0;
}

.hierarchy_desc {
    padding: 12px 15px;
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.row_refuse .hierarchy_num     { background-color: #1f3a60; }
.row_reduce .hierarchy_num     { background-color: #175e34; }
.row_reuse .hierarchy_num      { background-color: #27ae60; }
.row_recycle .hierarchy_num    { background-color: #16a085; }
.row_compost .hierarchy_num    { background-color: #795548; }
.row_never_burn .hierarchy_num { background-color: #c0392b; }
.row_never_burn .hierarchy_title { color: #c0392b; }

/* Tamale Initiative Section */
.tamale_initiative_section {
    padding: 50px 0 70px;
    background-color: #f9fbf9;
}

.tamale_card {
    background-color: #1f3a60;
    color: #ffffff;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tamale_card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.tamale_card p {
    font-size: 1.02rem;
    line-height: 1.6;
    color: #f0f4f8;
}

.tamale_footer_text {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #444444;
}

/* Who We Serve Section */
.who_we_serve_section {
    padding: 50px 0;
}

.serve_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.serve_card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #16a085;
    padding: 22px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.serve_card h3 {
    color: #0d4323;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.serve_card p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
}


/* Meet Our Team */
.team_section {
    padding: 60px 0;
    background-color: #ffffff;
}

.team_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 25px;
}

.team_card {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.team_img_wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.team_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    background: linear-gradient(to top, rgba(13, 67, 35, 0.95) 0%, rgba(13, 67, 35, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    transform: translateY(10px);
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.team_name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #ffffff;
}

.team_role {
    font-size: 0.88rem;
    color: #c8e6c9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/*** Hover Animations ***/

/* Card lifts slightly */
.team_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Image zooms in smoothly */
.team_card:hover .team_img {
    transform: scale(1.08);
}

/* Overlay slides up and brightens */
.team_card:hover .team_overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Responsiveness for Meet Team section*/
@media (max-width: 1024px) {
    .team_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team_img_wrapper {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .team_grid {
        grid-template-columns: 1fr;
    }
}

/* === General responsiveness for About Page sections === */
@media (max-width: 850px) {
    .about_stats_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars_grid {
        grid-template-columns: 1fr;
    }

    .hierarchy_row {
        flex-direction: column;
        align-items: flex-start;
    }

    .hierarchy_num {
        width: 100%;
        min-height: 35px;
    }

    .hierarchy_title {
        width: 100%;
        padding: 10px 15px 5px;
    }

    .hierarchy_desc {
        padding: 0 15px 12px;
    }

    .serve_grid,
    .exec_grid {
        grid-template-columns: 1fr;
    }
}

/* ******************** About Page End ********************** */

/* ======================================
Blog Page 
========================================= */

.blog_body {
    background-color: aliceblue;
    color: #1b4332;
}

.blog_hero {
    text-align: center;
    padding: 60px 20px 30px;
}

.blog_hero_title {
    font-size: 3rem;
    color: seagreen;
    margin-bottom: 10px;
}

.blog_hero_subtitle {
    font-size: 1.1rem;
    color: gray;
}

/* Main Layout */
.blog_container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px 5% 60px;
    display: flex;
    gap: 40px;
}

.blog_posts_grid {
    flex: 2.5;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Styling */
.blog_card {
    background-color: white;
    border: 2px solid green;
    border-radius: 25px 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.blog_card.featured {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
}

.blog_card_img_wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog_card.featured .blog_card_img_wrapper {
    width: 45%;
    height: auto;
}

.blog_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgb(21, 143, 68);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 8px 4px;
    text-transform: uppercase;
}

.blog_card_content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.blog_card.featured .blog_card_content {
    width: 55%;
    padding: 35px;
}

.blog_meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: gray;
    margin-bottom: 12px;
}

.blog_card_title {
    font-size: 1.35rem;
    color: seagreen;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog_card.featured .blog_card_title {
    font-size: 1.8rem;
}

.blog_card_excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.blog_read_more {
    font-weight: bold;
    color: rgb(21, 143, 68);
    transition: color 0.2s ease;
}

.blog_read_more:hover {
    color: rgb(13, 67, 35);
}

/* Sidebar */
.blog_sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar_widget {
    background-color: white;
    border: 2px solid green;
    border-radius: 25px 10px;
    padding: 25px;
}

.widget_title {
    font-size: 1.2rem;
    color: seagreen;
    margin-bottom: 15px;
    border-bottom: 2px solid aliceblue;
    padding-bottom: 8px;
}

.blog_search_form {
    display: flex;
    gap: 8px;
}

.search_input {
    padding: 8px 12px;
    font-size: 0.9rem;
}

.search_btn {
    background-color: rgb(21, 143, 68);
    color: white;
    border: none;
    border-radius: 8px 4px;
    padding: 0 15px;
    font-weight: bold;
    cursor: pointer;
}

.widget_categories {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget_categories a {
    color: #444;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.widget_categories a:hover {
    color: seagreen;
    font-weight: bold;
}

.widget_text {
    font-size: 0.9rem;
    color: gray;
    margin-bottom: 15px;
}

.blog_newsletter_form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .blog_container {
        flex-direction: column;
    }
    
    .blog_card.featured {
        flex-direction: column;
    }
    
    .blog_card.featured .blog_card_img_wrapper,
    .blog_card.featured .blog_card_content {
        width: 100%;
    }
}

/* *************** Blog Page End ****************** */

/* ========================================
Contact Page
============================================*/

.contact_body {
    background-color: aliceblue;
    color: seagreen;
    min-height: 100vh;
}

.contact_wrapper {
    padding: 50px 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact_header {
    text-align: center;
    margin-bottom: 40px;
}

.contact_title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.contact_subtitle {
    font-size: 1.2rem;
    color: gray;
}

.contact_container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    gap: 30px;
}

/* Contact Info Section */
.contact_info_card {
    width: 40%;
    background-color: seagreen;
    color: white;
    padding: 40px 30px;
    border-radius: 25px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.contact_info_card h2 {
    font-size: 2rem;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.contact_info_text {
    margin-bottom: 20px;
    line-height: 1.5;
}

.info_item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info_item strong {
    font-size: 1.1rem;
}

/* Contact Form */
.contact_form {
    width: 58%;
    background-color: white;
    padding: 40px;
    border: solid 3px green;
    border-radius: 25px 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form_label {
    font-weight: 600;
    color: seagreen;
}

.form_input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid green;
    border-radius: 8px 4px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1rem;
    outline: none;
    color: #333;
}

.form_input:focus {
    border-color: rgb(13, 67, 35);
}

.form_textarea {
    resize: vertical;
}

.contact_submit_btn {
    padding: 12px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    background-color: rgb(21, 143, 68);
    color: rgb(248, 248, 247);
    border: 2px solid transparent;
    border-radius: 8px 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact_submit_btn:hover {
    background-color: rgb(13, 67, 35);
}

/* donate */

.donate_section {
    padding: 50px 20px;
    background-color: #f4f8f5;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1000px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.donate_header {
    text-align: center;
    margin-bottom: 35px;
}

.donate_header h2 {
    color: rgb(13, 67, 35);
    font-size: 2rem;
    margin-bottom: 8px;
}

.donate_header p {
    color: #555;
    font-size: 1rem;
}

.donate_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.donate_card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.donate_card.highlight_card {
    border: 2px solid rgb(21, 143, 68);
}

.donate_card h3 {
    color: rgb(21, 143, 68);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.donate_card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.4;
}

.donate_info_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.donate_info_list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 0.95rem;
}

.donate_info_list li:last-child {
    border-bottom: none;
}

/* Preset Amount Selector */
.donate_amounts {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.amount_btn {
    flex: 1;
    padding: 10px;
    border: 1.5px solid rgb(21, 143, 68);
    background: transparent;
    color: rgb(21, 143, 68);
    font-weight: bold;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.amount_btn.active,
.amount_btn:hover {
    background-color: rgb(21, 143, 68);
    color: #ffffff;
}

/* Donate Button */
.donate_cta_btn {
    display: block;
    text-align: center;
    background-color: rgb(21, 143, 68);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.donate_cta_btn:hover {
    background-color: rgb(13, 67, 35);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .donate_section {
        padding: 35px 15px;
    }
    
    .donate_header h2 {
        font-size: 1.6rem;
    }
}

/* General contact page responsiveness */
@media (max-width: 768px) {
      
    /* Contact Page Layout */
    .contact_container {
        flex-direction: column;
    }

    .contact_info_card, .contact_form {
        width: 100%;
    }
}



/* ***************End of contact.html styles******************* */

/* ==================================
Projects Page
====================================== */

.projects_body {
    background-color: aliceblue;
    color: #2b5e3b;
}

.projects_hero {
    text-align: center;
    padding: 60px 20px 20px;
}

.projects_hero_title {
    font-size: 2.8rem;
    color: #2b5e3b;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.projects_hero_title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #2b5e3b;
    margin: 10px auto 0;
    border-radius: 2px;
}

.projects_hero_subtitle {
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
    margin-top: 10px;
}

.projects_container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 4% 80px;
}

.projects_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.project_card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.project_icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.project_title {
    font-size: 1.1rem;
    color: #2b5e3b;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project_description {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.4;
}

/* Zero Waste Hierarchy */
.hierarchy_banner {
    background-color: #e8f5e9;
    border-left: 5px solid #2e7d32;
    padding: 20px 25px;
    margin: 30px 0 45px;
    border-radius: 4px;
}

.hierarchy_content h2 {
    color: #1b5e20;
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.hierarchy_content p {
    color: #333333;
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Core Programmes */
.core_programmes_section {
    margin-bottom: 60px;
}

.section_heading {
    font-size: 1.8rem;
    color: #0d4323;
    margin-bottom: 8px;
}

.section_intro {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 30px;
}

.programmes_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.programme_card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.programme_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.flagship_card {
    border: 2px solid #2e7d32;
    background-color: #fafdfa;
}

.card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.programme_code {
    font-weight: 800;
    font-size: 1.1rem;
    color: #1f3a60;
    background: #eef2f7;
    padding: 4px 10px;
    border-radius: 4px;
}

.badge {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.badge.flagship {
    background-color: #2e7d32;
    color: #ffffff;
}

.badge.active {
    background-color: #e0f2fe;
    color: #0369a1;
}

.programme_title {
    font-size: 1.3rem;
    color: #175e34;
    margin-bottom: 12px;
}

.programme_desc {
    font-size: 0.98rem;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 16px;
}

.programme_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #555555;
}

.meta_item strong {
    color: #222222;
}

/* Community Projects */
.community_projects_section {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Responsiveness */
@media (max-width: 1100px) {
    .projects_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .projects_grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ******************** End of projects.html styles ******************** */



/* =============================
Footer
===================================== */

.footer {
    width: 100%;
    background-color: #0b3d20;
    color: #e2f1e7;
    padding: 30px 8% 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer_brand {
    display: flex;
    flex-direction: column;
    
}

.footer_logo {
    height: 75px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer_tagline {
    font-size: 0.85rem;
    color: #a3ccb5;
}

.footer_info {
    display: flex;
    gap: 40px;
}

.footer_contact_item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer_label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #81b29a;
    font-weight: 700;
}

.footer_text, .footer_link {
    font-size: 0.95rem;
    color: #ffffff;
}

.footer_link {
    transition: color 0.2s ease;
}

.footer_link:hover {
    color: #81b29a;
}

.footer_social {
    display: flex;
    gap: 15px;
}

.social_icon_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social_icon_link:hover {
    background-color: rgb(21, 143, 68);
    transform: translateY(-2px);
}

.footer_bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.copyright_text {
    font-size: 0.8rem;
    color: #a3ccb5;
    margin-top: 0;
}

/*** Footer Responsiveness***/

@media (max-width: 768px) {
    .footer_container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer_info {
        flex-direction: column;
        gap: 15px;
    }

    .footer_logo {
        display: none;
    }
}
