/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9f9f9;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: #307E33;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCC110;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-contact {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: #307E33;
    color: white;
    border: 2px solid #307E33;
}

.btn-primary:hover {
    background-color: #256528;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(48, 126, 51, 0.2);
}

.btn-secondary {
    background-color: #FCC110;
    color: #333;
    border: 2px solid #FCC110;
}

.btn-secondary:hover {
    background-color: #e0a90e;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(252, 193, 16, 0.2);
}

.btn-contact {
    background-color: transparent;
    color: #307E33;
    border: 2px solid #307E33;
}

.btn-contact:hover {
    background-color: #307E33;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #307E33 0%, #256528 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #FCC110;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-icon {
    position: relative;
    width: 30px;
    height: 30px;
}

.corn {
    position: absolute;
    width: 20px;
    height: 30px;
    background-color: #FCC110;
    border-radius: 10px 10px 5px 5px;
    top: 0;
    left: 5px;
}

.corn::before, .corn::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 20px;
    background-color: #307E33;
    border-radius: 0 10px 10px 0;
    top: -5px;
}

.corn::before {
    left: -10px;
    transform: rotate(-20deg);
}

.corn::after {
    right: -10px;
    transform: rotate(20deg);
}

.flame {
    position: absolute;
    width: 8px;
    height: 10px;
    background-color: #EF7D12;
    border-radius: 50% 50% 20% 20%;
    top: -5px;
    left: 11px;
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 100% { transform: scaleY(1); opacity: 0.9; }
    50% { transform: scaleY(1.1); opacity: 1; }
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #307E33;
    letter-spacing: -0.5px;
}








.logo-subtext {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #FCC110;
    margin-left: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #307E33;
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #307E33;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    margin-top: 90px;
}

.hero-carousel {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

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

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding-top: 100px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: white;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: white;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.carousel-controls {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.carousel-prev, .carousel-next {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
}

.intro-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 30px;
}

.intro-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: #307E33;
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

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

.service-icon {
    margin-bottom: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-inner {
    width: 70px;
    height: 70px;
    background-color: #f0f7f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-shape {
    width: 40px;
    height: 40px;
    background-color: #307E33;
    border-radius: 5px;
    position: relative;
}

.distribution::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #FCC110;
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

.distribution::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #FCC110;
    border-radius: 50%;
    bottom: 5px;
    right: 5px;
}

.empowerment::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #FCC110;
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

.empowerment::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #EF7D12;
    border-radius: 50%;
    bottom: 5px;
    right: 5px;
}

.reduction::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 10px;
    background-color: #FCC110;
    border-radius: 5px;
    top: 10px;
    left: 5px;
}

.reduction::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #EF7D12;
    border-radius: 50%;
    bottom: 5px;
    right: 5px;
}

.access::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid #FCC110;
    border-top-color: transparent;
    border-radius: 50%;
    top: 5px;
    left: 5px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.access::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #EF7D12;
    border-radius: 50%;
    bottom: 5px;
    right: 5px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #307E33;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.partner-logo {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.partner-logo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.logo-placeholder {
    width: 150px;
    height: 60px;
    background-color: #307E33;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-bottom: 15px;
}

.partner-logo p {
    margin: 0;
    font-weight: 600;
    color: #555;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 1s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: #FCC110;
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #555;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #307E33;
    position: relative;
    overflow: hidden;
}

.author-avatar::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #FCC110;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #307E33;
}

.author-info p {
    margin: 0;
    font-size: 1rem;
    color: #777;
}

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

.testimonial-prev, .testimonial-next {
    background-color: #307E33;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: #256528;
    transform: scale(1.1);
}

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

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: #307E33;
    transform: scale(1.2);
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

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

.impact-stat {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: #307E33;
    margin-bottom: 10px;
}

.stat-label {
    font-weight: 600;
    font-size: 1.2rem;
    color: #555;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: white;
}

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

.contact-info h3, .contact-form h3 {
    margin-bottom: 30px;
    color: #307E33;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f7f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location::before {
    content: '';
    width: 25px;
    height: 25px;
    background-color: #307E33;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    top: -5px;
}

.phone::before {
    content: '';
    width: 25px;
    height: 25px;
    border: 3px solid #307E33;
    border-radius: 50%;
    position: relative;
}

.phone::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #307E33;
    bottom: 0;
    right: 0;
}

.email::before {
    content: '';
    width: 25px;
    height: 18px;
    border: 3px solid #307E33;
    border-radius: 5px;
    position: relative;
}

.email::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #307E33;
    top: -5px;
    right: -5px;
}

.social::before {
    content: '';
    width: 25px;
    height: 25px;
    background-color: #307E33;
    border-radius: 5px;
    position: relative;
}

.social::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 3px solid #FCC110;
    border-radius: 50%;
    top: -5px;
    right: -5px;
}

.contact-details h4 {
    margin-bottom: 5px;
    color: #333;
}

