/* about.css - orbits8 About Us Page */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2962ff;
    --accent: #00e676;
    --dark-bg: #0a0f1c;
    --card-bg: rgba(18, 28, 45, 0.95);
    --border-light: rgba(68, 255, 170, 0.15);
    --text-white: #ffffff;
    --text-gray: #a0aec0;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Animated Graph Background */
.graph-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.about-wrapper {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(41, 98, 255, 0.05));
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.mission-text h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.mission-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: var(--card-bg);
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Story Section */
.story-section {
    padding: 5rem 0;
}

.story-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 2rem;
}

.timeline-year {
    position: absolute;
    top: 0;
    right: -60px;
    background: var(--accent);
    color: var(--dark-bg);
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.timeline-item:nth-child(even) .timeline-year {
    right: auto;
    left: -60px;
}

.timeline-content {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: 0.3s;
}

.timeline-content:hover {
    transform: translateX(5px);
    border-color: var(--accent);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--card-bg);
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.value-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 5rem 0;
}

.leadership-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--card-bg);
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.member-image i {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.team-card h3 {
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.position {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bio {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Achievements Section */
.achievements-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.achievements-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: var(--card-bg);
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: 0.3s;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.achievement-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.achievement-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.achievement-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(41, 98, 255, 0.05));
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: rgba(0, 230, 118, 0.1);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 70px;
    }
    
    .timeline-year {
        left: 0;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        left: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .mission-text h2,
    .story-section h2,
    .values-section h2,
    .leadership-section h2,
    .achievements-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .value-card,
    .team-card,
    .achievement-card {
        padding: 1.5rem;
    }
}