/* Main Style Sheet for Tree Public Foundation */

:root {
    --primary-color: #1F8A4D;

    /* Primary Green */

    --secondary-color: #DDF5E5;

    /* Light Green */

    --dark-green: #0D4D2D;

    /* Dark Green */

    --accent-color: #F7941D;

    /* Accent Orange */

    --bg-color: #F8FBF8;

    /* Very Light Green/White background */

    --text-dark: #0D4D2D;

    /* Dark Green */

    --text-body: #455A64;

    /* Grey-Blue Body text */

    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --font-heading: 'Montserrat', 'Outfit', sans-serif;
    --font-body: 'Poppins', 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

/* Glassmorphism Utilities */

.glass-card {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    color: var(--white) !important;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-5px);
}

/* Contact Section */

.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.social-icons-contact {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icons-contact a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-icons-contact a:hover {
    background: var(--secondary-color);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,

.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.form-group input:focus,

.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

@media (max-width: 768px) {

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

}

/* Reset & Base */

*,
*::before,

*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,

h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header */

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Stunning Join Us Button - Clean & Professional */

.btn-join {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-left: 10px;
}

.btn-join:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
}

.btn-join::after {
    display: none;

    /* Remove underline effect */

}

.nav-links a.active {
    color: var(--primary-color);
}

/* Dropdown Styles */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Desktop Dropdown styles */

@media (min-width: 769px) {

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        background-color: var(--white);
        min-width: 260px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        padding: 12px 0;
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border: 1px solid rgba(46, 125, 50, 0.08);
    }

    /* Invisible bridge to prevent losing hover state */

    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 0;
        width: 100%;
        height: 15px;
        background: transparent;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 24px;
        color: var(--text-body) !important;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.3s ease;
        text-align: left;
        position: relative;
    }

    .dropdown-menu a::after {
        display: none !important; /* Disable global underline animation for dropdown items */
    }

    .dropdown-menu a:hover {
        background-color: rgba(46, 125, 50, 0.05);
        color: var(--primary-color) !important;
        padding-left: 30px;
    }

}

/* Mobile Dropdown styles */

@media (max-width: 768px) {

    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-toggle {
        justify-content: center;
        padding: 10px 0;
        width: 100%;
    }

    .dropdown-menu {
        display: none;
        background-color: rgba(46, 125, 50, 0.04);
        border-radius: 8px;
        padding: 8px 0;
        margin-top: 5px;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        display: block;
        padding: 8px 15px;
        font-size: 0.9rem;
        color: var(--text-body) !important;
        text-align: center;
    }

    .dropdown-menu a::after {
        display: none !important;
    }

    .dropdown-menu a:hover {
        color: var(--primary-color) !important;
        background-color: rgba(46, 125, 50, 0.08);
    }

}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    width: 100%;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
}

header.scrolled .logo-img {
    height: 70px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width var(--transition-speed);
}

.nav-links a:hover::after,

.nav-links a.active::after {
    width: 100%;
}

/* Stunning Join Us Button - Clean & Professional */

.btn-join {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-left: 10px;
}

.btn-join:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
}

.btn-join::after {
    display: none;

    /* Remove underline effect */

}

.nav-links a.active {
    color: var(--primary-color);
}

/* Swiper Navigation Arrows */

.swiper-button-next,

.swiper-button-prev {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.8);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.swiper-button-next::after,

.swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-button-next:hover,

.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Mobile Nav */

@media (max-width: 768px) {

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

}

/* Hero Slider */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: #2E7D32;

    /* Fallback */

}

.heroSwiper {
    width: 100%;
    height: 100%;
    padding-bottom: 0 !important;
}

.heroSwiper .swiper-wrapper {
    height: 100%;
}

.hero-slide {
    text-align: center;
    font-size: 18px;
    background-position: center;
    background-size: cover;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative;
    height: 100% !important;
    width: 100% !important;

    /* Ensure width is also set */

}

/* Ensure content is above the background overlay (which is part of bg-image now) but if we used a div overlay we'd need z-index */

