.navbar{
    font-weight: bold;
    background-color: #18ac87;
    position: relative;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*background-color: #fff;*/
    box-shadow: 0 4px 20px rgb(55 14 15 / 14%) ;
    padding: 5px 2%;
    transition: 0.2s;
}

/* Espacement des onglets */
.navbar-nav {
    margin-left: auto; /* Aligne les onglets à droite */
}

.logo img {
    width: 100px; /* Réduire la taille de l'image */
}

a{
    text-decoration: none;
}

.navbar .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
}


.dropdown .dropdown-menu {
    background: #77977b;

}

.dropdown:hover>.dropdown-menu, 
.dropend:hover>.dropdown-menu {
    display: block;
    margin-top: .1em;
    margin-left: .1em;
}

/* Espacer les éléments du sous-menu */
.dropdown-item {
    color: #fff;
    font-size: 1.1rem; /* Agrandir légèrement le texte */
    padding: 10px 20px; /* Ajouter de l'espace à l'intérieur des éléments du sous-menu */
    margin-bottom: 10px; /* Ajouter de l'espace entre les éléments du sous-menu */
}

/* Ajustement pour supprimer l'espace en bas du dernier élément du sous-menu */
.dropdown-item:last-child {
    margin-bottom: 0;
}

/* Notre Politique */
.card_content h2{
    text-transform: uppercase;
}

/* Qui sommes nous */
.about {
    background-color: #f8f9fa; /* Couleur de fond légère */
    padding: 60px 0;
}

.about img {
    width: 100%;
    max-height: 400px;
    object-fit: cover; /* L'image s'ajuste sans déformation */
    border-radius: 10px; /* Coins arrondis */
    animation: animate 3s linear infinite;
    margin: 10px;
}

/* Style de la section statistiques */
.stats {
    color: #fff;
    height: 20vh;
    padding: 20px 0; /* Réduction de l'espacement vertical */
}

.stat-item {
    padding: 5px;
}

.stat-box {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    background-color: #0a5f4a; /* Vert CEEMUCI */

}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
}

.stat-text {
    font-size: 1rem;
    color: #ffffff;
}

/* Ajustement responsive */
@media screen and (max-width: 768px) {
    .stat-box {
        padding: 10px;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-text {
        font-size: 0.9rem;
    }
    .stats {
        height: 55vh;
    }
}
@keyframes animate {
    0%{
        transform: translate(-11px, 0);
    }
    50%{
        transform: translate(0, -11px);
    }
    100%{
        transform: translate(-11px, 0);
    }
}

.about .btn {
    background-color: #18ac87;
    border: none;
    color: #fff;
}
.about .btn:hover {
    background-color: #007947;
}

footer {
    background-color: #0a5f4a; /* Vert foncé */
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.3); /* Ombre subtile vers le haut */
}

footer p a {
    font-size: 1.1em;
    font-weight: 600;
    color: #ffdd57; /* Jaune doré pour les liens */
}

footer h4 {
    font-weight: 700;
    color: #82c4c3; /* Bleu clair pour les titres */
}

footer hr {
    border-top: 1px solid #82c4c3; /* Ligne horizontale en bleu clair */
}

footer p strong{
    font-weight: 900;
}


.contact-form {
    background-color: #ffffff;
    padding: 40px 0;
}

.contact-form .container {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Effet d'ombre */
}

.contact-form h2 {
    color: #0a5f4a; /* Vert foncé harmonisé avec le footer */
    font-weight: bold;
}

.form-control {
    border: 1px solid #18ac87;
    border-radius: 5px;
}

.form-control::placeholder {
    color: #7a7d7e;
}

.contact-form .btn-success {
    background-color: #18ac87;
    border: none;
    padding: 10px 20px;
}

.contact-form .btn-success:hover {
    background-color: #0a5f4a;
}


@media screen and (min-width:769px) {

    .dropend:hover>.dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }
    .dropend .dropdown-toggle {
        margin-left: .5em;
    }
    .nav-link {
        margin-right: 0.9rem; /* Ajouter de l'espace à droite des liens */
    }
    
    .nav-item {
        margin-right: 10px; /* Option pour espacer davantage chaque élément de la liste */
    }
}
