:root {
    --primary-green: #5E8C31;
    --primary-green-dark: #4a6e26;
    --primary-brown: #6B4F2C;
    --background-beige: #FDFBF5;
    --accent-gold: #C1A14B;
    --accent-gold-light: #d4b560;
    --text-dark: #212529;
    --text-light: #FFFFFF;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}



/* Section Styling with Enhanced Spacing */
.content-section.interested-section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title-ol {
    text-align: center;
    /* margin-bottom: 80px; */
    position: relative;
}

.section-title-ol h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.section-title-ol h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.section-title-ol h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-green), var(--accent-gold), transparent);
    border-radius: 3px;
}

.section-title h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.section-title h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-green), var(--accent-gold), transparent);
    border-radius: 3px;
}

.section-title p {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* ========================================
   VALUE PROP CARDS - Why Partner Section
   ======================================== */

.value-prop-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(94, 140, 49, 0.1);
}

.value-prop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;

}

.value-prop-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(94, 140, 49, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
    z-index: 0;
}

.value-prop-card:hover::before {
    transform: scaleX(1);
}

.value-prop-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.value-prop-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.value-prop-card .icon {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.value-prop-card:hover .icon {
    transform: scale(1.15) rotateY(360deg);
}

.value-prop-card h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.value-prop-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ========================================
   IMPACT SECTION - Stats Counter
   ======================================== */

.impact-section {
    background: linear-gradient(135deg, #4a3622 0%, var(--primary-brown) 50%, #5a4530 100%);
    padding: 120px 0;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(193, 161, 75, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s infinite ease-in-out;
}

.impact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94, 140, 49, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s infinite ease-in-out;
    animation-delay: 2s;
}

.content-section-hlo {
    padding: 60px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.impact-stat {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.impact-stat-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.impact-stat-wrapper:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    transform: translateY(-10px);
}

.impact-stat h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
}

.impact-stat p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* ========================================
   CROP CARDS - Research/Focus Crops
   ======================================== */

.crop-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.crop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(94, 140, 49, 0.8), rgba(193, 161, 75, 0.8));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.crop-card:hover::before {
    opacity: 1;
}

.crop-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.crop-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 205px;
}

.crop-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.crop-card:hover img {
    transform: scale(1.2) rotate(3deg);
}

.crop-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.crop-info {
    padding: 35px;
    position: relative;
    z-index: 2;
}

.crop-info h5 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-brown);
    transition: color 0.3s ease;
}

.crop-card:hover .crop-info h5 {
    color: white;
}

.crop-info p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.crop-card:hover .crop-info p {
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   CTA SECTION - Join Our Mission
   ======================================== */

.cta-section {
    background: linear-gradient(135deg,
            rgba(94, 140, 49, 0.08) 0%,
            rgba(193, 161, 75, 0.08) 50%,
            rgba(94, 140, 49, 0.08) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0px !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94, 140, 49, 0.1) 0%, transparent 70%);
    animation: pulse 6s infinite ease-in-out;
}

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

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 25px;
    font-weight: 800;
}

.cta-section .lead {
    font-size: 1.3rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto 50px;
    font-weight: 400;
    line-height: 1.8;
}

/* ========================================
   BUTTON STYLES
   ======================================== */

.btn-custom {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-light);
    border-radius: 50px;
    padding: 18px 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    box-shadow: 0 8px 30px rgba(193, 161, 75, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-custom:hover::before {
    width: 400px;
    height: 400px;
}

.btn-custom:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 50px rgba(193, 161, 75, 0.6);
    color: var(--text-light);
}

.btn-custom:active {
    transform: translateY(-4px) scale(1.02);
}

/* ========================================
   ANIMATION CLASSES
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    .content-section {
        padding: 80px 0;
    }

    .value-prop-card {
        margin-bottom: 30px;
    }

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

    .impact-stat {
        margin-bottom: 30px;
    }

    .crop-card-img-wrapper {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .btn-custom {
        padding: 15px 35px;
        font-size: 0.9rem;
    }

    .value-prop-card {
        padding: 40px 25px;
    }

    .crop-info {
        padding: 25px;
    }
}

/* ------------------------- */
/*  2. Header & Navigation   */
/* ------------------------- */
header {
    background-color: rgba(253, 251, 245, 0.85);
    /* Semi-transparent beige */
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-green);
}

.navbar-brand img {
    height: 95px;
    margin-right: 10px;
}

.navbar .nav-link {
    font-weight: 600;
    color: var(--primary-brown);
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-green);
}

/* Mobile Nav */
.mobile-nav {
    padding: 10px 0;
}

.mobile-nav-toggle {
    font-size: 2rem;
    color: var(--primary-brown);
}

.offcanvas {
    background-color: var(--background-beige);
}

.offcanvas .nav-link {
    font-size: 1.2rem;
    padding: 10px 0;
    color: var(--primary-brown);
}

.offcanvas .nav-link:hover {
    color: var(--primary-green);
}


/* ------------------------- */
/*  3. Hero Section          */
/* ------------------------- */
.hero-section {
    position: relative;
    height: 90vh;
    background-image: url(../img/12.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--text-light);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto 30px auto;
}

/* ------------------------- */
/*  4. Buttons               */
/* ------------------------- */
/* .btn-custom {
    background-color: var(--accent-gold);
    color: var(--text-light);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-custom:hover {
    background-color: #a88d3e;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
} */

/* ------------------------- */
/*  5. Content Sections      */
/* ------------------------- */


.content-section {
    padding: 60px;
}

.img-fluid-shadow {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Card Design for Programs/Services */
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-card .icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}


