body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /* Hauteur de ligne pour améliorer la lisibilité */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Gère le padding et les marges dans les dimensions des éléments */
}



/* Appliquer une taille uniforme aux paragraphes */
p {
    font-size: 24px;
    /* Taille de police par défaut pour les paragraphes */
    line-height: 1.8;
    /* Espace entre les lignes des paragraphes */
    margin-bottom: 20px;
    /* Espacement en bas de chaque paragraphe */
    color: #333;
    /* Couleur du texte */
}

@media screen and (max-width: 480px) {

    p {
        font-size: 14px;
        /* Taille de police par défaut pour les paragraphes */
        line-height: 1.8;
        /* Espace entre les lignes des paragraphes */
        margin-bottom: 20px;
        /* Espacement en bas de chaque paragraphe */
        color: #333;
        /* Couleur du texte */
    }
}

/* Focus visible */
a:focus, button:focus {
    outline: 2px solid #FF6233;
    outline-offset: 4px;
}

/* Animations réduites */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none;
        transition: none;
    }
}


/* Ensure the header is fixed at the top without margin */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    /* Example header height */
    background-color: #333;
    z-index: 1000;
    /* Ensure it stays on top */
}

/* Create padding-top in the banner to make space for the header */
.video-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-top: 140px;
    /* Same height as the header to avoid overlap */
}

.video-banner video {
    width: 100%;
    height: 100%;
    /* Make the video fill the banner */
    object-fit: cover;
    /* Ensure the video covers the area proportionally */

}

.overlay {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.overlay1 {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    transform: translateY(-50%);
    color: white;
    text-align: left;
}

.overlay1 h1 {
    font-size: 50px;
    /* Taille de la police du titre */
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: white;
    text-align: left;
    text-transform: uppercase;
}

@media only screen and (max-width: 1300px) {
    .overlay1 h1 {
        font-size: 40px;
    }

}

@media only screen and (max-width: 768px) {
    .overlay1 h1 {
        font-size: 35px;
    }

}

@media screen and (max-width: 480px) {

    .overlay1 h1 {
        font-size: 25px;
    }
}



.overlay1 h1 span {
    color: #FF6233;

}

.overlay1 h1 #techno {
    color: #FFBD59;

}



.overlay button {
    width: 200px;
    height: 40px;
    font-size: 18px;
    color: #545454;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    position: absolute;
    /* Positionner le bouton de manière absolue */
    right: 4px;
    /* Aligner le bouton à droite */
    top: 50%;
    /* Centrer verticalement */
    transform: translateY(-50%);
    /* Ajuster pour que le centre vertical du bouton soit aligné */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}



.overlay button::before {
    content: '';
    /* The content to be placed inside the circle */
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 50%;
    /* Ensures the content area is a circle */
    animation: rotate-border 4s linear infinite;
    font-size: 16px;
    /* Adjust the size of the text if needed */
    color: white;
    z-index: 1;
    /* Keep the content above the border */
}

