/* About Page Styles */

/* Hero Section */
.about-hero {
    background: var(--gradient);
    padding: 12rem 0 8rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: clamp(1.6rem, 2vw, 2rem);
    opacity: 0.9;
    max-width: 60rem;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    padding: 8rem 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mission-content h2 {
    margin-bottom: 2rem;
}

.mission-content p {
    color: var(--light-text);
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 4rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--light-text);
    font-size: 1.4rem;
}

.mission-graph {
    background: var(--white);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 32, 68, 0.1);
}

.graph-container {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
    position: relative;
}

.graph-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.graph-stat {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 1rem;
    transition: var(--transition);
}

.graph-stat:hover {
    transform: translateY(-5px);
}

.graph-stat .stat-label {
    display: block;
    color: var(--light-text);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.graph-stat .stat-value {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--success-color);
    font-family: 'Montserrat', sans-serif;
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 25rem), 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 32, 68, 0.1);
}

.value-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, rgba(0, 32, 68, 0.1) 0%, rgba(0, 86, 179, 0.1) 100%);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 3.2rem;
    color: var(--primary-color);
}

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

.value-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 30rem), 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.team-card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 32, 68, 0.1);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 32, 68, 0.15);
}

.member-image {
    width: 100%;
    height: 30rem;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 3rem;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.position {
    display: block;
    color: var(--light-text);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.member-info p {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.social-links {
    display: flex
;
    gap: 2rem;
}
.social-links a {
    font-size: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Timeline Section */
.timeline-section {
    padding: 8rem 0;
    background: var(--light-bg);
}

.timeline {
    max-width: 80rem;
    margin: 6rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 6rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    width: calc(50% - 3rem);
    padding: 3rem;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 32, 68, 0.1);
    position: relative;
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -4rem;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -4rem;
    transform: translateY(-50%);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 32, 68, 0.15);
}

.date {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--light-bg);
    border-radius: 2rem;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.timeline-content p {
    color: var(--light-text);
    margin: 0;
}

/* Join Section */
.join-section {
    padding: 8rem 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.join-content {
    max-width: 60rem;
    margin: 0 auto;
}

.join-content h2 {
    margin-bottom: 2rem;
}

.join-content p {
    margin-bottom: 4rem;
    font-size: 1.8rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .mission-image {
        order: -1;
    }

    .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 4rem !important;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-content::before {
        left: -4rem !important;
    }
}

@media (max-width: 768px) {
    .mission-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .timeline-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .mission-stats {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 3rem 2rem;
    }

    .member-info {
        padding: 2rem;
    }
}
