/* ===========================
RESET
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{
    --primary:#003366;
    --primary-dark:#001b44;
    --secondary:#ffc107;

    --white:#fff;
    --light:#f8fafc;

    --text:#4b5563;
    --text-light:#555;

    --radius-sm:10px;
    --radius-md:20px;
    --radius-lg:25px;
    --radius-xl:50px;

    --shadow-sm:0 10px 30px rgba(0,0,0,.08);
    --shadow-md:0 15px 40px rgba(0,0,0,.12);
    --shadow-lg:0 20px 50px rgba(0,0,0,.15);

    --transition:.35s ease;
}

body{
font-family:'Poppins',sans-serif;
background:white;
color:var(--text);
overflow-x:hidden;
line-height:1.5;
font-size: 16px;
}

/* ===========================
CONTAINER
=========================== */

.container{
width:90%;
max-width:100%;
margin:auto;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 5%;

    background:rgba(255,255,255,.96);
    backdrop-filter:blur(20px);

    box-shadow:0 5px 25px rgba(0,0,0,.08);
    z-index:999;

    transition:all .3s ease;
}

/* LOGO */

.logo{
    flex-shrink:0;
}

.logo img{
    height:140px;
    width:auto;
    object-fit:contain;
    display:block;
}

/* MENU */

.menu{
    display:flex;
    align-items:center;
    gap:35px;

    list-style:none;
    margin:0;
    padding:0;
}

.menu a{
    position:relative;

    color:var(--primary);
    text-decoration:none;

    font-size:18px;
    font-weight:600;

    transition:color .3s ease;
}

/* SOULIGNEMENT ANIMÉ */

.menu a::after{
    content:"";
    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:3px;

    background:#bb0303;
    border-radius:10px;

    transition:width .35s ease;
}

/* HOVER + ACTIVE */



.menu a:hover::after,
.menu a.active::after{
    width:100%;
}

/* ===========================
DROPDOWN MENU
=========================== */

.dropdown{
    position:relative;
}

/* flèche */
.dropdown i{
    font-size:15px;
    margin-left:5px;
    font-weight: 600;
}

/* sous-menu */
.submenu{

    position:absolute;
    top:60px;
    left:0;

    min-width:240px;

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

    list-style:none;

    padding:12px 0;
    margin:0;

    box-shadow:
    0 15px 40px rgba(255, 255, 255, 0.12);

    opacity:0;
    visibility:hidden;

    transform:
    translateY(15px);

    transition:.35s ease;

    z-index:9999;
}

/* afficher au hover */
.dropdown:hover .submenu{

    opacity:1;
    visibility:visible;

    transform:
    translateY(0);
}

/* liens */
.submenu li{
    width:100%;
}

.submenu li a{

    display:block;

    padding:12px 20px;

    color:#003366;

    font-size:15px;

    font-weight:500;

    transition:.3s;
}

/* désactive le soulignement rouge */
.submenu li a::after{
    display:none;
}

/* hover */
.submenu li a:hover{

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

    color:#ad010f;

    padding-left:28px;
font-weight: 600;
font-family: 'Poppins', sans-serif !important;
font-size: 19px;
}

/* ==========================
DROPDOWN
========================== */

.dropdown{
    position:relative;
}

.dropdown > a{
    display:flex;
    align-items:center;
    gap:8px;
}

/* Animation flèche */
.dropdown > a i{
    font-size:13px;
    transition:all 0s ease;
}

/* Rotation quand ouvert */
.dropdown:hover > a i,
.dropdown.active > a i{
    transform:rotate(180deg);
}

/* MENU */
.dropdown-menu{

    position:absolute;
    top:100%;
    left:0;

    min-width:260px;

    background:#fff;

    border-radius:15px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);

    padding:12px 0;

    z-index:999;

    /* Animation */
    opacity:0;
    visibility:hidden;

    transform:
    translateY(20px)
    scale(.95);

    transform-origin:top;

    transition:
    opacity .35s ease,
    transform .35s ease,
    /* visibility .35s; */
}

/* OUVERTURE */
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu{

    opacity:1;
    visibility:visible;

    transform:
    translateY(0)
    scale(1);
}

/* LIENS */
.dropdown-menu li{
    list-style:none;
}

