/* About Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #2a2a72 0%, #009ffd 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 30px 30px;
}

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

.about-hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Overview Section */
.about-overview {
    padding: 100px 0;
    background-color: var(--bg-color, #f9f9f9);
    position: relative;
}

.about-overview h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: var(--heading-color, #222);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-overview h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color, #2a2a72), var(--secondary-color, #009ffd));
    border-radius: 2px;
}

.overview-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--card-bg, #ffffff);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color, rgba(0, 0, 0, 0.05));
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color, #2a2a72), var(--secondary-color, #009ffd));
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.overview-card p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color, #444);
}

.overview-card p:last-child {
    margin-bottom: 0;
}

/* Mission Section */
.about-mission {
    padding: 80px 0;
    background-color: var(--bg-alt-color, #fff);
}

.mission-vision {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-box {
    flex: 1;
    background: var(--card-bg, white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid var(--border-color, rgba(0, 0, 0, 0.05));
}

.mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-box h2 {
    color: var(--primary-color, #2a2a72);
    margin-bottom: 20px;
    font-size: 2rem;
}

.mission-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color, #555);
    margin-bottom: 30px;
}

.mission-icon {
    font-size: 3rem;
    color: var(--icon-color, rgba(42, 42, 114, 0.2));
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/* Values Section */
.about-values {
    padding: 80px 0;
    background-color: var(--bg-color, #f9f9f9);
}

.about-values h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: var(--heading-color, #222);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-values h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color, #2a2a72), var(--secondary-color, #009ffd));
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: var(--card-bg, white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color, rgba(0, 0, 0, 0.05));
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color, #2a2a72), var(--secondary-color, #009ffd));
}

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

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color, #2a2a72);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--heading-color, #333);
}

.value-card p {
    color: var(--text-color, #666);
    line-height: 1.6;
}

/* Team Section */
.about-team {
    padding: 80px 0;
    background-color: var(--bg-color, #f9f9f9);
}

.about-team h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: var(--heading-color, #222);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-team h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color, #2a2a72), var(--secondary-color, #009ffd));
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    background: var(--card-bg, white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color, rgba(0, 0, 0, 0.05));
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-member-info {
    padding: 25px;
}

.team-member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--heading-color, #333);
}

.team-member-info .role {
    font-size: 1.1rem;
    color: var(--primary-color, #2a2a72);
    margin-bottom: 15px;
    font-weight: 500;
}

.team-member-info p {
    color: var(--text-color, #666);
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    color: var(--text-secondary, #555);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color, #2a2a72);
}

/* Stats Section */
.about-stats {
    padding: 100px 0;
    background-color: var(--bg-alt-color, #fff);
    position: relative;
}

.about-stats h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: var(--heading-color, #222);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-stats h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color, #2a2a72), var(--secondary-color, #009ffd));
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: var(--card-bg, white);
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color, rgba(0, 0, 0, 0.05));
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color, #2a2a72), var(--secondary-color, #009ffd));
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color, #2a2a72);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-color, #555);
    font-weight: 500;
}

/* Partners Section */
.about-partners {
    padding: 80px 0;
    background-color: var(--bg-alt-color, #fff);
}

.about-partners h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--heading-color, #222);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-partners h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color, #2a2a72), var(--secondary-color, #009ffd));
    border-radius: 2px;
}

.about-partners p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color, #666);
    max-width: 800px;
    margin: 0 auto 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-logo {
    background: var(--card-bg, white);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color, rgba(0, 0, 0, 0.05));
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    max-height: 80px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .overview-content {
        flex-direction: column;
    }
    
    .mission-vision {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .about-overview h2, 
    .about-values h2, 
    .about-team h2, 
    .about-stats h2, 
    .about-partners h2 {
        font-size: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0;
        border-radius: 0 0 20px 20px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-overview, 
    .about-mission, 
    .about-values, 
    .about-team, 
    .about-stats, 
    .about-partners {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