/* Since we added the gradient to the background-image inline, we don't need a separate overlay div for each slide unless we want to animate it separately. */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .highlight {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Customizing Swiper Navigation/Pagination */

.heroSwiper .swiper-button-next,

.heroSwiper .swiper-button-prev {
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.heroSwiper .swiper-button-next:hover,

.heroSwiper .swiper-button-prev:hover {
    opacity: 1;
}

.heroSwiper .swiper-pagination {
    bottom: 20px !important;
    background: transparent !important;
}

.heroSwiper .swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.heroSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color) !important;
}

/* SECTION STYLES */

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header.text-white h2 {
    color: var(--white);
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

.divider.bg-white {
    background-color: var(--white);
}

.text-center {
    text-align: center;
}

/* Impact Section */

.impact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.impact-card {
    background: var(--bg-color);
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.impact-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.impact-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* About Section */

.about-section {
    padding: 100px 0;
    background-color: #FAFAFA;
}

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

.about-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--secondary-color);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-vision {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mv-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mv-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
}

/* Focus Areas - Swiper Overrides */

.focus-section {
    padding: 100px 0;
}

.swiper {
    width: 100%;
    padding-bottom: 50px;

    /* Space for pagination */

}

.swiper-slide {
    height: auto;
}

.focus-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
    margin: 10px;

    /* Add margin for shadow visibility */

}

.focus-card:hover {
    transform: translateY(-5px);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Awards Section */

.awards-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.award-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.award-item p {
    font-weight: 500;
    font-size: 1.1rem;
}

/* CTA Section */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Footer Wave Divider */
.footer-wave-container {
    position: relative;
    width: 100%;
    height: 60px;
    background: transparent;
    margin-bottom: -1px;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    fill: #051c0f;
}

/* Stunning Dark Forest Green Footer */
footer {
    background: linear-gradient(180deg, #051c0f 0%, #072615 100%);
    color: #cfd8dc;
    padding: 80px 0 30px;
    font-family: var(--font-body);
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/leaf.png');
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col .footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 25px;
    align-self: flex-start;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    font-size: 0.95rem;
    color: #b0bec5;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-links {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(31, 138, 77, 0.3);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--accent-color);
    font-size: 1rem;
    width: 20px;
}

/* Stunning Newsletter Form inside Footer */
.footer-newsletter-form {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input-group {
    display: flex;
    width: 100%;
    position: relative;
}

.newsletter-input-group input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: all 0.3s;
    outline: none;
}

.newsletter-input-group input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(31, 138, 77, 0.15);
}

.newsletter-input-group .btn-subscribe {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    padding: 0 22px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(31, 138, 77, 0.2);
}

.newsletter-input-group .btn-subscribe:hover {
    background: var(--accent-color);
    box-shadow: 0 4px 12px rgba(247, 148, 29, 0.3);
}

.footer-bottom {
    background-color: transparent;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #90a4ae;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #90a4ae;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* Methodology Section */

.methodology-section {
    padding: 100px 0;
    background-color: var(--white);
}

.process-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #E0E0E0;
    z-index: 0;
    display: none;

    /* Hidden on mobile, shown on desktop */

}

@media (min-width: 992px) {

    .process-grid::before {
        display: block;
    }

}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--white);

    /* To hide the line behind icon */

    padding: 0 10px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
}

/* Biodiversity Section */

.biodiversity-section {
    padding: 100px 0;
    background-color: #f8fcf8;
}

.bio-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bio-stat-item {
    text-align: center;
    min-width: 120px;
}

.bio-stat-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 5px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: var(--white);
    opacity: 1;
    transition: opacity 0.3s;
}

.project-item .overlay h4 {
    color: var(--white);
    font-size: 1.2rem;
}

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .about-image {
        order: -1;
    }

    .cta-buttons {
        flex-direction: column;
    }

}

/* Page Header */

.page-header {
    height: 60vh;
    min-height: 400px;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
    margin-top: 0;

    /* Sticky header takes up layout space naturally */

}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Team Section */