/* Rotate animation */
@keyframes rotate-border {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



/********************************** Modal styles ************************************************************/
.modal {
    z-index: 1200;
    /* Keep the modal on top */
    display: none;
    /* Initially hidden */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* Ensure the modal covers the full screen */
    background-color: rgba(0, 0, 0, 0.8);
    /* Dark background */
    overflow-y: auto;
    /* Enable scrolling if content overflows the modal height */
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.modal-content {
    position: relative;
    background-color: white;
    padding: 0;
    /* Remove padding to allow the video to take up full width */
    border-radius: 0;
    /* Remove border-radius to ensure the video is fullscreen */
    width: 90%;
    /* Make sure the content takes up the full width */
    height: 100%;
    /* Make sure the content takes up the full height */
    max-width: 100%;
    /* Remove max-width constraint */
    max-height: 100%;
    /* Remove max-height constraint */
    overflow: hidden;
    /* Ensure content stays within bounds */
}

.modal video {
    width: 100%;
    /* Ensure the video takes up the full width */
    height: 100%;
    /* Ensure the video takes up the full height */
    object-fit: cover;
    /* Ensure the video scales correctly and fills the container */
}

#close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FF6233;
    width: 80px;
    height: 60px;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {

    .video-banner {
        margin-top: 10px;
        /* Same height as the header to avoid overlap */
    }

    .overlay h1 {
        font-size: 24px;
    }

    .overlay button {
        font-size: 16px;
    }

    .modal video {
        max-width: 100%;
        /* Ensure the video resizes on smaller screens */
        max-height: 100vh;
        /* Make sure the video fits the full viewport height */
    }
}
@media only screen and (max-width: 448px) {


    .modal video {
        max-width: 100%;
        /* Ensure the video resizes on smaller screens */
        max-height: 100vh;
        /* Make sure the video fits the full viewport height */
    }
}

/* **************************************************************************************** content-section1 ******************************** */


.content-section {
    max-width: 1200px;
    /* Largeur maximale de la page */
    margin: 0 auto;
    /* Centre la page horizontalement */
    padding: 0 20px;
    /* Ajoute du padding pour un peu de marge sur les côtés */
}


/* **************************************************************************************** fin content-section1 ******************************** */



/* ****************************************************************************************  trapeze-section******************************** */


/* Styles de base pour la section */
.section-trapeze {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trapeze-section {
    padding: 20px;
    text-align: center;
    background-color: #363636;
}

.trapeze-section.section-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #FFBD59;
    text-transform: uppercase;
    font-family: Arial;
    text-align: center;
}

@media only screen and (max-width: 1300px) {
    .section-title {
        font-size: 28px;

    }

}

@media only screen and (max-width: 768px) {
    .section-title {
        font-size: 2px;

    }

}

@media (max-width:480px) {
    .trapeze-section .section-title {
        font-size: 22px;
    }
}
@media (max-width:480px) {
    .propcessu .section-title {
        font-size: 22px;
    }
}
@media (max-width:480px) {
    .technologies-section .section-title {
        font-size: 22px;
    }
}
@media (max-width:480px) {
    .stats-section .section-stats h1 {
        font-size: 22px;
    }
}






/* Conteneur des trapèzes */
.trapeze-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.large-trapeze {
    position: relative;
    width: 280px;
    height: 230px;
    background-color: #FF6233;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transform: rotate(90deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0px;
    cursor: pointer;
    overflow: hidden;
    /* Masquer les débordements */
    transition: transform 0.3s ease;
}

.large-trapeze:hover {
    transform: rotate(90deg) scale(1.05);
    /* Légère mise à l'échelle au survol */

}

/* Petit trapèze */
.trapeze {
    position: absolute;
    width: 250px;
    height: 200px;
    background-color: white;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

.trapeze span {
    position: absolute;
    transform: rotate(-90deg);
    color: #545454;
    font-size: 0.8rem;
    font-weight: bold;
    transition: color 0.3s ease;
    /* Ajout de transition sur la couleur */
}

/* Effet de hover pour afficher l'image */
.large-trapeze:hover .trapeze {
    background-color: transparent;
    /* Rendre transparent lors du survol */
}

/* Ajout de l'image trapézoïdale */
.large-trapeze img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); */
    opacity: 0;
    /* L'image est masquée par défaut */
    transition: opacity 0.3s ease;
    transform: rotate(360deg);
    /* Annule la rotation pour l'image */
}


/* Afficher l'image lors du survol */
.large-trapeze:hover img {
    opacity: 1;
}

/* Responsivité */
@media (max-width: 768px) {
    .trapeze-container {
        flex-direction: column;
        align-items: center;
    }

    .large-trapeze {
        width: 250px;
        height: 200px;
    }

    .trapeze {
        width: 200px;
        height: 150px;
        font-size: 1rem;
    }
}


/* ****************************************************************************PROCESSUS ********************************* */


/******************************************* Section Processus de Travail *******************************************************/
.section-projet {
    background-color: #F6F6F6;
    margin-bottom: 150px;

}

.project-steps {
    max-width: 1200px;
    /* Largeur maximale de la page */
    margin: 0 auto;
    /* Centre la page horizontalement */
    padding: 40px;
    text-align: center;
    margin-bottom: 100px;
}

.section-title {
    font-size: 2.5rem;
    color: #FFBD59;
    text-transform: uppercase;
    text-align: center;
}


.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 8%;
    height: 100px;
    background-color: #ddd;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.step span {
    font-size: 12px;
}

.step-icon i {
    color: #FF6233;
}

