/* About Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(19, 70, 134, 0.9), rgba(19, 70, 134, 0.9)),
                url('../images/about-hero.jpg') center/cover;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Story Section */
.our-story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #134686;
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.experience-badge .years {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9em;
    opacity: 0.9;
}

.story-content h2 {
    color: #134686;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.story-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: #134686;
    margin-bottom: 10px;
}

.stat-text {
    color: #666;
    font-size: 0.9em;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-item {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 2.5em;
    color: #134686;
    margin-bottom: 20px;
}

.mission-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.mission-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: #134686;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.highlight-item {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2em;
    color: #134686;
    margin-bottom: 20px;
}

.highlight-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.highlight-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(19, 70, 134, 0.95), rgba(19, 70, 134, 0.95)),
                url('../images/cta-bg.jpg') center/cover;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .team-highlights {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .story-content h2 {
        font-size: 1.8em;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
    }

    .mission-item, .highlight-item {
        padding: 20px;
    }
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce Paint Operations */
.mission-item, .highlight-item {
    will-change: transform;
}

/* Optimize Images */
img {
    max-width: 100%;
    height: auto;
}