/* PRELOADER FULLSCREEN */
#preloader {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .6s ease;
}

    #preloader.fade-out {
        opacity: 0;
    }

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* globale*/



body {
    padding-top: 120px; /* hauteur de ta navbar */
}


.section-padding {
  /* padding: 80px 0;*/
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #232f5d;
}

p, li {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}


.litleTitle {
    color: #0087ce;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    display: inline-flex;
    align-items: center; /* Alignement vertical  */
    gap: 10px;
    padding-bottom: 10px;
}

    .section-title .icoTitle {
        height: 50px;
        width: auto;
    }

@media (max-width: 991.98px) {

    .section-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}

.textRight .row {
    flex-direction: row-reverse;
}



.btn-primary {
    background-color: #0087ce;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    font-size: 1.5rem;
    border: none;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
}

    .btn-primary::after {
        content: "";
        position: absolute;
        bottom: 0px;
        right: 0px;
        width: 30px;
        height: 30px;
        background: #ffffff;
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 1);
        z-index: 4;
    }

    .btn-primary:hover {
        background-color: #2a2c5c;
        border: none;
    }

    .btn-primary img {
        width: 25px;
        height: 25px;
    }

/* -------- COOKIE BANNER -------- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 99999;
    opacity: 1;
    transition: opacity .4s ease, transform .4s ease, visibility .4s;
}

    .cookie-banner.visible {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

.cookie-content p {
    margin: 0;
    color: #444;
    font-size: 1rem;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 8px 18px;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: 0.2s ease-in-out;
}

    .cookie-btn.accept {
        background: #0087ce;
        color: #fff;
    }

        .cookie-btn.accept:hover {
            background: #04639b;
        }

    .cookie-btn.decline {
        background: #f0f0f0;
        color: #333;
    }

        .cookie-btn.decline:hover {
            background: #e0e0e0;
        }

@media(max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }
}

.form-check-input:checked {
    background-color: #3481cb;
    border-color: #3481cb;
}
/*navbar*/
.nav-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    top: 0;
    z-index: 1030;
    height: 100px;
}

