/* === GLOBAL === */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h5 {
    font-size: 1rem;
}

.btn-primary {
    position: relative;
    border: none;
    color: #fff !important;
    font-weight: 600;
    overflow: hidden;
    /* Empêche le débordement du pseudo-élément */
    background: linear-gradient(90deg, #5e7ef2, #a744a2, #f80549);
    z-index: 1;
    transition: color 0.4s ease;
    border-radius: .7em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f80549, #a744a2, #5e7ef2);
    transition: opacity 1s ease;
    opacity: 0;
    /* Cacher le pseudo-élément par défaut */
    z-index: -1;
    /* Placer derrière le contenu du bouton */
}

.btn-primary:hover::before {
    opacity: 1;
    /* Faire apparaître le nouveau dégradé au hover */
}

.btn-primary:hover {
    color: #fff !important;
    /* Garder la couleur du texte */
}

.btn-secondary {
    border: none;
    color: #fff !important;
    font-weight: 600;
    background: #5882f8;
    z-index: 1;
    border-radius: .7em !important;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.btn-outline-secondary {
    border-color: #5882f8;
    border-width: 2px;
    color: #5882f8 !important;
    font-weight: 600;
    transition: background-color 0.4s ease, color 0.4s ease;
    border-radius: .7em;
}

.btn-outline-secondary:hover {
    background-color: #5882f8;
    border-color: #5882f8;
    color: #fff !important;
}

.br07 {
    border-radius: .7em;
}

.br15 {
    border-radius: 1.5em;
}

.grandient-title {
    background: linear-gradient(90deg, #5e7ef2, #a744a2, #f80549);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient outline */
.grandient-title-outline {
    position: relative;
    color: white;
    -webkit-text-stroke: 2.5px transparent;
    background: linear-gradient(90deg, #5e7ef2, #a744a2, #f80549);
    -webkit-background-clip: stroke;
    background-clip: text;
}

.fs02 {
    font-size: 2em;
}

.fs09 {
    font-size: .9em;
}

.bgBlue1 {
    background-color: #f4f7ff;
}

.bgBlue2 {
    background-color: #f7f8fc;
}

.bgPurple {
    background-color: #f1eaf3;
}

.bgGrey {
    background-color: #3c3c3c;
}

.bgGrey2 {
    background-color: #F2F2F2;
}

.cBlue1 {
    color: #5882f8;
}

.cBlue2 {
    color: #607bbd;
}

.cPurple {
    color: #9567e1;
}

.cPurple2 {
    color: #3b276b;
}

.cYellow {
    color: #fdd106;
}


.logoTop img {
    max-width: 150px;
}

/* Stats container */
.stats-container {
    max-width: 600px;
}

/* Étoiles */
.star-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

/* Border gradient pour les chiffres */
.border-numbers {
    position: relative;
    padding: 3px;
    border-radius: 20px;
    background: linear-gradient(135deg, #5e7ef2, #a744a2, #f80549);
    width: 100%;
    max-width: 500px;
}

.border-numbers .inner {
    background-color: #f0e9fc;
    border-radius: 17px;
    padding: 20px 25px;
    min-height: 100px;
    display: flex;
    align-items: center;
}

/* Contenu wrapper pour aligner chiffre + texte + flèche */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.text-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.border-numbers .inner .numbers {
    font-size: 3.5rem;
    font-weight: 800;

    line-height: 1;
    flex-shrink: 0;
}

.border-numbers .inner .numbersDesc {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.border-numbers .inner .arrow-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Titre et texte */
h2 {
    font-size: 2.2rem;
    font-weight: 700;

}

.cPurple2 {
    font-size: 1.05rem;
    line-height: 1.7;

}

/* Responsive */
@media (max-width: 991px) {
    .stats-container {
        margin-bottom: 40px;
        max-width: 100%;
    }

    .border-numbers {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .border-numbers .inner .numbers {
        font-size: 2.5rem;
    }

    .border-numbers .inner .numbersDesc {
        font-size: 0.9rem;
    }

    .border-numbers .inner .arrow-icon {
        font-size: 2rem;
    }

    .star-icon {
        font-size: 2.5rem;
    }

    .text-content {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .d-flex.gap-3 {
        gap: 1rem !important;
    }

    .border-numbers .inner {
        padding: 15px 20px;
        min-height: 80px;
    }

    .border-numbers .inner .numbers {
        font-size: 2rem;
    }

    .border-numbers .inner .numbersDesc {
        font-size: 0.8rem;
    }

    .border-numbers .inner .arrow-icon {
        font-size: 1.5rem;
    }

    .star-icon {
        font-size: 2rem;
    }

    .content-wrapper {
        gap: 10px;
    }
}


.footerRea img {
    max-width: 70px;
}

.footerRea h5 {
    font-weight: 600;
}


.logoFooter {
    max-width: 188px;
}


.footerRs a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #3c3c3c;
    margin: 5px;
    color: #fff;
    font-size: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #fff;
}

.footerRs a:hover {
    background-color: #5882f8;
    border: 1px solid #5882f8;
}

.border-numbers-university {
    position: relative;
    display: inline-block;
    /* Optionnel : adapte à la taille du contenu */
    padding: 2px;
    /* Ajuste l'épaisseur de la bordure */
    border-radius: 10px;
    /* Coins arrondis pour la bordure */
    background: linear-gradient(90deg, #5e7ef2, #a744a2, #f80549);
    /* Dégradé de la bordure */
}

.border-numbers-university .inner {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    color: #607bbd;
}

/*Groupes formations*/

.menu-formation-image {
    display: inline-block;
    border-radius: .4em;
}

.menu-formation-image img {
    border-radius: inherit;
}

.group-sciences-dentaires {
    background-color: #ffeeee;
}

.group-sciences-dentaires h1,
.group-sciences-dentaires h2 {
    color: #732b2b;
    line-height: 1.5;
}

.group-sciences-dentaires p {
    color: #732b2b;
}

.group-sciences-dentaires a {
    color: #732b2b;
}

.group-sciences-dentaires a i {
    color: #732b2b;
}

.group-sciences-dentaires i {
    color: #ff5e5e;
}

.group-sciences-dentaires span {
    background-color: #732b2b;
    color: #ffeeee;
}

.group-sciences-dentaires.menu-formation-image {
    background-color: #ff5e5e;
}

.group-therapies-physiques-et-manuelles {
    background-color: #ebf5f2;
}

.group-therapies-physiques-et-manuelles h1,
.group-therapies-physiques-et-manuelles h2 {
    color: #003728;
    line-height: 1.5;
}

.group-therapies-physiques-et-manuelles p {
    color: #003728;
}

.group-therapies-physiques-et-manuelles a {
    color: #003728;
}

.group-therapies-physiques-et-manuelles i {
    color: #02c7a4;
}

.group-therapies-physiques-et-manuelles span {
    background-color: #003728;
    color: #ebf5f2;
}

.group-therapies-physiques-et-manuelles.menu-formation-image {
    background-color: #ebf5f2;
}

.group-sciences-animales-et-bioveterinaires {
    background-color: #e1f6f8;
}

.group-sciences-animales-et-bioveterinaires h1,
.group-sciences-animales-et-bioveterinaires h2 {
    color: #00484d;
    line-height: 1.5;
}

.group-sciences-animales-et-bioveterinaires p {
    color: #00484d;
}

.group-sciences-animales-et-bioveterinaires a {
    color: #00484d;
}

.group-sciences-animales-et-bioveterinaires i {
    color: #00d3e1;
}

.group-sciences-animales-et-bioveterinaires span {
    background-color: #00484d;
    color: #e1f6f8;
}

.group-sciences-animales-et-bioveterinaires.menu-formation-image {
    background-color: #c0e8eb;
}

.group-medecine-et-sciences-biomedicales {
    background-color: #fcf3e1;
}

.group-medecine-et-sciences-biomedicales h1,
.group-medecine-et-sciences-biomedicales h2 {
    color: #3f2804;
    line-height: 1.5;
}

.group-medecine-et-sciences-biomedicales p {
    color: #3f2804;
}

.group-medecine-et-sciences-biomedicales a {
    color: #3f2804;
}

.group-medecine-et-sciences-biomedicales i {
    color: #ffd100;
}

.group-medecine-et-sciences-biomedicales span {
    background-color: #3f2804;
    color: #fff;
}

.group-medecine-et-sciences-biomedicales.menu-formation-image {
    background-color: #f8edb6;
}

.group-psychologie-clinique-et-licence-en-psychologie {
    background-color: #f0e9fc;
}

.group-psychologie-clinique-et-licence-en-psychologie h1,
.group-psychologie-clinique-et-licence-en-psychologie h2 {
    color: #3a1a6c;
    line-height: 1.5;
}

.group-psychologie-clinique-et-licence-en-psychologie p {
    color: #3a1a6c;
}

.group-psychologie-clinique-et-licence-en-psychologie a {
    color: #3a1a6c;
}

.group-psychologie-clinique-et-licence-en-psychologie i {
    color: #9567e1;
}

.group-psychologie-clinique-et-licence-en-psychologie span {
    background-color: #3a1a6c;
    color: #f0e9fc;
}

.group-psychologie-clinique-et-licence-en-psychologie.menu-formation-image {
    background-color: #d7caed;
}

.group-pharmacie-et-sciences-pharmaceutiques {
    background-color: #f4f7ff;
}

.group-pharmacie-et-sciences-pharmaceutiques h1,
.group-pharmacie-et-sciences-pharmaceutiques h2 {
    color: #1d2a55;
    line-height: 1.5;
}

.group-pharmacie-et-sciences-pharmaceutiques p {
    color: #1d2a55;
}

.group-pharmacie-et-sciences-pharmaceutiques a {
    color: #1d2a55;
}

.group-pharmacie-et-sciences-pharmaceutiques i {
    color: #5882f8;
}

.group-pharmacie-et-sciences-pharmaceutiques span {
    background-color: #1d2a55;
    color: #f4f7ff;
}

.group-pharmacie-et-sciences-pharmaceutiques.menu-formation-image {
    background-color: #f4f7ff;
}

.group-prepa-integree-et-etudes-preparatoires {
    background-color: #ffe6db;
}

.group-prepa-integree-et-etudes-preparatoires h1,
.group-prepa-integree-et-etudes-preparatoires h2 {
    color: #904e2f;
    line-height: 1.5;
}

.group-prepa-integree-et-etudes-preparatoires p {
    color: #904e2f;
}

.group-prepa-integree-et-etudes-preparatoires a {
    color: #904e2f;
}

.group-prepa-integree-et-etudes-preparatoires i {
    color: #ff7e14;
}

.group-prepa-integree-et-etudes-preparatoires span {
    background-color: #904e2f;
    color: #f4f7ff;
}

.group-prepa-integree-et-etudes-preparatoires.menu-formation-image {
    background-color: #f4f7ff;
}

#candidature-steps-list li {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    padding: 25px;
    margin-bottom: 5px;
    border-radius: 1.5em;
    transition: background 0.5s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

#candidature-steps-list li.selected {
    background: linear-gradient(to right, #d6e0ff, #fce1e8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: default;
}

#candidature-steps-list .step-number {
    font-size: 3em;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
}

#image-block {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

#image-block.fade-out {
    opacity: 0;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-section .accordion-header {
    margin: 0;
}

.faq-section .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    background-color: white;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #5B8DEE;
    color: white;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235B8DEE'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 25px;
    background-color: white;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.faq-section .accordion-body p {
    margin-bottom: 15px;
}

.faq-section .accordion-body p:last-child {
    margin-bottom: 0;
}

/* Hover effect */
.faq-section .accordion-button:hover {
    background-color: #f0f4ff;
}

.faq-section .accordion-button:not(.collapsed):hover {
    background-color: #4a7dd9;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-section .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }
}

.hello-box {
    display: inline-block;
    background: linear-gradient(135deg, #E8F0FE 0%, #F0F4FF 100%);
    padding: 12px 24px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.hello-text {
    font-size: 1.1rem;
}

/* Si vous voulez que le bloc soit centré */
.hello-box-center {
    text-align: center;
}

.hello-box-center .hello-box {
    display: inline-block;
}

.headerLd {
    background-image: url('https://www.geds.fr/wp-content/themes/geds/landings/assets/images/italie/bg-header.webp');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Badge Accompagnement gratuit */
.badge-accompagnement {
    display: inline-block;
    background-color: #1a1a1a;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 25px;
}

/* Cartes de destination */
.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    max-width: 100%;
}

.destination-card img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.destination-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.75);
    /* backdrop-filter: blur(10px); */
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.destination-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.destination-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .destination-title {
        font-size: 1.5rem;
    }

    .destination-subtitle {
        font-size: 0.9rem;
    }

    .destination-overlay {
        padding: 20px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
}

.university-pres-bloc-ld {
    background-color: #f4f7ff;
    border-radius: 1.5em;
}

.university-pres {
    color: #1b2a55;
    background-color: #f4f7ff;
    border-radius: 1.5em 0 0 1.5em;
}

.university-pres-illu-ld {
    display: flex;
    align-items: stretch;
}

@media (max-width: 768px) {
    .university-pres-illu-ld {
        height: 300px;
    }

    .university-image-bg-ld {
        border-radius: 0 0 1.5em 1.5em;
    }
}

@media (min-width: 769px) {
    .university-image-bg-ld {
        border-radius: 0 1.5em 1.5em 0;
    }
}

.university-image-bg-ld {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    flex-grow: 1;
}

/* Logos en bas de l'image université */
.university-logos {
    position: absolute;
    bottom: 20px;
    left: 40px;
    display: flex;
    align-items: center;
    /* Alignement vertical au centre */
    gap: 15px;
    z-index: 10;
}

.university-logo {
    width: 150px;
    height: auto;
    display: block;
    /* Évite les espaces en dessous de l'image */
    transition: transform 0.3s ease;
}

.university-logo:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .university-logos {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }

    .university-logo {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .university-logos {
        bottom: 10px;
        left: 30px;
        gap: 8px;
    }

    .university-logo {
        width: 90px;
    }
}

/* Container pour centrer l'indicateur */
.scroll-indicator-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

/* Indicateur de scroll (flèche dans un ovale) */
.scroll-indicator {
    width: 40px;
    height: 70px;
    border: 2px solid #E74C3C;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.scroll-indicator i {
    font-size: 2rem;
    color: #E74C3C;
    animation: scrollBounce 2s infinite;
}

.scroll-indicator:hover {
    background-color: rgba(231, 76, 60, 0.1);
    transform: translateY(5px);
}

/* Animation de rebond */
@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Section vidéo avec background bleu */
.video-section {
    padding: 80px 0 0 0;
    position: relative;
    overflow: visible;
}

/* Titre de la vidéo */
.video-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 60px;
}

/* Wrapper pour faire dépasser l'image */
.video-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 100px;
    /* Espace sous l'image qui dépasse */
}

/* Container de la vidéo */
.video-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    background-color: #000;
    /* évite le flash blanc */
    padding-top: 56.25%;
    /* ratio 16/9 */
}

/* Iframe vidéo avec fade-in */
.video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-iframe.is-visible {
    opacity: 1;
}

/* Image de thumbnail (plein cadre) */
.video-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

/* Bouton play */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.65) 0%, rgba(231, 76, 60, 0.65) 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    z-index: 10;
    backdrop-filter: blur(5px);
    animation: pulse 2s infinite;
}

.video-play-button svg {
    width: 70px;
    height: 70px;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.6);
}

.video-play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

/* Animation de pulsation */
@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    }

    50% {
        box-shadow: 0 10px 50px rgba(231, 76, 60, 0.7);
    }

    100% {
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    }
}

/* Classe utilitaire pour masquer en douceur */
.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .video-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .video-wrapper {
        padding-bottom: 80px;
    }

    .video-play-button {
        width: 80px;
        height: 80px;
    }

    .video-play-button svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .video-section {
        padding: 60px 0 0 0;
    }

    .video-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .video-wrapper {
        padding-bottom: 60px;
    }

    .video-play-button {
        width: 60px;
        height: 60px;
    }

    .video-play-button svg {
        width: 40px;
        height: 40px;
    }
}

