/*==================================
PLACEMENT HERO
==================================*/

.placement-hero{

    position:relative;

    height:65vh;

    display:flex;

    align-items:center;

    background:url("images/placement-banner.jpg")
    center center/cover no-repeat;

}

.placement-overlay{

    position:absolute;

    inset:0;

    background:rgba(18,28,74,.82);

}

.placement-hero-content{

    position:relative;

    z-index:2;

    color:#fff;

    max-width:760px;

}

.placement-hero h1{

    font-family:'Playfair Display',serif;

    font-size:62px;

    line-height:1.15;

    margin:25px 0;

}

.placement-hero p{

    font-size:19px;

    line-height:1.9;

    margin-bottom:40px;

    color:rgba(255,255,255,.90);

}

.placement-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-btn-primary{

    background:#F5A623;

    color:#fff;

    padding:17px 36px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.hero-btn-primary:hover{

    background:#E05A0C;

    transform:translateY(-4px);

}

.hero-btn-secondary{

    border:2px solid #fff;

    color:#fff;

    padding:17px 36px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.hero-btn-secondary:hover{

    background:#fff;

    color:#1B2A6B;

}

/*==================================
PLACEMENT STATS
==================================*/

.placement-stats{

    padding:120px 0;

    background:#F7F5EF;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.stat-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    border-top:5px solid #F5A623;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.10);

}

.stat-icon{

    font-size:55px;

    margin-bottom:20px;

}

.stat-card h3{

    color:#1B2A6B;

    font-size:42px;

    font-family:'Playfair Display',serif;

    margin-bottom:10px;

}

.stat-card span{

    color:#6B7280;

    font-size:17px;

    font-weight:500;

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:992px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.placement-hero h1{

font-size:50px;

}

}

@media(max-width:768px){

.placement-hero{

height:60vh;

text-align:center;

}

.placement-hero h1{

font-size:38px;

}

.placement-hero p{

font-size:17px;

}

.placement-buttons{

justify-content:center;

}

.hero-btn-primary,

.hero-btn-secondary{

width:100%;

max-width:320px;

text-align:center;

}

.stats-grid{

grid-template-columns:1fr;

}

.stat-card{

padding:30px;

}

.stat-card h3{

font-size:34px;

}

}