.team-section {
    padding: 100px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.3s;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.team-social a:hover {
    background: var(--secondary-color);
}

.team-content {
    padding: 25px;
}

.team-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Awards Section */

.awards-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1550989460-0adf9ea622e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.award-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

.award-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.award-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.award-item p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Mission & Vision Section Redesign */

.mission-vision-section {
    padding: 60px 0 80px 0;
    background-color: #f8f9fa;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');

    /* Subtle texture */

    position: relative;
    overflow: hidden;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-bottom: 5px solid transparent;
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mission-card {
    border-bottom-color: var(--primary-color);
}

.vision-card {
    border-bottom-color: var(--secondary-color);
}

.mv-content {
    position: relative;
    z-index: 2;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
    transition: transform 0.4s;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(10deg);
}

.vision-card .mv-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.mv-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.mv-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(0, 0, 0, 0.03);
    z-index: 1;
    transform: rotate(-15deg);
    transition: all 0.5s;
}

.mv-card:hover .mv-bg-icon {
    transform: rotate(0deg) scale(1.2);
    color: rgba(0, 0, 0, 0.05);
}

/* Falling Leaves Animation */

.leaf-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 9999;
}

.leaf {
    position: absolute;
    top: -50px;
    color: var(--primary-color);
    opacity: 0.3;
    animation: fall linear infinite;
}

.leaf:nth-child(even) {
    color: var(--secondary-color);
}

.leaf:nth-child(3n) {
    color: var(--accent-color);
}

@keyframes fall {

    0% {
        transform: translate(0, -50px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translate(100px, 110vh) rotate(360deg);
        opacity: 0;
    }

}

/* Project Page Styles */

.project-page-section {
    padding: 80px 0;
    min-height: 60vh;
}

.project-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 30px;
    border: none;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover,

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.page-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-item.hide {
    display: none;
}

.project-item.show {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

/* FAQ Section Styles */

.faq-section {
    padding: 80px 0;
    min-height: 60vh;
    background-color: #f9f9f9;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: background 0.3s;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.toggle-icon {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.toggle-icon i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}

.faq-answer p {
    padding: 20px 30px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
}

/* FAQ Active State */

.faq-item.active {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-question {
    background: var(--primary-color);
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-item.active .toggle-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

.faq-item.active .toggle-icon i {
    color: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;

    /* Arbitrary large height for animation */

}

/* How You Can Help Section Styles */

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.help-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2ecc71 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
}

.help-card:hover::before {
    opacity: 0.05;
}

.icon-box {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s;
}

.help-card:hover .icon-box {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.help-card:hover .icon-box i {
    color: var(--white);
}

.help-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.help-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Styles */

.contact-section {
    padding: 80px 0;
    position: relative;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-item .icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.info-item .details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--text-color);
}

.info-item .details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-social h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-social .social-icons {
    display: flex;
    gap: 15px;
}

.contact-social .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 1px solid #eee;
    transition: all 0.3s;
}

.contact-social .social-icons a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,

.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.contact-form input:focus,

.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.contact-map iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

/* Media & Publications Page Styles */

.media-section,
.publications-section,

.video-section {
    padding: 80px 0;
}

.publications-section {
    background-color: #f9f9f9;
}

/* News Grid */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-img {
    height: 200px;
    position: relative;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--accent-color);
}

/* Publications Grid */

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pub-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.pub-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pub-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pub-details h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.pub-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

/* Video Grid */

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-item {
    cursor: pointer;
}

.video-thumb {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-thumb::before {
    content: '';
    display: block;
    padding-top: 56.25%;

    /* 16:9 Aspect Ratio */

}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-item:hover .video-thumb img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.video-item:hover .play-btn {
    background: var(--primary-color);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h3 {
    font-size: 1.1rem;
    text-align: center;
}

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

   Join Us Modal Styles
   ========================================= */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    animation: slideDown 0.4s forwards;
}

@keyframes slideDown {

    to {
        transform: translateY(0);
    }

}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.close-modal:hover,

.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--light-green), #fff);
    padding: 30px 30px 20px;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.modal-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.modal-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.join-form {
    padding: 30px;
}

.join-form .form-group {
    margin-bottom: 12px;
}

.join-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.join-form input,

.join-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.join-form input:focus,

.join-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.join-form .btn {
    width: 100%;
    border-radius: 8px;
    padding: 14px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Intl Tel Input Overrides */

.iti {
    width: 100%;
}

.iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2),

(min-resolution: 192dpi) {

    .iti__flag {
        background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags@2x.png");
    }

}

/* Error Messages */

.error-msg {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    height: 15px;

    /* Prevent jump */

}

/* Success State */

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

   Partners Section
   ========================================= */

.partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f9f6 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {

    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }

}

.partners-carousel-wrapper {
    margin-top: 50px;
    padding: 40px 0;
    position: relative;
}

.partnersSwiper {
    padding: 20px 0;
}

.partnersSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.partner-logo-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0px;
    box-shadow: 0 8px 32px rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.partner-logo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.1), transparent);
    transition: left 0.5s;
}

