/* Importation des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;700&family=Poppins:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Appliquer Mulish pour tout le texte par défaut */
body {
    font-family: 'Mulish', sans-serif;
    line-height: 1.6;
}

/* Appliquer Poppins pour les titres */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

header {
    background-color: #fff;
    color: #fff;
    padding: 10px 20px;
}

/* Global navigation styling */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.logo img {
    height: 50px;
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
    margin: 0 15px;
}

.menu li a {
    color: #162061;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    font-weight: bolder;
}

.menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background-color: #ff9027;
    width: 0;
    transition: width 0.3s ease;
}

.menu li a:hover::after,
.menu li a.active::after {
    width: 100%;
}

.cta-nav {
    background-color: #162061;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.services-menu .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.services-menu:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 8px 20px;
}

.dropdown li a {
    color: #162061;
    text-decoration: none;
}

/* Burger menu styling */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #162061;
    border-radius: 2px;
}

.cta-devis {
    background-color: #fff;
    color: #162061;
    border: solid 1px #162061;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.cta-devis:hover {
    background-color: #162061;
    color: #fff;
    /* Couleur d'effet au survol */
}

.hero {
    background: linear-gradient(rgba(22, 32, 97, 0.7), rgba(22, 32, 97, 0.7)),
        url('./images/diogene6.jpg') no-repeat center center/cover;
    text-align: center;
    height: 700px;
    /* Hauteur de 700px */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Positionne les éléments à partir du haut */
    align-items: center;
    padding-top: 137px;
    /* Le H1 commence à Y:137 */
}

.intro-text {
    max-width: 787px;
    /* Largeur de 787px pour l'intro-text */
    margin: 0 auto;
    /* Pour centrer */
}

.intro-text h1 {
    margin-bottom: 75px;
    color: #ff9027;
    font-size: 3rem;
}

.intro-text p {
    text-align: left;
    color: white;
    margin-bottom: 75px;
    font-size: 1rem;
}

.btn {
    background-color: #ff9027;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 23%;
}

.rating {
    width: 6%;
    height: 6%;
}

/* Section About */
.about {
    background-color: #fff;
    padding: 10% 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: solid 1px white;
    border-bottom: solid 1px white;
    margin-bottom: -20px;
    /* Ajustez cette valeur selon vos besoins */
}

/* Container */
.about .container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Colonnes */
.about-columns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Colonne gauche (image) */
.about-image {
    flex: 1;
    max-width: 24%;
    margin-right: 13%;
}

.about-image img {
    max-width: 40%;
    height: auto;
    margin-left: 75%;
}

/* Colonne droite (texte) */
.about-text {
    flex: 1;
    max-width: 60%;
    color: white;
}

.about-text h2 {
    color: #162061;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: black;
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Section Services */
.services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px 20px;
    background-color: #eee;
}

.services-section h2 {
    color: #162061;
}

.service-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    margin-bottom: 8%;
}

.service-card h4 {
    margin-bottom: 10px;
    color: #162061;
}


.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colonnes */
    gap: 20px;
    /* Espace entre les cartes */
    padding: 40px;
    max-width: 1440px;
    margin: 0 auto;
    margin-top: -7%;
}



.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card h3 {
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    /* Appliquer Poppins pour les titres */
    font-size: 1.25rem;
    color: #162061;
}

.testimonial-content {
    display: flex;
    align-items: center;
}

.testimonial-content img {
    border-radius: 50%;
    width: 80px;
    /* Taille de l'image */
    height: 80px;
    object-fit: cover;
    margin-right: 20px;
}

.testimonial-text h4 {
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.testimonial-text p {
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}



.services-section {
    padding: 40px 20px;
    max-width: 1440px;
    margin: 3% auto 0 auto;
    /* Ajoute une marge en haut pour espacer la section */
}

.services-header {
    text-align: center;
    margin-bottom: 30px;
    margin-bottom: 5%;
}

.services-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.services-header h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Trois colonnes */
    gap: 20px;
    /* Espace entre les cartes */
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card img {
    width: 100%;
    border-radius: 8px 8px 0 0;
    /* Bordures arrondies pour l'image en haut */
    object-fit: cover;
}

.service-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    margin: 15px 0 10px;
}

