body {
    margin: 0;
    font-family: Tahoma, Arial, sans-serif;
    background: linear-gradient(to bottom, #fff7e6, #1a1a1a);
}

header {
    position: relative;
}

header, footer {
    /* Ajoutez des styles spécifiques pour la bannière et le footer ici si nécessaire */
    background-color: transparent; /* Par exemple, rendre le fond du header et du footer transparent */
}

/* Bannière */
.banner {
    position: relative;
    overflow: hidden;
    height: 400px; /* Ajustez la hauteur selon vos besoins */
}

.logo {
    position: absolute;
    bottom: 10px; /* Ajustez la distance par rapport au bas selon vos besoins */
    left: 10px; /* Ajustez la distance par rapport à la gauche selon vos besoins */
    width: 50px; /* Ajustez la taille du logo selon vos besoins */
    height: 50px; /* Ajustez la taille du logo selon vos besoins */
    overflow: hidden;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
}

.slide {
    display: none;
}

.active {
    display: block;
}

/* Menu */
.menu-bar {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
}

.menu-bar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.menu-bar li {
    margin-right: 20px;
}

.menu-bar a {
    text-decoration: none;
    color: #fff;
}

.menu-bar a:hover {
    color: #ff8c00;
}


/* Bannière */
.banner {
    position: relative;
    overflow: hidden;
    height: 400px; /* Ajustez la hauteur selon vos besoins */
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
}

.active {
    display: block;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}


/* Bannière fixe */
.fixed-banner {
    background-size: cover;
    background-position: center;
/*    color: #fff;*/
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.fixed-banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Main */
.main-content {
    max-width: 800px;
    margin: 20px auto;
    border-radius: 20px;
    text-align: justify;
    padding: 20px;
    background: linear-gradient(to right, #ddd, #fff); /* Dégradé de gris à blanc */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Ombre légère */
    color: #333; /* Couleur du texte pour assurer une bonne visibilité sur le dégradé */
}



h2, h3 {
    color: #333;
}

h2 i, h3 i {
    margin-right: 10px;
}

p {
    color: #555;
    line-height: 1.5;
}


/* Style du cercle orange avec bordure */
        .logo-container {
            position: relative;
            display: inline-block;
            width: 200px; /* Taille du cercle */
            height: 200px; /* Taille du cercle */
            border-radius: 50%; /* Pour créer un cercle */
            border: 5px solid orange; /* Bordure orange de 5px */
            overflow: hidden; /* Pour cacher la partie du texte qui dépasse du cercle */
        }

        /* Style du logo */
        .logo img {
            width: 100%; /* Pour s'adapter au conteneur */
            height: auto; /* Pour maintenir le rapport hauteur/largeur */
            display: block; /* Pour éliminer l'espace réservé à la ligne */
        }

        /* Style du texte tournant */
        .circle-text-container {
            position: absolute; /* Position absolue pour placer le texte autour du cercle */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: rotate(0deg); /* Initial rotation angle */
            animation: rotateText 10s linear infinite; /* Animation de rotation */
            text-align: center;
        }

        .circle-text {
            color: orange; /* Couleur orange */
            font-size: 12px; /* Taille de police */
            position: absolute; /* Position absolue pour placer le texte */
            width: 100%;
            text-align: center;
        }

        /* Animation de rotation */
        @keyframes rotateText {
            0% {
                transform: rotate(0deg); /* Départ de la rotation */
            }
            100% {
                transform: rotate(360deg); /* Rotation complète */
            }
        }



/* Images Bienvenue qui  */
/* CSS pour le carrousel container */
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* CSS pour le carrousel */
#projetCarousel {
    display: flex;
    white-space: nowrap; /* Empêche le saut de ligne entre les images */
}

.carousel-item {
    flex: 0 0 100%; /* Ajuste la largeur des items du carrousel à 100% */
    box-sizing: border-box; /* Empêche les marges et les bordures de modifier la largeur */
}

#projetCarousel img {
    width: 100%; /* Les images occupent 100% de la largeur du conteneur */
    height: 100%; /* Les images occupent 100% de la hauteur du conteneur */
    object-fit: cover; /* Maintient le ratio d'aspect et couvre tout le conteneur */
}

h1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #f2f2f2;
}

/* CSS pour le titre fixe */
h2 {
/*    color: #fff;*/
    position: absolute;
    /*top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;*/
/*    text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;*/
}

