.justifier {
    text-align: justify;
}



/*  Effets CSS personnalisés */
.missions-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f9f9f9, #eef5ff);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.mission-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 40px;
    color: #3b9a3d;
    margin-bottom: 15px;
}

.mission-title {
    font-weight: 700;
    font-size: 2rem;
    color: #222;
}

.mission-subtitle {
    font-size: 1.1rem;
    color: #666;
}


/* 🎨 CSS pour la page equipe */
.team {
    background: linear-gradient(135deg, #f8faff, #eef4ff);
    border-radius: 20px;
    padding: 60px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.section-badge {
    display: inline-block;
    background: #00a12b;
    font-weight: bold;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-title {
    font-weight: 700;
    font-size: 2rem;
    color: #222;
}

.team-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.member-img {
    position: relative;
    overflow: hidden;
}

.member-img img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    transition: transform 0.4s ease;
}

.team-member:hover .member-img img {
    transform: scale(1.1);
}

.social {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .social {
    opacity: 1;
    transform: translateY(-5px);
}

.social a {
    color: #fff;
    background: #3b9a3d;
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social a:hover {
    background: #3b9a3d;
}

.member-info {
    padding: 20px;
}

.member-info h5 {
    font-weight: 600;
    color: #222;
}

.member-info span {
    display: block;
    font-size: 0.9rem;
    color: #3b9a3d;
    margin-bottom: 10px;
}

.member-info p {
    font-size: 0.9rem;
    color: #555;
}


/*      🎨 CSS Pour le partenaire
 */
.partners {
    padding: 50px 0;
    background: linear-gradient(135deg, #f9f9f9, #eef5ff);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.partner-logo {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.1);
}

.actived {
    background-color: #3b9a3d !important;
    color: white !important;
}


.dropdown ul li a:hover {
    background-color: #3b9a3dda !important;
    color: white !important;
    font-weight: bold !important;
}

.dropdown ul li a {
    
    transition: 2s !important;
}