.partner-logo-box:hover::before {
    left: 100%;
}

.partner-logo-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 45px rgba(46, 125, 50, 0.2);
    border-color: var(--primary-color);
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive */

@media (max-width: 768px) {

    .partners-section {
        padding: 60px 0;
    }

    .partner-logo-box {
        padding: 20px 30px;
        min-height: 100px;
    }

    .partner-logo-box img {
        max-height: 60px;
    }

}

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

   Awards Carousel Styles
   ========================================= */

.awards-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.awards-section .section-header h2 {
    color: var(--white);
}

.awards-section .section-header .divider {
    background-color: var(--white);
}

.awards-carousel-wrapper {
    margin-top: 40px;
    padding: 20px 0;
}

.awardsSwiper {
    padding-bottom: 50px;
}

.award-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.award-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.award-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.award-card:hover .award-img img {
    transform: scale(1.1);
}

.award-content {
    background-color: #fff;
    padding: 25px;
    text-align: center;
}

.award-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.award-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.awardsSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.awardsSwiper .swiper-pagination-bullet-active {
    background: var(--white);
    transform: scale(1.2);
}

/* Responsive Adjustments for Awards */

@media (max-width: 768px) {

    .awards-section {
        padding: 60px 0;
    }

    .award-img {
        height: 200px;
    }

    .award-content h3 {
        font-size: 1.1rem;
    }

}

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

   FAQ Page Styles - Redesigned
   ========================================= */

.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-container-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.faq-image-col {
    position: sticky;
    top: 120px;

    /* Offset for fixed header */

}

.faq-feature-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--secondary-color), 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 600px;
    transition: transform 0.3s ease;
}

.faq-feature-img:hover {
    transform: translateY(-5px);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #eee;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: rgba(46, 125, 50, 0.2);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.15);
    transform: translateY(-3px);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background-color 0.3s;
}

.faq-item.active .faq-question {
    background-color: rgba(46, 125, 50, 0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    transition: color 0.3s;
    line-height: 1.4;
    padding-right: 15px;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.toggle-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;

    /* Prevent shrinking */

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-color);
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.faq-item.active .toggle-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    background: #fff;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-answer p {
    padding: 20px 25px 25px;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Adjustments for FAQ */

@media (max-width: 991px) {

    .faq-container-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image-col {
        position: static;
        margin-bottom: 20px;
        text-align: center;
    }

    .faq-feature-img {
        height: 300px;
        max-width: 100%;
        box-shadow: 10px 10px 0 var(--secondary-color), 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

}

/* ==========================================================================
   New Homepage Redesign Sections (Montserrat & Poppins Theme)
   ========================================================================== */

/* Pagination Position */
.videoSwiper .swiper-pagination {
    bottom: -30px !important;
}

/* Slow Zoom Effect for Hero Section */
.hero-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s infinite alternate;
    z-index: 1;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

/* Impact Counter Section - Stunning Premium Dashboard */
.impact-counter-section {
    padding: 80px 0;
    background: #f8faf9;
    position: relative;
    z-index: 10;
}

.stats-dashboard {
    background: linear-gradient(135deg, #0b3d22 0%, #052413 100%);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(6, 43, 24, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

/* Subtle radial glow effect inside the dashboard background */
.stats-dashboard::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.stat-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 10px 20px;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(247, 148, 29, 0.4);
    border-color: var(--accent-color);
}

.stat-item h3 {
    font-size: 3rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #ffffff 40%, #ffd699 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    transition: color 0.4s ease;
}

.stat-item:hover p {
    color: var(--white);
}

@media (max-width: 992px) {
    .stats-dashboard {
        flex-wrap: wrap;
        padding: 40px 20px;
        gap: 40px 0;
    }
    .stat-item {
        flex: 1 1 33.333%;
    }
    .stat-item:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .impact-counter-section {
        padding: 60px 0;
    }
    .stat-item {
        flex: 1 1 50%;
    }
    .stat-item:nth-child(2)::after,
    .stat-item:nth-child(4)::after {
        display: none;
    }
    .stat-item:nth-child(3)::after {
        display: block;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 1 1 100%;
    }
    .stat-item::after {
        display: none !important;
    }
    .stat-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}


/* About Split Section - Overlapping Image Collage & Premium Vision/Mission Cards */
.about-section-new {
    padding: 80px 0 60px 0;
    background-color: var(--white);
    position: relative;
}

.about-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-collage-sticky-wrapper {
    position: relative;
    width: 100%;
}

@media (min-width: 993px) {
    .about-collage-sticky-wrapper {
        position: sticky;
        top: 110px;
        align-self: start;
        z-index: 10;
    }
}

.about-collage-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--white);
    z-index: 2;
    transition: transform 0.4s ease;
}

.about-img-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 300px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
    z-index: 3;
    transition: transform 0.4s ease;
}

