h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Poids pour les titres */
}

/* Appliquer Inter pour le corps du texte */
body, p, span, a {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Poids par défaut pour le texte */
}

/* Exemple de combinaison */
.navbar, .hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500; /* Légèrement gras pour les titres du menu */
}

.hero-description, .cta-button {
    font-family: 'Inter', sans-serif;
    font-weight: 300; /* Texte léger pour les paragraphes ou les boutons */
}
.texte-justify{
    text-align: justify;
}
.btn{
    border-radius: 20px;
}
.logo-image{
    width: 50px;
    border-radius: 100%;
}
.bg-bleu-fonce{
    background-color: #001f3f;
}
.bleu-claire{
    background-color: rgb(4, 17, 31);
}
.bg-bleu-fonces{
    background-color: rgb(3, 15, 29);
}
.bg-bleu-claire{
    background-color: rgb(209, 227, 248);
}
/* Style pour le survol */
/* Style pour le survol */
.navbar-nav .nav-item:hover .nav-link {
    color: #ffc107 !important; /* Couleur jaune au survol */
    transition: color 0.3s ease; /* Transition douce pour la couleur */
}

/* Animation de la ligne en bas du li */
.navbar-nav .nav-item {
    position: relative; /* Nécessaire pour positionner la ligne */
}

.navbar-nav .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0; /* Ligne au bas de l'élément */
    left: 50%; /* Point de départ au centre */
    width: 0%; /* Ligne invisible au départ */
    height: 2px;
    background-color: #ffc107; /* Ligne jaune */
    transition: all 0.4s ease; /* Transition pour largeur et position */
    transform: translateX(-50%); /* Alignement central */
}

.navbar-nav .nav-item:hover::after {
    width: 100%; /* Ligne s'étend sur toute la largeur */
    left: 0; /* Partie gauche complète */
    transform: none; /* Supprime l'effet de translation */
}

/* Fond blanc au survol du li */
.navbar-nav .nav-item:hover {
    background-color: white;
    border-radius: 4px;
    transition: background-color 0.3s ease; /* Transition douce pour le fond */
}

/* Texte noir quand le fond est blanc */
.navbar-nav .nav-item:hover .nav-link {
    color: #333 !important;
    transition: color 0.3s ease; /* Synchronisation avec le fond */
}
/* Lignes blanches pour le bouton hamburger */
.navbar-toggler-icon {
    background-image: none; /* Supprime le style par défaut de Bootstrap */
    display: inline-block;
    width: 30px; /* Largeur des lignes */
    height: 2px; /* Épaisseur des lignes */
    background-color: white; /* Couleur blanche */
    position: relative; /* Nécessaire pour positionner les lignes */
}

/* Création des trois lignes */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out; /* Transition pour animation douce */
}

/* Position des lignes */
.navbar-toggler-icon::before {
    top: -8px; /* Ligne supérieure */
}

.navbar-toggler-icon::after {
    top: 8px; /* Ligne inférieure */
}

/* Animation facultative lors du clic */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg); /* Transformation en "X" */
    top: 0; /* Position centrale */
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg); /* Transformation en "X" */
    top: 0; /* Position centrale */
}



  

  /* Section au-dessus de la barre de navigation */
.top-header {
    background-color: #001f3f; /* Bleu foncé */
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.5rem;
   
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.phone-number i {
    color: #fdd835; /* Jaune */
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fdd835; /* Jaune au survol */
}
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

/* Image en arrière-plan */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; /* Derrière tout */
}

/* Superposition noire */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Couleur noire semi-transparente */
    z-index: -1; /* Devant l'image */
}

/* Contenu */
.hero-content {
    z-index: 1; /* Devant tout */
    padding: 20px;
    width: 60%;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.text-jaune {
    color: #fdd835; /* Jaune vif */
}

.hero-description {
    font-size: 1.2rem;
    margin: 20px 0;
}

/* Boutons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #fdd835; /* Jaune vif */
    color: black;
}

.cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-primary:hover {
    background-color: #ffcc00; /* Couleur plus foncée au survol */
}

.cta-secondary:hover {
    background-color: white;
    color: black;
}

.titre-illustratif{
    color: #0554a3;
    font-weight: 300;
}
/* Section des services */
.service-box {
    background: #f8f9fa; /* Fond clair */
    border-radius: 12px; /* Coins arrondis */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Ombre subtile */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition pour les effets */
    height: 250px;
  }
  
  .service-box:hover {
    transform: translateY(-10px); /* Effet de levée au survol */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Ombre plus marquée au survol */
  }
  
  .service-box i {
    color: #ffc107; /* Couleur jaune pour les icônes */
    transition: color 0.3s ease; /* Transition pour l'icône */
  }
  
  .service-box:hover i {
    color: #ff9f00; /* Couleur légèrement différente au survol */
  }
  
  .service-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0.5rem 0;
    color: #343a40; /* Texte principal */
  }
  
  .service-text {
    font-size: 0.95rem;
    color: #6c757d; /* Texte secondaire */
    line-height: 1.6;
  }
  
  .service-box p {
    margin-bottom: 0; /* Supprime l'espace excessif sous les paragraphes */
  }
  
  
  
  /* Responsive - ajustement de la taille pour mobile */
  @media (max-width: 768px) {
    .navbar-nav .nav-link {
      font-size: 1rem !important;
      padding: 8px 0;
    }
    .service-box {
        padding: 2rem 1rem; /* Ajuste les marges pour les petits écrans */
      }
    .navbar-nav {
      padding: 10px 0;
    }
    .navbar-nav .nav-link {
        font-size: 1rem !important;
        padding: 8px 15px;
    }

    .navbar-nav .nav-item {
        padding: 0 !important;
    }

    .navbar-nav .nav-item::after {
        left: 0; /* Ajustement du positionnement */
        right: 0; /* Évite les marges inattendues */
    }
    .hero-content {
        z-index: 1; /* Devant tout */
        padding: 0px;
        width: 80%;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    
    .text-jaune {
        color: #fdd835; /* Jaune vif */
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 20px 0;
    }
    .hero-section {
        position: relative;
        height: 75vh;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        color: white;
        text-align: center;
    }
    
  }
  #stats {
    position: relative;
    overflow: hidden;
}

.stats-container {
    width: 100%;
    overflow: hidden;
}

.stats-marquee {
    width: 100%;
}

.stats-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(250px * 16); /* Largeur des boxes * nombre d'éléments */
}

.stat-box {
    min-width: 250px;
    padding: 20px;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffc107; /* Couleur jaune pour les chiffres */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 8)); /* Déplacement de la moitié des éléments */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .stats-track {
        animation: scroll 30s linear infinite;
    }
    
    .stat-box {
        min-width: 200px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}
.hero-autre{
    height: 300px;
    position: relative;
      
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        color: white;
        text-align: center;
}