h4 {
    color: #666;
}

/* Animation pour le carrousel */
#projetCarousel {
    animation: scroll 9s linear infinite; /* Change d'image toutes les 3 secondes */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-200%); /* Ajuste la valeur selon le nombre d'images */
    }
}

/* Images arrondies */
.circle-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px; /* Ajustez la taille du cercle selon vos besoins */
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 10px 0; /* Ajustez la marge selon vos besoins */
    border: 2px solid rgba(255, 255, 255, 0.5); /* Bordure transparente */
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintient le ratio d'aspect et couvre tout le cercle */
}


/* Vidéo de présentation */
.container {
    display: flex;
    margin: 20px; 
}

.video-block {
    width: 50%; /* Ajustez la largeur selon vos besoins */
    position: relative;
    overflow: hidden;
/*    margin-right: 10px;*/
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.play-button {
    background-color: #ffa500; /* Couleur orange */
    color: #fff; /* Couleur blanche */
    border: 2px solid #ffa500; /* Bordure orange */
    border-radius: 50%; /* Cercle */
    padding: 20px; /* Ajustez la taille du cercle selon vos besoins */
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s;
}

.play-button:hover {
    background-color: #fff; /* Couleur blanche au survol */
    color: #ffa500; /* Couleur orange au survol */
    border-color: #fff; /* Bordure blanche au survol */
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-block {
    width: 50%; /* Ajustez la largeur selon vos besoins */
    padding: 20px;
    background: linear-gradient(orange, black); /* Dégradé orange-noir */
    color: #fff;
    text-align: justify;
/*    margin-left: 10px; */
}

/* Images illustratives ou icônes */
.illustrations {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.illustration-item {
    text-align: center;
    margin: 10px;
}

.illustration-item img,
.illustration-item i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    color: #f2f2f2;
}

.illustration-item p {
    color: #f2f2f2;
}

/* Bloc avec logo */
.ds-block {
    border: 2px solid #ffa500;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    display: flex;
    align-items: center;
    padding: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
}

.content {
    flex-grow: 1;
}

.info-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffa500;
    color: #fff;
    border: 2px solid #000;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.info-button:hover {
    background-color: #000;
}

/* Services */
/* Ajout du style pour les boutons */
.orange-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 10px 10px 0; /* Ajout de la marge en haut, à droite, en bas, et à gauche */
    background-color: #ffa500;
    color: #fff;
    border: 2px solid #000;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.orange-button:hover {
    background-color: #000;
    border: 2px solid #ffa500;
}

/* Style pour le modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 60px;
}

/* Contenu du modal */
.modal-content {
    background-color: #fefefe;
    margin: 5% 10%; /* Ajout des marges de la gauche vers la droite et de la droite vers la gauche */
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
    margin-top: 20px; /* Ajout de la marge en haut */
    margin-bottom: 20px; /* Ajout de la marge en bas */
    text-align: center; /* Centrage du contenu */
}

/* Bouton de fermeture du modal */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -10px; /* Ajustement de la position */
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Ajout d'une animation pour le modal */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation du modal */
.modal-content {
    animation: slideIn 0.3s ease-out;
}

/* Centrage des icônes Font Awesome */
.modal-content i {
    margin: 0 auto;
    display: block;
}


/* Projets */
.project {
    margin-bottom: 40px;
}

.project img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

/* Futur Projet */
.project-container {
    display: flex;
    flex-wrap: wrap;
}

.project {
    width: calc(50% - 10px);
    margin: 10px;
}

.project.left {
    order: 1;
}

.project.right {
    order: 2;
}
 

/* Prestation */
/* Ajoutez ce style pour la bannière avec dégradé orange-noir */
.gradient-banner {
    background: linear-gradient(135deg, #FFA500, #000000); /* Dégradé orange-noir */
    color: #fff; /* Couleur du texte en blanc */
    padding: 20px; /* Espacement intérieur */
    text-align: center;
}

/* Style de l'icône de prestation */
.service-icon {
    margin-top: 10px; /* Espacement entre le titre et l'icône */
}

/* Styles pour les cercles d'images */
.circle-image {
    width: 100px; /* Ajustez la taille selon vos besoins */
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px; /* Espace entre l'image et le texte, ajustez selon vos besoins */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Ombre légère pour le style */
     align-items: center;
    justify-content: center;
}

.circle-image img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}


