* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #2FA84F;
    --light-green: #6BCF8E;
    --yellow: #FFC61A;
    --blue: #5A7FBF;
    --brown: #8B4A22;
    --black: #000000;
    --white: #ffffff;
    --gray: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo-img {
    height: 80px;
    width: auto;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--green);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--green);
}

.hamburger:hover span {
    background: var(--green);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(47, 168, 79, 0.1) 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.menu-overlay.active {
    right: 0;
}

.menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
}

.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.menu-close:hover {
    background: var(--green);
    transform: rotate(90deg);
}

.menu-links {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.menu-links li {
    margin: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.menu-overlay.active .menu-links li {
    opacity: 1;
    transform: translateX(0);
}

.menu-links li:nth-child(1) { transition-delay: 0.1s; }
.menu-links li:nth-child(2) { transition-delay: 0.15s; }
.menu-links li:nth-child(3) { transition-delay: 0.2s; }
.menu-links li:nth-child(4) { transition-delay: 0.25s; }
.menu-links li:nth-child(5) { transition-delay: 0.3s; }
.menu-links li:nth-child(6) { transition-delay: 0.35s; }

.menu-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 1rem 1.5rem;
    border-left: 4px solid transparent;
    position: relative;
}

.menu-links a:hover {
    color: var(--green);
    border-left-color: var(--green);
    padding-left: 2rem;
    background: rgba(47, 168, 79, 0.1);
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 70vh;
    margin-top: 82px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--yellow);
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: var(--yellow);
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--green);
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

/* Executive Summary */
.executive-summary {
    background: var(--white);
}

.summary-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.summary-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

/* Vision Mission */

        /* Vision & Mission */
        .vision-mission {
            background: var(--gray);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 3rem;
        }

        .vm-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .vm-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: var(--brown);
        }

        .vm-icon i {
            color: var(--brown);
        }

        .vm-card h3 {
            font-size: 1.8rem;
            color: var(--green);
            margin-bottom: 1rem;
        }

        .vm-card p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
        }

        /* Core Values */
        .core-values {
            background: var(--white);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            background: var(--gray);
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .value-card:hover {
            background: var(--white);
            border-color: var(--green);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(47, 168, 79, 0.2);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--brown);
        }

        .value-icon i {
            color: var(--brown);
        }

        .value-card h3 {
            font-size: 1.3rem;
            color: var(--green);
            margin-bottom: 1rem;
        }

        .value-card p {
            color: #666;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .vm-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            section {
                padding: 3rem 0;
            }

            .section-title {
                font-size: 2rem;
            }
        }
        /* Objectives */
.objectives {
    background: var(--gray);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.objective-column {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.objective-header {
    padding: 2rem;
    color: var(--white);
    text-align: center;
}

.short-term {
    background: linear-gradient(135deg, var(--blue), var(--green));
}

.long-term {
    background: linear-gradient(135deg, var(--green), var(--light-green));
}

.objective-header h3 {
    font-size: 1.5rem;
}

.objective-list {
    list-style: none;
    padding: 2rem;
}

.objective-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.objective-list li:hover {
    background: var(--gray);
    transform: translateX(10px);
}

.check-icon {
    width: 30px;
    height: 30px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

/* Business Model */
.business-model {
    background: var(--white);
}

.business-streams {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.stream-card {
    background: var(--gray);
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border-left: 5px solid var(--green);
}

.stream-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.stream-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), var(--light-green));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.stream-content h3 {
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.stream-content ul {
    list-style: none;
    padding-left: 0;
}

.stream-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.stream-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, var(--green), var(--light-green));
    color: var(--white);
}

.impact-section .section-title {
    color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.impact-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

.impact-number {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.impact-card p {
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920') center/cover;
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 127, 191, 0.9), rgba(47, 168, 79, 0.9));
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button-primary {
    background: var(--yellow);
    color: var(--black);
}

.cta-button-primary:hover {
    background: var(--white);
    transform: translateY(-5px);
}

.cta-button-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button-secondary:hover {
    background: var(--white);
    color: var(--green);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: 180px;
}

.footer-tagline {
    color: var(--light-green);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--green);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--green);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--green);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .vm-grid,
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-hero {
        height: 50vh;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stream-card {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-overlay {
        max-width: 100%;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .impact-number {
        font-size: 3rem;
    }
}