.dropdown-menu li a{

    display:block;

    padding:12px 20px;

    color:#00365f;

    font-size:15px;

    font-weight:500;

    transition:.3s;
}

.dropdown-menu li a:hover{

    background:#f5f8fc;

    color:#e63946;

    padding-left:28px;
}

/* ===========================
HAMBURGER
=========================== */

.hamburger{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    cursor:pointer;
    z-index:1001;
}

.hamburger span{
    width:30px;
    height:3px;
    background:#003366;
    border-radius:20px;
    transition:.35s ease;
}

/* animation X */
.hamburger.active span:nth-child(1){
    transform:
        translateY(9px)
        rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:
        translateY(-9px)
        rotate(-45deg);
}




/* ====================================
   HERO SLIDER PREMIUM
==================================== */

.hero-slider{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* =====================
   SLIDES
===================== */

.slide{
    position: absolute;
    inset: 0;

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

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 1.5s ease,
        visibility 1.5s ease;
}

.slide.active{
    opacity: 1;
    visibility: visible;
}

/* Zoom lent sur l'image */

.slide::before{
    content: "";
    position: absolute;
    inset: 0;

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

    transform: scale(1);
    animation: heroZoom 12s ease-in-out infinite alternate;

    z-index: 0;
}

@keyframes heroZoom{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.12);
    }
}



/* =====================
   CONTAINER
===================== */

.hero-slider .container{
    position: relative;
    z-index: 5;

    height: 100%;

    display: flex;
    align-items: left;
    justify-content: left;

    text-align: left;
}

/* =====================
   CONTENT
===================== */

.slide-content{
    max-width: 900px;

    opacity: 0;
    transform: translateY(40px);
}

.slide.active .slide-content{
    animation: contentReveal 1s ease forwards;
}

@keyframes contentReveal{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   BADGE
===================== */

.badge{
    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

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

    backdrop-filter: blur(28px);

    border: 1px solid rgba(255,255,255,.15);

    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;

    margin-bottom: 25px;

    opacity: 0;
}

.slide.active .badge{
    animation: fadeUp .8s .2s forwards;
}

/* =====================
   TITLE
===================== */

.slide-content h1{
    color: #fff;

    font-size: clamp(42px, 6vw, 78px);

    line-height: 1.1;
    font-weight: 800;

    margin-bottom: 25px;

    opacity: 0;
}

.slide.active h1{
    animation: fadeUp .8s .5s forwards;
}

/* =====================
   TEXT
===================== */

.slide-content p{
    color: rgba(255,255,255,.9);

    font-size: 20px;
    line-height: 1.8;

    max-width: 800px;
    margin: 0 auto 35px;

    opacity: 0;
}

.slide.active p{
    animation: fadeUp .8s .8s forwards;
}

/* =====================
   BUTTON
===================== */

.btn-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    background: #ffc400;
    color: #001b44;

    font-weight: 700;
    text-decoration: none;

    border-radius: 50px;

    position: relative;
    overflow: hidden;

    transition: .35s ease;

    opacity: 0;
}

.slide.active .btn-primary{
    animation: fadeUp .8s 1.1s forwards;
}

.btn-primary:hover{
    transform: translateY(-3px);

    box-shadow:
    0 15px 35px rgba(255,196,0,.35);
}

.btn-primary::before{
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );

    transition:.8s;
}

.btn-primary:hover::before{
    left:120%;
}