/* Bloc de Présentation de l'Entreprise */
.presentation-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

.presentation-block .content {
    flex: 1;
}

.presentation-block h2 {
    font-size: 2.5em;
    color: #333;
}

.presentation-block p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.presentation-block .orange-button {
    background-color: #ffa500;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1em;
    border-radius: 5px;
}

/* Bloc de Services */
.services-block {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
}

.service {
    text-align: center;
    max-width: 300px;
    margin: 20px;
}

.service i {
    font-size: 3em;
    color: #ffa500;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 1.5em;
    color: #333;
}

.service p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
}

.service .orange-button {
    background-color: #ffa500;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    border-radius: 5px;
}

/* Styles pour les sections de service */
.service-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #f5f5f5;
}

/* Styles pour le contenu du service */
.service-content {
    flex: 1;
}

.service-content h3 {
    color: #333;
}

.service-content p {
    color: #666;
}

/* Styles pour l'image du service */
.service-image {
    position: relative;
    overflow: hidden;
    width: 200px; /* Définissez la largeur souhaitée pour toutes les images */
    height: 200px; /* Définissez la hauteur souhaitée pour toutes les images */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajustez selon vos besoins pour remplir l'espace sans déformer l'image */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-image:hover img {
    transform: scale(1.2);
}

/* Media query Services */
/* Styles pour l'image du service */
.service-image {
    position: relative;
    overflow: hidden;
    width: 200px; /* Définissez la largeur souhaitée pour toutes les images */
    height: 200px; /* Définissez la hauteur souhaitée pour toutes les images */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajustez selon vos besoins pour remplir l'espace sans déformer l'image */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-image:hover img {
    transform: scale(1.2);
}

/* Media Query pour ajuster la taille des images sur des écrans plus petits */
@media screen and (max-width: 768px) {
    .service-image {
        width: 150px; /* Ajustez la largeur souhaitée pour les écrans plus petits */
        height: 150px; /* Ajustez la hauteur souhaitée pour les écrans plus petits */
    }
}



/* About Logo */
.about-logo {
    width: 150px; /* Ajustez la taille selon vos besoins */
    height: 150px;
    border-radius: 50%;
    border: 5px solid #ffa500; /* Bordure orange */
    animation: fade 3s infinite alternate; /* Animation fade toutes les 3 secondes */
}

@keyframes fade {
    0% {
            opacity: 1;
    }
    100% {
            opacity: 0;
    }
}
     

/* Bloc de Projets Réalisés */
.projects-block {
    padding: 50px;
    text-align: center;
}

.projects-block h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
}

.project {
    max-width: 300px;
    margin: 20px auto;
}

.project img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.project h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.project p {
    font-size: 1.1em;
}

.intro-block {
    background-color: #f8f8f8;
    padding: 40px 20px;
    text-align: center;
}

.intro-block h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.intro-block p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.orange-button {
    display: inline-block;
    background-color: #ffa500;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.orange-button:hover {
    background-color: #e59400;
}

/* Style pour le bloc "Projets Futurs" */
.future-projects {
    text-align: center;
    padding: 50px 0;
    background-color: #eaeaea;
}

.future-projects h2 {
    color: #333;
}

.future-projects p {
    color: #666;
    margin-bottom: 20px;
}


#scrollingWordsContainer {
    overflow: hidden; /* Masque le débordement des éléments fils */
    white-space: nowrap; /* Empêche les mots de passer à la ligne */
}

.scrollingWord {
    display: inline-block; /* Affiche les mots en ligne */
    padding-right: 20px; /* Espace entre les mots */
    animation: scrollWords 10s linear infinite; /* Animation de défilement */
}

@keyframes scrollWords {
    0% {
        transform: translateX(100%); /* Départ de la droite de la fenêtre */
    }
    100% {
        transform: translateX(-100%); /* Fin à la gauche de la fenêtre */
    }
}





/* Texte qui défilent */
#typingEffect {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 25px;
  font-style: italic;
  color: #333; /* Couleur du texte */
  margin-top: 20px; /* Ajustez la marge selon vos besoins */
  padding: 10px; /* Ajustez le rembourrage selon vos besoins */
  border: 0px solid #ccc; /* Bordure */
  display: inline-block; /* Pour que la bordure s'adapte à la largeur du texte */
}

  