.contact-details p {
    margin: 0;
    color: #666;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #307E33;
    box-shadow: 0 0 0 3px rgba(48, 126, 51, 0.1);
}

/* Footer */
.footer {
    background-color: #222;
    color: #ddd;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo .logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-description {
    font-size: 1rem;
    color: #aaa;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FCC110;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Animation Classes */
.slide-in-left {
    animation: slideInLeft 1s ease;
}

.slide-in-right {
    animation: slideInRight 1s ease;
}

.slide-in-top {
    animation: slideInTop 1s ease;
}

.slide-in-bottom {
    animation: slideInBottom 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.7rem;
    }
    
    .carousel-controls {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        gap: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .hero-content {
        padding-top: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .carousel-controls {
        padding: 0 20px;
        bottom: 30px;
    }
    
    .intro-section, .services-section, .partners-section,
    .testimonials-section, .impact-section, .contact-section {
        padding: 70px 0;
    }
    
    .services-grid, .partners-grid, .impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .btn-primary, .btn-secondary, .btn-contact {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
}


/* ============================================
   FIXES FOR VISIBILITY ISSUES
   ============================================ */

/* Partners Section Visibility Fix */
.partners-section {
    color: white; /* Set default text color to white */
}

.partners-section .overlay-light {
    background-color: rgba(0, 0, 0, 0.7) !important; /* Dark overlay */
}

.partners-section .section-title {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.partners-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

.partner-logo {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.partner-logo p {
    color: #333 !important;
    font-weight: 600;
}

/* Impact Section Visibility Fix */
.impact-section {
    color: white;
}

.impact-section .overlay-light {
    background: linear-gradient(135deg, rgba(48, 126, 51, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%) !important;
}

.impact-section .section-title {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.impact-stat {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    color: #307E33;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-label {
    color: #333;
    font-weight: 700;
}

/* Testimonials Section Improvement */
.testimonial-content {
    background-color: white;
    border-left: 5px solid #FCC110;
}

/* Intro Section Text Contrast */
.intro-section {
    color: #333;
}

.intro-section .overlay-light {
    background-color: rgba(255, 255, 255, 0.9) !important;
}

/* Services Section Text */
.service-card h3 {
    color: #307E33;
}

.service-card p {
    color: #555;
}

/* Ensure all section titles are visible */
.section-title {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    position: relative;
    z-index: 2;
}

/* Add text shadow for better readability on background images */
.hero-content h1,
.hero-content h2,
.hero-content p,
.intro-content h2,
.intro-content p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Fix for mobile visibility */
@media (max-width: 768px) {
    .partners-section .section-title,
    .impact-section .section-title {
        font-size: 2rem;
    }
    
    .partner-logo,
    .impact-stat {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}













































/* ============================================
   LOGO VISIBILITY OPTIMIZATION - SVG ONLY VERSION
   ============================================ */

/* REMOVE ALL CIRCLE AND TEXT STYLES - Keep only the SVG logo */
.logo-circle {
    display: none !important; /* Hide the circle container */
}

.logo-text, .logo-subtext {
    display: none !important; /* Hide the separate text */
}

/* Main logo container - ADJUSTED FOR SVG ONLY */
.logo {
    display: flex;
    align-items: center;
    gap: 0; /* Remove gap since we only have logo */
    text-decoration: none;
    height: 60px; /* Match the height of the text that was there */
}

/* SVG Logo Styling - LARGE AND VISIBLE */
.logo-agrotrade {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
}

/* SVG Image Styling - MAKE IT LARGE LIKE THE TEXT */
.logo-agrotrade img,
.logo-agrotrade svg {
    height: 60px !important; /* Same height as the text was */
    width: auto !important; /* Maintain aspect ratio */
    object-fit: contain !important;
    display: block !important;
    transition: all 0.3s ease !important;
    filter: 
        drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15)) 
        brightness(1.05) 
        contrast(1.1) !important;
}

/* Hover effects */
.logo-agrotrade:hover img,
.logo-agrotrade:hover svg {
    transform: scale(1.05) !important;
    filter: 
        drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2)) 
        brightness(1.1) 
        contrast(1.15) !important;
}

/* Header-specific logo sizing */
.header .logo-agrotrade img,
.header .logo-agrotrade svg {
    height: 65px !important; /* Slightly larger in header */
}

/* Scrolled header - slightly smaller */
.header.scrolled .logo-agrotrade img,
.header.scrolled .logo-agrotrade svg {
    height: 55px !important;
    filter: 
        drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2)) 
        brightness(1) 
        contrast(1.05) !important;
}

/* Footer logo - OPTIMIZED FOR DARK BACKGROUND */
.footer .logo-agrotrade img,
.footer .logo-agrotrade svg {
    height: 70px !important; /* Larger in footer */
    filter: 
        drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3)) 
        brightness(1.2) 
        contrast(1.2) 
        saturate(1.05) !important;
}






