﻿/* About Page Styles */
:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary: #ff9800;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: beige;
    padding: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

    .header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
        background-size: cover;
    }

.header-contennt {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: beige;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}



/* Mission Vision Section */
.mission-vision {
    padding: 20px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

    .mv-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.mv-card:nth-child(2) .mv-icon {
    background: var(--secondary);
}

.mv-card:nth-child(3) .mv-icon {
    background: #4361ee;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.mv-card p {
    color: var(--gray);
    line-height: 1.6;
}



.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

    .section-title h2 {
        font-size: 2rem;
        color: var(--primary-dark);
        display: inline-block;
        position: relative;
    }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

/* Values Section */
.values-section {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

    .value-item:hover {
        transform: translateY(-5px);
    }

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--gray);
    line-height: 1.6;
}


/* Animations */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

    [data-aos].aos-animate {
        opacity: 1;
    }

[data-aos="fade-up"] {
    transform: translateY(30px);
}

    [data-aos="fade-up"].aos-animate {
        transform: translateY(0);
    }

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

    [data-aos="fade-right"].aos-animate {
        transform: translateX(0);
    }

[data-aos="fade-left"] {
    transform: translateX(30px);
}

    [data-aos="fade-left"].aos-animate {
        transform: translateX(0);
    }

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

    [data-aos="zoom-in"].aos-animate {
        transform: scale(1);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-year {
        flex: 0 0 80px;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin-left: 1rem;
        margin-right: 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .mv-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }
}
