/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(15, 42, 68, 0.94), rgba(10, 30, 48, 0.9)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center 40%;
    padding: 140px 0 80px;
    margin-top: 76px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

/* Section Headers */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Stat Cards */
.stat-card {
    background: var(--bg-light);
    border-radius: 32px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 30px var(--shadow);
    transition: 0.3s;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: "Lobster Two", sans-serif;
    color: var(--primary);
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Recruiter Logo Grid */
.recruiter-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.recruiter-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(15, 42, 68, 0.12);
}

.recruiter-logo {
    max-width: 140px;
    max-height: 70px;
    filter: grayscale(0%);
    opacity: 0.85;
    transition: 0.3s;
}

.recruiter-card:hover .recruiter-logo {
    opacity: 1;
}

/* Testimonial / Success Story Cards */
.success-card {
    background: var(--bg-light);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 12px 28px var(--shadow);
    height: 100%;
    transition: 0.3s;
}

.success-card:hover {
    transform: translateY(-5px);
}

.student-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent);
}

.package-badge {
    background: var(--accent-light);
    color: var(--primary-dark);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

/* Placement Process Steps */
.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-family: 'Playfair Display', serif;
}