.about-badge-floating {
    position: absolute;
    top: 40px;
    right: 10%;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.3);
    z-index: 4;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% { transform: translateY(0) rotate(2deg); }
    100% { transform: translateY(-10px) rotate(-2deg); }
}

.about-collage-container:hover .about-img-main {
    transform: scale(1.02) rotate(-1deg);
}

.about-collage-container:hover .about-img-overlay {
    transform: scale(1.03) rotate(1deg) translateY(-5px);
}

.about-content-new {
    display: flex;
    flex-direction: column;
}

.about-content-new .pre-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content-new .pre-title::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.about-content-new h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
}

.about-content-new .tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.6;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.about-content-new p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 25px;
    line-height: 1.8;
}

.vm-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
}

.vm-card-new {
    background: rgba(221, 245, 229, 0.35);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(31, 138, 77, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.vm-card-new:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(221, 245, 229, 0.55);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(31, 138, 77, 0.08);
}

.vm-card-new h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vm-card-new h4 i {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(31, 138, 77, 0.1);
    transition: all 0.3s;
}

.vm-card-new:hover h4 i {
    background: var(--primary-color);
    color: var(--white);
}

.vm-card-new p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-body);
}

@media (max-width: 992px) {
    .about-grid-new {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-collage-container {
        height: 450px;
    }
    .about-img-main {
        height: 350px;
    }
    .about-img-overlay {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .vm-cards-grid {
        grid-template-columns: 1fr;
    }
    .about-collage-container {
        height: 350px;
    }
    .about-img-main {
        height: 280px;
    }
    .about-img-overlay {
        height: 200px;
    }
    .about-badge-floating {
        top: 20px;
        font-size: 0.8rem;
        padding: 10px 18px;
    }
    .about-content-new h2 {
        font-size: 2.2rem;
    }
}

/* Featured Projects Section */
.projects-section-new {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.projects-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.project-card-new {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(31, 138, 77, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.project-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31, 138, 77, 0.12);
    border-color: var(--primary-color);
}

.project-card-new .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(31, 138, 77, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.project-card-new:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

.project-card-new h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.project-card-new p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.project-card-new .btn-learn-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.project-card-new .btn-learn-more:hover {
    gap: 12px;
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .projects-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Section Ending Banner */
.ending-banner {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(rgba(13, 77, 45, 0.85), rgba(13, 77, 45, 0.75)), url('../assets/slider/sl1.jpg') center/cover no-repeat fixed;
    color: var(--white);
    text-align: center;
}

.ending-banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ending-banner h2 {
    font-size: 2.8rem;
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.ending-banner p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.ending-banner .btn {
    padding: 15px 40px;
    font-size: 1.05rem;
    background-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.4);
    color: var(--white) !important;
}

.ending-banner .btn:hover {
    background-color: var(--white);
    color: var(--text-dark) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .ending-banner h2 {
        font-size: 2rem;
    }
    .ending-banner p {
        font-size: 1.1rem;
    }
}

/* Stunning Premium Testimonial Carousel */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/leaf.png');
    opacity: 0.05;
    pointer-events: none;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p,
.testimonials-section .section-header .pre-title {
    color: var(--white);
}

.testimonials-section .section-header .divider {
    background: var(--accent-color);
}

.testimonial-swiper {
    padding: 40px 0 80px 0;
}

.testimonial-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.8;
    margin-bottom: 30px;
}

.testimonial-slide p {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.testimonial-info {
    text-align: left;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: #B0BEC5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom Swiper Pagination for Testimonials */
.testimonial-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 25px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testimonial-slide p {
        font-size: 1.2rem;
    }
}


/* Stunning Image Cards for Afforestation Methodology */
.stunning-project-grid {
    padding-top: 20px;
}
.stunning-img-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 8px solid var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
    position: relative;
}
.stunning-img-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
    pointer-events: none;
}
.stunning-img-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
    border-color: rgba(247, 148, 29, 0.2); /* Subtle accent color border */
}
.stunning-img-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.stunning-img-card:hover img {
    transform: scale(1.05);
}

/* =========================================
   STUNNING UI OVERHAUL CSS
   ========================================= */

.glass-card {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    color: var(--white) !important;
}

.stunning-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
    border: none !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(31, 138, 77, 0.4);
    transition: all 0.4s ease;
}
.stunning-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 138, 77, 0.6);
}

