﻿/* Hero Section */
.about-hero {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

    .about-hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
    }

    .about-hero .hero-text {
        position: relative;
        z-index: 2;
    }

    .about-hero h1 {
        font-size: 3rem;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .about-hero span {
        color: #e65100; /* dark orange highlight */
    }

    .about-hero p {
        font-size: 1.2rem;
    }

/* Intro Section */
.about-intro {
    padding: 60px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

    .about-text h2 {
        font-size: 2rem;
        color: #2e7d32; /* green heading */
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 1.1rem;
        color: #444;
        margin-bottom: 15px;
    }

.about-image {
    flex: 1;
}

    .about-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

/* Product Grid */
.about-products {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

    .about-products h2 {
        margin-bottom: 40px;
        font-size: 2.2rem;
        color: #e65100;
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .product-card h3 {
        font-size: 1.3rem;
        margin: 15px 0;
        color: #2e7d32;
    }

    .product-card p {
        padding: 0 15px 20px;
        color: #555;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

/* Mission Section */
.about-mission {
    padding: 60px 0;
}

.mission-box {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mission-image, .mission-text {
    flex: 1;
}

    .mission-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .mission-text h2 {
        font-size: 2rem;
        color: #e65100;
        margin-bottom: 20px;
    }

    .mission-text p {
        font-size: 1.1rem;
        color: #444;
    }

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
