/* index.css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    box-sizing: border-box;
}

.container {
    max-width: 1800px;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    width: 100%;
    background-color: #013368;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.navbar .image-entreprise img {
    max-height: 110px;
}

.navbar .navbar-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar-container ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-container ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-container ul li a:hover {
    color: #87bfff;
}

.toggle-btn {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

.navbar ul .contact {
    background-color: white;
    padding: 10px 20px;
    border-radius: 15px;
}

.navbar ul .contact a {
    color: #013368;
}

.navbar ul .contact a:hover {
    color: #013368;
}

.hero {
    background-image: url(/src/img/header.jpeg);
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}

.hero .container {
    max-width: 1800px;
    padding: 20px;
    margin: 0 auto;
    color: #fff;
    width: 100%;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #87bfff;
    color: #013368;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.services {
    background-color: #013368;
    padding: 3rem 1rem;
}

.services .container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
}

.services-card-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2rem;
}



.card-services {
    width: 100%;
    /* Par défaut, occupe 100% de l'espace disponible */
    max-width: 380px;
    /* Maximum pour les grands écrans */
    min-height: 250px;
    background-color: #013368;
    border-radius: 15px;
    padding: 1.5rem;
    border: 3px solid #0067d4;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-services:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}

.card-services h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-services p {
    color: #dcdcdc;
    line-height: 1.6;
    margin-bottom: 1rem;
    height: auto;
    /* Permet au texte de s'ajuster */
}

.card-services ul {
    color: #dcdcdc;
    margin-top: 1rem;
    padding-left: 1.5rem;
    text-align: start;
    font-weight: bold;
    height: auto;
    /* Permet à la liste de s'ajuster à son contenu */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-services ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .card-services {
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }

    .card-services h3 {
        font-size: 1.2rem;
    }

    .card-services p,
    .card-services ul {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .card-services {
        padding: 1rem;
        /* Réduire le padding pour les petits écrans */
    }

    .card-services h3 {
        font-size: 1.1rem;
        /* Réduire encore plus la taille du titre */
    }

    .card-services p,
    .card-services ul {
        font-size: 0.85rem;
        /* Réduire la taille du texte pour le paragraphe et la liste */
    }
}

.title {
    font-weight: 200;
    font-size: 2.3rem;
    /* Taille par défaut pour les écrans larges */
    color: white;
    position: relative;
    letter-spacing: 1px;
    padding-top: 25px;
}

/* Styles pour les écrans plus petits */
@media (max-width: 768px) {
    .title {
        font-size: 1.3rem;
        /* Réduire la taille de la police sur les tablettes et téléphones */
        padding-top: 15px;
        /* Réduire le padding en haut */
    }
}

.bold-underline {
    font-weight: 900;
    position: relative;
    display: inline-block;
    padding: 5px 0;
    /* Padding par défaut */
    text-transform: uppercase;
    color: white;
}

.bold-underline::after {
    content: "";
    position: absolute;
    height: 4px;
    /* Épaisseur de la ligne */
    width: 60%;
    background-color: #ffffff;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    /* Positionnement de la barre en bas */
}

/* Styles pour les écrans plus petits */
@media (max-width: 768px) {
    .bold-underline {
        padding: 3px 0;
        /* Réduire le padding vertical sur les petits écrans */
    }

    .bold-underline::after {
        height: 3px;
        /* Réduire l'épaisseur de la ligne */
        bottom: -4px;
        /* Ajuster la position de la barre en bas */
    }
}

.bold-underline-blue {
    font-weight: 900;
    position: relative;
    display: inline-block;
    padding: 5px 0;
    /* Padding par défaut */
    text-transform: uppercase;
    color: #013368;
}

.bold-underline-blue::after {
    content: "";
    position: absolute;
    height: 4px;
    /* Épaisseur de la ligne */
    width: 60%;
    background-color: #013368;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    /* Positionnement de la barre en bas */
}

/* Styles pour les écrans plus petits */
@media (max-width: 768px) {
    .bold-underline-blue {
        padding: 3px 0;
        /* Réduire le padding vertical sur les petits écrans */
    }

    .bold-underline-blue::after {
        height: 3px;
        /* Réduire l'épaisseur de la ligne */
        bottom: -4px;
        /* Ajuster la position de la barre en bas */
    }
}


/* Contact Section */
.contact {
    background-color: #f4f4f4;
    padding: 2rem 1rem;
}

.contact .container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
}

.contact .title {
    color: #013368;
}

.contact-details {
    color: #013368;
    margin-top: 1rem;
}

.contact-details p {
    margin-top: 0px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #013368;
    color: white;
    padding: 2rem 0;
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #87bfff;
}

.social-media a {
    margin: 0 10px;
}

.social-media img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Section Notre Équipe */
.team {
    background-color: white;
    display: flex;
    padding: 3rem 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    /* Permet de passer à la ligne si l'espace est insuffisant */
}

.team-content {
    margin-top: 1rem;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    /* S'assurer que le contenu prend toute la largeur disponible */
}

.team-content p {
    color: #013368;
    margin-top: 20px;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    width: 100%;
    /* S'assurer que le texte s'adapte à la largeur de l'écran */
}

.team-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* Permet de passer à la ligne sur les petits écrans */
}

.team-title {
    color: #013368;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    width: 100%;
    /* S'assurer que le titre prend toute la largeur */
    text-align: center;
    /* Centrer le titre */
}