.service-card p {
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
}

.btn-see-more {
    background-color: #162061;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    align-self: center;
    /* Centrer le bouton dans la carte */
}

.btn-see-more:hover {
    background-color: #e58020;
}



.certifications-section {
    padding: 40px 20px;
    max-width: 1440px;
    margin: 3% auto 0 auto;
    /* Ajoute une marge en haut pour espacer la section */
}

.certifications-header {
    text-align: center;
    margin-bottom: 30px;
    margin-bottom: 5%;
}

.certifications-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #162061;
}

.certifications-header h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #666;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Trois colonnes */
    gap: 20px;
}

.certification-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    align-items: center;
    /* Centrer les logos */
    width: 90%;
    margin-bottom: 8%;
}

.certification-card img {
    max-width: 60px;
    /* Ajuste la taille maximale des logos */
    margin-bottom: 15px;
    /* Espace sous le logo */
}

.certification-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
    text-align: center;
    /* Centrer les titres */
    color: #162061;
}

.certification-card p {
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
    text-align: center;
    /* Centrer le texte */
}



.working-with-section {
    padding: 40px 20px;
    max-width: 1440px;
    margin: 3% auto 0 auto;
    /* Ajoute une marge en haut pour espacer la section */
    margin-bottom: 5%;
    text-align: center;
    /* Centre le texte */
}

.working-with-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #162061;
}

.working-with-header p {
    font-family: 'Mulish', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
    max-width: 800px;
    /* Largeur maximale pour le texte */
    margin-left: auto;
    margin-right: auto;
}

.logos-grid {
    display: flex;
    justify-content: space-between;
    /* Répartit les logos en une ligne */
    align-items: center;
    gap: 15px;
    /* Espacement entre les logos */
    flex-wrap: wrap;
    /* Permet aux logos de passer sur une nouvelle ligne si nécessaire sur petits écrans */
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.logos-grid img {
    max-width: 100px;
    /* Taille maximale des logos */
    max-height: 100px;
    object-fit: contain;
    /* Ajuste les logos sans déformation */
    margin-left: auto;
    margin-right: auto;
    /* Centre les logos si leur taille est plus petite */
}



/* Styling général du footer */
.site-footer {
    background-color: #162061;
    color: white;
    padding: 40px 20px;
    margin-top: 0;
    /* Enlève toute marge en haut */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: 30px;
    position: relative;
    /* Pour le divider centré */
}

.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    max-width: 100px;
    /* Ajuster la taille du logo */
}

.footer-titles {
    display: flex;
    flex-direction: column;
}

.footer-small-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-large-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 0.9rem;
    color: #d0d0d0;
    width: 40%;
}

/* Divider centrale prenant la hauteur totale */
.footer-divider {
    width: 1px;
    background-color: white;
    margin: 20px 30px;
    position: absolute;
    top: 20px;
    bottom: 20px;
    /* Permet de laisser des marges en haut et en bas */
    left: 50%;
    /* Centrer */
    transform: translateX(-50%);
}

/* Footer droite : Deux colonnes (sitemap + réseaux sociaux) */
.footer-columns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
}

.footer-sitemap {
    margin-left: -85%;
    /* Ajuste la valeur pour la déplacer plus à gauche */
}


.footer-sitemap ul {
    list-style: none;
    padding: 0;
}

.footer-sitemap ul li {
    margin-bottom: 10px;
}

.footer-sitemap ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.footer-sitemap ul li a:hover {
    text-decoration: underline;
}

/* Réseaux sociaux */
.footer-social {
    text-align: left;

}

.footer-social p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 30px;
}

.social-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icons img {
    width: 25px;
    height: 25px;
}

