/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* STRUCTURE GLOBALE */
html, body {
    height: 100%; /* Assure que le body occupe toute la hauteur */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* CONTAINER PRINCIPAL POUR FORCER LE FOOTER EN BAS */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrer le contenu verticalement */
}

body {
    background-color: #F8FAFC;
    color: #333;
}
      /* HEADER FIXE */
        header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px; /* Taille imposée */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a.active {
    color: #0057B7; /* Remplace cette couleur par celle que tu veux */
    /* Facultatif pour rendre le texte plus visible */
}
nav ul li {
    display: inline;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.btn-header {
    background-color: #6CBF43;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

/* CONTAINER GLOBAL */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}



/* SECTION HERO */
.hero {
    margin-top: 90px; 
    background-color: #EAF6FF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 20px;
    min-height: 500px;
}

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

.hero-text {
    max-width: 50%;
}

.hero h1 {
    font-size: 2.8em;
    color: #0057B7;
}

.hero p {
    font-size: 1.4em;
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    align-items: center; /* Alignement vertical */
}

.btn-green, .btn-blue {
    display: inline-flex; /* Permet un alignement plus précis */
    padding: 14px 25px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    min-width: 150px; /* Ajuste la largeur minimale pour uniformiser */
}

.btn-green {
    background-color: #6CBF43;
    color: white;
}

.btn-blue {
    background-color: #007BFF;
    color: white;
}

.hero img {
    width: 450px; /* Taille imposée pour l’image */
    height: auto;
}

/* SECTION VIDÉO */
.video-section {

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

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

.video-section iframe {
    width: 460px;
    height: 315px;
}

.video-text {
    max-width: 40%;
    text-align: left;
}

.video-text h2 {
    color: #0057B7;
}

/* SECTION SERVICES */
.services {
    padding: 80px 20px;
    text-align: center;
}

.services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.card {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    width: 280px;
}

.card img {
    width: 100%;
    height: 180px; /* Hauteur imposée */
    object-fit: cover;
}

/* SECTION AVANTAGES */
.why-section {
    background: #EAF6FF;
    padding: 60px 0;
    text-align: center;
}

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

.why-text {
    text-align: left;
    max-width: 50%;
}

.why-text ul {
    list-style: none;
}

.why-text ul li {
    padding: 10px 0;
}

.why-section img {
    width: 400px;
    height: auto;
}

/* SECTION CONTACT COMMERCIAL */
.contact-region {
    padding: 60px 0;
    text-align: center;
}

.region-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.region-cards .card {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    width: 250px;
}

.region-cards .btn-green {
    display: block;
    padding: 10px;
    background: #6CBF43;
    color: white;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
}

/* SECTION STATISTIQUES */
.stats {
    background: #0057B7;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.stat {
    display: inline-block;
    width: 22%;
}

.stat h3 {
    font-size: 2.5em;
}

.stat p {
    font-size: 1.2em;
}

/* SECTION AVIS CLIENTS */
.testimonials {
    padding: 60px 0;
    text-align: center;
}

.testimonials .review {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    display: inline-block;
    margin: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonials img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.partners {
    background-color: white;
    text-align: center;
    padding: 50px 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.partners h2 {
    font-size: 24px;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Ajoute un espace entre les logos */
}

.partner-logos img {
    max-width: 150px;  /* Ajuste la taille des logos */
    height: auto;
    object-fit: contain; /* Évite la déformation */
    filter: grayscale(20%); /* Optionnel : donne un effet plus sobre */
}

/* FOOTER */
footer {
    background: #2C3E50;
    color: white;
    text-align: center;
    padding: 20px 0;
}/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #F8FAFC;
    color: #333;
}

/* CONTAINER GLOBAL */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO */
.hero {
    background-color: #EAF6FF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 20px;
    min-height: 500px;
}

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

.hero-text {
    max-width: 50%;
}

.hero h1 {
    font-size: 2.8em;
    color: #0057B7;
}

.hero p {
    font-size: 1.4em;
}

.hero-buttons {
    margin-top: 20px;
}

.btn-green, .btn-blue {
    display: inline-block;
    padding: 14px 25px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-green {
    background-color: #6CBF43;
    color: white;
}

.btn-blue {
    background-color: #007BFF;
    color: white;
}

.hero img {
    width: 450px; /* Taille imposée */
    height: auto;
}

/* SECTION VIDÉO */
.video-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

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

.video-section iframe {
    width: 560px;
    height: 315px;
}

.video-text {
    max-width: 40%;
    text-align: left;
}

.video-text h2 {
    color: #0057B7;
}

/* SECTION SERVICES */
.services {
    padding: 80px 20px;
    text-align: center;
}

.services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.card {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    width: 280px;
}

.card img {
    width: 100%;
    height: 180px; /* Hauteur imposée */
    object-fit: cover;
}

/* SECTION AVANTAGES */
.why-section {
    background: #EAF6FF;
    padding: 60px 0;
    text-align: center;
}

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

.why-text {
    text-align: left;
    max-width: 50%;
}

.why-text ul {
    list-style: none;
}

.why-text ul li {
    padding: 10px 0;
}

.why-section img {
    width: 400px;
    height: auto;
}

/* SECTION CONTACT COMMERCIAL */
.contact-region {
    padding: 60px 0;
    text-align: center;
}

.region-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.region-cards .card {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    width: 250px;
}

.region-cards .btn-green {
    display: block;
    padding: 10px;
    background: #6CBF43;
    color: white;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
}

/* SECTION STATISTIQUES */
.stats {
    background: #0057B7;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.stat {
    display: inline-block;
    width: 22%;
}

.stat h3 {
    font-size: 2.5em;
}

.stat p {
    font-size: 1.2em;
}

/* SECTION AVIS CLIENTS */
.testimonials {
    padding: 60px 0;
    text-align: center;
}

.testimonials .review {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    display: inline-block;
    margin: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonials img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
/* Reset */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

/* SECTION INTRODUCTION */
.societe-intro {
       margin-top: 80px;
    text-align: center;
    padding: 60px 20px;
    background: #F8FAFC;
}

.societe-intro h2 {
    font-size: 2em;
    color: #0057B7;
    margin-bottom: 20px;
}

.highlight {
    color: #008000; /* Met en valeur des parties du texte */
}

/* VIDÉO */
.video-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.video-container iframe {
    width: 50%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* STATISTIQUES */
.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 60px 20px;
    background: #EAF6FF;
    text-align: center;
}

.stat {
    flex: 1;
}

.stat h3 {
    font-size: 2.5em;
    color: #0057B7;
}

.stat p {
    font-size: 1.2em;
}

/* PARTENAIRES */
.partners {
    text-align: center;
    padding: 60px 20px;
}

.partners h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logos img {
    height: 60px;
    filter: grayscale(50%);
    transition: filter 0.3s ease-in-out;
}

.partner-logos img:hover {
    filter: grayscale(0%);
}
/* CONTACT SECTION */
.contact-container {
    margin-top: 120px; /* Augmente l’espace sous le header */
    display: flex;
    max-width: 1200px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
}

.contact-image {
    flex: 1;
}

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

.contact-form {
    flex: 1;
    padding: 30px;
}

.contact-form h2 {
    color: #1E88E5;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-group label {
    display: block;
    font-size: 14px;
}

.submit-btn {
    background: #1E88E5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.submit-btn:hover {
    background: #1565C0;
}

/* SECTION CONTACT COMMERCIAL */
.contact-region {
    padding: 60px 20px;
    text-align: center;
}

.contact-region h2 {
    font-size: 1.8em;
    font-weight: bold;
    color: #0057B7;
    margin-bottom: 20px;
}

.contact-region .highlight {
    color: #008000; /* Couleur verte pour mettre en valeur */
}

.region-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.region-card {
    background: white;
    padding: 20px;
    border: 2px solid #333;
    text-align: center;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.region-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* STYLE DU BOUTON */
.btn-green {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(45deg, #6CBF43, #A3E635);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2em;
    width: 100%;
    max-width: 200px;
    margin: 10px auto;
}

.btn-green i {
    margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .region-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* FOOTER */
footer {
    background: #002244;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
      margin-top: auto; /* Pousse le footer en bas */

}

.footer-logo img {
    height: 50px;
    margin-bottom: 10px;
}
