body {
    overflow-x: hidden;
    color: rgb(97, 97, 106);
}

/* Conteneur pour les images de fond */
.background-container {
    position: fixed;
	opacity:15%;
    top: 0;
    left: 0;
    width: 100%;
    height: 500%;
    z-index: -1;
    pointer-events: none;
    background: url('../img/Rail.png') repeat-y center top;
    background-size: contain; /* Assure que l'image s'adapte à la largeur de l'écran sans déformation */
	z-index:-100;
}



.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: opacity 0.5s; /* Transition pour l'opacité */
    z-index: 99;
    opacity: 0; /* Cacher le bouton par défaut */
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}
/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid;
        border-left: 0;
        border-style: dotted;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--bs-primary) transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Carousel Hero Header Start ***/



/* Initial state: white text */
.navbar-light .navbar-brand-text{
	display:none;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    transition: .5s;
	font-weight:bold;
}
.navbar-light .navbar-subtext {
	display:none;
    color: var(--bs-white);
    font-size: 12px;
    font-weight: 400;
    transition: .5s;
}

/* After scrolling: revert to the original colors */
.sticky-top.navbar-light .navbar-brand-text {
	display:block;
    color: #29ABE2;
}

.sticky-top.navbar-light .navbar-subtext {
	display:block;
    color: var(--bs-dark);
}




/* Initial state for language switch */
.language-switch {
    color: #889CA4; /* Color for text in initial state */
    transition: color 0.5s ease;
}

.language-switch .language-fr {
    color: #E8EEF2; /* Color for "FR" in initial state */
}

.language-switch .language-en {
    color: #889CA4; /* Color for "EN" in initial state */
}

.language-switch .language-en:hover {
    color: #E8EEF2; /* Adjust hover color as needed */
}

/* After scrolling: colors change */
.sticky-top .language-switch {
    color: #889CA4; /* Adjust this color as needed */
}

.sticky-top .language-switch .language-fr {
    color: #003d7a; /* Adjust this color as needed */
}

.sticky-top .language-switch .language-en {
    color: #889CA4; /* Adjust this color as needed */
}

.sticky-top .language-switch .language-en:hover {
    color: #003d7a; /* Adjust hover color as needed */
}






/* Initialement, le logo alternatif est caché */
.logo-scrolled {
    display: none;
}

/* Lorsque la page est défilée, le logo alternatif est affiché */
.navbar.scrolled .logo-default {
    display: none;
}

.navbar.scrolled .logo-scrolled {
    display: block;
}






/* Assurez-vous que l'image et le texte sont correctement centrés */
.me-4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	margin-top:0rem;
	margin-left: -25rem;
	padding-right: 5rem;
}





.custom-title-name {
    font-size: 2em; /* Ajustez la taille de la police selon vos préférences */
	font-weight:bold;
    color: #ffffff; /* Couleur blanche */
    margin-top: 0; /* Espace sous le texte */
	margin-left: 0;
    opacity: 0; /* Rendre le texte invisible avant l'animation */
    animation: fadeInLeft 2s ease-out forwards; /* Utilise l'animation fadeInLeft */
	text-shadow: 2px 2px 3px black;
}

.custom-title-role {
    font-size: 1em; /* Ajustez la taille de la police selon vos préférences */
    color: #00d1f9; /* Couleur blanche */
    margin-top: 0; /* Espace sous le texte */
	margin-left: 0;
    opacity: 0; /* Rendre le texte invisible avant l'animation */
    animation: fadeInLeft 2s ease-out forwards; /* Utilise l'animation fadeInLeft */
	text-shadow: 2px 2px 3px black;
}














.scroll-indicator {
    position: absolute;
    bottom: 20px; /* Ajustez cette valeur selon vos besoins */
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem; /* Taille de la flèche */
    color: white; /* Couleur de la flèche */
    animation: bounce 5s infinite; /* Animation de rebondissement */
	cursor: pointer; /* Affiche la petite main */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.bounce-animation {
    animation: bounce 5s infinite;
}

/* Assurez-vous d'inclure Font Awesome pour les icônes */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

.foldable-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
    }

    .foldable-content.show {
        max-height: 2000px; /* Ajuster selon le contenu */
        transition: max-height 0.5s ease-in;
    }

    /* Style de la flèche */
    .fold-indicator {
        cursor: pointer;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
		
		position: absolute;
		bottom: 20px; /* Ajustez cette valeur selon vos besoins */
		left: 50%;
		transform: translateX(-50%);
		font-size: 2rem; /* Taille de la flèche */
		color: white; /* Couleur de la flèche */
		cursor: pointer; /* Affiche la petite main */
    }

    /* Rotation de la flèche */
    .fold-indicator.rotate {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }


.carousel-header {
    position: relative;
    width: 100vw;
    height: 100vh; /* Assure que le header occupe toute la hauteur de l'écran */
    overflow: hidden; /* Assure que tout débordement est caché */
}

.carousel-inner, .carousel-item {
    height: 100vh; /* La hauteur du carousel doit être 100% de la hauteur de la vue */
}

