*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

    color:#222;

    background:#fff;
}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

img{

    max-width:100%;

    display:block;

}
/*=================================================
                TOP BAR
=================================================*/

.top-bar{

    background:#081F4D;

    color:#fff;

    font-size:14px;

    padding:10px 0;
}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-left,
.top-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.top-left a{

    color:#fff;

    transition:.3s;

}

.top-left a:hover{

    color:#F9A826;

}

.top-right a{

    color:white;

    width:35px;

    height:35px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.top-right a:hover{

    background:#F9A826;

}


/*=================================================
                NAVBAR
=================================================*/

.main-navbar{

    background:white;

    position:sticky;

    top:0;

    z-index:9999;

    padding:18px 0;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    transition:.4s;
}

.logo img{

    height:70px;

}

.navbar-nav{

    gap:15px;

}

.nav-link{

    color:#081F4D;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.nav-link:hover{

    color:#F9A826;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#F9A826;

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

.btn-admission{

    background:#F9A826;

    color:white;

    padding:14px 25px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

    display:inline-block;

}

.btn-admission:hover{

    background:#081F4D;

    color:white;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.2);

}

/* Le menu reste centré, tandis que le bouton d'admission est aligné à droite. */
@media (min-width:992px){

    .main-navbar .container{

        position:relative;

    }

    .main-navbar .navbar-nav{

        position:static;

    }

    .main-navbar .navbar-nav .nav-item.ms-lg-3{

        position:absolute;
        top:50%;
        right:0;
        margin-left:0 !important;
        transform:translateY(-50%);

    }

}
/*====================================================
                    HERO
====================================================*/

.hero{

    position:relative;

    min-height:100vh;

    background:url('../images/hero.png') center center/cover no-repeat;

    display:flex;

    align-items:center;

    margin:0;

    padding:0;

    overflow:hidden;

}
.hero-overlay{

position:absolute;

inset:0;

background:linear-gradient(to right,
rgba(4,18,48,.92),
rgba(4,18,48,.72),
rgba(4,18,48,.35));

}

.hero .container{

position:relative;

z-index:10;

}

.subtitle{

display:inline-block;

padding:8px 18px;

background:rgba(249,168,38,.15);

border:1px solid rgba(249,168,38,.35);

color:#F9A826;

border-radius:40px;

font-weight:600;

margin-bottom:20px;

}

.hero h1{

font-size:68px;

font-weight:800;

color:white;

line-height:1.1;

margin-bottom:25px;

}

.hero h1 span{

color:#F9A826;

}

.hero p{

    color:#ddd;

    font-size:20px;

    line-height:1.9;

    max-width:700px;

    margin:0 auto 40px;

}
/*====================================================
                HERO BUTTONS
====================================================*/

.hero-buttons{

     display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons a{

    flex:1;

    max-width:260px;

    display:flex;

    justify-content:center;

    align-items:center;

    height:56px;

    padding:0 24px;

    border-radius:8px;

    font-weight:600;

    font-size:16px;

    text-align:center;

    transition:.3s;

}

/* Bouton orange */

.btn-primary-custom{

 background:#F9A826;

    color:#fff;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-primary-custom:hover{

    background:#fff;

    color:#081F4D;

    border-color:#fff;

}

/* Bouton transparent */

.btn-secondary-custom{

background:#0A2E5C;

    color:#fff;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-secondary-custom:hover{

    background:#fff;

    color:#081F4D;

}
/*====================================================
                ABOUT SECTION
====================================================*/

.about-section{

    padding:55px 0;

    background:#fff;

}

.about-image{

position:relative;

}

.about-image img{

    width:100%;

    height:420px;

    object-fit:cover;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    transition:.4s;

}

.about-image:hover img{

transform:scale(1.03);

}

.section-subtitle{

display:inline-block;

padding:8px 18px;

background:#eef5ff;

color:#0A2E5C;

border-radius:30px;

font-weight:600;

margin-bottom:20px;

}

.about-content h2{

    font-size:38px;

    line-height:1.25;

    margin-bottom:18px;

}

.about-content p{

    font-size:16px;

    line-height:1.7;

    color:#666;

    margin-bottom:14px;

}

.about-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:12px;

margin:22px 0;

}

.about-list div{

display:flex;

align-items:center;

gap:10px;

font-weight:600;

color:#333;

}

.about-list i{

color:#F9A826;

font-size:20px;

}
/*=========================================
        WHY US
==========================================*/

.why-us{

    padding:70px 0;

    background:#f8fafc;

}

.section-title{

    max-width:700px;

    margin:auto;

}

.section-title span{

    color:#F9A826;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

}

.section-title h2{

    font-size:38px;

    color:#0A2E5C;

    font-weight:700;

    margin:15px 0;

}

.section-title p{

    color:#666;

    line-height:1.7;

}

.why-card{

    background:white;

    border-radius:15px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    height:100%;

    border:1px solid #ececec;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.08);

}

.why-card i{

    width:70px;

    height:70px;

    background:#0A2E5C;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:28px;

    margin-bottom:25px;

    transition:.3s;

}

.why-card:hover i{

    background:#F9A826;

}

.why-card h4{

    color:#0A2E5C;

    margin-bottom:15px;

    font-size:21px;

}

.why-card p{

    color:#666;

    font-size:15px;

    line-height:1.7;

}
/*====================================
        FORMATIONS PREMIUM
====================================*/

.formations{

    padding:90px 0;

    background:#fff;

}

.formations-grid{

    margin-top:60px;

}

.formation-row{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.formation-card{

    width:265px;

    border-radius:16px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    display:block;

}

.formation-image{

    height:170px;

    background:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;

}

.formation-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.4s;

}

.formation-overlay{

    background:#081F4D;

    padding:18px;

    text-align:center;

}

.formation-overlay h4{

    color:#fff;

    font-size:15px;

    font-weight:600;

    line-height:1.4;

    height:52px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:18px;

}

.formation-btn{

    display:inline-block;

    background:#F9A826;

    color:#fff;

    padding:10px 18px;

    border-radius:6px;

    font-size:13px;

    font-weight:600;

    transition:.35s;

}

.formation-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.formation-card:hover img{

    transform:scale(1.08);

}

.formation-card:hover .formation-btn{

    background:#fff;

    color:#081F4D;

}
/*====================================
            ADMISSION
====================================*/

.admission{

    padding:90px 0;

    background:#0A2E5C;

    text-align:center;

}

.admission-subtitle{

    display:inline-block;

    padding:8px 20px;

    background:rgba(255,255,255,.10);

    color:#F9A826;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.admission h2{

    color:#fff;

    font-size:46px;

    font-weight:700;

    margin-bottom:20px;

}

.admission p{

    max-width:750px;

    margin:0 auto 40px;

    color:#d8d8d8;

    font-size:18px;

    line-height:1.9;

}

.admission-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-light-custom{

    background:#F9A826;

    color:#fff;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-light-custom:hover{

    background:#fff;

    color:#0A2E5C;

}

.btn-outline-light-custom{

    border:2px solid #fff;

    color:#fff;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-outline-light-custom:hover{

    background:#fff;

    color:#0A2E5C;

}
/*====================================
            FOOTER
====================================*/

.footer{

    background:#081F4D;

    color:#fff;

    padding:80px 0 0;

}

.footer-logo{

    width:230px;

    margin-bottom:25px;

    filter:drop-shadow(0 0 4px rgba(255,255,255,.75));

}

.footer-description{

    color:#c9d2e3;

    line-height:1.9;

    font-size:15px;

    margin-bottom:30px;

}

.footer h4{

    color:#fff;

    font-size:22px;

    margin-bottom:25px;

    position:relative;

    padding-bottom:12px;

}

.footer h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:50px;

    height:3px;

    background:#F9A826;

}