/* =====================
   FADE UP
===================== */

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(25px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   PARTICLES
===================== */

.particles{
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particles span{
    position: absolute;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ffc400;

    box-shadow:
        0 0 10px #ffc400,
        0 0 20px #ffc400,
        0 0 40px #ffc400;

    animation:
        particleFloat 12s ease-in-out infinite,
        particleBlink 4s ease-in-out infinite;
}

@keyframes particleBlink{
    0%,100%{
        opacity:.2;
    }
    50%{
        opacity:1;
    }
}

@keyframes particleFloat{
    0%{
        transform:translate(0,0);
    }
    25%{
        transform:translate(20px,-25px);
    }
    50%{
        transform:translate(-15px,-45px);
    }
    75%{
        transform:translate(25px,-20px);
    }
    100%{
        transform:translate(0,0);
    }
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:768px){

    .hero-slider{
        height: 90vh;
    }

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

    .slide-content p{
        font-size: 16px;
        line-height: 1.6;
    }

    .btn-primary{
        padding: 14px 28px;
    }
}

/* ===========================
HERO
=========================== */

.hero{

 margin-bottom:120px;
min-height:100vh;

display:flex;
align-items:center;
justify-content:center;

text-align:center;

position:relative;
overflow:hidden;

background:
linear-gradient(
135deg,
#001b44,
#003366,
#0b5ea8
);
 

}

.hero-overlay{

 
position:absolute;
inset:0;

background:
radial-gradient(
circle at top right,
rgba(255,193,7,.25),
transparent 35%
);
 

}

.hero-content{

 
position:relative;
z-index:10;

width:90%;
max-width:1100px;
 

}

.badge,
.badge1{
    display:inline-block;
    padding:12px 25px;
    color:white;
    border-radius:50px;
    background:rgba(0, 0, 0, 0.534);
    border:1px solid rgba(255, 255, 255, 0.247);
    backdrop-filter:blur(28px);
    margin-bottom:30px;

    position:relative;
    z-index:100;
}

.hero h1{

 
font-size:78px;
color:white;
font-weight:800;

line-height:1.1;

margin-bottom:20px;
 

}

.hero h1 span{
color:var(--secondary);
}

.hero-subtitle{

 
color:white;
font-size:22px;
font-weight:500;

margin-bottom:25px;
 

}

.description{

 
max-width:850px;

margin:auto;

color:#dbeafe;

font-size:20px;

margin-bottom:40px;
 

}

.particles{
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particles span{
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgb(255, 196, 0);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255,255,255,.8);
    animation: blink 3s infinite ease-in-out,
               float 10s infinite linear;
}

/* Positions aléatoires */
.particles span:nth-child(1){ top:10%; left:15%; animation-delay:0s; }
.particles span:nth-child(2){ top:20%; left:75%; animation-delay:1s; }
.particles span:nth-child(3){ top:35%; left:30%; animation-delay:2s; }
.particles span:nth-child(4){ top:50%; left:80%; animation-delay:0.5s; }
.particles span:nth-child(5){ top:70%; left:20%; animation-delay:1.5s; }
.particles span:nth-child(6){ top:80%; left:60%; animation-delay:2.5s; }
.particles span:nth-child(7){ top:15%; left:50%; animation-delay:1.2s; }
.particles span:nth-child(8){ top:65%; left:90%; animation-delay:0.8s; }
.particles span:nth-child(9){ top:40%; left:5%; animation-delay:2.2s; }
.particles span:nth-child(10){ top:90%; left:45%; animation-delay:1.8s; }

@keyframes blink{
    0%,100%{
        opacity:0.2;
        transform:scale(0.7);
    }
    50%{
        opacity:1;
        transform:scale(1.4);
    }
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-20px);
    }
    100%{
        transform:translateY(0);
    }
}

/* Contenu au-dessus des particules */
.hero-content{
    position: relative;
    z-index: 1;
}

/* ===========================
BUTTONS
=========================== */

.hero-buttons{

 
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
 

}

.btn-primary{

 
background:var(--secondary);

color:#111;

padding:18px 38px;

border-radius:60px;

font-weight:700;

text-decoration:none;

transition:var(--transition);
opacity: 1;
 

}

.btn-primary:hover{

 
transform:translateY(-5px);

box-shadow:
0 15px 40px rgba(255,193,7,.45);
 

}

.btn-secondary{

 
padding:18px 38px;

border-radius:60px;

border:2px solid white;

color:white;

text-decoration:none;

transition:var(--transition);
 

}

.btn-secondary:hover{

 
background:white;
color:var(--primary);
 

}


.btn-secondary:hover{

 
background:white;
color:var(--primary);
 

}

/* ===========================
STATS
=========================== */

.stats{

 
margin-top:-80px;

position:relative;
z-index:50;

padding:0 8%;
 

}

.stats-grid{

 
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
 

}

.stat-card{

 
background:white;

border-radius:20px;

padding:35px;

text-align:center;

box-shadow:var(--shadow-md);

transition:var(--transition);
 

}

.stat-card:hover{

 
transform:translateY(-8px);
 

}

.stat-card h2{

 
color:var(--primary);

font-size:42px;
font-weight:800;
 

}