/* Bloc Projet Raccourci */
/* Styles pour le bloc Projets */
.projects-block {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Ajustez la position à gauche */
    z-index: 1000;
    background: linear-gradient(90deg, #ffa500, #000);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 152px;
    height: 40px;
}

 .projects-button {
        background: #000;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        cursor: pointer;
        margin-right: 10px;
        animation: rotate 2s infinite linear;
    }

    .projects-button i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Animation de rotation */
    @keyframes rotate {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }


/* Media query Bloc Projet Raccourci */
/* Styles pour le bloc Projets */
.projects-block {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Ajustez la position à gauche */
    z-index: 1000;
    background: linear-gradient(90deg, #ffa500, #000);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 200px;
}

/* Styles pour le bouton Projets */
.projects-button {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 10px;
    animation: rotate 2s infinite linear;
}

.projects-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 3s infinite linear; /* Animation pour faire tourner l'icône */
}

/* Ajout de la règle de média query pour réduire la largeur sur téléphone */
@media (max-width: 767px) {
    .projects-block {
        width: 120px; /* Ajustez la largeur pour les téléphones */
    }
}



/* Raccourci Projets */
/*.projects-block {
    border: 2px solid #f2f2f2;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;*/
/*    width: 250px; /* Ajustez la largeur selon vos préférences */*/
/*    float: left; /* Alignement à gauche */*/
/*    background-color: #f2f2f2;*/
}

.project-image-container {
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.project-image {
    width: 70%;
    height: auto;
    border-radius: 50%;
}


/* Boutons Projets */
.projets-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-projet {
    width: 100px; /* Ajustez la largeur comme nécessaire */
    height: 40px; /* Ajustez la hauteur comme nécessaire */
    background-color: #ffa500;
    color: #fff;
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none; /* Supprimer la décoration du lien */
}

.btn-projet:hover {
    background-color: #000; /* Couleur de fond au survol */
    color: #fff; /* Couleur du texte au survol */
}



/* Introduction Projet */
.projets-introduction {
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
}

.projets-introduction h2 {
    font-size: 2em;
    color: #333; /* Couleur du texte */
}

.projets-introduction p {
    font-size: 1.2em;
    color: #555; /* Couleur du texte */
    margin-bottom: 20px;
}

h2 {
    color: #333;
}

.projects-list {
    list-style-type: none;
    padding: 0;
}

.project-link {
    color: #000;
    text-decoration: none;
    font-family: Tahoma;
/*    font-weight: bold;*/
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #ffa500;
}


/* Jauge */
/* Styles pour la jauge des projets */
.jauge-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.jauge-item {
    text-align: center;
}

.jauge-color {
    width: px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 5px;
}

.project-intro {
    margin-top: 20px;
    text-align: justify;
}


/* Media query Jauge */
/* Styles pour la jauge des projets */
.jauge-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.jauge-item {
    text-align: center;
}

.jauge-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 5px;
}

/* Media query pour les écrans plus petits, par exemple, les smartphones */
@media screen and (max-width: 768px) {
    .jauge-container {
        flex-direction: column;
        align-items: center;
    }

    .jauge-item {
        margin-bottom: 10px;
    }
}

/* Jauge de progression */
.progress-container {
    width: 80%;
    margin: auto;
    position: relative;
    margin-top: 20px;
}

.progress-bar {
    display: flex;
    height: 20px;
    overflow: hidden;
    background-color: #f1f1f1;
    border-radius: 10px;
    position: relative;
}

.completed, .in-progress, .upcoming {
    height: 100%;
}

.legend {
    position: relative;
    margin-top: 15px; /* Ajoute un petit espace entre la jauge et les légendes */
    font-weight: bold;
}

.legend-item {
    position: absolute;
    bottom: 0;
    transform: translateX(10%); /* Décale chaque légende vers la droite */
}

.completed-legend {
    left: 17.5%; /* Centré, puis légèrement décalé */
    color: #4CAF50;
}

.in-progress-legend {
    left: 40%;
    color: #2196F3;
}

.upcoming-legend {
    left: 77.5%;
    color: #FF5252;
}

/* Media query Jauge */
@media (max-width: 768px) {
    .progress-container {
        width: 100%;
    }
}