/* ============================================
   PROFESSIONAL ICON CIRCLES FOR SERVICES & CONTACT
   ============================================ */

/* --- Service icons --- */
.service-icon {
    margin-bottom: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon-circle {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.distribution-icon {
    background: linear-gradient(135deg, #307E33, #1e5a20);
}

.empowerment-icon {
    background: linear-gradient(135deg, #FCC110, #dba30e);
}

.reduction-icon {
    background: linear-gradient(135deg, #EF7D12, #c5650e);
}

.access-icon {
    background: linear-gradient(135deg, #2C3E50, #1a2630);
}

/* --- Contact icons --- */
.contact-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-item:hover .contact-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.location-icon {
    background: linear-gradient(135deg, #307E33, #1e5a20);
}

.phone-icon {
    background: linear-gradient(135deg, #FCC110, #dba30e);
}

.email-icon {
    background: linear-gradient(135deg, #EF7D12, #c5650e);
}

.social-icon {
    background: linear-gradient(135deg, #0A66C2, #084a8f); /* LinkedIn blue */
}


/* Avatar avec image réelle */
.author-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #307E33;
    flex-shrink: 0;
    background-color: #f0f0f0; /* fallback si l'image ne charge pas */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .header .logo-agrotrade img,
    .header .logo-agrotrade svg {
        height: 60px !important;
    }
    
    .footer .logo-agrotrade img,
    .footer .logo-agrotrade svg {
        height: 65px !important;
    }
}

@media (max-width: 992px) {
    .header .logo-agrotrade img,
    .header .logo-agrotrade svg {
        height: 55px !important;
    }
    
    .header.scrolled .logo-agrotrade img,
    .header.scrolled .logo-agrotrade svg {
        height: 50px !important;
    }
    
    .footer .logo-agrotrade img,
    .footer .logo-agrotrade svg {
        height: 60px !important;
    }
}

@media (max-width: 768px) {
    .header .logo-agrotrade img,
    .header .logo-agrotrade svg {
        height: 50px !important;
    }
    
    .header.scrolled .logo-agrotrade img,
    .header.scrolled .logo-agrotrade svg {
        height: 45px !important;
    }
    
    .footer .logo-agrotrade img,
    .footer .logo-agrotrade svg {
        height: 55px !important;
    }
    
    /* Mobile menu - larger logo when menu is open */
    .nav-menu.active .logo-agrotrade img,
    .nav-menu.active .logo-agrotrade svg {
        height: 70px !important;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .header .logo-agrotrade img,
    .header .logo-agrotrade svg {
        height: 45px !important;
    }
    
    .header.scrolled .logo-agrotrade img,
    .header.scrolled .logo-agrotrade svg {
        height: 40px !important;
    }
    
    .footer .logo-agrotrade img,
    .footer .logo-agrotrade svg {
        height: 50px !important;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .header .logo-agrotrade img,
    .header .logo-agrotrade svg {
        height: 40px !important;
    }
    
    .header.scrolled .logo-agrotrade img,
    .header.scrolled .logo-agrotrade svg {
        height: 35px !important;
    }
}

/* SVG-specific optimizations */
.logo-agrotrade img[src$=".svg"],
.logo-agrotrade svg {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    shape-rendering: geometricPrecision;
}

/* Animation for logo entrance */
@keyframes logoFadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-agrotrade img,
.logo-agrotrade svg {
    animation: logoFadeInScale 0.6s ease-out;
}

/* Focus states for accessibility */
.logo-agrotrade:focus {
    outline: 3px solid #307E33 !important;
    outline-offset: 5px !important;
    border-radius: 4px !important;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .logo-agrotrade img,
    .logo-agrotrade svg {
        filter: 
            drop-shadow(0 0 0 #000) 
            contrast(1.3) 
            brightness(1) !important;
        -webkit-filter: 
            drop-shadow(0 0 0 #000) 
            contrast(1.3) 
            brightness(1) !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .logo-agrotrade img,
    .logo-agrotrade svg {
        filter: 
            drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3)) 
            brightness(1.1) 
            contrast(1.15) !important;
    }
    
    .footer .logo-agrotrade img,
    .footer .logo-agrotrade svg {
        filter: 
            drop-shadow(0 3px 5px rgba(0, 0, 0, 0.4)) 
            brightness(1.25) 
            contrast(1.25) !important;
    }
}

/* Print styles */
@media print {
    .logo-agrotrade img,
    .logo-agrotrade svg {
        filter: grayscale(100%) contrast(140%) !important;
        height: 50px !important;
    }
}

/* Ensure SVG is properly visible on all backgrounds */
.logo-agrotrade {
    position: relative;
}

/* Add subtle background for extra visibility if needed */
.logo-agrotrade::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-agrotrade:hover::before {
    opacity: 1;
}