.carousel-item img {
    height: 100%;
    object-fit: cover; /* Assure que l'image couvre toute la hauteur du carousel */
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-caption-1, .carousel .carousel-caption-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-left: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}

.carousel-caption-1-content, .carousel-caption-2-content {
    margin-top: 3rem; /* Centre les contenus dans la zone de la caption */
    padding-right: 8rem;
}

.carousel-caption-1-content {
    text-align: justify;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn,
.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px; /* Hauteur spécifique pour les petits écrans */
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }

    .carousel .carousel-caption-1, .carousel .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content, .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn,
    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }

    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/breadcrumb.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/


/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .20);
    background: var(--bs-white);
}

.feature .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon i {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
    transform: rotate(360deg);
}

.feature .feature-item a.btn {
    transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
    color: var(--bs-primary) !important;
}
/*** Features End ***/

/*** Features Start ***/
.feature .feature-item2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.5s;
}


.feature .feature-item2 .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}

.feature .feature-item2 .feature-icon i {
    transition: 0.5s;
}

.feature .feature-item2:hover .feature-icon i {
    transform: rotate(360deg);
}

.feature .feature-item2 a.btn {
    transition: 0.5s;
}

.feature .feature-item2:hover a.btn:hover {
    color: var(--bs-primary) !important;
}
/*** Features End ***/
/*** Apply rotation to dashboard blocks ***/
.dashboard-block .rounded-circle {
    transition: 0.5s;
}

.dashboard-block:hover .rounded-circle i {
    transform: rotate(360deg);
}
/*** Apply rotation to all rounded-circle icons ***/
.rounded-circle {
    transition: 0.5s; /* Smooth transition for rotation */
}

.rounded-circle i {
    transition: 0.5s; /* Apply transition to the icon */
}

.rounded-circle:hover i {
    transform: rotate(360deg); /* Rotate icon when hovered */
}
/*** Features End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px; 
    margin-left: 30px;
}

.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -30px;
    right: 0;
    border-radius: 10px;
    background: var(--bs-secondary);

}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: -30px;
    bottom: 30px;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}
/*** About End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(25, 64, 154, 0.85), rgba(25, 64, 154, 1)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 115%;
}

.counter .counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter .counter-item .counter-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*** Counter End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid var(--bs-secondary);
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-secondary) !important;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

.button-style {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom:1rem;
    background-color: #00d1f9; /* Couleur de fond */
    color: white; /* Couleur du texte */
    border: none;
    border-radius: 50rem;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}

.button-style:hover {
    background-color: #00376e; /* Couleur au survol */
}

.button-style p {
    margin: 0; /* Supprime les marges autour du texte pour un style plus uniforme */
}




.definition-container {
            position: relative;
            display: inline-block;
			font-weight:bold;
			color:#00d1f9;
			cursor:default; /* Affiche la petite main */
        }

        .definition {
            display:grid;
            justify-items: center;
            visibility: hidden;
			font-weight:normal;
            background-color: #e0f7ff;
            color: #000;
			text-align:justify;
            padding: 1rem;
            border-radius: 8px;
            position: absolute;
            z-index: 1;
            width: 25rem;
            bottom: 125%; /* Ajuste la position selon les besoins */
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.5s ease;
	        box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.1);
        }

        .definition::after {
            content: "";
            position: absolute;
            top: 100%; /* Flèche vers le haut */
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #007bff transparent transparent transparent;
        }

        .definition-container:hover .definition {
            visibility: visible;
            opacity: 1;
        }

        .definition-img {
            max-height: 15rem; /* Taille de l'image */
            max-width: 23rem;
            margin-bottom: 0.5rem;
        }

.foldable-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
    }

    .foldable-content.show {
        max-height: 2000px; /* Ajuster selon le contenu */
        transition: max-height 0.5s ease-in;
    }

    .intercalaire {
        max-width: 23rem;
        margin-bottom: 4rem;
        margin-top: 4rem;
        opacity:0.5;
    }

.image-overlay {
    position: absolute;
    top: -7rem; /* Ajustez selon votre besoin */
    left: 0rem; /* Ajustez selon votre besoin */
	z-index:1;
}
.image-overlay2 {
    position: absolute;
    top: -11rem; /* Ajustez selon votre besoin */
    left: -35rem; /* Ajustez selon votre besoin */
	z-index:1;
}

.popup {
    display: none; /* Caché par défaut */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 300px;
    margin: 20px;
}

#close-popup {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#close-popup:hover {
    background-color: #0056b3;
}


.background-overlay {
    position: absolute;
    top: -8rem; /* Ajustez selon votre besoin */
    left: -29rem; /* Ajustez selon votre besoin */
	background-color:black;
	opacity:10%;
	border-radius:5rem;
	width:62rem;
	height:37rem;
	z-index:0;
}

.background-overlay2 {
    position: absolute;
    top: -9.5rem; /* Ajustez selon votre besoin */
    left: -41rem; /* Ajustez selon votre besoin */
	background-color:white;
	opacity:5%;
	border-radius:5rem;
	width:72rem;
	height:42rem;
	z-index:0;
	box-shadow: 0 0 20px 20px rgba(0, 0, 0, 1);
}