.glass-nav {
    width: 80%;
    max-width: 1600px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 12px 25px;
    /* effet glass blanc */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-brand img {
    max-width: 240px;
}

@media (max-width: 1100px) {
    .navbar-brand img {
        max-width: 150px;
    }
}

@media (max-width: 991px) {
    .navbar-brand img {
        max-width: 150px;
    }
}

    @media (max-width: 991px) {

        /* Fond du menu déroulant */
        .navbar-collapse {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 20px;
            margin-top: 17px;
            border-bottom-right-radius: 20px;
            border-bottom-left-radius: 20px;
        }

        /* Espacement vertical entre les liens */
        .menu-links .nav-link {
            padding: 12px 10px !Important;
            font-size: 1.1rem;
            display: block;
            width: 100%;
        }
    }

    /*Menu header*/
    /* Style des liens du menu */

    .menu-links .nav-link, .dropdown-item {
        color: #2a2c5c;
        font-weight: 500;
        font-size: 1.1rem;
        padding: 0px 4px !Important;
        transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
        border-radius: 8px;
    }

    @media (max-width: 1400px) {

        .menu-links .nav-link {
            font-size: 0.95rem;
            padding: 0px 2px !Important;
        }
    }

    @media (max-width: 1200px) {

        .menu-links .nav-link {
            font-size: 0.95rem;
            padding: 0px 0px !Important;
        }

        .glass-nav {
            width: 90%; /* un peu plus d'espace pour respirer */
        }

        .ms-auto {
            margin-left: 0% !important;
        }
    }

    @media (max-width: 992px) {

        .menu-links .nav-link {
            font-size: 1.1rem;
        }
    }

    /* Hover */
    .menu-links .nav-link:hover, .dropdown-item:hover {
        color: #2a2c5c;
        background: rgba(0,0,0,0.05); /* léger fond sur hover */
    }

    /* Active (manuelle ou via .active de bootstrap) */
    .menu-links .nav-link.active, .dropdown-item.active {
        color: #3481cb; /* bleu Bootstrap */
        background-color: transparent !Important;
        font-weight: 600;
        position: relative
    }

        .menu-links .nav-link.active::after {
            content: "";
            position: absolute;
            top: 0px;
            left: -16px;
            width: 18px;
            height: 18px;
            background-image: url("/images/ico-menu.png"); /* met ton vrai chemin */
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            pointer-events: none;
        }

    @media (max-width: 1200px) {

        .menu-links .nav-link.active::after {
            top: 0px;
            left: -12px;
            width: 12px;
            height: 12px;
        }
    }


    /* Bouton Contact (s'il doit être différent — optionnel) */
    .menu-links .btn-primary {
        border-radius: 8px;
        font-weight: 600;
    }


    /* Hero */
    .hero {
        display: flex;
        justify-content: center;
        margin-top: -130px;
        overflow: visible; /* IMPORTANT pour laisser dépasser les arrondis */
    }

    .hero-inner {
        position: relative;
        width: 90%; 
        height: 750px; 
        overflow: visible; 
    }

    @media(max-width:992px) {
        .hero-inner {
            
            height: 450px;
          
        }
    }

    .hero-clip {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden; 
        border-top-left-radius: 0px;
        border-top-right-radius: 80px;
        border-bottom-left-radius: 80px;
        border-bottom-right-radius: 0px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
@media(max-width:992px) {
    .hero-clip {
        border-bottom-left-radius: 40px;
    }
}

    .hero-triangle {
        position: absolute;
        bottom: -8px;
        right: -8px; 
        width: 220px;
        height: 220px;
        background: #ffffff; 

        clip-path: polygon(100% 0, 100% 100%, 0 100%);
        z-index: 3; 
    }

@media(max-width:992px) {
    .hero-triangle {
        width: 120px;
        height: 120px;
    }
}

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25); /* assombrissement de base */
        z-index: 2;
        pointer-events: none; /* important pour garder clics/hover sur le contenu */
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 110%;
        object-fit: cover;
        z-index: 1;
        transition: transform 0.1s ease-out;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @media (max-width: 991px) {

        .hero-content {
            display: none;
        }
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero-title {
        color: #fff;
    }


    /*footer*/


    .footer {
        background: #141414;
        color: white;
        padding: 40px 0;
    }



    /* -------- ABOUT SECTION -------- */

    .section-padding {
        padding: 100px 0;
    }


    .section-padding2 {
        padding: 50px 0;
    }





    /* Images block */
    .about-images {
        display: flex;
        align-items: center;
    }

    .about-img-small {
        transition: opacity 0.4s ease-in-out;
    }


    /* Big background image */
    .about-img-big {
        width: 100%;
        border-radius: 20px;
        border-top-left-radius: 0px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        object-fit: cover;
        position: relative;
        z-index: 1 !important; /* La grande image tout en bas */
    }

    .global-img-warpper {
        width: 100%;
        border-radius: 20px;
        border-top-left-radius: 0px;
        border-bottom-right-radius: 0px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        position: relative;
        overflow: hidden;
    }

    .global-img-warpper-2 {
        width: 50%;
        border-radius: 20px;
        border-top-left-radius: 0px;
        border-bottom-right-radius: 0px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        position: relative;
        overflow: hidden;
    }

    .global-img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .global-img-warpper::after {
        content: "";
        position: absolute;
        bottom: -2px;
        right: -2px;
        width: 100px;
        height: 100px;
        background: #ffffff;
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }


    .about-img-small-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 3 / 2; /* adapte le ratio si besoin */
        border-radius: 20px;
        border-top-left-radius: 0;
        overflow: hidden;
        z-index: 20;
    }


        .about-img-small-wrapper::after {
            content: "";
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 14%;
            aspect-ratio: 1 / 1;
            min-width: 60px;
            max-width: 100px;
            background: #0087ce;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            z-index: 4;
        }

    .about-img-small {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

        .about-img-small.img-current {
            z-index: 1;
        }

        .about-img-small.img-next {
            z-index: 2;
            transform: translateX(100%);
            transition: transform 0.6s ease-in-out;
        }

    /* Small image overlapping */
    .about-img-small {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .about-img-small-wipe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: 3;
        transition: transform 0.4s ease-in-out;
        transform: translateX(-100%); /* 👍 Caché au départ */
    }
    /* Home: Our Identity*/


    .intro-section {
        width: 100%;
        /* padding: 80px 0 80px;*/
        text-align: center;
    }

    .container-intro {
        max-width: 90%;
        margin: auto;
        padding: 0 20px;
    }



    /* Description */
    .intro-text {
        font-size: 1.2rem;
        color: #555;
        max-width: 700px;
        margin: auto;
        line-height: 1.7;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .intro-title {
            font-size: 1.9rem;
        }

        .intro-text {
            font-size: 1.05rem;
        }
    }



    /*Home:Ours Core Sectors*/
    .sectors-section {
        width: 100%;
    }

    .sectors-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }






    .sector-link {
        position: absolute;
        inset: 0; /* top:0; right:0; bottom:0; left:0 */
        z-index: 5;
    }


    .sectors-container {
        display: flex;
        flex-shrink: 0;
        gap: 0;
        overflow-x: auto;
        scroll-behavior: smooth;
    }

        .sectors-container::-webkit-scrollbar {
            display: none;
        }




    .sector-info {
        position: absolute;
        left: 20px;
        top: 20px;
        color: white;
        z-index: 3; /* au-dessus du bandeau noir */
        font-size: 1.4rem;
        font-weight: 600;
    }


    .sector-info-btn {
        position: absolute;
        bottom: 0px;
        right: 0px;
        color: white;
        z-index: 3; /* au-dessus du bandeau noir */
        font-size: 1.4rem;
        font-weight: 600;
    }

        .sector-info-btn .btnTriangle {
            position: relative;
        }

            .sector-info-btn .btnTriangle::after {
                content: "";
                position: absolute;
                bottom: -1px; /* dépasse légèrement */
                right: -1px;
                width: 120px;
                height: 120px;
                background: #3481cb;
                clip-path: polygon(100% 0, 100% 100%, 0 100%);
                transition: 0.25s ease-in-out;
                z-index: 1;
            }

            .sector-info-btn .btnTriangle span {
                position: relative;
                z-index: 2;
                color: #fff;
                font-size: 12px;
                padding-right: 10px;
                padding-bottom: 5px;
                display: block;
            }

            /* Effet hover */
            .sector-info-btn .btnTriangle:hover::after {
                background: #2a2c5c; /* couleur sur hover */
                text-decoration: none;
            }

        .sector-info-btn img {
            width: 20px;
            height: 100%;
            object-fit: cover;
        }

    .sector-info h3 {
        font-size: 2rem;
    }

    @media (max-width: 1000px) {
        .sector-info h3 {
            font-size: 1.8rem;
        }

        .sector-info p {
            font-size: 1rem;
            font-weight: 600;
        }
    }

    /* Flèches */

    .sectors-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #0087ce;
        color: #ffffff;
        border: none;
        padding: 0;
        display: flex; /* centrage via flex */
        align-items: center; /* centre vertical */
        justify-content: center; /* centre horizontal */
        line-height: 1; /* évite le décalage lié à la hauteur de ligne */

        font-size: 20px; /* taille de la flèche */

        cursor: pointer;
        transition: 0.2s ease-in-out;
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        z-index: 20;
    }

        .sectors-arrow span,
        .sectors-arrow i {
            line-height: 1;
            display: block;
        }

        .sectors-arrow:hover {
            transform: translateY(-50%) scale(1.12);
            background: #0a6fa4; /* bleu légèrement plus foncé */
        }


        .sectors-arrow.left {
            left: 20px;
            padding-right: 3px;
        }

        .sectors-arrow.right {
            right: 20px;
            padding-left: 3px;
        }

    @media (max-width: 768px) {
        .sectors-arrow {
            width: 48px;
            height: 48px;
            font-size: 22px;
        }
    }



    /* --- SERVICES MOSAIC --- */
    .services-mosaic-section {
        width: 100%;
        margin-top: 60px;
    }

    .services-mosaic {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 350px;
        gap: 0;
    }

    .service-card {
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
        cursor: pointer;
    }


        /* Overlay sombre */
        .service-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.55);
            /* transition: 0.3s ease-in-out;*/
        }

    .service-link {
        position: absolute;
        inset: 0;
        z-index: 5;
    }

    /* Contenu */
    .service-content {
        position: absolute;
        inset: 0;
        padding: 25px;
        padding-top: 0px;
        display: flex;
        flex-direction: column;
        /* justify-content: flex-end; */
        color: white;
        z-index: 2;
        justify-content: space-between;
    }

        .service-content h3 {
            margin-bottom: 10px;
        }

        .service-content p {
            font-size: 1rem;
            margin-bottom: 20px;
            color: #ffffff;
        }

    /* Bouton */
    .service-btn {
        display: inline-flex;
        align-items: center;
        background: #0076d6;
        color: white;
        padding: 8px 16px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        width: fit-content;
        transition: 0.2s ease-in-out;
    }

        .service-btn:hover {
            background: #005bb0;
        }

    .btn-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
    /* Marketing & Communication card full height */
    .service-card.Vertical {
        grid-row: span 2;
    }

    .service-card.it {
        background-position: top center !important;
    }


    /* --- Responsive --- */
    @media (max-width: 1200px) {
        .services-mosaic {
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: 300px;
        }
    }

    @media (max-width: 768px) {
        .services-mosaic {
            grid-template-columns: 1fr;
            grid-auto-rows: 280px;
        }
    }
    /* Home: CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #f6f7f9 0%, #ffffff 100%);
        padding: 80px 20px;
        text-align: center;
    }

    .container-cta {
        max-width: 90%;
        margin: 0 auto;
    }

    .cta-section h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #1f2a44;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 1.15rem;
        color: #444;
        margin-bottom: 35px;
    }

    /* CTA Button */
    .cta-btn {
        background: #0d6efd;
        color: #fff;
        padding: 12px 28px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        transition: background 0.3s ease;
    }

        .cta-btn:hover {
            background: #0b5cd8;
        }

        .cta-btn .btn-icon {
            height: 18px;
            margin-right: 10px;
        }
    /*  FOOTER  */
    .footer {
        background: #111;
        color: #eee;
        padding: 60px 0 20px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .footer-col {
        color: #fff;
    }

    .footer-logo {
        height: 36px;
        margin-bottom: 20px;
    }

    .footer-desc {
        color: #ffffff;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
        color: #fff;
        font-size: 0.95rem;
        align-items: center
    }

        .footer-contact-item i {
            font-size: 1.3rem;
            color: #fff; /* bleu Reiff */
            margin-top: 3px;
        }

        .footer-contact-item a {
            color: #ffffff;
            text-decoration: none;
        }

            .footer-contact-item a:hover {
                color: #0087ce;
            }

    .footer-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fff;
    }

    .footer-subtitle {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .footer-socials a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 38px;
        height: 38px;
        margin-right: 10px;
        border-radius: 50%;
        background: #3481cb;
        color: #fff;
        font-size: 1.2rem;
        transition: 0.25s ease-in-out;
    }

        .footer-socials a:hover {
            background: #0087ce;
        }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a,
        .footer-link {
            color: #ffffff;
            font-size: 0.95rem;
            text-decoration: none;
            transition: color 0.2s ease-in-out;
        }

            .footer-links a:hover,
            .footer-link:hover {
                text-decoration: underline;
            }

    /* Bas du footer */
    .footer-bottom {
        margin-top: 40px;
        border-top: 1px solid #222;
        padding-top: 15px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding-right: 20px;
    }

        .footer-bottom img {
            height: 20px;
            display: block;
        }

        .footer-bottom .powered-by {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #fff;
            font-size: 0.9rem;
        }

    .powered-by strong {
        color: #0087ce;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
    }

    @media (max-width: 576px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }

        .footer-bottom {
            justify-content: center;
            text-align: center;
        }
    }

    /* ---------------- BREADCRUMB HERO ---------------- */

    .breadcrumb-hero {
        position: relative;
        width: 90%;
        margin: -120px auto 0 auto; /* auto = centré horizontalement */
        height: 380px;
        overflow: hidden;
        border-radius: 15px;
        border-top-left-radius: 0px;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
        /*     filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.15));*/
    }


        /* IMAGE */
        .breadcrumb-hero .breadcrumb-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

            .breadcrumb-hero .breadcrumb-bg img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center center;
                z-index: 1;
                display: block;
            }



        .breadcrumb-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.05);
            z-index: 2;
        }

    .background-dark::before {
        /*  background: rgba(0,0,0,0.65);*/
    }


    /* TEXTE CENTRÉ */
    .breadcrumb-content {
        position: absolute;
        inset: 0;
        z-index: 5;
        display: flex;
        flex-direction: column;
        justify-content: center; /* ⭐ centre VERTICALEMENT */
        align-items: center; /* centre horizontalement */
    }

    .breadcrumb-title {
        color: #fff;
        font-size: 3rem;
        font-weight: 700;
        text-shadow: 0 3px 8px rgba(0,0,0,0.3);
    }

    /* Fil d’Ariane : bas gauche */
    .breadcrumb-path i {
        font-size: 0.8rem;
        margin: 0 6px;
        color: #2a2c5b; /* bleu Reiff */
    }


    .breadcrumb-path {
        position: absolute;
        bottom: 0px;
        left: 0px;
        /* text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3); */
        margin: 0;
        background-color: #ffffff;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 5px;
        padding-bottom: 5px;
        border-top-right-radius: 10px;
    }

        .breadcrumb-path a {
            text-decoration: none;
            font-size: 1rem;
            color: #3481cb;
        }

            .breadcrumb-path a:hover {
                color: #2a2c5b;
            }

    .breadcrumb-content h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

        .breadcrumb-content h1::before {
            content: "";
        }

    .breadcrumb-content p {
        font-size: 1rem;
        color: #3481cb;
    }


    .breadcrumb-triangle {
        position: absolute;
        bottom: -3px;
        right: -4px;
        width: 70px;
        height: 70px;
        background: #ffffff;
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
        z-index: 10;
    }

    /* ========== CTA FULL WIDTH 2 COLONNES ========== */

    .cta-two-columns-full {
        display: flex;
        width: 100%;
        padding: 0;
        margin: 0;
    }

        .cta-two-columns-full .cta-block {
            flex: 1;
            padding: 80px 60px;
            color: white;
            display: flex;
            justify-content: center; /* ⭐ Centre VERTICALEMENT */
            align-items: center; /* ⭐ Centre HORIZONTALEMENT */
            text-align: center; /* ⭐ Centre le texte */
        }

        .cta-two-columns-full .cta-inner {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center; /* centre tout verticalement */
            align-items: center; /* centre horizontalement */
            text-align: center;
        }

        .cta-two-columns-full .cta-title {
            color: #ffffff;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

    .cta-left {
        background: #2a2c5b;
    }

    .cta-right {
        background: #3481cb;
    }

    .cta-two-columns-full p {
        color: rgba(255,255,255,0.90);
        margin-bottom: 25px;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .cta-two-columns-full {
            flex-direction: column;
        }
    }


    .intro-pageBc {
        width: 100%;
        padding: 90px 0 90px;
        text-align: center;
    }

    /* image History */

    .img-wrapper {
        position: relative;
        display: inline-block; /* Optionnel */
        width: 70%;
    }

        .img-wrapper img {
            width: 100%;
            border-radius: 20px;
            border-top-left-radius: 0px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            object-fit: cover;
        }

        .img-wrapper::after {
            content: "";
            position: absolute;
            bottom: -1px;
            right: -1px;
            width: 15%;
            height: 25%;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            z-index: 4;
        }

    .blue-light-corner::after {
        background: #4a7cc8;
    }

    .blue-dark-corner::after {
        background: #302959;
    }

    /* TEAM SECTION */
    .team-section {
        background: #f7f9fc;
        margin-top: 40px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /* CARD BASE */
    .team-card {
        background: #ffffff;
        padding: 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0,0,0,0.10);
        transition: transform .25s ease, box-shadow .25s ease;
        border-top-left-radius: 0px;
        border-bottom-right-radius: 0px;
        min-height: 510px;
    }

        /* Hover */
        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.18);
        }

    /* PHOTO */
    .team-photo {
        width: 100%;
        height: 300px;
        overflow: hidden;
        border-radius: 15px;
        margin-bottom: 18px;
        border-top-left-radius: 0px;
        border-bottom-right-radius: 0px;
        position: relative;
    }

        .team-photo img {
            width: 100%;
            /* height: 100%;*/
            object-fit: cover;
            z-index: 1;
        }

        .team-photo::after {
            content: "";
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 50px;
            height: 50px;
            background: #232f5d;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            z-index: 4;
        }

    /* TEXT */
    .team-name {
        font-size: 1.25rem;
        font-weight: 700;
        color: #2a2c5b;
        margin-bottom: 4px;
    }

    .team-role {
        color: #777;
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .team-company {
        color: #3481cb;
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    /* EMAIL */
    .team-mail {
        font-size: 0.95rem;
        text-decoration: none;
        color: #0087ce;
        font-weight: 600;
    }

        .team-mail i {
            margin-right: 6px;
            color: #0087ce;
        }

        .team-mail:hover {
            text-decoration: underline;
        }
    /* ===================== TIMELINE  ===================== */

    .timeline {
        max-width: 50%;
        margin: auto;
    }

    @media (max-width:1900px) {
        .timeline {
            max-width: 60%;
        }
    }

    .timeline-wrapper {
        position: relative;
    }

        /* LIGNE VERTICALE CONTINUE */
        .timeline-wrapper::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 120px;
            width: 6px;
            background: linear-gradient(180deg, #232f5d, #3481cb);
            border-radius: 10px;
            z-index: 1;
        }

    /* LIGNE PAR ÉLÉMENT */
    .timeline-row {
        display: grid;
        grid-template-columns: 200px 1fr 250px;
        align-items: center;
        padding: 60px 0;
        position: relative;
    }

    /* ANNÉE centrée sur la ligne */
    .timeline-col-line {
        position: relative;
        height: 100%;
        display: flex;
        justify-content: center;
    }

    /* Badge année */
    .timeline-year-badge {
        position: absolute;
        left: 120px;
        transform: translateX(-50%);
        background: #232f5d;
        color: #fff;
        padding: 10px 25px;
        border-radius: 20px;
        font-size: 1.3rem;
        font-weight: 700;
        z-index: 3;
    }



    /* TEXTE */

    .timeline-col-text {
        color: #444;
        font-size: 1.1rem;
        padding-right: 20px;
    }

    /* IMAGE */
    .timeline-col-img {
        width: 100%;
        height: 160px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

        .timeline-col-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
        }

    .zoomable {
        cursor: pointer;
        transition: transform 0.3s ease;
    }

        .zoomable:hover {
            transform: scale(1.03);
        }

    /* RESPONSIVE */
    @media (max-width:1400px) {
        .timeline-wrapper::before {
            left: 50px;
        }

        .timeline-row {
            grid-template-columns: 120px 1fr;
            grid-auto-rows: auto;
            gap: 20px;
        }

        .timeline-col-img {
            grid-column: 1 / -1; /* L’image occupe toute la largeur */
            justify-self: center; /* Centre l’image */
            width: 60%;
            max-width: 255px;
            height: auto;
        }

        .timeline-year-badge,
        .timeline-col-line::after {
            left: 50px;
        }
    }

    @media (max-width: 600px) {
        .timeline-wrapper::before,
        .timeline-col-line::after {
            display: none;
        }

        .timeline-row {
            display: block;
            text-align: center;
        }

        .timeline-year-badge {
            position: relative;
            left: 0;
            transform: none;
            margin: 0 auto 20px;
        }

        .timeline-col-text {
            padding-left: 0;
            margin-bottom: 20px;
        }
    }
    /*partners*/
    .partners {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 60px 0px; /* espace vertical entre lignes */
        margin-bottom: 100px;
    }

    .partner {
        flex: 0 0 25%; /* 25% de largeur → 4 par ligne */
        text-align: center;
        padding: 10px 0;
    }

        .partner a {
            text-decoration: none;
        }

    @media (max-width: 1200px) {

        .partner {
            flex: 0 0 50%; /* 25% de largeur → 4 par ligne */
            text-align: center;
            padding: 10px 0;
        }
    }

    .partner img {
        width: 60%;
        min-width: 150px;
        margin: 0 auto 10px;
    }

    .partner span {
        font-size: 1rem;
        color: #555;
        /* font-weight: 600;*/
        display: block;
    }

    /* PROJECT FILTER */
    .project-filter {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 60px 0 40px;
    }

    .filter-buttons {
        display: inline-flex;
        gap: 0;
        border: 2px solid #3481cb;
        border-radius: 8px;
        border-top-left-radius: 0px;
        border-bottom-right-radius: 0px;
        overflow: hidden;
    }

    .filter-btn {
        padding: 12px 25px;
        background: #2a2c5b;
        border: none;
        cursor: pointer;
        font-size: 1.1rem;
        color: #ffffff;
        transition: 0.25s ease;
    }


        .filter-btn:not(.active):hover {
            background: #2a2c5b;
        }



        .filter-btn.active {
            background: #3481cb;
            color: #fff;
            font-weight: 600;
        }
    /* PROJECT GRID */
    .projects-grid {
        width: 90%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }


    @media(min-width: 1801px) {
        .projects-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media(max-width: 1800px) {
        .projects-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }


    @media(max-width: 1200px) {
        .projects-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width: 768px) {
        .projects-grid {
            grid-template-columns: 1fr;
        }
    }

    /* CARD */
    .projects-grid a {
        text-decoration: none !important;
        color: inherit !important;
        display: block;
    }

    .project-card {
        background: #fff;
        border-radius: 18px;
        border-top-left-radius: 0px;
        border-bottom-right-radius: 0px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.10);
        transition: transform .25s, box-shadow .25s;
        position: relative;
        min-height: 450px;
    }

        .project-card::after {
            content: "";
            position: absolute;
            bottom: -1px;
            right: -1px;
            width: 20%;
            height: 20%;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            background-color: #2a2c5b;
            z-index: 4;
        }

        .project-card.color2::after {
            background-color: #3481cb;
        }


        .project-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 35px rgba(0,0,0,0.18);
        }

    .project-img {
        position: relative;
        height: 260px;
        overflow: hidden;
    }

    .img-wrapper::after {
        content: "";
        position: absolute;
        bottom: -1px;
        right: -1px;
        width: 15%;
        height: 25%;
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        z-index: 4;
    }

    .project-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* TAG */
    .project-tag {
        position: absolute;
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 0.85rem;
        font-weight: 700;
        border-radius: 6px;
        color: #fff;
    }

        .project-tag.ongoing {
            background: #3481cb;
        }

        .project-tag.done {
            background: #232f5d;
        }

    /* TEXT */
    .project-content {
        padding: 20px;
    }

        .project-content h3 {
            font-size: 1.4rem;
            color: #2a2c5c;
            margin-bottom: 10px;
        }

        .project-content p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 15px;
        }

    .project-link {
        font-weight: 600;
        color: #3481cb;
        text-decoration: none;
    }

        .project-link:hover {
            text-decoration: underline;
        }
    /* ===== CHIFFRES CLÉS ===== */
    .project-stats {
        width: 100%;
        padding: 40px 0;
        /* background-color: aliceblue;*/
    }

    .stats-wrapper {
        width: 90%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        text-align: center;
    }

    .stat-box {
        background: #2a2c5b;
        padding: 35px 20px;
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        border-top-left-radius: 0;
        position: relative;
        border-bottom-right-radius: 0;
        opacity: 0;
        transform: scale(0.75);
    }

        .stat-box::after {
            content: "";
            position: absolute;
            bottom: -1px;
            right: -1px;
            width: 20%;
            height: 40%;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            background-color: #3481cb;
            z-index: 4;
        }

        .stat-box h3 {
            font-size: 2rem;
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-box p {
            font-size: 1rem;
            color: #fff;
        }

    @media(max-width: 992px) {
        .stats-wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width: 600px) {
        .stats-wrapper {
            grid-template-columns: 1fr;
        }
    }

    /* ======== LAYOUT 2 COLONNES POUR PAGE PROJET ======== */

    .project-details-two-cols {
        width: 90%;
        margin: 80px auto;
    }

    .container-two-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    /* Colonne gauche : infos projet */
    .project-infos p {
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 10px;
    }

    /* Colonne droite : stats */
    .project-stats-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    /* Responsive tablette */
    @media(max-width: 992px) {
        .container-two-cols {
            grid-template-columns: 1fr;
        }

        .project-stats-right {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* Responsive mobile */
    @media(max-width: 600px) {
        .project-stats-right {
            grid-template-columns: 1fr;
        }
    }


    /* ===== LIGHTBOX agrandissement des photos ===== */
    #lightbox {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.92);
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: .3s ease;
        z-index: 99999;
        padding: 20px;
    }

        #lightbox.show {
            visibility: visible;
            opacity: 1;
        }

    .lightbox-inner {
        width: 100%;
        max-width: 1400px;
        display: grid;
        grid-template-columns: 80px minmax(0, 1fr) 80px;
        align-items: center;
        gap: 16px;
    }

    .lightbox-content {
        text-align: center;
        width: 100%;
    }

    #lightbox-img {
        display: block;
        max-width: 100%;
        max-height: 75vh;
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    }

    .lightbox-caption {
        color: #fff;
        font-size: 2rem;
        padding-top: 14px;
        text-align: center;
    }

        .lightbox-caption p {
            color: #fff !important;
        }

    .lightbox-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        margin: 0 auto;
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 4rem;
        line-height: 1;
        cursor: pointer;
        border-radius: 8px;
        transition: .2s ease;
        user-select: none;
    }

        .lightbox-nav:hover {
            background: rgba(255,255,255,0.15);
        }

    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 24px;
        font-size: 3rem;
        color: white;
        cursor: pointer;
        z-index: 20;
        transition: 0.2s;
    }

        .lightbox-close:hover {
            opacity: .7;
        }

    @media (max-width: 992px) {
        .lightbox-inner {
            max-width: 100%;
            grid-template-columns: 56px minmax(0, 1fr) 56px;
            gap: 10px;
        }

        .lightbox-nav {
            width: 48px;
            height: 48px;
            font-size: 3rem;
        }

        .lightbox-caption {
            font-size: 1.6rem;
        }

        #lightbox-img {
            max-width: 100%;
            max-height: 75vh;
        }
    }

    @media (max-width: 576px) {
        #lightbox {
            padding: 12px;
        }

        .lightbox-inner {
            grid-template-columns: 44px minmax(0, 1fr) 44px;
            gap: 6px;
        }

        .lightbox-nav {
            width: 40px;
            height: 40px;
            font-size: 2.4rem;
        }

        .lightbox-caption {
            font-size: 1.2rem;
            padding-top: 10px;
        }

        #lightbox-img {
            max-height: 60vh;
        }

        .lightbox-close {
            top: 10px;
            right: 14px;
            font-size: 2.4rem;
        }
    }

    .projet-detail-intro p {
        line-height: 1;
    }
    /* masonry*/
    .masonry {
        width: 100%;
    }

    .masonry-item {
        width: 33.33%; /* 3 colonnes */
        padding: 0;
        cursor: pointer;
        overflow: hidden;
        position: relative;
    }

    @media(max-width: 992px) {
        .masonry-item {
            width: 50%;
        }
    }

    @media(max-width: 768px) {
        .masonry-item {
            width: 100%;
        }
    }


    .masonry-item::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: rgba(0, 0, 0, 0.4);
        z-index: 4;
    }




    .masonry-item img {
        display: block;
        width: 100%;
        height: auto;
        transition: transform .35s ease, filter .35s ease;
    }

    .masonry-item:hover img {
        transform: scale(1.08);
        filter: brightness(1.45);
    }


    /* --- Contact Companies Grid --- */
    .contact-companies {
        width: 90%;
        max-width: 1300px;
        margin: 80px auto;
    }

    .company-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .company-card {
        background: white;
        box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
        padding: 30px;
        padding-top: 0px;
        padding-bottom: 50px;
        text-align: center;
        transition: transform .4s ease, box-shadow .4s ease;
        cursor: default;
        overflow: hidden;
    }

    /* LOGO */
    .company-logo {
        max-width: 120px;
        max-height: 80px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    /* TITRES */
    .company-card .logo {
        margin-bottom: 10px;
        display: inline-block;
        background-color: #ffffff;
        padding: 5px 15px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .company-card h3 {
        font-size: 1.5rem;
        color: #fff;
    }

    .company-card .space {
        height: 80px;
    }

    .company-card .logo img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-bottom: 10px;
    }

    .company-card .containerImg {
        background-color: red;
    }

    .company-card img.horizontalv2 {
        width: 50%;
    }

    .company-card img.vertical {
        width: 30%;
    }

    /* TEXTES */
    .company-card p {
        margin: 5px 0;
        color: #ffffff;
        font-size: 1rem;
    }

    .company-card a {
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
    }

        .company-card a:hover {
            text-decoration: underline;
        }

    /* Hover effect */
    .company-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0px 15px 35px rgba(0,0,0,0.15);
    }

    .company-card.color1, .service-card.color1 {
        background: #2a2c5b;
        color: fff;
    }

    .company-card.color2, .service-card.color2 {
        background: #3481cb;
    }

    /* Responsive */
    @media(max-width: 900px) {
        .company-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width: 600px) {
        .company-grid {
            grid-template-columns: 1fr;
        }
    }

    /*grid gallery*/
    .project-gallery-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        grid-auto-rows: 240px;
        gap: 1px;
        grid-auto-flow: dense;
    }

        .project-gallery-grid .big {
            grid-row: span 2;
            grid-column: 1 / span 1;
        }

            .project-gallery-grid .big:nth-of-type(even) {
                grid-column: 2 / span 2;
            }

        .project-gallery-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 10px;
            transition: transform .35s ease;
        }

    .grid-item {
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

        .grid-item::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: rgba(0, 0, 0, 0.4);
            z-index: 4;
        }


        .grid-item:hover img {
            transform: scale(1.08);
        }


        .grid-item:hover::after {
            opacity: 0;
            transition: opacity 0.35s ease;
        }

    /* Inversion automatique de la BIG toutes les 5 images */
    .project-gallery-grid .big:nth-of-type(10n + 6),
    .project-gallery-grid .big:nth-of-type(10n + 7) {
        grid-column: 2 / span 2;
    }

    @media (max-width: 992px) {
        .project-gallery-grid {
            grid-template-columns: 1fr 1fr;
            grid-auto-rows: 200px;
        }

            .project-gallery-grid .big {
                grid-row: span 1;
            }
    }

    @media (max-width: 576px) {
        .project-gallery-grid {
            grid-template-columns: 1fr;
        }
    }

    /* --- SECTORS MOSAIC --- */
    .sector-mosaic-section {
        width: 100%;
    }

    .sector-mosaic {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 350px;
        gap: 0;
    }




    .sector-card {
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
        cursor: pointer;
        background-size: 100%;
        transition: background-size 0.6s ease-in-out;
    }

        /* Overlay sombre */
        .sector-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.55);
            /* transition: 0.3s ease-in-out;*/
        }

    .sector-card {
        flex-shrink: 0;
        min-width: 450px;
        position: relative;
        overflow: hidden;
        height: 100%;
    }





        .sector-card:hover {
            background-size: 110%;
        }


        .sector-card.Vertical {
            background-size: 170%;
            grid-row: span 2;
        }

            .sector-card.Vertical:hover {
                background-size: 180%;
            }

    .sector-link {
        position: absolute;
        inset: 0;
        z-index: 5;
    }

    /* Responsive */
    @media (max-width: 1400px) {
        .sector-card {
            background-size: 120%;
        }

            .sector-card.Vertical {
                background-size: 230%;
            }

                .sector-card.Vertical:hover {
                    background-size: 220%;
                }
    }

    @media (max-width: 992px) {
        .sector-mosaic {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-auto-rows: 350px;
            gap: 0;
        }

        .sector-card {
            background-size: 100%;
        }

            .sector-card.Vertical {
                background-size: 100%;
                grid-row: span 1;
            }

                .sector-card.Vertical:hover {
                    background-size: 110%;
                }
    }

    /* Contenu */
    .sector-content {
        position: absolute;
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        color: white;
        z-index: 2;
        transform: translateY(0);
        transition: transform 0.4s ease-in-out;
    }

    .sector-card:hover .sector-content {
        transform: translateY(10px);
    }

    .sector-content h3 {
        margin-bottom: 10px;
    }

    .sector-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        color: #ffffff;
    }

    .sector-content.Vertical {
        grid-row: span 2;
    }

    .sector-content li {
        color: #aee3ff;
    }

    /* breadcrumb sous menu */
    .breadcrumb-subnav-wrapper {
        position: sticky;
        top: 90px;
        z-index: 100;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(6px);
    }

    /* CONTAINER */
    .breadcrumb-subnav {
        display: flex;
        justify-content: center;
        padding-top: 30px;
        padding-bottom: 20px;
    }

    /* LISTE */
