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

:root {
    --dark-green: #0D4F2B;
    --lime-green: #7CEB22;
    --mid-green: #2A9D54;
    --light-green: #D4F8E2;
    --off-white: #F8F9FA;
    --gray: #707070;
    --dark-gray: #333333;
    --gradient: linear-gradient(90deg, var(--lime-green) 0%, var(--dark-green) 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background-color: var(--dark-green);
    position: relative;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    opacity: 0.95;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn.primary {
    background: var(--lime-green);
    color: var(--dark-green);
}

.btn.primary:hover {
    background: #8cf533;
}

.btn.secondary {
    background: transparent;
    border: 2px solid white;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header and Navigation */
header {
    padding: 30px 0;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: white;
    backdrop-filter: blur(10px);
    position: relative;
}

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

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

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

.logo-image {
    height: 100px;
    width: auto;
    margin-right: 5px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 20px;
    font-size: 1.2rem;
}

.nav-links a {
    position: relative;
    padding: 8px 0;
    background: linear-gradient(to right, var(--dark-green), var(--lime-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime-green);
    transition: width 0.3s ease;
}

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

.cta-button .btn {
    background: var(--dark-green);
    color: white;
    font-size: 1.1rem;
}

.cta-button .btn:hover {
    background: var(--mid-green);
}

.cta-button {
    margin-left: 20px;
}

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

/* Hero Section */
.hero {
    padding: 50px 0 50px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 4rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 1.2rem;
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--lime-green);
    text-align: center;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    margin-top: 40px;
}

.stat {
    flex: 1;
    text-align: center;
}

.stat h3 {
    color: var(--lime-green);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Sustainability Section */
.sustainability {
    padding: 100px 0;
    background: rgba(13, 79, 43, 0.7);
}

.commitment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.commitment-card {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.commitment-card img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(13, 79, 43, 0.7);
}

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

.contact-info p {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item i {
    margin-right: 15px;
    font-size: 1.3rem;
    color: var(--lime-green);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lime-green);
}

.submit-btn {
    width: 100%;
    background: var(--lime-green);
    color: var(--dark-green);
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.submit-btn:hover {
    background: #8cf533;
}

/* Footer */
footer {
    background: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-image {
    height: 120px;
    width: auto;
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    background: linear-gradient(to right, var(--dark-green), var(--lime-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    opacity: 0.8;
    background: linear-gradient(to right, var(--dark-green), var(--lime-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(13, 79, 43, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--dark-green), var(--lime-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Timeline Section */
.journey {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--lime-green);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 55%;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lime-green);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -60px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
}

.timeline-content h3 {
    color: var(--lime-green);
}

/* Impact Counter Section */
.impact {
    padding: 100px 0;
    background: var(--gradient);
}

.impact-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-10px);
}

.counter-item i {
    font-size: 3rem;
    color: var(--lime-green);
    margin-bottom: 15px;
}

.counter-item h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-image {
        width: 40%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        display: none;
    }
    
    .commitment-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .impact-counters {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-links, .cta-button {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .stat {
        margin-bottom: 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 90%;
        left: 0 !important;
        margin-left: 60px;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: -60px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .impact-counters {
        grid-template-columns: 1fr;
    }
}

/* AOS Animation Enhancements */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}