/* Bloc spécial */
.main-block {
    max-width: 800px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, #FFA500, #000000); /* Couleur de fond de tout le bloc */
    padding: 20px;
}

.gradient-block {
    flex-basis: 30%; /* Ajustez la largeur des sous-blocs selon vos besoins */
    height: 200px; /* Ajustez la hauteur selon vos besoins */
}

.white-block {
    flex-basis: 60%; /* Ajustez la largeur du deuxième sous-bloc selon vos besoins */
    background-color: #fff;
    padding: 20px;
    margin: auto;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère pour le deuxième sous-bloc */
}

/* Styles spécifiques au premier sous-bloc (dégradé orange clair) */
.orange-gradient {
    background: linear-gradient(to right, #ffa500, #000); /* Dégradé de blanc cassé à orange clair */
    /* Ajoutez des motifs avec la propriété background-image */
    /*background-image: url('chemin/vers/vos/motifs.png');
    background-repeat: repeat;*/ /* Pour répéter les motifs */
}

/* Styles spécifiques au troisième sous-bloc (dégradé noir) */
.black-gradient {
    background: linear-gradient(to left, #000, #ffa500); /* Dégradé de blanc cassé à noir pas trop sombre */
    /* Ajoutez des motifs avec la propriété background-image */
/*    background-image: url('chemin/vers/vos/motifs-noirs.png');*/
/*    background-repeat: repeat; /* Pour répéter les motifs */*/
}


/* Styles pour la section "Comment Explorer Nos Projets" */
.how-to-section {
    /*background-color: #f5f5f5;
    padding: 40px 0;*/
    max-width: 800px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, #FFA500, #000000); /* Couleur de fond de tout le bloc */
    padding: 20px;
}

.how-to-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.how-to-content h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
}

.how-to-content p {
    color: #f2f2f2;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.instruction-block {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.instruction {
    width: 30%;
    margin-bottom: 20px;
}

.instruction img {
    max-width: 100%;
    height: auto;
}

/* Styles pour les images illustratives */
.instruction-images {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.instruction-images img {
    max-width: 45%;
    height: auto;
}


/* Style pour le paragraphe incitatif */
p {
  font-size: 16px;
  color: #333; /* Couleur du texte */
  margin-bottom: 20px; /* Marge en bas pour l'espace */
}

/* Style pour le bouton de téléchargement */
button {
  background-color: #ffa500; /* Couleur d'arrière-plan orange */
  color: #fff; /* Couleur du texte blanc */
  padding: 10px 20px; /* Remplissage du bouton */
  border: none; /* Suppression de la bordure */
  border-radius: 5px; /* Coins arrondis */
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s; /* Transition pour l'effet de survol */
}

/* Style au survol du bouton */
button:hover {
  background-color: #000; /* Couleur d'arrière-plan noire au survol */
  color: #fff; /* Couleur du texte blanc au survol */
}




/* Bloc Formulaire dans un bloc  */
/* Styles pour le bouton et le formulaire */
button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(orange, black); /* Dégradé orange-noir */
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.5s ease; /* Ajout de la transition */
}

/* Ajout de la classe rotate */
button.rotate {
    animation: rotateAnimation 2s infinite linear; /* Définition de l'animation */
}

@keyframes rotateAnimation {
    from {
        transform: rotate(0deg); /* Rotation initiale */
    }
    to {
        transform: rotate(360deg); /* Rotation complète */
    }
}

#contactForm {
    display: none;
    margin-top: 20px;
}

.hidden {
    display: none;
}


/* Media query Formulaire Contact */
/* Media query pour le bloc formulaire */
@media (max-width: 768px) {
    button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    #contactForm {
        margin-top: 10px;
    }
}



/* Styles supplémentaires (à personnaliser selon vos besoins) */
.centered-block {
    text-align: center;
    margin-top: 30px;
}