.subnav-list {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: stretch;
}
    .subnav-list li {
        display: flex;
        text-align: center;
    }

        .subnav-list li a {
            display: flex;
            align-items: center;
           
        }
        .subnav-list a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #2a2c5b;
            text-decoration: none;
            border-radius: 8px;
            background: rgba(42,44,91,0.06);
            box-shadow: 0 4px 20px rgba(0,0,0,0.35);
            transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
        }
        @media(max-width:1200px){
            .subnav-list a {
                font-size: .9rem;
               
            }
            }


            /* Hover */
            .subnav-list a:hover {
                background: #3481cb;
                color: #fff;
                transform: translateY(-2px);
            }

            /* Active (section courante) */
            .subnav-list a.active {
                background: #2a2c5b;
                color: #fff;
            }

    @media (max-width: 768px) {
        .breadcrumb-subnav {
            justify-content: center;
        }

        .subnav-list {
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
    }

    section[id] {
        scroll-margin-top: 160px;
    }


    /* ===== Breadcrumb background slider ===== */

    .breadcrumb-slider {
        height: 580px;
    }

    .breadcrumb-bg {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }

    .breadcrumb-fixe {
        display: flex;
        justify-content: center; /* centre horizontal */
        align-items: center; /* centre vertical */
        height: 450px;
    }

    .breadcrumb-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        will-change: transform;
    }

        /* Image visible */
        .breadcrumb-slide.current {
            transform: translateX(0);
            z-index: 1;
        }

        /* Image entrante (à droite) */
        .breadcrumb-slide.next {
            transform: translateX(100%);
            z-index: 2;
        }

        /* Animation */
        .breadcrumb-slide.animate-out {
            transition: transform 1.2s ease-in-out;
            transform: translateX(-100%);
        }

        .breadcrumb-slide.animate-in {
            transition: transform 1.2s ease-in-out;
            transform: translateX(0);
        }

    .linkText {
        text-decoration: none !Important;
        position: relative;
    }

        .linkText:hover {
            text-decoration: underline !Important;
        }

    .external-link::after {
        font-family: "bootstrap-icons";
        content: "\F1C5"; /* bi-box-arrow-up-right */

        font-size: 0.9em;
        position: absolute;
        top: -2px;
        right: -25px;
    }

    #modalImage {
        max-height: 90vh;
        width: auto;
    }

    .dropdown-menu {
        /*  border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 12px 25px;*/
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px) saturate(180%);
        -webkit-backdrop-filter: blur(12px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.45);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

        .dropdown-menu li {
            padding-left: 20px;
            padding-bottom: 10px;
        }

    .logoTitle {
        max-width: 300px;
    }

    .service-card .logo {
        display: inline-block;
        background-color: rgb(255, 255, 255);
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding: 5px 15px;
    }




    .sectors-multi .texte h3 {
        color: #3481cb;
        font-size: 2rem;
    }

    .sectors-multi .texte li {
        font-size: 1.5rem;
    }



    .sectors-multi img {
        max-width: 100%;
    }

    .global-img-warpper2 a {
        display: block;
        overflow: hidden;
    }

    .global-img-warpper2 {
        width: 100%;
        border-radius: 20px;
        border-top-left-radius: 0px;
        border-bottom-right-radius: 0px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        position: relative;
        overflow: hidden;
    }

        .global-img-warpper2 img {
            display: block;
            width: 100%;
            transition: transform 0.4s ease;
        }

        .global-img-warpper2:hover img {
            transform: scale(1.05);
        }


        .global-img-warpper2::after {
            content: "";
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 100px;
            height: 100px;
            background: #221a68;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }


    .footer-logo-wrapper {
        background-color: #fff;
        padding: 10px;
        border-radius: 10px;
        text-align: center;
        width: 180px;
        height: 50px;
    }

    .lightbox-content {
        display: inline-block;
        text-align: center;
        margin: auto;
    }

    .lightbox-caption {
        color: #fff;
        font-size: 2rem;
        padding: 10px 0;
        text-align: center;
        width: 100%;
    }

        .lightbox-caption p {
            color: #fff !important;
        }


    .titleColor1 {
        color: #009540 !Important;
    }

    .titleColor2 {
        color: #fc671a !Important;
    }

    .titleColor3 {
        color: #3481cb !Important;
    }

    .titleColor4 {
        color: #f8c203 !Important;
    }

    .img-fluid-banner {
        max-width: 90%;
        height: auto;
    }




.anchor-offset {
    position: relative;
}

    .anchor-offset::before {
        content: "";
        display: block;
        height: 250px;
        margin-top: -220px;

        visibility: hidden;
        pointer-events: none;
    }

    @media(max-width:992px){
        .anchor-offset::before {
            margin-top: -120px;
        }
    }

.modal {
    z-index: 100000;
}