.process-step {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    position: relative; /* Pour positionner la ligne */
    }
	
	.process-step:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 40px; /* Alignement avec le numéro */
    right: 50%;
    height: 2px;
    background-color: #00aaff;
    z-index: 0; /* Derrière le contenu */
}

.process-step-avant {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    position: relative; /* Pour positionner la ligne */
    }
	
	.process-step-avant:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 2.75rem; /* Alignement avec le numéro */
    right: 71.8%;
    height: 2px;
    background-color: #DFDFDF;
		opacity:80%;
    z-index: 0; /* Derrière le contenu */
}

.step-pair{
	margin-left:3rem;
}


.step-impair{
	margin-right:3rem;
}

    .step-number {
        background-color: #00aaff;
        color: white;
		font-weight: bold;
        font-size: 1.5rem;
        padding: 0.5rem;
        border-radius: 50%;
        text-align: center;
        width: 3.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 3rem;
		position: relative;
		z-index: 1; /* Pour que le numéro soit au-dessus de la ligne */
		box-shadow: 0 0 50px rgba(0, 0, 0, .70);
    }
	.step-number-avant{
			background-color: #DFDFDF;
		opacity:80%;
			color: #555;
			font-weight: bold;
			font-size: 1.2rem;
			padding: 0.5rem;
			border-radius: 50%;
			text-align: center;
			width: 3.5rem;
			display: flex;
			align-items: center;
			justify-content: center;
			margin-right: 3rem;
			position: relative;
			z-index: 1; /* Pour que le numéro soit au-dessus de la ligne */
			box-shadow: 0 0 50px rgba(0, 0, 0, .70);
		}
    .step-info {
		background:white;
		border-radius:1rem;
		box-shadow: 0 0 50px rgba(0, 0, 0, .50);
		width:20rem;
		padding:10px;
		z-index:1;
    }
	.step-info-avant {
		background:#DFDFDF;
		opacity:80%;
		border-radius:1rem;
		box-shadow: 0 0 50px rgba(0, 0, 0, .50);
		width:20rem;
		padding:10px;
		z-index:1;
    }
	
	
    .step-info h5 {
        font-size: 1rem;
		font-family: Open sans;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
	
	.step-info p {
        margin-bottom:0;
		font-size:0.8rem;
    }
	
    .step-info span {
        color: #555;
    }
	
	
	.step-info-avant h5 {
        font-size: 0.7rem;
		font-family: Open sans;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
		
    }
	
	.step-info-avant p {
        margin-bottom:0;
		font-size:0.7rem;
    }
	
    .step-info-avant span {
        color: #555;
    }
	
	
	

    .summary {
        margin-top: 19rem;
        margin-left: 1rem;
		display:inline-flex;
    }

    .summary-box {
        /*background-color: #f0f0f0;*/
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 0.5rem;
		margin-right:1rem;
    }

    .summary-box h5 {
		font-family: Open sans;
		font-weight:bold;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: white;
        color: #0DD3F9;
		text-align:center;
    }

    .summary-box p {
        font-size: 1rem;
        margin: 0;
		text-align:center;
        color: white;
    }

    @media (max-width: 768px) {
        .process-step {
            flex-direction: column;
        }

        .step-number {
            margin-bottom: 0.5rem;
        }
    }





    .video-wrapper {
        position: relative;
        display: inline-block;
        cursor: pointer;
    }
    
    /* Overlay setup: initially hidden */
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 98.5%;
        background-color: rgba(0, 0, 0, 0.8); /* Slightly dark overlay */
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 10px; /* To match rounded corners */
    }
    
    .photo1, .photo2 {
        transition: opacity 0.5s ease;
    }
    
    .photo2 {
        position: absolute;
        margin-left: -18rem;
        opacity: 0;
    }
    
    .image-container:hover .photo1 {
        opacity: 0;
    }
    
    .image-container:hover .photo2 {
        opacity: 1;
    }
    
    /* Text styling */
    .download-text {
        font-size: 1.5rem;
        font-weight: bold;
        display: none; /* Hidden by default */
    }
    
    /* On hover: show overlay and text */
    .video-wrapper:hover .video-overlay {
        opacity: 1;
    }
    
    .video-wrapper:hover .download-text {
        display: block;
    }

    .overlay-text {
        color: white;
        font-size: 20px;
        font-weight: bold;
    }

    /* Styles pour le modal */
    .modal {
        display: none; /* Masqué par défaut */
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8); /* Fond assombri */
    }

    .modal-content {
        margin: auto;
        display: block;
        width:64.5%;
        height: 100%;
        max-width: 80%; /* Largeur maximale */
        max-height: 80%; /* Hauteur maximale */
        margin-top: 5%; /* Espace depuis le haut */
    }
    

    .close {
        position: absolute;
        top: 20px;
        right: 40px;
        color: white;
        font-size: 30px;
        font-weight: bold;
        cursor: pointer; /* Curseur pointer pour indiquer que c'est cliquable */
    }


    .feature-item:hover .feature-icon i {
        transform: rotate(360deg); /* Réutilise les animations existantes */
    }