﻿/* ===== ABOUT PAGE STYLES ===== */

/* About Hero */
.about-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Our Story */
.our-story {
    padding: 6rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Our Mission */
.our-mission {
    padding: 6rem 0;
    background: #f8fafc;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .mission-card:hover {
        transform: translateY(-10px);
    }

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.our-team {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    text-align: center;
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-5px);
    }

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.team-member h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
}

/* Technology Section */
.our-technology {
    padding: 6rem 0;
    background: #f8fafc;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.tech-text > p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tech-icon {
    font-size: 2rem;
    margin-top: 0.25rem;
}

.tech-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.tech-feature p {
    color: #64748b;
    margin: 0;
}

.tech-visual {
    display: flex;
    justify-content: center;
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

.tech-layer {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

    .tech-layer:nth-child(1) {
        animation-delay: 0.1s;
    }

    .tech-layer:nth-child(2) {
        animation-delay: 0.2s;
    }

    .tech-layer:nth-child(3) {
        animation-delay: 0.3s;
    }

    .tech-layer:nth-child(4) {
        animation-delay: 0.4s;
    }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company Culture */
.company-culture {
    padding: 6rem 0;
    background: white;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
}

.culture-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.culture-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.culture-item p {
    color: #64748b;
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    text-align: center;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .tech-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tech-text h2 {
        font-size: 2rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .team-member {
        padding: 2rem 1.5rem;
    }
}
