.aboutcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 50px;
}
.hero-image {
    animation: slideInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.2s both;
    
}

.hero-text1 p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.2s both;
    
}
    .about-section {
        margin-top: 40px;
        padding: 4rem 0;
        background: rgb(233, 233, 233);
        color: white;
    }
    .about-section p {
       width: 1500px;
       margin-top: 50px;
    }

    .hero-stats {
    display: flex;
    gap: 10rem;
    justify-content: center;
    margin-top: 100px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgb(43, 90, 14);
    line-height: 1;
}

.stat-label {
    font-size: 20px;
    opacity: 0.8;
    text-align: center;
     color: rgb(43, 90, 14);
}
.mission-vision-container {
    display: flex;
    justify-content: center;
    gap: 10rem;
    margin-top: 50px;
   

}
.mission-vision-container h2{
    color: rgb(255, 255, 255);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}
.mission ,.vision{
    background: rgb(45, 78, 37);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 450px;
    height: 500px;
    
   
}
.mission         ,.vision p {
    color: rgb(255, 255, 255);
    line-height: 1.8;
    text-align: justify;
 
}
/* .mission-vision-container img {
    width: 650px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
} */

   .about-hero {
                padding: 4rem 0;
                background: var(--background-light);
            }
            
            .about-content {
                padding: 4rem 0;
                background: var(--white);
            }
            
            .content-grid {
                display: grid;
                grid-template-columns: 2fr 1fr;
                gap: 4rem;
                align-items: start;
            }
            
            .content-section h2 {
                color: var(--primary-color);
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
            }
            
            .content-section h3 {
                color: var(--primary-color);
                font-size: 1.5rem;
                margin: 2rem 0 1rem 0;
            }
            
            .content-section p {
                color: var(--text-secondary);
                line-height: 1.8;
                margin-bottom: 1.5rem;
            }
            
            .stats-section {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            
            .stat-card {
                background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                color: var(--white);
                padding: 2rem;
                border-radius: var(--border-radius);
                text-align: center;
                box-shadow: var(--shadow);
            }
            
            .stat-number {
                font-size: 2.5rem;
                font-weight: 700;
                margin-bottom: 0.5rem;
            }
            
            .stat-label {
                font-size: 1rem;
                opacity: 0.9;
            }
            
            .values-section {
                padding: 4rem 0;
                background: var(--background-light);
            }
            
            .values-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
            }
            
            .value-card {
                background: var(--white);
                padding: 2rem;
                border-radius: var(--border-radius);
                text-align: center;
                box-shadow: var(--shadow);
                transition: var(--transition);
            }
            
            .value-card:hover {
                transform: translateY(-5px);
                box-shadow: var(--shadow-hover);
            }
            
            .value-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 1.5rem;
                font-size: 2rem;
                color: var(--white);
            }
            
            .process-section {
                padding: 4rem 0;
                background: var(--white);
            }
            
            .process-timeline {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
            }
            
            .process-step {
                text-align: center;
                position: relative;
            }
            
            .step-number {
                width: 100px;
                height: 100px;
                background: var(--accent-color);
                color: var(--white);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                font-weight: 700;
                margin: 0 auto 1.5rem;
            }
             .step-number:hover {
background-image: url('/src/glass-bottle-olive-oil-olive-branch-set-up-dark-concrete-background.jpg');
background-size: cover;
border-radius: 50%;
 width: 100px;
   align-items: center;
                justify-content: center;
                height: 100px;
             }

            
            .step-content h3 {
                color: var(--primary-color);
                margin-bottom: 1rem;
            }
            
            .step-content p {
                color: var(--text-secondary);
                line-height: 1.6;
            }
            
            



/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
/* Large screens optimization */
@media (max-width: 1400px) {



.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}


     .aboutslide{
      background-image: url(/src/about\ slide.png);
      height: 200px;
      background-size: 100%;
      margin-top: 120px;
      background-repeat: no-repeat;
 
    }
    
    .aboutcontainer {
        max-width: 1400px;
    }
    .hero-text h1 {
        font-size: 35px;
    }
    .hero-text p {
        font-size: 1.2rem;
          width:600px;
          text-align: justify;
    }
     .hero-text1 p {
        font-size: 1.2rem;
          width:1200px;
          text-align: justify;
    }
    .stat-number {
        font-size: 3rem;
    }
    .stat-label {
        font-size: 1.2rem;
    }
}
 @media (max-width: 768px) {
    .aboutslide{
      background-image: url(/src/about\ slide.png);
      height: 70px;
      background-size: 100%;
      margin-top: 120px;
      background-repeat: no-repeat;
 
    }
    .aboutcontainer {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 10px;
    }
    .hero-image, .hero-text {
        order: unset;
    }
    .hero-image img {
        height: auto;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-text p {
        font-size: 1rem;
        width: 330px;
        text-align: justify;
        padding: 10px;
    }
     .hero-text1 p {
        font-size: 1rem;
        width: 330px;
        text-align: justify;
        padding: 10px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        margin-top: 50px;
    }
    .mission-vision-container {
        flex-direction: column;
        gap: 2rem;
        margin-top: 30px;
        padding: 10px;
    }
    .mission, .vision {
        width: 100%;
        height: auto;
    }
 }
 @media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 0.9rem;
        width: 100%;
        padding: 5px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 1rem;
    }
 }
 @media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    .hero-text p {
        font-size: 0.8rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }
 }
 