.formations-hero{

    position:relative;

    height:70vh;

    display:flex;
    align-items:center;

    background:url('https://images.unsplash.com/photo-1559339352-11d035aa65de?q=80&w=2000&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
}

.formations-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(8,17,32,.75),
        rgba(8,17,32,.88)
    );
}

.formations-content{

    position:relative;
    z-index:2;

    max-width:800px;

    color:white;
}

.formations-badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    color:#ff6b35;

    margin-bottom:25px;

    font-weight:600;
}

.formations-content h1{

    font-size:65px;

    font-weight:800;

    margin-bottom:20px;
}

.formations-content p{

    font-size:20px;

    color:#cbd5e1;

    line-height:1.9;
}

@media(max-width:991px){

    .formations-content h1{
        font-size:42px;
    }

}

.formations-section{
    padding:120px 0;
    background:#f8fafc;
}

.formation-card{

    background:white;

    border-radius:30px;

    overflow:hidden;

    height:100%;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.formation-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.formation-image{

    height:280px;
}

.formation-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.formation-body{

    padding:30px;
}

.formation-body h3{

    color:#081120;

    margin-bottom:15px;
}

.formation-body p{

    color:#64748b;

    line-height:1.8;
}

.formation-body a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:15px;

    color:#dc2626;

    font-weight:700;
}