/* Header Styles */
.main-header {
    background: transparent;
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    width: 100vw;
    height: 60vh;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
}

.university-logo {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    padding: 20px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.university-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
}

.accreditation-badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

/* Stats Section Styles */
.stats-section {
    background: white;
    padding: 40px 0;
    margin-top: -20px;
    position: relative;
    z-index: 3;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design for Header */
@media (max-width: 768px) {
    .header-title {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .university-logo {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
    
    .university-logo img {
        width: 70px;
        height: 70px;
    }
}