.step-icon {
    width: 30px;
    height: 30px;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step.active {
    background-color: #FF6233;
    color: white;
}

.step.active .step-icon i {
    background-color: #FF6233;
    color: white;
    /* Couleur de l'icône active */
}

.arrow {
    width: 80px;
    height: 80px;
    margin-left: 5px;
}

.arrow-right {
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 80px solid #FF6233;
}

.step-description {
    margin-top: 0px;
    padding: 20px;
    background-color: #FF6233;
    color: white;
    display: none;
    text-align: left;
    width: 40%;
    float: left;
    margin-bottom: 40px;
}
/* Style de la description */




/* Aligner la description à droite pour les processus 7 à 12 */
#step-description.right-align {
    float: right;
    text-align: left;
    margin-right: 100px;
}

@media (max-width: 480px) {
    #step-description.right-align {
        float: right;
        text-align: left;
        margin-right: 40px;
    }

    .project-steps {
        margin-bottom: 10px;
    }
}


.step-description,
.step-description * {
    color: white !important;
    font-size: 16px;
}

/* Centrage pour les tablettes et téléphones (écrans jusqu'à 1024px) */
@media (max-width: 1024px) {
    .steps-container {
        flex-wrap: wrap;
        /* Permet aux éléments de se répartir sur plusieurs lignes */
        justify-content: center;
        /* Centre horizontalement les éléments */
        align-items: center;
        /* Centre verticalement les éléments */
    }

    .step {
        width: 100%;
        /* Pour qu'ils prennent la largeur disponible */
        max-width: 48%;
        /* Limiter à 48% pour avoir 2 éléments par ligne */
        margin-bottom: 10px;
    }

    .arrow {
        display: none;
        /* Masquer la flèche sur les petits écrans si nécessaire */
    }
}

/* Centrage pour les téléphones (écrans jusqu'à 768px) */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        /* Afficher les éléments en colonne */
        align-items: center;
        /* Centrer les éléments */
    }

    .step {
        width: 100%;
        /* Chaque étape occupe toute la largeur sur les petits écrans */
        max-width: 100%;
        /* Supprime les marges pour les très petits écrans */
    }

    .step-description {
        width: 90%;
    }
}




/******************************************* FIN Section Processus de Travail *******************************************************/

/* *******************************************************technologies-section******************************************** */
.section-technologies {
    max-width: 1200px;
    /* Largeur maximale de la page */
    margin: 0 auto;
    /* Centre la page horizontalement */
    padding: 0 20px;
    /* Ajoute du padding pour un peu de marge sur les côtés */

}

.technologies-section {
    padding: 50px 20px;
    background-color: #fdfdfd;
    text-align: center;
    margin-top: 150px;
}

.section-title {
    font-size: 2.5rem;
    color: #FFBD59;
    margin-bottom: 50px;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 80px;
    justify-items: center;
    align-items: center;
    margin: 20px
}

#technologies-grid-2 {
    margin-left: 100px;
}

#technologies-grid-3 {
    margin-left: 100px;
}

.technology-item {
    padding: 10px;
    border: 4px solid #FF6233;
    border-radius: 50px;
    font-size: 1.5rem;
    color: #545454;
    width: 100%;
    height: 100%;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow:
        inset 0 0 15px rgba(0, 0, 0, 0.2),
        /* Ombre interne */
        0 0 20px rgba(0, 0, 0, 0.3);
    /* Ombre externe */
}

.technology-item:hover {
    background-color: #d4d4d4;
}



/* Animation pour la première ligne */
.technologies-grid:nth-of-type(1) .technology-item {
    animation: moveRight 5s linear infinite;
}

/* Animation pour la deuxième ligne */
#technologies-grid-2 .technology-item {
    animation: moveLeft 5s linear infinite;
}

/* Animation pour la troisième ligne */
.technologies-grid:nth-of-type(3) .technology-item {
    animation: moveRight 5s linear infinite;
}

/* Animation pour la quatrième ligne */
#technologies-grid-3 .technology-item {
    animation: moveLeft 5s linear infinite;
}

/* Déplacement vers la droite */
@keyframes moveRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Déplacement vers la gauche */
@keyframes moveLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}



/* Responsive */
@media screen and (max-width: 1200px) {
    .technologies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .technologies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .technologies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; /* Réduction de l'espacement entre les items */
    }
    .technology-item {
        font-size: 0.9rem;
        width: 60%;
        height: 70%;
        text-align: center;
        padding-top: 0;
       
    }
}