.stunning-btn-outline {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
    transition: all 0.4s ease;
}
.stunning-btn-outline:hover {
    background: var(--white);
    color: var(--dark-green) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.stunning-stats-dashboard {
    background: linear-gradient(135deg, var(--dark-green) 0%, #08331d 100%);
    border-radius: 25px;
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.stunning-stats-dashboard::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stunning-stats-dashboard .stat-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 10px;
    color: var(--white);
}

.stunning-stats-dashboard .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.stunning-stats-dashboard .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stunning-stats-dashboard .stat-item:hover .stat-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.3);
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.stunning-stats-dashboard .counter-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(to right, #fff, #DDF5E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.stunning-stats-dashboard p {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.stunning-about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b00);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 15px 30px rgba(247, 148, 29, 0.4);
    z-index: 10;
    border: 2px solid var(--white);
    transform: perspective(500px) translateZ(20px);
    transition: transform 0.4s ease;
}

.about-collage-container:hover .stunning-about-badge {
    transform: perspective(500px) translateZ(40px) scale(1.05);
}

.stunning-parallax-banner {
    position: relative;
    padding: 120px 0;
    background-image: url('../assets/slider/sl3.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.stunning-parallax-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(13, 77, 45, 0.9), rgba(13, 77, 45, 0.6));
}

.stunning-parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;

/* =========================================
   STUNNING UI OVERHAUL CSS
   ========================================= */

.glass-card {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    color: var(--white) !important;
}

.stunning-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
    border: none !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(31, 138, 77, 0.4);
    transition: all 0.4s ease;
}
.stunning-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 138, 77, 0.6);
}

.stunning-btn-outline {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
    transition: all 0.4s ease;
}
.stunning-btn-outline:hover {
    background: var(--white);
    color: var(--dark-green) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.stunning-stats-dashboard {
    background: linear-gradient(135deg, var(--dark-green) 0%, #08331d 100%);
    border-radius: 25px;
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.stunning-stats-dashboard::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stunning-stats-dashboard .stat-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 10px;
    color: var(--white);
}

.stunning-stats-dashboard .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.stunning-stats-dashboard .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stunning-stats-dashboard .stat-item:hover .stat-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.3);
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.stunning-stats-dashboard .counter-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(to right, #fff, #DDF5E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.stunning-stats-dashboard p {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.stunning-about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b00);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 15px 30px rgba(247, 148, 29, 0.4);
    z-index: 10;
    border: 2px solid var(--white);
    transform: perspective(500px) translateZ(20px);
    transition: transform 0.4s ease;
}

.about-collage-container:hover .stunning-about-badge {
    transform: perspective(500px) translateZ(40px) scale(1.05);
}

.stunning-parallax-banner {
    position: relative;
    padding: 120px 0;
    background-image: url('../assets/slider/sl3.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.stunning-parallax-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(13, 77, 45, 0.9), rgba(13, 77, 45, 0.6));
}

.stunning-parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .stunning-stats-dashboard .stat-item:not(:last-child)::after { display: none; }
    .stunning-stats-dashboard .stat-item { flex: 1 1 50%; margin-bottom: 30px; }
}

.methodology-images-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .methodology-images-2col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