.team-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
    color: #013368;
    font-size: 1.1rem;
    line-height: 1.6;
}

.team-list li {
    margin-bottom: 0.5rem;
}

/* Section de la photo de l'équipe */
.team-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    max-width: 1000px;
    width: 100%;
    /* S'assurer que la photo s'ajuste à l'écran */
}

.team-photo img {
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    border: 5px solid #013368;
    transition: transform 0.3s ease;
}

.team-photo img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team {
        flex-direction: column;
        /* Passer en colonne sur les petits écrans */
        align-items: center;
        /* Centrer les éléments */
    }

    .team-title {
        font-size: 1.5rem;
        /* Réduire la taille du titre sur mobile */
    }

    .team-content p {
        font-size: 1rem;
        /* Ajuster la taille du texte sur mobile */
        width: 90%;
        /* Limiter la largeur du texte sur mobile */
        text-align: center;
        /* Centrer le texte */
    }

    .team-list {
        padding-left: 0;
        /* Supprimer le padding sur mobile */
        width: 90%;
        /* Limiter la largeur de la liste sur mobile */
    }

    .team-photo img {
        max-width: 100%;
        /* S'assurer que l'image ne déborde pas sur les petits écrans */
    }
}

@media (max-width: 480px) {
    .team-title {
        font-size: 1.3rem;
        /* Réduire davantage la taille du titre sur très petits écrans */
    }

    .team-content p {
        font-size: 0.9rem;
        /* Réduire la taille du texte pour les petits écrans */
    }

    .team-list {
        font-size: 0.9rem;
        /* Réduire la taille de la liste sur mobile */
    }
}

.testimonials {
    background-color: #013368;
    padding: 3rem 1rem;
}

.testimonials .container {
    max-width: 1800px;
    margin: 0 auto;
}

.testimonial-cards {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 350px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #013368;
    margin-bottom: 1rem;
    font-style: italic;
}

.client-name {
    font-weight: bold;
    color: #555;
    font-size: 1rem;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-text,
    .team-photo {
        max-width: 100%;
        text-align: center;
    }

    .team-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .services-card-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .services-card-container .card-services {
        margin: 10px;
        width: 100%;
    }

    .navbar {
        height: auto;
        flex-direction: column;
        padding: 1rem;
    }

    .navbar .container {
        flex-direction: column;
    }

    .navbar-container ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        display: none;
    }

    .navbar-container ul li {
        padding: 0.5rem 0;
    }

    .toggle-btn {
        display: block;
        font-size: 4em;
    }

    .container-phone {
        display: flex;
        align-items: center;
        ;
    }

    .navbar-container.active ul {
        display: flex;
    }
}

/* road map */


/* Section Roadmap Historique */
.historique-roadmap {
    background-color: #f5f5f5;
    padding: 2rem 1rem;
}

.historique-roadmap .container {
    max-width: 1800px;
    margin: 0 auto;
}

.historique-roadmap h2.title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.roadmap-intro {
    color: #555;
    margin-bottom: 2rem;
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.timeline-item {
    position: relative;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding-left: 50px;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #013368;
    background-color: #e6f2ff;
    border-radius: 50%;
    padding: 0.8rem;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-title {
    font-size: 1.3rem;
    color: #013368;
    margin-bottom: 0.5rem;
}

.timeline-description {
    font-size: 1rem;
    color: #666;
}

.contact-section {
    background-color: #f8f9fa;
    padding: 3rem 1rem;
}

.contact-section .container {
    max-width: 1800px;
    margin: 0 auto;
}

.contact-section .title {
    margin-bottom: 2rem;
    color: #013368;
    font-size: 2rem;
}

.contact-section p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-section .contact-info {
    margin-bottom: 2rem;
}

.contact-info .contact-button {
    width: 200px;
    height: 50px;
    border-radius: 5px;
    background-color: #013368;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    
}

.contact-section .contact-info h3 {
    color: #013368;
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.contact-section .contact-info p {
    font-size: 1.1rem;
    color: #555;
    margin: 0.5rem 0;
}

.contact-section .contact-info p a {
    color: #007bff;
    text-decoration: none;
}

.contact-section .contact-info p a:hover {
    text-decoration: underline;
}

.contact-section .map-container {
    margin-top: 2rem;
    text-align: center;
}

.contact-section .map-container iframe {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}




.gallery-section {
    padding: 3rem 1rem;
}

.gallery-section .title {
    color: #013368;
    margin-bottom: 1rem;
}

.gallery-intro {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    /* Centrer l'introduction */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* Ajuste pour les petits écrans */
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    /* Permet à l'image de conserver ses proportions */
    display: block;
    border-radius: 10px;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Media Queries pour le responsive */
@media (max-width: 768px) {
    .gallery-section .title {
        font-size: 1.8rem;
        /* Réduit la taille du titre pour les écrans moyens */
    }

    .gallery-intro {
        font-size: 1rem;
        /* Réduit la taille du texte d'introduction */
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        /* Ajuste encore pour les petits écrans */
    }
}

@media (max-width: 480px) {
    .gallery-section .title {
        font-size: 1.5rem;
        /* Réduit encore plus la taille du titre */
    }

    .gallery-intro {
        font-size: 0.9rem;
        /* Réduit la taille du texte d'introduction */
    }

    .gallery-item {
        border-radius: 5px;
        /* Réduit le rayon de bordure sur les petits écrans */
    }
}