@media screen and (max-width: 576px) {

    .technologies-grid {
        grid-template-columns: 1fr;
        gap: 5px; /* Réduction de l'espacement entre les items */
    }

    .technology-item {
        font-size: 0.5rem;
        width: 50%;
        height: 50%;
        text-align: center;
        padding-top: 0;
    }

}


@media screen and (max-width: 480px) {

    .technologies-section {
        padding: 50px 20px;
        background-color: #fdfdfd;
        text-align: center;
        margin-top: 0px;
    }
}


/*********************************************************** Galeries**********************************************************************/
.section-galeries {
    background-color: #f6f6f6;
    padding-top: 100px;
    padding-bottom: 100px;
}


.galeries {
    display: flex;
    flex-direction: row;
    /* Aligne les éléments en ligne sur les écrans plus larges */
    padding: 40px 0px;
    justify-content: center;
    /* Centrer les éléments horizontalement */
    align-items: center;
    /* Centrer les éléments verticalement */
    max-width: 1200px;
    /* Largeur maximale de la page */
    margin: 0 auto;
    /* Centre la page horizontalement */
    padding: 0 20px;
    /* Ajoute du padding pour un peu de marge sur les côtés */
}

/* Pour les écrans plus petits */
@media (max-width: 768px) {
    .galeries {
        flex-direction: column;
        /* Passe les éléments en colonne sur les petits écrans */
        padding: 20px 0px;
        /* Réduit les marges pour plus de lisibilité */
    }
}


/* Base hexagon shape */
.hexagon-1 {
    margin-right: 0px;

}

.hexagon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

}

/* Base hexagon shape with sharp top and bottom */
.hexagon {
    position: relative;
    width: 200px;
    height: 223px;
    background-color: #FF6233;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);

}

/* Effect when hovering over hexagon */
.hexagon:hover {
    transform: scale(1.05);
}

/* Large hexagons with colored borders */
.large-hexagon {
    width: 180px;
    height: 208px;
    background-color: #FF6F00;
    /* Outer border color */
    padding: 10px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.large-hexagon .hexagon-inner {
    width: 100%;
    height: 100%;
    background-color: #FFA726;
    /* Inner border color */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.large-hexagon .hexagon-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Responsive behavior */
@media (max-width: 768px) {
    .hexagon-grid {
        flex-direction: column;
        align-items: center;
    }
}

/****************************************************** Responsive behavior *********************************************/
.galerie-paragraphe {
    margin-left: 10px;
    padding: 0px;
}

.galerie-paragraphe h1 {
    padding: 0px;
    font-size: 5.5rem;
    color: #E63900; /* Couleur légèrement plus foncée pour plus de contraste */
    text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.7); /* Augmente la profondeur et améliore la lisibilité */
    line-height: 1.2; /* Améliore la lisibilité pour les grandes tailles */
    font-weight: bold; /* Renforce la visibilité */

}

.galerie-paragraphe p {
    padding: 0px;
    font-size: 1.5rem;
    color: #545454;
}

/* Responsivité pour les tablettes (écrans entre 768px et 1024px) */
@media (max-width: 1024px) {
    .galerie-paragraphe {
        margin-left: 100px;
        /* Réduire la marge pour les écrans moyens */
    }

    .galerie-paragraphe h1 {
        font-size: 2.5rem;
        /* Réduire la taille du titre */
    }

    .galerie-paragraphe p {
        font-size: 1.25rem;
        /* Réduire la taille du paragraphe */
    }
}

/* Responsivité pour les petits écrans (écrans entre 480px et 767px) */
@media (max-width: 767px) {
    .galerie-paragraphe {
        margin-left: 50px;
        /* Réduire encore plus la marge pour les petits écrans */
    }

    .galerie-paragraphe h1 {
        font-size: 2rem;
        /* Réduire davantage la taille du titre */
    }

    .galerie-paragraphe p {
        font-size: 1rem;
        /* Réduire la taille du paragraphe */
    }
}

/* Responsivité pour les très petits écrans (inférieurs à 480px) */
@media (max-width: 480px) {
    .galerie-paragraphe {
        margin-left: 20px;
        /* Réduire encore la marge pour les très petits écrans */
    }

    .galerie-paragraphe h1 {
        font-size: 1.5rem;
        /* Adapter la taille du titre pour les mobiles */
    }

    .galerie-paragraphe p {
        font-size: 0.875rem;
        /* Réduire la taille du paragraphe pour les mobiles */
    }
}

.hexagon-wrapper {
    position: relative;
    width: 230px;
    height: 250px;


}

/* Animation spécifique pour les images 04, 05, 09, et 10 */
.hexagon-wrapper:nth-child(1) img[src*="04.png"],
.hexagon-wrapper:nth-child(2) img[src*="05.png"],
.hexagon-wrapper:nth-child(1) img[src*="09.png"],
.hexagon-wrapper:nth-child(2) img[src*="10.png"] {
    opacity: 1;
    transform: translateX(0); /* L'image arrive à sa position normale */
    transition-delay: 0.3s; /* Légère latence pour rendre l'animation plus fluide */
}

/* Animation d'entrée */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px); /* Départ de droite */
    }
    100% {
        opacity: 1;
        transform: translateX(0); /* Arrivée à la position normale */
    }
}