/* ------------------------- */
/*  7. Responsive            */
/* ------------------------- */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-section {
        height: 70vh;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* ------------------------- */
/*  6. Footer                */
/* ------------------------- */
.site-footer {
    background-color: var(--primary-brown);
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0 0 0;
    font-size: 0.9rem;
}

.site-footer h5 {
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 50%;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links li,
.footer-contact li {
    padding: 5px 0;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--accent-gold);
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 10px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-green);
    color: var(--text-light);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {

    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ------------------------- */
/*  8. Inner Page Styles     */
/* ------------------------- */

/* Page Header */
.page-header {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/about.webp);

    color: var(--text-light);
    padding: 60px 0;
    height: 250px;
}

.page-header.special {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/special.webp) !important;

    color: var(--text-light);
    padding: 60px 0;
}

.page-header.contact {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/contact.webp) !important;

    color: var(--text-light);
    padding: 60px 0;
}

.page-header.services {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/contact.webp) !important;

    color: var(--text-light);
    padding: 60px 0;
}

.page-header h1 {
    color: var(--text-light);
    font-size: 3rem;
}

/* Team Card (About Page) */
.team-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--background-beige);
}

.team-card h3 {
    font-size: 1.5rem;
}

.team-title {
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Crop Card (Research Page) */
.crop-card {
    background: #fff;
    border-radius: 0px 0px 100px 100px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.crop-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.crop-info {
    padding: 20px;
}

.crop-info h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Contact Page Styles */
.contact-form {
    display: flex;

    flex-direction: column;
}

.contact-form .form-control {
    min-height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.25rem rgba(94, 140, 49, 0.25);
}

.bton btn btn-custom {
    width: 40%;
    justify-content: center;
}

.contact-info {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    margin-bottom: 20px;
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-info .info-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-right: 20px;
    margin-top: 0px;
}

.info-item h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p,
.info-item a {
    color: #6c757d;
    text-decoration: none;
    margin: 0;
}

.info-item a:hover {
    color: var(--primary-green);
}

/* ------------------------- */
/*  9. Program Page Styles   */
/* ------------------------- */
/* .program-section {
    padding: 80px 0;
} */

.program-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.program-step {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    background-color: rgba(193, 161, 75, 0.1);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--primary-green);
}

/* ------------------------- */
/* 11. Homepage Enhancements */
/* ------------------------- */

/* Animate.css Delay Utilities */
.animate__delay-1s {
    --animate-delay: 0.5s;
}

.animate__delay-2s {
    --animate-delay: 1s;
}

/* Value Proposition Card */
.value-prop-card .icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.value-prop-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.program-section {
    padding: 60px;
}

/* Impact Stats Section */
.impact-section {
    background-color: var(--primary-brown) !important;
    padding: 80px 0;
    color: var(--text-light);
}

.impact-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.impact-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-modal .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
}

.cta-modal .modal-body {
    padding: 0;
}

.cta-modal .container {
    padding: 0;
}

.cta-modal .contact-form {
    padding-top: 10px;
    padding-right: 10px;
}

.cta-modal .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
}

.cta-modal .modal-body {
    padding: 0;
}

.cta-modal .container {
    padding: 0;
}

.info-item .mobile-number i {
    margin-right: 0;
}

.info-item .mobile-number span.name {
    margin-right: 10px;
}

.cta-modal .contact-form {
    padding-top: 10px;
    padding-right: 10px;
}

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

.value-item {
    background: linear-gradient(135deg, #3d6e1f 0%, #5a8c2e 100%);
    padding: 35px;
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.value-item:nth-child(2) {
    animation-delay: 0.7s;
}

.value-item:nth-child(3) {
    animation-delay: 0.8s;
}

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

.value-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.value-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.value-item p {
    line-height: 1.6;
    opacity: 0.95;
}

/* .impact-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 50px;
            margin-top: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.9s both;
            margin: 60px !important;
        } */

.impact-section h2 {
    color: #2d5016;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.stat-number {
    font-size: 3em;
    font-weight: 700;
    color: #3d6e1f;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: #666;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .mission-card,
    .impact-section {
        padding: 30px;
    }

    .mission-card h2,
    .impact-section h2 {
        font-size: 2em;
    }

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

.footer-initiatives {


    margin-bottom: 20px;
    display: flex;
}

.initiative-logo {
    height: 50px;
    width: 100px;

    margin-right: 10px;

}

.footer-initiatives .initiative-logo:hover {
    transform: scale(1.05);
}

/* 🌐 Top Bar Styling */
.top-bar {
    background: var(--primary-brown);
    color: white;
    padding: 6px 0;
    font-size: 14px;
}

/* .top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
} */

.top-bar-left a {
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

.goog-te-gadget {
    font-family: 'Poppins', sans-serif !important;
    color: transparent !important;
}

.goog-te-gadget-simple {
    background-color: white !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 4px 0 -16px !important;
    height: 30px;
}

#google_translate_element span {
    display: none;
}
@media (max-width:786px) {
   
.navbar-brand img {
    height: 65px;
    margin-right: 10px;
    width: 80%;
}
.content-section {
    padding: 20px 0px !important;
}
.impact-stat-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0px !important;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s 
ease;
}
.content-section-hlo {
    padding: 20px 0px !important ;
    /* margin-top: 20px; */
}
.program-section {
    /* padding: 0px; */
    padding: 20px 0px;
}
.content-section.interested-section {
    padding: 60px 0 !important;
    position: relative;
}
.contact-info {
    padding: 5px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}
.contact-form {
    display: flex
;
    flex-direction: column;
    padding: 20px 0px;
}
.hide-no-mobile{
    display: none;
}
.justify-content-end.translate{
    justify-content: center !important;
}
}