
:root {
    --primary-green: #2e7d32;
    --secondary-green: #4caf50;
    --light-green: #8bc34a;
    --dark-green: #1b5e20;
    --earth-brown: #795548;
    --light-tan: #efebe9;
}


body {
    font-family: 'Merriweather', serif;
    color: #333;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-green);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-green);
}

.about-content {
    margin-bottom: 50px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.mission-box {
    background-color: var(--light-tan);
    border-left: 5px solid var(--primary-green);
    padding: 30px;
    border-radius: 0 10px 10px 0;
    margin: 40px 0;
    position: relative;
}

.mission-icon {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-heading {
    color: var(--dark-green);
    margin-bottom: 20px;
    margin-left: 10%;
}

.mission-text {
    font-style: italic;
    color: #555;
    margin-bottom: 0;
    font-size: 1.2rem;
}

.stats-container {
    background-color: var(--light-tan);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: #555;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.03);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-item {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
    
    .stats-container {
        padding: 30px 20px;
    }
    
    .mission-box {
        padding: 25px 20px 25px 30px;
    }
}

@media (max-width: 576px) {
    .mission-text {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}











    /* Our Story Section */
        
        .our-story-section {
            padding: 100px 0;
            background-color: var(--light-tan);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: var(--dark-green);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        .story-content {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
        }
        
        .benefits-container {
            margin: 60px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
            padding: 25px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
        }
        
        .benefit-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .benefit-icon {
            min-width: 70px;
            height: 70px;
            background-color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            font-size: 1.8rem;
            color: white;
        }
        
        .benefit-content h3 {
            color: var(--dark-green);
            margin-bottom: 15px;
        }
        
        .benefit-content p {
            color: #555;
            margin-bottom: 0;
        }
        
        .trusted-by {
            text-align: center;
            margin-top: 70px;
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .trusted-title {
            color: var(--dark-green);
            margin-bottom: 30px;
        }
        
        .trusted-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .trusted-logo {
            width: 120px;
            height: 120px;
            background-color: #f8f9fa;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-green);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-left {
            animation: fadeInLeft 1s ease-out forwards;
        }
        
        .animate-right {
            animation: fadeInRight 1s ease-out forwards;
        }
        
        .animate-up {
            animation: fadeInUp 1s ease-out forwards;
        }
        
        .benefit-item:nth-child(odd) {
            animation-delay: 0.2s;
        }
        
        .benefit-item:nth-child(even) {
            animation-delay: 0.4s;
        }
        
        .trusted-by {
            animation: fadeInUp 1s ease-out 0.6s forwards;
            opacity: 0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .benefit-item {
                flex-direction: column;
                text-align: center;
            }
            
            .benefit-icon {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .our-story-section {
                padding: 80px 0;
            }
            
            .benefit-item {
                padding: 20px;
            }
            
            .trusted-logos {
                gap: 20px;
            }
            
            .trusted-logo {
                width: 90px;
                height: 90px;
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .benefit-icon {
                display: none;
                /* width: 60px;
                height: 60px;
                font-size: 1.5rem; */
            }
            
            .trusted-logo {
                width: 70px;
                height: 70px;
            }
        }






/* Missioin Section */  
        .mission-section {
            padding: 100px 0;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            position: relative;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: var(--dark-green);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        .mission-intro {
            text-align: center;
            font-size: 1.3rem;
            margin-bottom: 60px;
            color: var(--earth-brown);
            font-weight: 500;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .mission-cards {
            margin-bottom: 50px;
        }
        
        .mission-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border-top: 5px solid var(--primary-green);
            /* opacity: 0;
            transform: translateY(50px); */
        }
        
        .mission-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .mission-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            color: white;
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
            transition: all 0.3s ease;
            transform: translate3d(50px);
        }
        
        .mission-card:hover .mission-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px rgba(46, 125, 50, 0.4);
        }
        
        .mission-card h3 {
            color: var(--dark-green);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .mission-card p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 0;
        }
        
        .mission-commitment {
            background: var(--light-tan);
            border-radius: 15px;
            padding: 50px;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            /* opacity: 0; */
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        
        .commitment-icon {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 25px;
        }
        
        .commitment-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 0;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .mission-card.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .mission-commitment.animated {
            animation: fadeInUp 1s ease-out forwards;
        }
        
        .mission-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .mission-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .mission-card:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        .mission-commitment {
            animation-delay: 0.8s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .mission-card {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .mission-section {
                padding: 80px 0;
            }
            
            .mission-intro {
                font-size: 1.1rem;
                padding: 0 20px;
            }
            
            .mission-card {
                padding: 30px 20px;
            }
            
            .mission-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            
            .mission-commitment {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .mission-card h3 {
                font-size: 1.3rem;
            }
            
            .commitment-text {
                font-size: 1.1rem;
            }
        }
  







        /* What Makes Us Different Section */
        
        .difference-section {
            padding: 100px 0;
            background-color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: var(--dark-green);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        .difference-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
            /* opacity: 0; */
            transform: translateY(50px);
        }
        
        .difference-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            z-index: -1;
            background: linear-gradient(45deg, 
                var(--primary-green), 
                var(--secondary-green), 
                var(--light-green), 
                var(--primary-green));
            background-size: 400% 400%;
            border-radius: 16px;
            animation: borderAnimation 3s ease infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .difference-card:hover::before {
            opacity: 1;
        }
        
        .difference-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .difference-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            color: white;
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .difference-card:hover .difference-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px rgba(46, 125, 50, 0.4);
        }
        
        .difference-card h3 {
            color: var(--dark-green);
            margin-bottom: 20px;
            font-size: 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .difference-card p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }
        
        .card-content {
            position: relative;
            z-index: 2;
        }
        
        /* Border animation */
        @keyframes borderAnimation {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        /* Card entrance animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .difference-card.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .difference-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .difference-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .difference-card:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        .difference-card:nth-child(4) {
            animation-delay: 0.8s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .difference-card {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .difference-section {
                padding: 80px 0;
            }
            
            .difference-card {
                padding: 30px 20px;
            }
            
            .difference-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .difference-card h3 {
                font-size: 1.3rem;
            }
            
            .difference-card p {
                font-size: 0.95rem;
            }
        }
  





        /* Meet the Team Section */
        
        .team-section {
            padding: 100px 0;
            background-color: var(--light-tan);
            position: relative;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: var(--dark-green);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        .team-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            /* opacity: 0; */
            transform: translateY(50px);
        }
        
        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .team-img-container {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .team-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .team-img {
            transform: scale(1.1);
        }
        
        .team-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 20px;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .team-card:hover .team-overlay {
            opacity: 1;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }
        
        .social-Icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--primary-green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-Icon:hover {
            background: var(--dark-green);
            transform: translateY(-3px);
        }
        
        .team-content {
            padding: 25px;
            text-align: center;
        }
        
        .team-name {
            color: var(--dark-green);
            margin-bottom: 5px;
            font-size: 1.4rem;
        }
        
        .team-role {
            color: var(--primary-green);
            font-weight: 500;
            margin-bottom: 15px;
            display: block;
        }
        
        .team-bio {
            color: #555;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        .team-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .team-card.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .team-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .team-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .team-card:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        .team-card:nth-child(4) {
            animation-delay: 0.8s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .team-card {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .team-section {
                padding: 80px 0;
            }
            
            .team-img-container {
                height: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .team-content {
                padding: 20px;
            }
            
            .team-name {
                font-size: 1.3rem;
            }
            
            .team-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
        }
    