/* Updated Hero Section */
.hero {
    background-image: url("../img/sunflower.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
    flex-direction: column; /* Ensure elements stack vertically */
}

.hero h1 {
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.hero p {
    font-size: 1.5rem;
    max-width: 800px;
}
@media (max-width: 768px) {
    .hero {
        height: 80vh;
        padding: 0 1rem;
        text-align: center;
        background-position: top;
    }
}

@media (max-width: 480px) { 
    .hero {
        height: auto;
        padding: 2rem 1rem;
        padding-top:5rem ;
    }
    .hero h1{
        font-size: 1.5rem;
    }
    .hero p{
        max-width: 400px;
        font-size: 1rem;
    }
}

/* About Us */
.about-agro{
    padding: 3rem 2rem;
    padding-bottom: 1rem;
}
.grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.section-text {
    text-align: justify;
}
/* Content Area Styles */
.content-area {
    padding: 0 1rem;
}

/* Highlight Box */
.highlight-box {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.highlight-title {
    font-size: 1.3rem;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #444;
}

.highlight-list li::before {
    content: '•';
    color: #4a8744;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Image Container */
.image-container {
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
    
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .grid-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .image-container {
        order: -1;
    }
}
@media screen and (max-width: 480px) {
    .about-agro{
        padding: 1rem;
    }
    .grid-section{
        padding: 0;
    }
}

/* Updated Operations */
.operations{
    padding: 1rem 2rem;
}
.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.operation-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.operation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.operation-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Products Section */
.products-section {
    background-color: whitesmoke;
    padding: 1rem 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.product-title{
    margin-bottom: 10px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

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

.product-content {
    padding: 1.5rem;
}

.product-images{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top:2rem;
    align-self: center;
}

.image-card{
    max-height: 230px;
    width: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

@media screen and (max-width: 1200px) {
    .product-images {
        grid-template-columns: 1fr 1fr;
    }
    
}
@media screen and (max-width: 768px) {
    .image-card {
        width: 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .product-images{
        grid-template-columns: 1fr;
    }
}

/* Vision Section Container */
.vision-section {
    padding: 5rem 2rem;
    text-align: center;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #2d5a27;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .vision-section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