.stat-card p{

 
color:#666;
margin-top:10px;
 

}

/* ===========================
SERVICES
=========================== */

.services{
    
margin-top:-120px;
margin-top:-70px;
padding:120px 8%;
 

}

.section-title{

text-align:center;

margin-bottom:60px;
 

}

.section-title span{

 
color:#ffbb00;

font-weight:700;
 

}

.section-title h2{

 
font-size:48px;
color:var(--primary);

margin-top:10px;
 

}

.services-grid{

 
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
 

}

.feature-card{

 
background:white;

padding:30px;

border-radius:25px;

text-align:center;

box-shadow:var(--shadow-md);

transition:var(--transition);
 

}

.feature-card:hover{

 
transform:
translateY(-10px);

box-shadow:
0 20px 50px rgba(0,0,0,.12);
 

}

.feature-card i{

 
font-size:70px;

color:var(--secondary);

margin-bottom:25px;
 

}

.feature-card h3{

 
color:var(--primary);

margin-bottom:15px;
 

}

/* ===========================
PROCESS SECTION
=========================== */

.process{
    margin-top:-140px;
    margin-bottom:-120px;
    padding:120px 8%;
    background:#f8fafc;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.process-card{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.step{
    font-size:28px;
    font-weight:800;
    color:#ffc107;
    margin-bottom:15px;
}

.process-card h3{
    color:#003366;
    margin-bottom:10px;
    font-size:20px;
}

.process-card p{
    font-size:15px;
    color:#555;
    line-height:1.6;
}

.process-card small{
    display:block;
    margin-top:10px;
    color:#003366;
    font-weight:600;
}

/* RESPONSIVE */
@media(max-width:992px){
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .process-grid{
        grid-template-columns:1fr;
    }
}

/* ===========================
CTA
=========================== */

.cta{

 
padding:100px 8%;

text-align:center;

background:
linear-gradient(
135deg,
#001b44,
#003366
);

color:white;
 

}

.cta h2{

 
font-size:48px;

margin-bottom:20px;
 

}

.cta p{

 
max-width:700px;

margin:0 auto 30px;
 

}

.online_course {
    background: rgb(16, 0, 73);
    border-radius: 50px;
    padding: 5px 15px;
    width: 200px;
    text-align: center;
    font-weight: 800;
    font-size: 17px;
    transition: transform 0.2s ease, background 0.2s ease;
}

/* Hover desktop */
@media (hover: hover) {
    .online_course:hover{
        background: rgb(155, 3, 3);
        transform: scale(1.05);
        cursor: pointer;
    }
}

/* Clic mobile / tablette */
.online_course:active,
.online_course.tap{
    transform: scale(0.95);
    background: rgb(255, 166, 0);
}

/* lien propre */
.btn-secondary1{
    color: white;
    text-decoration: none;
    display: block;
}

/* animation 3 battements */
.pulse {
    animation: pulse3 0.9s ease;
}

@keyframes pulse3 {
    0%   { transform: scale(1); }
    10%  { transform: scale(1.08); }
    20%  { transform: scale(1); }

    30%  { transform: scale(1.08); }
    40%  { transform: scale(1); }

    50%  { transform: scale(1.08); }
    60%  { transform: scale(1); }

    100% { transform: scale(1); }
}

/* ===========================
FOOTER
=========================== */


/* ===========================
RESPONSIVE
=========================== */

@media(max-width:992px){

 
.hero h1{
    font-size:55px;
}

.stats-grid,
.services-grid{
    margin-top:-80px;
    grid-template-columns:repeat(2,1fr);
}
 

}

@media(max-width:992px){

    .hamburger{
        display:flex;
    }

    .online_course{
        display:none;
    }

    .menu{
        position:fixed;

        top:80px;
        right:-100%;

        width:320px;
        height:calc(100vh - 80px);

        background:white;

        flex-direction:column;
        align-items:flex-start;

        gap:0;

        padding:30px;

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

        transition:.4s ease;

        overflow-y:auto;
    }

    .menu.active{
        right:0;
    }

    .menu li{
        width:100%;
    }

    .menu li a{
        display:block;
        width:100%;
        padding:15px 0;
        border-bottom:1px solid #eee;
    }

    /* dropdown mobile */

    .submenu{
        position:static;

        opacity:1;
        visibility:visible;

        transform:none;

        display:none;

        box-shadow:none;

        min-width:100%;

        padding-left:15px;
    }

    .dropdown.open .submenu{
        display:block;
    }

    .dropdown i{
        margin-left:auto;
    }
}
/* ===========================
   ABOUT SECTION
=========================== */