.copyright {
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.footer-developed-by {
    text-align: center;
    color: #666;
    margin-top: 20px;
}




/* Media query page d'accueil Bloc Projet */
/* Styliser pour les écrans de petite taille (tels que les téléphones) */
@media only screen and (max-width: 767px) {
    .projects-block {
        width: 100%; /* Ajuster la largeur pour occuper toute la largeur de l'écran */
        float: none; /* Ne pas flotter sur les petits écrans */
        margin: 10px 0; /* Ajuster la marge pour un espacement plus compact */
    }

    .project-image {
        position: relative; /* Revenir à la position relative pour le rendu normal sur les petits écrans */
    }
}


/* Partenaires Section Styles */
.partenaires {
    margin-top: 50px;
    text-align: center;
    margin: 20px;
}

.partenaires-container {
    overflow: hidden;
    white-space: nowrap;
}

.partenaire {
    display: inline-block;
    margin-right: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.partenaire img {
    width: 200px; /* Ajustez la taille des logos selon vos besoins */
    height: 200px;
}

/* Animation de défilement */
@keyframes scrollPartenaires {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Ajout de l'animation au conteneur des partenaires */
.partenaires-container {
    animation: scrollPartenaires 20s linear infinite;
}

/* Arrête l'animation au survol pour une meilleure lisibilité */
.partenaires-container:hover {
    animation-play-state: paused;
}


/* Contact DS */
/* CSS pour le bloc Contact DS */
.contact-ds {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(90deg, #ffa500, #000);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 200px;
}

/* CSS pour le bouton de contact */
.contact-button {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 10px;
    animation: rotate 2s infinite linear;
}

/* CSS pour l'animation de rotation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* CSS pour le texte de contact */
.contact-ds p {
    margin: 10px;
    color: #f2f2f2;
}

/* CSS pour le lien e-mail */
.email {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}


/* Media query Contact DS */
@media (max-width: 768px) {
    /* Centrer le bloc Contact DS pour les écrans plus petits */
    .contact-ds {
        position: relative;
        margin: 0 auto;
        max-width: 80%;
        text-align: center;
    }

    /* Ajuster la taille du bouton de contact pour les écrans plus petits */
    .contact-button {
        width: 40px;
        height: 40px;
    }

    /* Ajouter un peu d'espace entre le bouton et l'adresse e-mail */
    .email {
        margin-top: 5px;
    }
}


/* CSS pour la galerie de flyers */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Espacement entre les éléments de la galerie */
}

.gallery-item {
    width: calc(33.33% - 20px); /* Pour créer une disposition en 3 colonnes avec espacement */
    overflow: hidden;
    border-radius: 10px; /* Coins arrondis pour les images */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère */
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease; /* Animation de transition pour l'effet au survol */
}

.gallery-item:hover img {
    transform: scale(1.1); /* Effet de zoom au survol */
}


/* Icône Carte de visite */
.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* Ajustez la hauteur en fonction de vos besoins */
}



/* Nouveau bloc de contact CSS */
/*.contact {
    width: 100%;
    background: linear-gradient(90deg, #333, #fff, #333);
    padding: 50px 0;
    color: #fff;
    margin: 20px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-text {
    flex: 1;
}

.contact-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.email-icon {
    background-color: #fff;
    padding: 15px;
    border-radius: 50%;
    margin-right: 15px;
}

.email-icon i {
    color: #333;
    font-size: 30px;
}

.email-address {
    margin: 0;
    color: #f2f2f2;
}

.mailDS {
    color: #f2f2f2;
    text-decoration: none;
}

.mailDS:hover {
    color: #000;
}*/

/* Media query pour le bloc de contact */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        justify-content: center;
        margin-top: 20px;
    }

    .email-address {
        margin: 0;
        color: #000;
    }
}

/* CSS pour le bloc animé */
.animated-block {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(orange, black); /* Fond dégradé orange noir */
}

/* CSS pour le conteneur des images */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; /* Ajustez la hauteur selon vos besoins */
}

/* CSS pour chaque élément animé */
.animated-item {
    display: none;
    text-align: center;
    color: #fff; /* Couleur du texte en blanc */
    width: 100%; /* Ajustez la largeur selon vos besoins */
    box-sizing: border-box; /* Empêche les marges et les bordures de modifier la largeur */
}

.animated-item img {
    width: 30%; /* Assurez-vous que l'image occupe toute la largeur du conteneur */
}

.animated-item:first-child {
    display: block;
}

/* Animation pour les éléments animés */
.animated-item:nth-child(1) {
    animation: fadeInOut1 9s linear infinite; /* Change d'image toutes les 3 secondes */
}

.animated-item:nth-child(2) {
    animation: fadeInOut2 9s linear infinite; /* Change d'image toutes les 3 secondes */
}

