﻿/* About Us Styles */
.about-us-section {
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(26, 71, 33, 0.85), rgba(26, 71, 33, 0.9)), url('../Images/hero-bg.jpg') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    padding: 60px 0;
}

.hero-overlay {
    width: 100%;
    padding: 40px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #c8e6c9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffcc00;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #e8f5e9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #1a4721;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.subtitle-line {
    width: 50px;
    height: 2px;
    background: #4caf50;
}

/* Company Overview */
.company-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .company-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.overview-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

    .overview-text p {
        margin-bottom: 20px;
    }

    .overview-text strong {
        color: #1a4721;
    }

/* Founder Card */
.founder-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border-left: 4px solid #4caf50;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
}

.founder-image {
    flex-shrink: 0;
}

.image-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.founder-info h3 {
    color: #1a4721;
    margin: 0 0 5px 0;
    font-size: 1.5rem;
}

.founder-title {
    color: #666;
    font-style: italic;
    margin: 0 0 15px 0;
}

.founder-quote {
    font-size: 1rem;
    color: #444;
    font-style: italic;
    border-left: 3px solid #ffcc00;
    padding-left: 15px;
    margin: 15px 0;
}

.founder-experience {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

    .founder-experience span {
        background: #e8f5e9;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        color: #2e7d32;
    }

    .founder-experience i {
        margin-right: 5px;
    }

/* Overview Image */
.overview-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .main-image {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 204, 0, 0.95);
    color: #1a4721;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Mission & Vision */
.mission-vision-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    padding: 80px 0;
}

.mv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.mv-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

    .mv-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }

.mission-card {
    border-top-color: #4caf50;
}

.vision-card {
    border-top-color: #2196f3;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--icon-color, #4caf50), #2e7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mission-card .mv-icon {
    --icon-color: #4caf50;
}

.vision-card .mv-icon {
    --icon-color: #2196f3;
}

.mv-card h3 {
    color: #1a4721;
    margin: 0 0 15px 0;
    font-size: 1.6rem;
}

.mv-card p {
    color: #555;
    margin-bottom: 20px;
}

.mission-list, .vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mission-list li, .vision-list li {
        padding: 8px 0;
        color: #444;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mission-list i {
        color: #4caf50;
        font-size: 0.9rem;
    }

    .vision-list i {
        color: #2196f3;
        font-size: 0.9rem;
    }

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-category {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .product-category:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-color: #4caf50;
    }

    .product-category::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #4caf50, #8bc34a);
    }

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1a4721;
    font-size: 1.8rem;
}

.product-category h3 {
    color: #1a4721;
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.category-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

    .category-list li {
        padding: 6px 0;
        color: #444;
        border-bottom: 1px dashed #e0e0e0;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
    }

        .category-list li:last-child {
            border-bottom: none;
        }

        .category-list li::before {
            content: '•';
            color: #4caf50;
            margin-right: 8px;
            font-weight: bold;
        }

.category-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

    .category-features span {
        background: #f5f5f5;
        padding: 5px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        color: #555;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .category-features i {
        color: #4caf50;
        font-size: 0.8rem;
    }

/* Facility Section */
.facility-section {
    background: linear-gradient(rgba(26, 71, 33, 0.05), rgba(26, 71, 33, 0.1));
    padding: 80px 0;
}

.facility-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .facility-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.address-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 4px solid #4caf50;
}

.address-icon {
    width: 60px;
    height: 60px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4721;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.address-content h4 {
    color: #1a4721;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

address {
    font-style: normal;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .contact-links a {
        color: #1a4721;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: color 0.3s ease;
    }

        .contact-links a:hover {
            color: #4caf50;
        }

    .contact-links i {
        width: 20px;
    }

.facility-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}

    .feature-item i {
        color: #4caf50;
        font-size: 1.2rem;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .feature-item h5 {
        color: #1a4721;
        margin: 0 0 5px 0;
        font-size: 1rem;
    }

    .feature-item p {
        color: #666;
        font-size: 0.85rem;
        margin: 0;
        line-height: 1.4;
    }

.facility-map {
    height: 100%;
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #1a4721, #2d6a4f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(26, 71, 33, 0.2);
}

.map-content {
    text-align: center;
}

    .map-content i {
        font-size: 3rem;
        color: #ffcc00;
        margin-bottom: 20px;
    }

    .map-content h4 {
        font-size: 1.5rem;
        margin: 0 0 10px 0;
    }

    .map-content p {
        color: #c8e6c9;
        margin-bottom: 20px;
    }

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .map-link:hover {
        background: #ffcc00;
        color: #1a4721;
        transform: translateY(-2px);
    }

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-color: #4caf50;
    }

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1a4721;
    font-size: 1.8rem;
}

.value-card h4 {
    color: #1a4721;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a4721 0%, #2d6a4f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    color: #c8e6c9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background: #ffcc00;
    color: #1a4721;
}

    .primary-btn:hover {
        background: #ff9900;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 153, 0, 0.3);
    }

.secondary-btn {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

    .secondary-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
        border-color: #ffcc00;
        color: #ffcc00;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-placeholder {
        margin: 0 auto;
    }

    .mv-cards {
        grid-template-columns: 1fr;
    }

    .facility-features {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}