.about{
margin-top:70px;
    margin-bottom:90px;
    background:#ffffff;
}

.about-grid{
    
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

.mini-title{

    color:#ffc107;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:15px;
}

.about-text h2{

    font-size:48px;
    color:#003366;
    margin:15px 0 25px;
    line-height:1.2;
}

.about-text h2 span{
    color:#ffc107;
}

.about-text p{

    margin-bottom:18px;
    color:#555;
    font-size:17px;
    line-height:1.8;
}

/* IMAGE SIDE */

.about-image{
    position:relative;
}

.image-card{

    position:relative;
    
    overflow:hidden;

 
}

.image-card img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;

    transition:0.5s ease;
}

.image-card:hover img{
    transform:scale(1.05);
}

/* BADGE FLOTTANT */

.floating-badge{

    position:absolute;
    bottom:20px;
    left:20px;

    background:rgba(255,193,7,.95);
    color:#000;

    padding:12px 18px;
    border-radius:50px;

    font-weight:700;

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

/* BUTTON ALIGNMENT */
.about-text .btn-primary{
    display:inline-block;
    margin-top:20px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-text h2{
        font-size:36px;
    }

    .image-card img{
        height:450px;
        width:450px;
    }
}

/* ===========================
   SCHOLARSHIP SECTION
=========================== */

.scholarship{
    margin-top:-40px;
    margin-bottom:-150px;

    padding:120px 8%;
    background:
    linear-gradient(135deg,#f8fafc,#ffffff);
}

.scholarship-grid{
    margin-top: -80px;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

/* TEXT SIDE */

.tag{

    display:inline-block;

    background:#003366;
    color:white;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;
    font-weight:600;

    margin-bottom:20px;
}

.scholarship-text h2{

    font-size:46px;
    color:#003366;

    line-height:1.2;

    margin-bottom:25px;
}

.scholarship-text h2 span{
    color:#ffc107;
}

.highlight{

    font-size:18px;
    font-weight:600;

    color:#444;

    margin-bottom:20px;
}

.scholarship-text p{

    color:#555;
    line-height:1.8;
    margin-bottom:15px;
}

/* CARD SIDE */

.scholarship-card{

    background:#003366;
    color:white;

    padding:50px;

    border-radius:30px;

    text-align:center;

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

    position:relative;

    overflow:hidden;
}

/* effet lumineux */
.scholarship-card::before{

    content:'';

    position:absolute;
    top:-50%;
    left:-50%;

    width:200%;
    height:200%;

    background:
    radial-gradient(
    circle,
    rgba(255,193,7,.25),
    transparent 60%
    );

    animation:moveGlow 6s linear infinite;
}

@keyframes moveGlow{

    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

.big-number{

    font-size:90px;
    font-weight:900;

    color:#ffc107;

    position:relative;
    z-index:2;
}

.scholarship-card p{

    font-size:18px;
    margin-bottom:20px;

    position:relative;
    z-index:2;
}

.scholarship-card ul{

    list-style:none;

    position:relative;
    z-index:2;
}

.scholarship-card ul li{

    margin:10px 0;
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:992px){

    .scholarship-grid{
        grid-template-columns:1fr;
    }

    .scholarship-text h2{
        font-size:34px;
    }

    .big-number{
        font-size:70px;
    }
}

/* ===========================
ADVISOR SECTION
=========================== */

.advisor{
    margin-top:-120px;
    margin-bottom:-160px;
    padding:120px 8%;
    background:#f8fafc;
}

.advisor-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

/* TAG */
.advisor .tag{
    display:inline-block;
    background:#003366;
    color:white;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

/* TEXT */
.advisor-text h2{
    font-size:46px;
    color:#003366;
    line-height:1.2;
    margin-bottom:20px;
}

.advisor-text h2 span{
    color:#ffc107;
}

.advisor-text p{
    color:#555;
    font-size:17px;
    line-height:1.8;
    margin-bottom:20px;
}

/* LIST */
.advisor-list{
    list-style:none;
    margin-bottom:30px;
}

.advisor-list li{
    margin:10px 0;
    color:#333;
    font-weight:500;
}

/* BUTTONS */
.advisor-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-whatsapp{
    background:#25D366;
    color:white;
    padding:14px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-whatsapp:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(7, 49, 22, 0.96);
}

.btn-call{
    background:#003366;
    color:white;
    padding:14px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-call:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,51,102,.3);
}

/* CARD */
.advisor-card{
    background:white;
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    position:relative;
    animation:fadeUp 1s ease;
}

/* AVATAR */
.advisor-avatar img{
    width:260px;
    height:260px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
    border:4px solid #ffc107;
}

/* STATUS */
.status{
    margin-top:15px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#eafff1;
    color:#25D366;
    padding:8px 15px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
}

.online-dot{
    width:10px;
    height:10px;
    background:#25D366;
    border-radius:50%;
    animation:pulse 1.5s infinite;
}

/* PULSE ANIMATION */
@keyframes pulse{
    0%{transform:scale(1); opacity:1;}
    50%{transform:scale(1.4); opacity:0.5;}
    100%{transform:scale(1); opacity:1;}
}

/* RESPONSIVE */
@media(max-width:992px){
    .advisor-grid{
        grid-template-columns:1fr;
    }

    .advisor-text h2{
        font-size:34px;
    }
}


 /* ===========================
   PARTNERS
=========================== */

.partners{
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

/* TITRE */
.partners h2{
    font-size: 32px;
    color: #003366;
    margin-bottom: 10px;
}

/* SLIDER WRAPPER */
.partners-slider{
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

/* TRACK ANIMATION */
.partners-track{
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

/* LOGOS (COULEURS DIRECTES) */
.partners-track img{
    height: 70px;
    object-fit: contain;

    filter: none;
    opacity: 1;

    transition: transform 0.3s ease;
}

/* HOVER SIMPLE (juste zoom) */
.partners-track img:hover{
    transform: scale(1.1);
}

/* ANIMATION INFINIE */
@keyframes scroll{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 768px){
    .partners-track{
        gap: 40px;
        animation: scroll 15s linear infinite;
    }

    .partners-track img{
        height: 50px;
    }
}

.hero-slider{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1s ease;
}

.slide.active{
    opacity:1;
    z-index:1;
}



.slide-content{
    position:relative;
    z-index:2;
    max-width:800px;
    color:white;
    padding-top:200px;
}

.slide-content h1{
    font-size:60px;
    margin:20px 0;
    line-height:1.2;
}

.slide-content p{
    font-size:18px;
    margin-bottom:25px;
    color:#e5e7eb;
}

.controls{
    position:absolute;
    bottom:40px;
    width:100%;
    display:flex;
    justify-content:space-between;
    padding:0 30px;
    z-index:5;
}

.controls span{
    cursor:pointer;
    font-size:40px;
    color:white;
    transition:.3s;
}

.controls span:hover{
    color:#ffc107;
}

@media(max-width:768px){
    .slide-content h1{
        font-size:32px;
    }

    .slide-content{
        padding-top:160px;
    }
}

/* Videos youtube */
.youtube-videos {
	padding: 80px 0;
	background: #f8f9fb;
}

.section-title {
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 40px;
	color: #222;
}

/* GRID RESPONSIVE */
.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

/* CARD VIDEO */
.video-card {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* IFRAME */
.video-card iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* ===========================
ANIMATIONS GLOBALS
=========================== */


/* Hover global cards */
.stat-card,
.feature-card,
.flyer-card,
.advisor-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-card:hover,
.feature-card:hover,
.flyer-card:hover,
.advisor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Buttons animation global */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:16px 32px;

    border:none;
    border-radius:var(--radius-xl);

    text-decoration:none;
    font-weight:700;

    transition:var(--transition);
}

.btn:hover{
    transform:translateY(-4px);
}

.btn-primary{
    background:var(--secondary);
    color:#111;
}

.btn-secondary{
    border:2px solid var(--white);
    color:var(--white);
}

.btn-secondary:hover{
    background:var(--white);
    color:var(--primary);
}

.btn-whatsapp{
    background:#25D366;
    color:var(--white);
}

.btn-call{
    background:var(--primary);
    color:var(--white);
}
.btn-call {
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-whatsapp:hover,
.btn-call:hover {
    transform: translateY(-4px);
}

.hero::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,193,7,.15), transparent 60%);
    animation: move 12s linear infinite;
}

@keyframes move {
    0% { transform: translate(0,0); }
    50% { transform: translate(-50px,-50px); }
    100% { transform: translate(0,0); }
}

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.partners-slider {
    overflow: hidden;
    white-space: nowrap;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
    align-items: center;
}

.partners-track img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 1;
    transition: 0.3s;
}

.partners-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================
   HERO RIGHT OVERLAY
=========================== */

.hero {
    position: relative;
}

/* container à droite */
.hero-right-overlay {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px; 
    z-index: 20;
}

/* carte */
.overlay-card {
    width: 400px;
    max-width: 90vw; 
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

/* hover animation améliorée */
.overlay-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

/* titre */
.overlay-card h3 {
    color: #003366;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* liste */
.overlay-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-card li {
    font-size: 21px;
    color: #ad0202;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 800;
}

/* icônes */
.overlay-card i {
    color: #003366;
    min-width: 18px;
}

/* bouton */
.overlay-btn {
    display: inline-block;
    padding: 10px 15px;
    background: #003366;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.overlay-btn:hover {
    background: #ffc107;
    color: #000;
}

/* focus accessibilité */
.overlay-btn:focus {
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}

/* responsive */
@media (max-width: 768px) {
    .hero-right-overlay {
        position: static;
        transform: none;
        align-items: center;
        margin-top: 20px;
    }

    .overlay-card {
        width: 100%;
    }
}

/* RESPONSIVE */
@media(max-width:992px){
    .hero-right-overlay{
        display:none;
    }
}

/* ===========================
   ENROLL SECTION
=========================== */

.enroll{
    padding:120px 8%;
    background:#f8fafc;
}

.enroll-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

/* TITRE */
.mini-title{
    color:#ffc107;
    font-weight:700;
    text-transform:uppercase;
    font-size:13px;
}

.enroll h2{
    font-size:42px;
    color:#003366;
    margin:15px 0;
    line-height:1.2;
}

.enroll h2 span{
    color:#ffc107;
}

/* FORM */
.enroll-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:20px;
}

.enroll-form input,
.enroll-form select,
.enroll-form textarea{
    padding:14px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.enroll-form input:focus,
.enroll-form select:focus,
.enroll-form textarea:focus{
    border-color:#003366;
    box-shadow:0 0 10px rgba(1, 102, 202, 0.15);
}

/* FILIÈRES */
.programs-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px 60px;
    margin:40px 0;
}

.programs-list ul{
    list-style:none;
    padding:0;
    margin:0;
}

.programs-list li{
    margin-bottom:12px;
    color:#111;
    font-size:20px;
    line-height:1.5;
    font-weight:400;
}

.programs-list li::before{
    content:"›";
    color:#003366;
    font-weight:700;
    margin-right:10px;
}

/* Responsive */
@media(max-width:768px){

    .programs-list{
        grid-template-columns:1fr;
        gap:0;
    }

    .programs-list li{
        font-size:17px;
    }

}

/* RESPONSIVE */
@media(max-width:992px){
    .enroll-grid{
        grid-template-columns:1fr;
    }

    .enroll h2{
        font-size:32px;
    }
}


/* =====================
DESTINATIONS
===================== */

.destinations{
    margin-top:-120px;
    margin-bottom:-120px;
    padding:90px 0;
    background:#f8fafc;
}

.destinations-slider{
    overflow:hidden;
    width:100%;
    position:relative;
    margin-top:50px;
}

.destinations-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scrollFlags 30s linear infinite;
}

/* STOP AU SURVOL */
.destinations-track:hover{
    animation-play-state:paused;
}

.country-card{

    min-width:220px;
    text-decoration:none;

    background:#fff;

    

    padding:25px;

    text-align:center;

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

    transition:.4s;
}

.country-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);
}

.country-card img{

    width:150px;
    height:100px;

    object-fit:cover;

    border-radius:10px;

    margin-bottom:15px;
}

.country-card span{

    display:block;

    color:#003366;

    font-size:18px;

    font-weight:700;
}

@keyframes scrollFlags{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* =================================
   RESPONSIVE GLOBAL TABLETTE
================================= */

@media (max-width: 992px){

    section{
        overflow:hidden;
    }

    .container{
        width:95%;
    }

    h1{
        font-size:48px !important;
        line-height:1.2;
    }

    h2{
        font-size:34px !important;
        line-height:1.3;
    }

    h3{
        font-size:24px !important;
    }

    p{
        font-size:16px !important;
    }

    /* Grilles */

    .stats-grid,
    .services-grid,
    .process-grid,
    .about-grid,
    .scholarship-grid,
    .advisor-grid,
    .enroll-grid{
        grid-template-columns:1fr !important;
        gap:30px;
    }

    /* Cards */

    .stat-card,
    .feature-card,
    .process-card,
    .advisor-card,
    .scholarship-card{
        padding:25px;
    }

    /* Hero */

    .hero{
        padding:120px 20px 80px;
        min-height:auto;
    }

    .hero-content{
        width:100%;
    }

    .hero h1{
        font-size:54px !important;
    }

    .hero-subtitle{
        font-size:20px;
    }

    .description{
        font-size:18px;
    }

    /* Boutons */

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:350px;
        text-align:center;
    }
}


/* =================================
   RESPONSIVE MOBILE
================================= */

@media (max-width:768px){

    body{
        font-size:15px;
    }

    section{
        padding-left:20px !important;
        padding-right:20px !important;
    }

    /* Navbar */

    .navbar{
        height:70px;
    }

    .logo img{
        height:85px;
    }

    /* Hero */

    .hero{
        padding-top:130px;
    }

    .hero h1{
        font-size:36px !important;
    }

    .hero-subtitle{
        font-size:18px !important;
    }

    .description{
        font-size:16px !important;
        line-height:1.7;
    }

    .badge,
    .badge1{
        font-size:12px;
        padding:10px 18px;
    }

    /* Slider */

    .slide-content{
        padding-top:130px;
        text-align:center;
    }

    .slide-content h1{
        font-size:32px !important;
    }

    .slide-content p{
        font-size:15px !important;
        margin-bottom:20px;
    }

    .controls{
        display:none;
    }

    /* Titres sections */

    .section-title h2,
    .about-text h2,
    .scholarship-text h2,
    .advisor-text h2,
    .cta h2,
    .enroll h2{
        font-size:28px !important;
    }

    /* Images */

    .image-card img{
        width:100% !important;
        height:auto !important;
    }

    .advisor-avatar img{
        width:180px;
        height:180px;
    }

    /* Statistiques */

    .stats{
        margin-top:0;
        padding-top:40px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-card h2{
        font-size:32px;
    }

    /* Services */

    .services{
        margin-top:0;
        padding-top:60px;
    }

    /* Process */

    .process{
        margin-top:0;
        margin-bottom:0;
    }

    /* Scholarship */

    .scholarship{
        margin-top:0;
        margin-bottom:0;
    }

    /* Advisor */

    .advisor{
        margin-top:0;
        margin-bottom:0;
    }

    /* Destinations */

    .destinations{
        margin-top:0;
        margin-bottom:0;
    }

    .country-card{
        min-width:180px;
    }

    .country-card img{
        width:120px;
        height:80px;
    }

    /* Programmes */

    .programs-list{
        grid-template-columns:1fr;
    }

    .programs-list li{
        font-size:16px;
    }

    /* CTA */

    .cta{
        padding:60px 20px;
    }

    /* Footer */

    footer{
        text-align:center;
    }
}


/* =================================
   PETITS SMARTPHONES
================================= */

@media (max-width:480px){

    .hero h1{
        font-size:30px !important;
    }

    .slide-content h1{
        font-size:28px !important;
    }

    .section-title h2{
        font-size:24px !important;
    }

    .btn-primary,
    .btn-secondary,
    .btn-whatsapp,
    .btn-call{
        width:100%;
    }

    .stat-card,
    .feature-card,
    .process-card,
    .advisor-card,
    .scholarship-card{
        padding:20px;
    }
}

@media(max-width:768px){

    .services,
    .process,
    .scholarship,
    .advisor,
    .destinations{
        margin-top:0 !important;
        margin-bottom:0 !important;
    }

}