.animated-item:nth-child(3) {
    animation: fadeInOut3 9s linear infinite; /* Change d'image toutes les 3 secondes */
}

@keyframes fadeInOut1 {
    0%, 25% {
        opacity: 1;
    }
    75%, 100% {
        opacity: 0;
    }
}

@keyframes fadeInOut2 {
    0%, 25% {
        opacity: 0;
    }
    50%, 100% {
        opacity: 1;
    }
}

@keyframes fadeInOut3 {
    0%, 50% {
        opacity: 0;
    }
    75%, 100% {
        opacity: 1;
    }
}

/* Boutons Graphiques */
/* CSS pour centrer les boutons */
.filter-buttons-container {
    text-align: center;
}

/* ... (autres styles) ... */

/* CSS pour la galerie d'images */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.rounded-image {
    margin: 10px;
/*    border-radius: 10px;*/
    overflow: hidden;
    transition: transform 0.3s ease-in-out; /* Ajoutez une transition pour l'effet d'agrandissement */
}

.rounded-image:hover {
    transform: scale(1.1); /* Agrandit l'image lorsqu'on pointe dessus */
}

.rounded-image img {
    width: 420%;
    height: 250PX;
/*    border-radius: 20px;*/
}


/* Flèche montante */
#scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffa500; /* Couleur orange */
    color: #fff; /* Couleur blanche */
    border: 2px solid #ffa500; /* Bordure orange */
    border-radius: 50%; /* Cercle */
    padding: 10px; /* Ajustez la taille du cercle selon vos besoins */
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

#scroll-to-top:hover {
    background-color: #fff; /* Couleur blanche au survol */
    color: #ffa500; /* Couleur orange au survol */
    border-color: #fff; /* Bordure blanche au survol */
}



















        /* Media query pour le bloc animé */
        @media screen and (max-width: 768px) {
            .image-container {
                height: auto;
            }
        }/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
}

.footer-block {
    text-align: center;
}

.logo {
    width: 50px; /* Ajustez la taille du cercle */
    height: 50px; /* Ajustez la taille du cercle */
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Ajustement pour décaler vers la droite */
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
    margin-right: 10px; /* Ajustement de la marge à droite */
}


.footer-block h3 {
    color: #ffa500;
}

.footer-block ul {
    list-style-type: none;
    padding: 0;
}

.footer-block li a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.footer-block li a:hover {
    color: #ffa500;
}

/* Copyright */
.centered-block {
    text-align: center;
}

.footer-developed-by {
    text-align: center;
    color: #ddd;
}


.footer-developed-by a {
    color: #ffa500;
    text-decoration: none;
}


/* Media query */
@media only screen and (max-width: 767px) {
    /* Styles pour les écrans de taille maximale de 767px (téléphone) */

    .menu-bar ul {
        flex-direction: column;
        align-items: center;
    }

    .menu-bar li {
        margin-right: 0;
        margin-bottom: 10px;
    }

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

    .video-block {
        width: 100%;
    }

    .text-block {
        width: 100%;
        margin-top: 20px;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-block {
        margin-bottom: 20px;
    }
}

/* Media query pour Services */
/* Media query pour les écrans de taille maximale de 767px (téléphone) */
@media only screen and (max-width: 767px) {
    /* Styles spécifiques pour les écrans de taille maximale de 767px */

    /* Ajustements pour la section des services */
    .service {
        text-align: center; /* Centrage du texte */
    }

    /* Ajustements pour les boutons des services */
    .orange-button {
        margin: 10px 0; /* Ajout de la marge en haut et en bas */
    }

    /* Ajustements pour le contenu des modals */
    .modal-content {
        margin: 10% 5%; /* Ajout des marges de la gauche vers la droite et de la droite vers la gauche */
    }
}


@media (max-width: 767px) {
    .about-image,
    .about-video iframe {
        max-width: 100%;
    }
}


img {
    max-width: 100%;
    height: auto;
}


/* Media query Partenaire */
@media screen and (max-width: 768px) {
    .partenaires-container {
        display: flex;
        flex-direction: column; /* Inverse la direction sur les petits écrans */
        align-items: center; /* Centre les partenaires sur les petits écrans */
    }

    .partenaire {
        margin-bottom: 20px; /* Ajuste l'espace entre les partenaires sur les petits écrans */
    }
}
