/* About Us Page Specific Styles */

/* Inner Page Hero (Shared between subpages) */
.inner-hero-section {
    position: relative;
    height: 40vh;
    background: linear-gradient(135deg, rgba(7, 27, 77, 0.85), rgba(10, 25, 49, 0.85)), url('campus-day.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 0 5%;
}

.inner-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 49, 0.4);
    z-index: 1;
}

.inner-hero-section .hero-content {
    position: relative;
    z-index: 2;
}

.inner-hero-section h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.inner-hero-section p {
    font-size: clamp(14px, 1.8vw, 16px);
    opacity: 0.9;
    font-weight: 300;
}

/* About Main Block */
.about-main {
    padding: 80px 0 40px;
}

.about-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.section-title span {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.section-title h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-card p strong {
    color: var(--primary);
}

.highlight-box {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.highlight-box i {
    font-size: 40px;
    color: var(--accent);
    flex-shrink: 0;
}

.highlight-box .box-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--accent);
}

.highlight-box .box-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Stats Section */
.about-main + .stats-section {
    padding: 20px 0 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: var(--white);
    padding: 35px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(21, 101, 192, 0.15);
}

.stat-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mission & Vision Section */
.mission-visioncontainer {
    padding: 20px 0 80px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mv-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(21, 101, 192, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.mv-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive adjust */
@media(max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media(max-width: 768px) {
    .about-main {
        padding: 50px 0 30px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .mv-card {
        padding: 30px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Core Values Section */
.core-values-section {
    padding: 40px 0 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 64, 175, 0.15);
}

.value-icon {
    width: 55px;
    height: 55px;
    background: var(--light-blue);
    color: var(--secondary);
    border: 1px solid rgba(30, 64, 175, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

section.core-values-section.container.animate-fade-in{
    margin-left:10px;
    margin-right:10px;
}