/* Bas du footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #d0d0d0;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.hero2 {
    width: 100%;
    height: 500px;
    /* Ajuste selon la hauteur souhaitée pour le hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}

.intro2-text {
    max-width: 787px;
    /* Largeur de 787px pour l'intro-text */
    margin: 0 auto;
    /* Pour centrer */
}

.intro2-text h1 {
    margin-bottom: 45px;
    color: #ff9027;
    font-size: 3rem;
}

.intro2-text p {
    text-align: left;
    color: white;
    margin-bottom: 45px;
}

/* Styling de la section CTA */
.cta-section {
    background-color: #FF9027;
    /* Couleur de fond */
    color: black;
    width: 100%;
    /* Prend toute la largeur de la page */
    height: 240px;
    /* Hauteur définie dans Figma */
    display: flex;
    align-items: center;
    margin-bottom: 0;
    /* Assure qu'il n'y a pas de marge en bas */
}

.cta-content {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    /* Ajoute un padding pour espacer les bords */
}

/* Texte à gauche */
.cta-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1rem;
}

/* Ajustement de la hauteur des boutons */
.cta-button {
    padding: 5px 15px;
    /* Diminue le padding pour réduire la hauteur */
    font-size: 1.3rem;
}

/* Centrage vertical des boutons avec le texte */
.cta-buttons {
    display: flex;
    align-items: center;
    /* Aligne verticalement les boutons */
    gap: 15px;
}

/* Bouton "Devis" */
.cta-devis {
    background-color: black;
    color: white;
}



/* Bouton "Contactez-nous" */
.cta-contact {
    background-color: transparent;
    color: black;
    border: 2px solid black;
}

.about-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background-color: #f9f9f9;
    margin-top: 5%;
    margin-bottom: 5%;
    position: relative;
    /* Nécessaire pour positionner les barres en bas */
}