.footer ul{

    padding:0;

    margin:0;

}

.footer ul li{

    list-style:none;

    margin-bottom:14px;

}

.footer ul li a{

    color:#c9d2e3;

    transition:.3s;

}

.footer ul li a:hover{

    color:#F9A826;

    padding-left:8px;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#c9d2e3;

}

.footer-contact i{

    color:#F9A826;

    margin-top:5px;

    min-width:18px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:42px;

    height:42px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:#F9A826;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

}

.footer-bottom p{

    margin:0;

    color:#c9d2e3;

}

.footer-bottom a{

    color:#c9d2e3;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#F9A826;

}

.footer-bottom span{

    margin:0 12px;

    color:#888;

}
/*====================================
        HERO ANIMATIONS
====================================*/

.hero-content .subtitle{

    opacity:0;
    transform:translateY(25px);
    animation:fadeUp .7s ease forwards;
    animation-delay:.2s;

}

.hero-content h1{

    opacity:0;
    transform:translateX(-40px);
    animation:fadeLeft .8s ease forwards;
    animation-delay:.5s;

}

.hero-content p{

    opacity:0;
    transform:translateY(25px);
    animation:fadeUp .8s ease forwards;
    animation-delay:.8s;

}

.hero-buttons{

    opacity:0;
    transform:translateY(25px);
    animation:fadeUp .8s ease forwards;
    animation-delay:1.1s;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(25px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@keyframes fadeLeft{

    from{

        opacity:0;
        transform:translateX(-40px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}
.btn-primary-custom,
.btn-secondary-custom{

    transition:.35s;

}

.btn-primary-custom:hover,
.btn-secondary-custom:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(0,0,0,.20);

}
.hero{

    background-attachment:fixed;

}
/*====================================
            PAGE HERO
====================================*/

.page-hero{

    position:relative;

    height:420px;

    background:url("../images/hero.png") center center/cover no-repeat;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.page-overlay{

    position:absolute;

    inset:0;

    background:rgba(8,31,77,.75);

}

.page-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

}

.page-content span{

    display:inline-block;

    background:#F9A826;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    letter-spacing:1px;

    margin-bottom:20px;

}

.page-content h1{

    font-size:60px;

    font-weight:800;

    margin-bottom:15px;

}

.page-content p{

    font-size:18px;

    max-width:700px;

    margin:auto;

    color:#ddd;

    line-height:1.8;

}

.breadcrumb-custom{

    margin-top:35px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

}

.breadcrumb-custom a{

    color:#fff;

}

.breadcrumb-custom span{

    background:none;

    padding:0;

    margin:0;

    color:#F9A826;

}
/*====================================
            HISTORY
====================================*/

.history{

    padding:90px 0;

    background:#fff;

}

.history-image{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.history-image img{

    width:100%;

    height:520px;

    object-fit:cover;

    transition:.5s;

}

.history-image:hover img{

    transform:scale(1.05);

}

.history-content{

    padding-left:40px;

}

.history-content h2{

    font-size:42px;

    color:#081F4D;

    font-weight:700;

    margin:20px 0;

    line-height:1.3;

}

.history-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

    font-size:17px;

}

.history-box{

    display:flex;

    gap:25px;

    margin:35px 0;

}

.history-box div{

    flex:1;

    background:#f8fafc;

    border-left:5px solid #F9A826;

    border-radius:10px;

    padding:20px;

}

.history-box h3{

    color:#081F4D;

    font-size:34px;

    font-weight:800;

    margin-bottom:8px;

}

.history-box span{

    color:#666;

}
/*====================================
        MISSION - VISION
====================================*/

.mission-section{

    padding:90px 0;

    background:#f7f9fc;

}

.mission-card{

    background:#fff;

    padding:45px 35px;

    border-radius:20px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.mission-icon{

    width:90px;

    height:90px;

    background:#081F4D;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:30px;

    transition:.35s;

}

.mission-card:hover .mission-icon{

    background:#F9A826;

}

.mission-icon i{

    color:#fff;

    font-size:36px;

}

.mission-card h3{

    color:#081F4D;

    font-size:28px;

    font-weight:700;

    margin-bottom:20px;

}

.mission-card p{

    color:#666;

    line-height:1.9;

}

.mission-card ul{

    padding:0;

    margin-top:20px;

}

.mission-card ul li{

    list-style:none;

    margin-bottom:12px;

    color:#555;

    position:relative;

    padding-left:22px;

    text-align:left;

}

.mission-card ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#F9A826;

    font-weight:bold;

}
/*====================================
        ORGANISATION
====================================*/

.organisation{

    padding:90px 0;

    background:#ffffff;

}

.org-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    border:1px solid #e9edf5;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.org-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.org-card i{

    width:80px;

    height:80px;

    background:#081F4D;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 25px;

    font-size:32px;

    transition:.35s;

}

.org-card:hover i{

    background:#F9A826;

    transform:rotate(8deg);

}

.org-card h4{

    color:#081F4D;

    font-size:22px;

    font-weight:700;

    margin-bottom:18px;

}

.org-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

    margin:0;

}
