:root {
    --earth-green: #2C7A4B;
    --warm-terracotta: #D9733B;
    --soft-beige: #F6F2EC;
    --soft-green-tint: #F3F8F5;
    --dark-text: #1F2D2E;
    --light-text: #5A6C6D;
    --white: #FFFFFF;
    --shadow: rgba(44, 122, 75, 0.1);
    --card-bg: #FFFFFF;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: var(--soft-green-tint);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* .page-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    background-color: #F3F8F5;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    position: relative;
} */

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

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--earth-green);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--warm-terracotta);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--earth-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1f5a38;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow);
}

.btn-secondary {
    background-color: var(--warm-terracotta);
    color: var(--white);
    margin-left: 10px;
    /* Spacing between buttons */
}

.btn-secondary:hover {
    background-color: #c45d2a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 115, 59, 0.2);
}

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

.btn-outline:hover {
    background-color: var(--earth-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* Programs Hero Section */
.programs-hero {
    padding-top: 150px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, rgba(44, 122, 75, 0.05) 0%, rgba(246, 242, 236, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.programs-hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%232C7A4B" opacity="0.1" d="M50,5 C75,5 95,25 95,50 C95,75 75,95 50,95 C25,95 5,75 5,50 C5,25 25,5 50,5 Z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.programs-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--earth-green);
}

.programs-hero .subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.program-overview {
    background-color: rgba(44, 122, 75, 0.08);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 40px;
    border-left: 5px solid var(--earth-green);
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.program-overview p {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.7;
}

/* Individual Program Sections */
.program-section {
    padding: 100px 0;
}

.program-section:nth-child(even) {
    background-color: var(--white);
}

.program-section:nth-child(odd) {
    background-color: var(--soft-green-tint);
}

.program-container {
    display: flex;
    align-items: center;
    gap: 60px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.program-container.visible {
    opacity: 1;
    transform: translateX(0);
}

.program-container.reverse {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.program-container.reverse.visible {
    transform: translateX(0);
}

.program-text,
.program-image {
    flex: 1;
}

.program-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--earth-green);
    display: flex;
    align-items: center;
    gap: 15px;
}

.program-text h2 i {
    color: var(--warm-terracotta);
    font-size: 1.8rem;
}

.program-text>p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.7;
}

.program-bullets {
    list-style: none;
    margin-bottom: 30px;
}

.program-bullets li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.program-bullets li:before {
    content: '•';
    color: var(--warm-terracotta);
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.program-image {
    text-align: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.program-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.program-image:hover img {
    transform: scale(1.03);
}

/* Program Gallery Section */
.program-gallery {
    background-color: var(--white);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--soft-green-tint);
    border: 2px solid transparent;
    border-radius: 30px;
    color: var(--dark-text);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--earth-green);
    color: var(--white);
    border-color: var(--earth-green);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-color: var(--soft-beige);
}

.gallery-slide.active {
    opacity: 1;
}

.slide-category {
    font-size: 1.5rem;
    color: var(--earth-green);
    margin-bottom: 20px;
    text-align: center;
}

.slide-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 900px;
}

.gallery-thumb {
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-thumb:hover img {
    transform: scale(1.1);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--earth-green);
    transform: scale(1.2);
}

.slider-arrow {
    background-color: var(--earth-green);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: #1f5a38;
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(rgba(44, 122, 75, 0.9), rgba(44, 122, 75, 0.9)), url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button {
    min-width: 200px;
    padding: 16px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-button.volunteer {
    background-color: var(--white);
    color: var(--earth-green);
}

.cta-button.volunteer:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.contact {
    background-color: var(--warm-terracotta);
    color: var(--white);
}

.cta-button.contact:hover {
    background-color: #c45d2a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(217, 115, 59, 0.3);
}

.cta-button.donate {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.donate:hover {
    background-color: var(--white);
    color: var(--earth-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer
footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-contact,
.footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--warm-terracotta);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 12px;
    color: var(--earth-green);
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--earth-green);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

Mobile Responsive Styles 
@media (max-width: 992px) {
    .programs-hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .program-container {
        gap: 40px;
    }

    .gallery-slider {
        height: 450px;
    }
}*/

/* Internship Tracks */
.internship-tracks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.internship-track-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(44, 122, 75, 0.1);
}

.internship-track-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 122, 75, 0.15);
    border-color: var(--earth-green);
}

.track-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.track-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
}

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

.internship-track-card:hover .track-image img {
    transform: scale(1.08);
}

.track-content {
    padding: 30px;
}

.track-content h3 {
    font-size: 1.5rem;
    color: var(--earth-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.track-content h3 i {
    color: var(--warm-terracotta);
    font-size: 1.3rem;
}

.track-content > p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    /* .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    } */

    .programs-hero {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .programs-hero h1 {
        font-size: 2rem;
    }

    .programs-hero .subtitle {
        font-size: 1.1rem;
    }

    .program-container {
        flex-direction: column;
        gap: 30px;
    }

    .program-container.reverse {
        flex-direction: column;
    }

    .program-text,
    .program-image {
        width: 100%;
    }

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

    .gallery-slider {
        height: 400px;
    }

    .slide-images {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .gallery-thumb {
        height: 150px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .internship-tracks {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .track-image {
        height: 180px;
    }

    .track-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .programs-hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .program-text h2 {
        font-size: 1.8rem;
    }

    .gallery-slider {
        height: 500px;
    }

    .slide-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-thumb {
        height: 150px;
    }
}