/* Section Formations */
.formations-section {
    background-color: #f8f9fa;
}

/* Swiper Formations */
.formations-swiper {
    padding: 40px 20px;
}

.formation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.formation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.formation-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.formation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.formation-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.formation-university {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5B8DEE;
    background-color: rgba(91, 141, 238, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.formation-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.formation-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.formation-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
}

.formation-meta-item i {
    color: #5B8DEE;
    font-size: 1.1rem;
}

/* Boutons de navigation Swiper */
.formations-swiper .swiper-button-next,
.formations-swiper .swiper-button-prev {
    color: #5B8DEE;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.formations-swiper .swiper-button-next:after,
.formations-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.formations-swiper .swiper-button-next:hover,
.formations-swiper .swiper-button-prev:hover {
    background: #5B8DEE;
    color: white;
}

/* Pagination Swiper */
.formations-swiper .swiper-pagination-bullet {
    background: #5B8DEE;
    opacity: 0.3;
}

.formations-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .formation-title {
        font-size: 1.1rem;
    }

    .formation-image {
        height: 180px;
    }
}

.formations-swiper .swiper-button-next{display: none;}
.formations-swiper .swiper-button-prev{display: none;}



.whatsapp-float{
  position: fixed;
  left: 10px;         
  bottom: 15px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 999999;      /* au-dessus du contenu */
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  background: #25D366;  /* WhatsApp */
  color: #fff;
  font-size: 28px;
}

.whatsapp-float,
.whatsapp-float:visited,
.whatsapp-float:hover,
.whatsapp-float:active,
.whatsapp-float:focus {
  color: #ffffff !important;
  text-decoration: none;
}

.whatsapp-float:hover{
  transform: translateY(-1px);
  filter: brightness(0.98);
}


