/* About Page Styles */

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    padding: 16px 48px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mission Section */
.mission-section {
    padding: 120px 20px;
    background: #f8f9fa;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    margin-bottom: 60px;
}

.mission-line {
    font-size: 28px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
}

.mission-logo {
    margin-bottom: 40px;
}

.mission-logo img {
    height: 60px;
    width: auto;
}

.mission-tagline {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-top: 40px;
}

/* Vision Section */
.vision-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.vision-container {
    max-width: 1000px;
    margin: 0 auto;
}

.vision-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
}

.vision-subtitle {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.95;
}

/* History Timeline Section */
.history-section {
    padding: 120px 20px;
    background: #fff;
}

.history-container {
    max-width: 1000px;
    margin: 0 auto;
}

.history-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #333;
}

.history-subtitle {
    font-size: 20px;
    text-align: center;
    color: #666;
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #667eea;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* Values Section */
.values-section {
    padding: 120px 20px;
    background: #f8f9fa;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 24px;
    color: #667eea;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #fff;
    color: #667eea;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn.secondary:hover {
    background: #fff;
    color: #667eea;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .mission-line {
        font-size: 20px;
    }

    .mission-tagline {
        font-size: 36px;
    }

    .vision-title {
        font-size: 32px;
    }

    .vision-subtitle {
        font-size: 18px;
    }

    .history-title {
        font-size: 36px;
    }

    .history-subtitle {
        font-size: 18px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-year {
        font-size: 24px;
    }

    .timeline-content p {
        font-size: 16px;
    }

    .values-title {
        font-size: 36px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-btn {
        padding: 12px 32px;
        font-size: 16px;
    }

    .mission-section,
    .history-section,
    .values-section {
        padding: 60px 20px;
    }

    .vision-section,
    .cta-section {
        padding: 60px 20px;
    }
}