/* Ajouter un effet de survol pour réactiver l'animation (optionnel) */
.hexagon-wrapper:hover img {
    animation: slideInRight 1s ease-in-out forwards;
}

/* ********************************************************************** stats ******************************************************** */



.stats-section {
    margin-top: 20px;
    background-color: #363636;
}

.section-stats {
    max-width: 1200px;
    /* Largeur maximale de la page */
    margin: 0 auto;
    /* Centre la page horizontalement */
    padding: 0 20px;
    /* Ajoute du padding pour un peu de marge sur les côtés */
}

.stats-title {
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
}

.stats-title h1 {
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
    font-family: Arial;

}

/* Title styling */
.stats-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Container for all stat items */
.stats-items {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    /* Align items to the top of the container */
    gap: 20px;
    /* Space between each stat-item */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    margin-top: 20px;
}

/* Individual stat item styling */
/* Container for the icon and text */
.stat-item {
    display: flex;
    /* Flexbox to align icon and text side by side */
    flex-direction: row;
    /* Align elements in a row */
    align-items: center;
    /* Vertically align the items */
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
    gap: 20px;
    /* Space between icon and text */
    width: fit-content;
    /* Automatically adjust width to fit content */
    margin-bottom: 40px;
}

/* Icon styling */
.stat-icon {
    width: 70px;
    height: 70px;
    background-color: #FF6233;
    /* Red background for icons */
    border-radius: 20%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon img {
    width: 40px;
    height: 40px;
}

.stat-icon i {
    color: #ffffff;
    /* Couleur blanche pour les icônes */
    font-size: 2rem;
    /* Taille des icônes */
}

/* Text styling */
.stat-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0px;
}

/* Adjusting the spacing between the number and label */
.stat-text p {
    margin: 5px 0;
    /* Reduce the vertical margin between the paragraphs */
    line-height: 1.2;
    /* Adjust line height for tighter spacing */

}

/* Text styling for the number and label */
.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}


.stat-label {
    font-size: 1rem;
    color: white;
}


