/* About Page Styles */

/* Active nav link */
nav a.active {
    color: #4A90E2;
}

/* About Page Main */
.about-page {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.about-hero {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    /* padding: 80px 0; */
    height: 600px;
    text-align: center;
    color: white;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

/* .about-section:nth-child(even) {
    background: #f8f9fa;
} */
.core-values {
    background-color: #F7F8FA;
}

.section-heading {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

/* .section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #5C91FD;
    margin: 15px auto 0;
    border-radius: 2px;
} */

/* Who We Are */
.who-content {
    /* max-width: 900px; */
    margin: 0 auto;
}

.who-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
    text-indent: 30px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5C91FD, #4A7BE2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.value-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.mission-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff9500, #ff6b00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 36px;
}

.mission-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.mission-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

    .about-hero {
        height: 600px;
    }

    .about-section {
        padding: 50px 0;
    }

    .section-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

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

    .value-card {
        padding: 30px 20px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mission-card {
        padding: 35px 25px;
    }
}