.about-content {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Barre bleue en bas */
.about-section::before {
    content: "";
    position: absolute;
    bottom: -5%;
    /* Position de la barre bleue */
    left: 50%;
    /* Centre horizontalement */
    transform: translateX(-50%);
    /* Ajuste pour centrer parfaitement */
    width: 63%;
    /* Largeur de la barre bleue */
    height: 2%;
    /* Hauteur de la barre, ajustée à 2% pour éviter trop de hauteur */
    background-color: #162061;
    /* Couleur bleue */
}

/* Barre orange en bas, plus courte */
.about-section::after {
    content: "";
    position: absolute;
    bottom: -3%;
    /* Position de la barre orange */
    left: 50%;
    /* Centre horizontalement */
    transform: translateX(-50%);
    /* Ajuste pour centrer parfaitement */
    width: 63%;
    /* Largeur de la barre orange */
    height: 2%;
    /* Hauteur de la barre, ajustée à 2% pour éviter trop de hauteur */
    background-color: #ff9027;
    /* Couleur orange */
}



/* Nouveau conteneur d'image avec about-photo */
.about-photo {
    width: 50%;
    /* Largeur ajustée pour la carte */
    height: auto;
    /* Hauteur automatique pour garder les proportions */
}

.about-photo img {
    width: 100%;
    height: auto;
    /* Laisse l'image s'ajuster */
    object-fit: cover;
    border-radius: 12px;
    /* Coins arrondis pour la partie supérieure gauche */
    display: block;

}

/* Conteneur de texte */
.about-text {
    width: 50%;
    /* Largeur ajustée pour la carte */
    padding: 20px;
    /* Espacement intérieur */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.about-text h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #666;
    font-family: 'Mulish', sans-serif;
}

/* Optionnel : Ajoutez un style pour le texte de description */
.description-text {
    margin-top: 10px;
    /* Espace au-dessus de la description */
    color: #333;
    /* Couleur de texte pour la description */
}


.intro-text {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.description-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.icon {
    width: 3%;
    height: 3%;
    margin-right: 3%;
}

.iconcontact {
    width: 3%;
    height: 3%;
    margin-right: 3%;
    top: 2%;
}

/* Section contact avec image d'arrière-plan */
.contact-section {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
        url('images/contacformbg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
}

.contact-content {
    max-width: 900px;
    /* Largeur maximale du conteneur */
    width: 100%;
    display: flex;
    align-items: center;
    /* Centre le formulaire et l'image verticalement */
    justify-content: center;
    /* Centre le tout horizontalement */
    gap: 20px;
    position: relative;
    z-index: 1;
    /* Assure que le contenu est au-dessus de l'image de fond */
}

.contact-form {
    width: 60%;
    /* Largeur du formulaire */
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

.contact-content img {
    width: 50%;
    /* Largeur de l'image en fonction du conteneur parent */
    height: auto;
    margin-top: -19.6%;
    margin-right: -30%;
    z-index: 1;
}

.contact-form label {
    font-size: 1rem;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
    height: 100px;
}

.contact-form button {
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Image de fond PNG */
.background-image {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
    /* Ajuste la largeur selon les besoins */
    z-index: 1;
    /* Derrière le formulaire */
    opacity: 0.8;
}

.map-section {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Centre la carte horizontalement */
    padding: 40px 0;
    background-color: #f0f0f0;
    /* Couleur de fond optionnelle */
}

.map-container {
    width: 945px;
    /* Largeur fixe de la carte */
    height: 427px;
    /* Hauteur fixe de la carte */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Ombre pour effet de relief */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.specialized-intervention-section {
    padding: 40px 20px;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.specialized-intervention-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: #162061;
}

.intervention-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: left;
    max-width: 900px;
    /* Largeur maximale pour le texte */
    margin: 0 auto 40px auto;
    /* Centrer et espacer avec le bloc de logos */
    font-family: 'Mulish', sans-serif;
}

.logo-row {
    display: flex;
    justify-content: center;
    gap: 75px;
    /* Espace entre les logos */
    flex-wrap: wrap;
    /* Les logos passent à la ligne si la largeur de l'écran est petite */
}

.logo-row img {
    width: 75px;
    /* Largeur des logos */
    height: auto;
    object-fit: contain;
}

.protocol-section {
    padding: 40px 20px;
    max-width: 1440px;
    margin: 0 auto;
    text-align: left;
    /* Aligner le texte à gauche */
}

.protocol-header {
    display: flex;
    flex-direction: column;
    /* Aligner le h2 et le p en colonne */
    gap: 5px;
    /* Espace entre le h2 et le p */
}

.protocol-header h2 {
    font-size: 1.8rem;
    color: white;
    /* Texte en blanc */
    background-color: #162061;
    /* Fond bleu */
    padding: 10px 20px;
    margin: 0;
    /* Supprime les marges pour rapprocher les éléments */
    margin-left: 21%;
    /* Ajoute une marge à gauche */
    display: inline-block;
    width: fit-content;
}



.protocol-header p {
    font-size: 1.2rem;
    color: black;
    /* Texte en noir */
    background-color: #ff9027;
    /* Fond orange */
    padding: 10px 15px;
    margin: 0;
    margin-left: 21%;
    /* Ajoute une marge à gauche */
    display: inline-block;
    width: fit-content;
}


/* Conteneur des cartes */
.protocol-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.protocol-card {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    margin-right: 20px;
}

.step-number .dot {
    width: 10px;
    height: 10px;
    background-color: #FF9027;
    /* Point coloré */
    border-radius: 50%;
    margin-left: 8px;
}

.step-content {
    text-align: left;
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
    color: #162061;
}

.step-content p {
    font-size: 1rem;
    color: #333;
    font-family: 'Mulish', sans-serif;
}

.step-icon {
    width: 40px;
    height: 40px;
    margin-left: 20px;
}

/* Titre et sous-titre de la section Protocole */
.protocol-section {
    padding: 40px 20px;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

/* CTA bouton PDF */
.cta-download,
.cta-download2 {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    box-sizing: border-box; /* Inclut la bordure dans la taille totale */
}

.cta-download {
    background-color: transparent; /* Fond transparent */
    color: #162061; /* Texte en bleu */
    border: 2px solid #162061; /* Bordure bleue */
}

.cta-download2 {
    background-color: #162061; /* Fond bleu */
    color: white; /* Texte blanc */
    border: none; /* Pas de bordure */
}

/* Carrousel d'images */
.carousel {
    width: 80%;
    /* Même largeur que les cartes */
    max-width: 800px;
    background-color: black;
    padding: 15px;
    margin: 40px auto 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-btn {
    color: white;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.carousel-images {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.carousel-images img {
    width: 150px;
    height: 100px;
    object-fit: cover;
}

.swiper {
    width: 57.5%;
    height: 100%;
    margin-top: 2%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    bottom: 10px;
    /* Ajustez la position si nécessaire */
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    /* Largeur de la boule */
    height: 12px;
    /* Hauteur de la boule */
    margin: 0 4px;
    /* Espace entre les boules */
    background-color: white;
    /* Couleur par défaut en blanc semi-transparent */
    border-radius: 50%;
    /* Pour obtenir une forme ronde */
    transition: background-color 0.3s;
    /* Pour une transition douce */
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #FF9027
        /* Couleur de la boule active */
}

.tracking-in-contract {
    -webkit-animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-contract {
    0% {
        letter-spacing: 1em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        letter-spacing: normal;
        opacity: 1;
    }
}

@keyframes tracking-in-contract {
    0% {
        letter-spacing: 1em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        letter-spacing: normal;
        opacity: 1;
    }
}






.services-header h2, 
.certifications-header h2,
.working-with-header h2,
.services-header h3,
.certifications-header h3,
.working-with-header h3 {
    margin: 20px; /* Marge autour des titres */
    padding: 10px; /* Padding pour le confort */
    transition: all 0.5s ease; /* Animation douce lors du changement de styles */
    display: inline-block; /* Pour que le fond soit juste autour du texte */
}

/* Couleur de fond pour H2 après l'animation */
[data-aos="fade-right"].aos-animate {
    background-color: #162061; /* Fond bleu */
    color: white; /* Texte blanc */
    padding: 15px; /* Ajout de padding pour le confort */
    border-radius: 5px; /* Arrondi des coins */
}

/* Couleur de fond pour H3 après l'animation */
[data-aos="fade-left"].aos-animate {
    color: black; /* Texte noir */
    padding: 15px; /* Ajout de padding pour le confort */
    border-radius: 5px; /* Arrondi des coins */
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cookie-content {
    max-width: 500px;
    text-align: center;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
}

.cookie-buttons button,
.cookie-preferences button {
    padding: 10px 15px;
    border: none;
    background-color: #ff9027;
    color: #fff;
    cursor: pointer;
    margin: 5px;
    border-radius: 5px;
}

.cookie-preferences {
    margin-top: 15px;
}

.cookie-preferences h3 {
    margin-bottom: 10px;
}

.preferences-options {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.preferences-options label {
    display: inline-block;
    margin: 0;
}

/* Responsive: Adapter le footer pour les petits écrans */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
    }

    .burger {
        display: flex;
    }
    .services {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
        /* Une seule colonne sur mobile */
    }

    .service-card {
        margin-bottom: 20px;
    }
    .certifications-grid {
        grid-template-columns: 1fr;
        margin-left: 10%;
        /* Une seule colonne sur mobile */
    }

    .certification-card {
        margin-bottom: 20px;
    }
    .logos-grid {
        justify-content: center;
        /* Centre les logos sur les petits écrans */
        gap: 20px;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left,
    .footer-right {
        justify-content: center;
    }

    .footer-divider {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .hero .intro-text p{
        font-size: 1rem;
    }
    .hero2 .intro2-text p{
        font-size: 1rem;
    }
    .footer-large-title{
        font-size: 1rem;
    }
    .footer-text{
        width: 100%;
    }
    .testimonials {
        grid-template-columns: repeat(2, 1fr); /* Passe à 2 colonnes */
    }
}


@media (max-width: 480px) {

    .testimonials {
        grid-template-columns: 1fr; /* Passe à 1 colonne */
    }
    .logos-grid {
        flex-wrap: wrap;
        /* Empile les logos si nécessaire */
        gap: 15px;
    }
    .hero {
        height: auto; /* Ajuste automatiquement la hauteur en fonction du contenu */
        padding-top: 60px; /* Réduit le padding supérieur */
        padding-bottom: 30px;
    }

    .intro-text {
        max-width: 90%; /* Réduit la largeur pour mieux s'adapter aux petits écrans */
        padding: 0 15px; /* Ajoute un padding pour éviter que le texte touche les bords */
    }

    .intro-text h1 {
        font-size: 2rem; /* Réduit la taille du H1 */
        margin-bottom: 20px; /* Réduit l'espace entre le H1 et le texte */
    }

    .intro-text p {
        font-size: 1rem; /* Ajuste la taille de la police pour le texte */
        text-align: justify; /* Justifie le texte pour une lecture plus agréable */
        margin-bottom: 20px; /* Réduit l'espace entre le texte et le bouton */
    }

    .btn {
        padding: 10px 20px; /* Ajuste le bouton pour une meilleure ergonomie */
        font-size: 1rem; /* Ajuste la taille de la police du bouton */
    }
    .hero2 {
        height: auto; /* Ajuste automatiquement la hauteur en fonction du contenu */
        padding-top: 60px; /* Réduit le padding supérieur */
        padding-bottom: 100px;
    }
    .hero2 .intro2-text {
        padding: 20px;
        padding-bottom: 3%;
        /* Ajoute un padding pour les petits écrans */
        
    }
    

    .hero2 .intro2-text p {
        padding-top: 2%;
        /* Espace au-dessus du paragraphe */
       
        /* Espace en dessous du paragraphe */
    }
    

    .intro2-text h1 {
        font-size: 2em;
        margin-top: 5%;
    }

    .about-columns {
        flex-direction: column;
        /* Change à colonne pour petits écrans */
        align-items: center;
        /* Centre le contenu */
    }

    .about-text {
        max-width: 100%;
        width: 100%;
        /* Prend toute la largeur de l'écran */
        margin: 0;
        /* Pas de marge pour le texte */
    }

    .about-image {
        width: 100%;
        /* Ajuste la largeur de l'image à 80% */
        max-width: 54%;
        margin-top: 20px;
        /* Ajoute un espace au-dessus de l'image */
        text-align: center;
        /* Centre l'image si besoin */
        margin-right: 50%;
    }

    .cta-section {
        height: auto;
        /* Permet à la section de s'adapter à son contenu */
        padding: 20px 0;
        /* Ajoute un padding vertical */
    }

    .cta-content {
        flex-direction: column;
        /* Change en colonne */
        align-items: center;
        /* Centre les éléments */
        text-align: center;
        /* Centre le texte */
    }

    .cta-text h2 {
        font-size: 1.5rem;
        /* Réduit la taille du texte */
    }

    .cta-text p {
        font-size: 0.9rem;
        padding-bottom: 3%;
        /* Réduit la taille du texte */
    }

    .cta-button {
        width: 100%;
        /* Les boutons prennent la largeur complète */
        padding: 10px;
        /* Augmente le padding pour des boutons plus larges */
        font-size: 1.1rem;
        /* Réduit légèrement la taille de la police des boutons */
    }

    .cta-buttons {
        flex-direction: column;
        /* Aligne les boutons verticalement */
        gap: 10px;
        /* Réduit l'écart entre les boutons */
    }

    .footer-container {
        flex-direction: column;
        /* Change la direction en colonne */
        align-items: center;
        /* Centre tous les éléments */
        text-align: center;
        /* Centre le texte */
    }

    /* Centre le contenu du footer-left en haut */
    .footer-left {
        display: flex;
        flex-direction: column;
        /* Empile le logo et le texte */
        align-items: center;
        /* Centre horizontalement */
        width: 100%;
        /* Permet à la section de prendre toute la largeur */
        margin-bottom: 20px;
        /* Ajoute de l'espace en bas */
    }

    .footer-logo {
        max-width: 80px;
        /* Ajuster la taille du logo pour les petits écrans */
    }

    .footer-left{
        width: 95%;
    }

    .footer-text {
        /* Permet au texte de prendre toute la largeur */
        font-size: 0.9rem;
        /* Ajuste la taille de la police */
    }

    /* Alignement des colonnes sitemap et réseaux sociaux */
    .footer-columns {
        display: flex;
        flex-direction: row;
        /* Maintient les colonnes côte à côte */
        justify-content: space-between;
        /* Centre les colonnes */
        width: 100%;
        /* Permet de prendre toute la largeur */
    }

    .footer-sitemap,
    .footer-social {
        margin: 0 50px;
        /* Ajoute de l'espace entre les colonnes */
        width: 50%;
        /* Permet à chaque colonne de prendre 50% de la largeur */
    }

    .footer-bottom {
        flex-direction: column;
        /* Aligne les éléments du bas en colonne */
        align-items: center;
        /* Centre les éléments */
        text-align: center;
        /* Centre le texte */
    }

    .about-content {
        flex-direction: column;
        /* Assure que le contenu est en colonne */
    }

    .about-photo {
        margin-bottom: 20px;
        width: 100%;
        /* Ajoute de l'espace en bas de l'image */
        margin: auto;
    }

    .about-text {
        padding: 0 10px;
        /* Ajoute un padding horizontal */
    }

    /* Barre bleue en bas */
    .about-section::before {
        display: none;
    }

    /* Barre orange en bas, plus courte */
    .about-section::after {
        display: none;
    }

    .protocol-header {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centre les éléments horizontalement */
        gap: 5px; /* Espace entre le h2 et le p */
        margin-left: 0; /* Supprime la marge à gauche pour le centrer */
    }

    .protocol-header h2,
    .protocol-header p {
        margin-left: 0; /* Supprime la marge à gauche pour centrer le texte */
        text-align: center; /* Centre le texte */
    }

    .protocol-card {
        display: flex;
        flex-direction: column; /* Change la direction pour empiler les éléments */
        align-items: center; /* Centre les éléments */
    }

    .step-number {
        margin-bottom: 10px; /* Espace entre le numéro et l'image */
    }

    .step-icon {
        margin-top: 20px; /* Espace entre l'image et le contenu */
    }

    .step-content {
        text-align: left; /* Centre le texte dans le contenu */
    }

    .background-image{
        display: none;
    }

    .hero2 {
        background-position: center center; /* Ajustez si nécessaire */
        height: 50vh;
    }

    .swiper {
        width: 100%;
        height: 100%;
        margin-top: 8%;
    }
    .logo-row{
        gap: 25px;
    }
    .logo-row img {
        width: 45px;
        /* Largeur des logos */
        height: auto;
        object-fit: contain;
    }

    .specialized-intervention-section {
        text-align: left;
    }

    .hero2 {
        padding: 20px; /* Ajoute un peu de padding */
    }
    .services-section{
        margin-top: 3%;
    }
    .hero2 .intro2-text{
        margin-top: 3%;
    }
    .logos-grid img {
        max-width: 40%;
        /* Taille maximale des logos */
        max-height: 50%;
        object-fit: contain;
        /* Ajuste les logos sans déformation */
        margin: 0 auto;
        /* Centre les logos si leur taille est plus petite */
    }
    .service-card{
        margin-left: 5%;
    }
    
}