/* Responsive Design */
@media (max-width: 768px) {
    .stat-item {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .stats-items {
        flex-direction: column;
        align-items: center;
        /* Align items in a single column for smaller screens */
    }

    .stat-item {
        width: 100%;
        /* Full width on smaller screens */
        margin: 10px 0;
    }
}


/* ************************************* testimonials ************************************* */
/* Section des témoignages */
.testimonials-section {
    text-align: center;
    padding: 50px;
    background-color: #F6F6F6;
    position: relative;
}

/* Titre de la section */
.testimonials-section h1 {
    font-size: 2rem;
    color: #FF6233;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Flèches de navigation spécifiques à cette section */
.testimonial-arrow {
    font-size: 2rem;
    color: #FF6233;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.testimonial-arrow:hover {
    transform: scale(1.2);
}

/* Position de la flèche vers le bas */
.testimonial-arrow-down {
    position: absolute;
    left: 200px;
    /* Ajuster la distance par rapport à la section */
    top: 50%;
    transform: translateY(-50%);
}

/* Position de la flèche vers le haut */
.testimonial-arrow-up {
    position: absolute;
    right: 200px;
    /* Ajuster la distance par rapport à la section */
    top: 50%;
    transform: translateY(-50%);
}





/* Conteneur du témoignage */
.testimonial-container {
    background-color: #d9d9d9;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    margin: 0 auto;
    position: relative;
    /* Ajouter pour que les flèches soient positionnées par rapport à cette section */

}


@media (max-width: 768px) {
    .testimonial-arrow-down {
        left: -20px;
        /* Ajuster en fonction de la largeur de l'écran */
    }

    .testimonial-arrow-up {
        right: -20px;
        /* Ajuster en fonction de la largeur de l'écran */
    }
}


/* Contenu du témoignage */
.testimonial-content {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
}

/* Photo du client */
.client-photo img {
    width: 200px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
}

/* Informations du client */
.client-details {
    text-align: left;
    max-width: 60%;
}

.client-details h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.client-details .testimonial-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

/* Bouton pour voir plus de détails */
.btn-more {
    padding: 10px 20px;
    background-color: #FF6233;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 150px;
    /* Fixer une largeur spécifique */
    text-align: center;
    /* Pour centrer le texte à l'intérieur du bouton */
}

.btn-more:hover {
    background-color: #D14524;
}

/* Responsivité */
@media (max-width: 768px) {
    .testimonial-container {
        width: 80%;
    }

    .client-photo img {
        width: 150px;
        height: 200px;
    }

    .testimonial-content {
        flex-direction: column;
    }

    .client-details {
        text-align: center;
        max-width: 100%;
    }

    .btn-more {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .testimonial-arrow {
        font-size: 1.5rem;
    }

    .client-photo img {
        width: 100px;
        height: 150px;
    }

    .testimonial-container {
        width: 90%;
    }
}


/************************** Wrapper to center the entire section vertically and horizontally ***********************************************/
.section-contact {
    background-color: #f0f0f0;
    align-items: center;
    display: flex;
    justify-content: center;

}

/* Wrapper to center the entire section vertically and horizontally */
.contact-section-wrapper {
    max-width: 1200px;
    /* Largeur maximale de la page */
    min-height: 40vh;
    box-sizing: border-box;
    margin-top: 70px;
    margin-bottom: 20px;

}

/* Contact Section Layout */
.contact-section {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    flex-direction: row;
}

/* Left Column */
.left-column {
    background-color: #FFBD59;
    padding: 60px 30px;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-column h1 {
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    color: #15171C;
}

/* Right Column (Form) */
.right-column {
    width: 60%;
    padding: 40px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/********************************************************* Form Styling **********************************************************************/
.contact-form {
    width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    /* Espace à gauche pour l'icône */
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Positionnement des icônes dans les inputs */
.form-group i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #15171C;
    /* Couleur rouge pour les icônes */
    font-size: 1.2rem;
}

/* Ajouter un effet focus pour améliorer l'UX */
.form-group input:focus {
    outline: none;
    border-color: #15171C;
}

.form-group input,
.form-group textarea {
    width: 90%;
    padding: 15px 15px 15px 40px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group .icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #FF6233;
}

.checkbox-group {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-group input {
    margin-right: 20px;
}

.form-group-politique {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-group-politique input[type="checkbox"] {
    margin: 0;
    /* Supprime toutes les marges du checkbox */
}

.form-group-politique label {
    margin-left: 5px;
    /* Ajoute un léger espace (5px) entre le checkbox et le label */
    color: #942300;
}


.contact-form button {
    background-color: #F6F6F6;
    color: #545454;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #FF6233;
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        width: 90%;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    .left-column {
        padding: 40px 20px;
    }

    .left-column h1 {
        font-size: 1.5rem;
    }

    .right-column {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {


    .contact-section-wrapper {
        margin-left: 40px;

    }

    .form-group input,
    .form-group textarea {
        padding-left: 35px;
    }

    .form-group .icon {
        font-size: 1rem;
        left: 8px;
    }

    button {
        font-size: 0.9rem;
    }
}

@keyframes rotate-in-diag-1 {
    0% {
        transform: rotate(-45deg);
        opacity: 0;
    }

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

/* Apply the animation on hover */
.hexagon:hover {
    animation: rotate-in-diag-1 0.9s ease forwards;
}

.hexagon:hover img {
    transform: scale(1.1);
    /* Slight zoom effect on hover */
}

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