*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
}

/* ================= TOP BAR ================= */
.top-bar{
  background:linear-gradient(90deg,#0f7b32,#000);
  color:#fff;
  text-align:center;
  padding:8px 10px;
  font-size:14px;
  letter-spacing:1px;
  position:relative;
  z-index:3000;
  transition:transform .4s ease;
}

.top-bar.hide{
  transform:translateY(-100%);
}

/* ================= HEADER GLOBAL ================= */

.main-header {
  position: relative;
  width: 100%;
  background: #ffffff;
  z-index: 2000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: all .4s ease;
}

.main-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/* Container */
.container {
  width: 92%;
  max-width: 1300px;
  margin: auto;
}

/* Header layout */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 90px;
  display: block;
}

/* Texte mobile caché par défaut */
.mobile-title {
  display: none;
}

/* ================= MOBILE VERSION ================= */

@media (max-width: 768px) {

  /* Cache menu desktop */
  .nav-links {
    display: none;
  }

  /* Réduction logo mobile */
  .logo img {
    height: 85px;
  }

  /* Header mobile premium */
  .main-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
  }

  /* Texte mobile centré */
  .mobile-title {
    display: block;
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;

    /* Dégradé vert propre (SANS OMBRE) */
    background: linear-gradient(90deg, #00c853, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Animation douce */
    opacity: 0;
    transform: translateY(-8px);
    animation: fadeSlideIn 0.8s ease forwards;
  }

  @keyframes fadeSlideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Hamburger propre */
  .hamburger {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .hamburger span {
    height: 3px;
    width: 100%;
    background: #2e7d32;
    border-radius: 3px;
    transition: all 0.4s ease;
  }

  /* Animation hamburger actif */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

}

/* ================= NAVIGATION ================= */
.nav{
  display:flex;
  align-items:center;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:35px;
}

.nav-links a{
  text-decoration:none;
  color:#000;
  font-weight:500;
  position:relative;
  padding-bottom:6px;
  transition:.3s;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:#0f7b32;
  transition:.4s;
}

.nav-links a:hover::after,
.nav-links a.active::after{
  width:100%;
}

.nav-links a.active{
  color:#0f7b32;
}

/* ================= HAMBURGER ================= */
.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:6px;
}

.hamburger span{
  width:28px;
  height:3px;
  background:#000;
  transition:.4s;
}

.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2){
  opacity:0;
}
.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* ================= MOBILE NAV ================= */
@media(max-width:992px){
  .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    height:100vh;
    width:270px;
    background:#fff;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:40px;
    transition:.4s;
    box-shadow:-5px 0 30px rgba(0,0,0,0.1);
  }

  .nav-links.active{
    right:0;
  }

  .hamburger{
    display:flex;
  }
}
.nav-links a.active {
  color: #2e7d32;
  font-weight: 700;
  position: relative;
}

/* Petite barre élégante dessous */
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: #2e7d32;
  border-radius: 3px;
}
/* ================= SLIDER ================= */
.slider {
  position: relative;
  width: 100%;
  height:90vh; /* hauteur fixe sur desktop */
  margin:0;
  padding:0;
  overflow:hidden;
}

@media(max-width:768px){
  .slider{
    height:30vh; /* hauteur fixe sur mobile */
  }
}

.slide {
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
}

.slide.active{
  opacity:1;
  z-index:1;
}

/* ================= IMAGES SLIDER ================= */
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;  /* remplit le conteneur sans déformer */
  object-position:center;
  display:block;
}

/* ================= SLIDER OVERLAY ================= */
.slider-overlay{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:30px 20px;
  color:#fff;
  z-index:2;
  max-width:90%;
  background:rgba(0,0,0,0.45);
  border-radius:12px;
}

/* Masqué sur mobile */
@media(max-width:768px){
  .slider-overlay{
    display:none;
  }
}

/* Animation texte */
.slider-overlay h1{
  font-size:42px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:10px;
  animation:fadeUp 1.2s ease;
}

.slider-overlay p{
  font-size:18px;
  line-height:1.4;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= SLIDER CONTROLS ================= */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:40px;
  color:#fff;
  cursor:pointer;
  padding:15px;
  background:rgba(0,0,0,0.45);
  border-radius:50%;
  z-index:3;
}

@media(max-width:768px){
  .arrow{
    display:none; /* masqué sur mobile */
  }
}

.left{left:20px;}
.right{right:20px;}

.dots{
  position:absolute;
  bottom:25px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}

.dots span{
  width:12px;
  height:12px;
  background:#fff;
  opacity:.7;
  border-radius:50%;
  cursor:pointer;
}

.dots span.active{
  opacity:1;
  background:#0f7b32;
}


.mission-block{
  padding:80px 0;
  background:#f4f7f9;
  text-align:left;
}

.section-title{
  font-size:38px;
  color:#0f7b32;
  margin-bottom:20px;
  font-weight:700;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
}

.section-intro{
  font-size:18px;
  max-width:800px;
  margin:0 auto 40px auto;
  line-height:1.6;
  color:#333;
}

.mission-list{
  list-style:none;
  padding-left:0;
  margin-bottom:50px;
}

.mission-list li{
  font-size:16px;
  line-height:1.8;
  margin-bottom:15px;
  display:flex;
  align-items:flex-start;
  gap:12px;
  text-align:left;
  justify-content:center;
}

.mission-list li i{
  color:#0f7b32;
  min-width:22px;
  font-size:18px;
  margin-top:3px;
}

/* ================= CARDS ================= */
.mission-cards{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:25px;
  margin-top:20px;
}

.mission-cards .card{
  background:#fff;
  flex:1 1 calc(33% - 25px);
  padding:35px 25px;
  border-radius:15px;
  box-shadow:0 8px 30px rgba(0,0,0,0.08);
  transition:transform .4s, box-shadow .4s;
  text-align:left;
}

.mission-cards .card:hover{
  transform:translateY(-10px);
  box-shadow:0 12px 40px rgba(0,0,0,0.12);
}

.mission-cards .card h3{
  font-size:24px;
  color:#0f7b32;
  margin-bottom:15px;
  display:flex;
  align-items:center;
  gap:10px;
}

.mission-cards .card p{
  font-size:16px;
  color:#555;
  line-height:1.6;
}

.mission-cards .card .mission-list{
  margin-top:10px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1200px){
  .mission-cards .card{
    flex:1 1 calc(50% - 20px);
  }
}

@media(max-width:768px){
  .mission-cards{
    flex-direction:column;
  }
  .mission-cards .card{
    flex:1 1 100%;
    text-align:center;
  }
  .mission-list li{
    justify-content:center;
  }
}
/* CONTENEUR CARDS */
.mission-cards.two-columns{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
}

/* Carte gauche + droite */
.mission-cards .card{
  background:#fff;
  padding:30px 25px;
  border-radius:15px;
  box-shadow:0 8px 30px rgba(0,0,0,0.08);
  transition:transform .4s, box-shadow .4s;
  text-align:left;
}

.mission-cards .card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 40px rgba(0,0,0,0.12);
}

/* Largeur cartes */
.left-card{
  flex:1 1 55%;
  display:flex;
  flex-direction:column;
  justify-content:space-between; /* pour allonger la card */
}

.right-card{
  flex:1 1 40%;
}

/* TITRES AVEC SOULIGNEMENT */
.mission-cards .card h3,
.mission-cards .card .card-subtitle{
  font-size:24px;
  color:#0f7b32;
  margin-bottom:15px;
  display:inline-block;
  position:relative;
}

.mission-cards .card h3::after,
.mission-cards .card .card-subtitle::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:50px;
  height:3px;
  background:#0f7b32;
  border-radius:2px;
}

/* LISTES AVEC ICONES */
.mission-list{
  list-style:none;
  padding-left:0;
  margin-top:10px;
}

.mission-list li{
  font-size:16px;
  line-height:1.8;
  margin-bottom:12px;
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.mission-list li i{
  color:#0f7b32;
  min-width:22px;
  font-size:18px;
  margin-top:3px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .mission-cards.two-columns{
    flex-direction:column;
  }
  .left-card, .right-card{
    flex:1 1 100%;
  }
  .mission-cards .card{
    text-align:center;
  }
  .mission-list li{
    justify-content:center;
  }
}

/* ===================== Ajustement texte ===================== */

/* Texte normal aligné à gauche pour toutes les listes */
.mission-cards .card .mission-list li{
  justify-content:flex-start; /* Aligne le texte à gauche */
  text-align:left; /* S’assure que le texte reste à gauche */
}

/* Sur mobile, on garde les cartes centrées mais texte à gauche */
@media(max-width:992px){
  .mission-cards .card{
    text-align:left; /* texte non centré même sur mobile */
  }
}

.mission-cards .card {
  background:#fff;
  padding:20px 25px; /* Réduit le padding global (au lieu de 30px) */
  border-radius:15px;
  box-shadow:0 8px 30px rgba(0,0,0,0.08);
  transition:transform .4s, box-shadow .4s;
  text-align:left;
}

/* On peut spécifiquement réduire le padding en bas si nécessaire */
.mission-cards .card p,
.mission-cards .card ul {
  margin-bottom:10px; /* réduit l’espace entre paragraphes et listes */
}

/* TITRE SECTION */
.news-block .section-title{
  font-size:32px;
  color:#0f7b32;
  margin-bottom:30px;
  position:relative;
  display:inline-block;
}

.news-block .section-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:60px;
  height:4px;
  background:#0f7b32;
  border-radius:2px;
}

/* GRILLE ACTUALITES */
.news-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-bottom:30px;
}

/* CARTE ACTUALITE */
.news-card{
  background:#fff;
  border-radius:15px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .4s, box-shadow .4s;
}

/* ================= TITRES DES ACTUALITES ================= */
.news-card h3{
  font-size:18px; /* réduit un peu la taille */
  color:#0f7b32;
  margin:15px;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* limite à 3 lignes */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Ajouter “...Lire la suite” */
.news-card h3::after{
  content: " ...Lire la suite";
  color:#0f7b32;
  font-weight:600;
}

.news-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.news-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

/* TITRE ET DESCRIPTION */
.news-card h3{
  font-size:20px;
  color:#0f7b32;
  margin:15px 15px 10px;
}

.news-card p{
  font-size:16px;
  color:#333;
  margin:0 15px 15px;
  flex-grow:1;
}

/* BOUTON */
.news-btn-container{
  text-align:center;
  margin-top:10px;
}

.btn-news{
  display:inline-block;
  background:#0f7b32;
  color:#fff;
  padding:12px 30px;
  font-size:16px;
  font-weight:600;
  border-radius:50px;
  text-decoration:none;
  transition:all .3s;
}

.btn-news:hover{
  background:#075b24;
}

/* RESPONSIVE MOBILE */
@media(max-width:992px){
  .news-cards{
    grid-template-columns:1fr; /* 1 par ligne */
  }

  .news-card img{
    height:180px;
  }
}
/* SECTION NEWS PADDING */
.news-block{
  padding:60px 0; /* padding en haut et en bas */
  background:#f9f9f9;
}

/* TITRE CENTRÉ */
.news-block .section-title{
  font-size:32px;
  color:#0f7b32;
  text-align:center; /* centrage du titre */
  margin-bottom:40px;
  position:relative;
  display:inline-block;
}

.news-block .section-title::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-8px;
  width:60px;
  height:4px;
  background:#0f7b32;
  border-radius:2px;
}

/* GRILLE ACTUALITES */
.news-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-bottom:30px;
}

/* CARTE ACTUALITE (LIEN) */
.news-card{
  background:#fff;
  border-radius:15px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  transition:transform .4s, box-shadow .4s;
  color:inherit; /* texte hérite de la couleur pour le lien */
}

.news-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.news-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

/* TITRE ET DESCRIPTION */
.news-card h3{
  font-size:20px;
  color:#0f7b32;
  margin:15px 15px 10px;
}

.news-card p{
  font-size:16px;
  color:#333;
  margin:0 15px 15px;
  flex-grow:1;
}

/* BOUTON */
.news-btn-container{
  text-align:center;
  margin-top:10px;
}

.btn-news{
  display:inline-block;
  background:#0f7b32;
  color:#fff;
  padding:12px 30px;
  font-size:16px;
  font-weight:600;
  border-radius:50px;
  text-decoration:none;
  transition:all .3s;
}

.btn-news:hover{
  background:#075b24;
}

/* RESPONSIVE MOBILE */
@media(max-width:992px){
  .news-cards{
    grid-template-columns:1fr; /* 1 par ligne */
  }

  .news-card img{
    height:180px;
  }
}

/* SECTION DOMAINES D’INTERVENTION */
.intervention-block{
  padding:80px 0;
  background: linear-gradient(180deg, #000, #0f7b32); /* noir en haut → vert en bas */
  color:#fff;
}

.intervention-block .section-title{
  font-size:32px;
  text-align:center;
  margin-bottom:20px;
  position:relative;
  display:inline-block;
  color:#fff; /* titre en blanc */
}

.intervention-block .section-title::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-8px;
  width:60px;
  height:4px;
  background:#fff;
  border-radius:2px;
}

.intervention-block .section-intro{
  text-align:center;
  font-size:18px;
  font-weight:700; /* sous-titre en gras */
  margin-bottom:50px;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
  color:#fff;
}

/* GRILLE DOMAINES */
.intervention-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARTE DOMAINES */
.intervention-card{
  background:rgba(255,255,255,0.05);
  padding:30px 20px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,0.1); /* bordure subtile */
  box-shadow:0 8px 30px rgba(0,0,0,0.15);
  text-align:center;
  transition:all .5s;
  cursor:pointer;
}

.intervention-card i{
  font-size:36px;
  color:#0f7b32;
  margin-bottom:15px;
  display:block;
}

.intervention-card h3{
  font-size:18px;
  font-weight:600;
  color:#fff;
}

/* HOVER EFFECT PREMIUM */
.intervention-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 50px rgba(0,0,0,0.3);
  background:rgba(0,0,0,0.3);
}

/* RESPONSIVE MOBILE */
@media(max-width:992px){
  .intervention-cards{
    grid-template-columns:1fr; /* 1 carte par ligne sur mobile */
  }
}

/* HOVER PREMIUM INTERVENTION */
.intervention-card{
  background:rgba(255,255,255,0.05);
  padding:30px 20px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 8px 30px rgba(0,0,0,0.15);
  text-align:center;
  transition:all .5s ease, transform .4s ease;
  cursor:pointer;
}

.intervention-card i{
  font-size:36px;
  color:#0f7b32;
  margin-bottom:15px;
  display:block;
  transition: all 0.4s ease;
}

.intervention-card h3{
  font-size:18px;
  font-weight:600;
  color:#fff;
  transition: all 0.4s ease;
}

/* EFFET HOVER */
.intervention-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 60px rgba(0,0,0,0.4);
  background:rgba(0,0,0,0.35);
}

.intervention-card:hover i{
  color:#00ff7f; /* icône vert lumineux */
  transform:scale(1.3); /* grossit légèrement */
}

.intervention-card:hover h3{
  color:#00ff7f; /* titre change couleur pour correspondre à l’icône */
}

/* SECTION À PROPOS DE NOUS */
/* SECTION À PROPOS DE NOUS - DESIGN CLAIR */
.about-block.about-light{
  padding:80px 0;
  background: linear-gradient(180deg, #f9f9f9 0%, #e6f2e6 100%);
  color:#333; /* texte foncé */
}

.about-container{
  display:flex;
  justify-content:center;
}

.about-content{
  display:flex;
  align-items:flex-start;
  gap:40px;
  flex-wrap:wrap;
}

.about-logo img{
  width:200px;
  height:auto;
  border-radius:15px;
  box-shadow:0 8px 30px rgba(0,0,0,0.1); /* ombre légère */
}

.about-text{
  flex:1;
}

.about-text .section-title{
  font-size:28px;
  margin-bottom:20px;
  position:relative;
  display:inline-block;
  color:#0f7b32; /* titre vert pour ressortir */
}

.about-text .section-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:50px;
  height:3px;
  background:#0f7b32;
  border-radius:2px;
}

.about-description{
  font-size:16px;
  line-height:1.6;
  display:-webkit-box;
  -webkit-line-clamp:15; /* limite à 15 lignes */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom:20px;
  color:#333;
}

.btn-about{
  display:inline-block;
  padding:12px 25px;
  background:#0f7b32;
  color:#fff;
  font-weight:600;
  border-radius:8px;
  text-decoration:none;
  transition:all .3s ease;
}

.btn-about:hover{
  background:#00ff7f;
  color:#000;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media(max-width:992px){
  .about-content{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .about-logo img{
    width:150px;
    margin-bottom:20px;
  }

  .about-text .section-title{
    font-size:24px;
  }

  .about-description{
    -webkit-line-clamp:10;
  }
}

/* ============================= */
/* SECTION PARTENAIRES PREMIUM  */
/* ============================= */

.partners-section{
  padding:80px 0;
  background:#f9f9f9;
}

.partners-slider{
  overflow:hidden;
  position:relative;
}

/* TRACK */
.partners-track{
  display:flex;
  gap:40px;
  width:max-content;
  animation: scroll 30s linear infinite;
}

/* STOP AU SURVOL */
.partners-slider:hover .partners-track{
  animation-play-state: paused;
}

/* LOGO CARD */
.partner-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  height:200px; /* hauteur uniforme */
  background:#fff;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:all .3s ease;
  text-decoration:none;
}

/* IMAGE */
.partner-logo img{
  max-height:150px;
  max-width:180px;
  object-fit:contain;
  transition:transform .3s ease;
}

/* HOVER */
.partner-logo:hover{
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.partner-logo:hover img{
  transform:scale(1.05);
}

/* SCROLL INFINI PARFAIT (PAS DE VIDE) */
@keyframes scroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

/* Responsive */
@media(max-width:768px){
  .partner-logo{
    min-width:160px;
    height:140px;
  }

  .partner-logo img{
    max-height:100px;
  }
}

/* TRACK */
.partners-track{
  display:flex;
  width:max-content;
  animation: scroll 30s linear infinite;
}

/* STOP AU SURVOL */
.partners-slider:hover .partners-track{
  animation-play-state: paused;
}

/* LOGO */
.partner-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  height:200px;
  text-decoration:none;
}

/* IMAGE */
.partner-logo img{
  height:200px;      /* hauteur identique pour tous */
  width:auto;        /* largeur automatique proportionnelle */
  object-fit:contain;
  display:block;
}

/* ============================= */
/* FOOTER ONG PREMIUM           */
/* ============================= */

.footer-ong{
  background:#0d0d0d;
  color:#ccc;
  padding-top:70px;
  font-size:15px;
}

.footer-container{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:40px;
  padding-bottom:50px;
}

.footer-col h4{
  color:#fff;
  margin-bottom:20px;
  font-size:18px;
  position:relative;
}

.footer-col h4::after{
  content:"";
  width:40px;
  height:3px;
  background:#0f7b32;
  display:block;
  margin-top:8px;
}

.footer-logo{
  width:160px;
  margin-bottom:20px;
}

.footer-desc{
  line-height:1.6;
  margin-bottom:15px;
}

.footer-reg{
  font-size:13px;
  color:#888;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  text-decoration:none;
  color:#ccc;
  transition:all .3s ease;
}

.footer-col ul li a:hover{
  color:#0f7b32;
  padding-left:5px;
}

.footer-col p{
  margin-bottom:12px;
}

.footer-col i{
  margin-right:8px;
  color:#0f7b32;
}

/* FOOTER BOTTOM */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:20px 0;
  background:#000;
}

.footer-bottom-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.footer-social a{
  color:#ccc;
  margin-left:15px;
  font-size:16px;
  transition:all .3s ease;
}

.footer-social a:hover{
  color:#0f7b32;
  transform:translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:992px){
  .footer-container{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .footer-bottom-content{
    flex-direction:column;
    text-align:center;
    gap:15px;
  }
}

.engagement-section {
  padding: 80px 20px;
  background: #f4f7f6;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 40px;
}

.section-subtitle {
  margin-top: 60px;
  font-size: 24px;
  font-weight: 600;
  color: #2e7d32;
  border-left: 5px solid #2e7d32;
  padding-left: 15px;
}

.engagement-list,
.combat-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.engagement-list li,
.combat-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.6;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.engagement-list li:hover,
.combat-list li:hover {
  transform: translateY(-4px);
}

.engagement-list i,
.combat-list i {
  color: #2e7d32;
  font-size: 22px;
  margin-top: 4px;
  min-width: 25px;
}

.about-section {
  padding: 80px 20px;
  background: #f4f7f6;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Desktop : flex pour aligner logo à gauche et texte à droite */
.about-header {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.about-logo {
  width: 200px; /* Logo plus grand sur desktop */
  flex-shrink: 0;
  border-radius: 12px;
}

.about-intro {
  flex: 1;
}

.about-title {
  font-size: 32px;
  color: #1b5e20;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

/* Listes avec icônes */
.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-list li i {
  color: #2e7d32;
  font-size: 20px;
  margin-top: 2px;
  background: linear-gradient(45deg, #00c853, #2e7d32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover effect léger */
.about-list li:hover {
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .about-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-logo {
    width: 120px;
    margin-bottom: 20px;
  }

  .about-title {
    font-size: 26px;
  }

  .about-intro {
    text-align: center;
  }

  .about-list li {
    font-size: 15px;
    padding: 12px 15px;
  }
}

.zones-section {
  padding: 40px 20px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.zones-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 30px;
}

/* Tableau */
.zones-table {
  width: 60%;
  margin: auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #c1c1c1;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.zones-table th, 
.zones-table td {
  padding: 5px 10px;
  font-weight: 700;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0; /* lignes fines horizontales */
  border-right: 1px solid #e0e0e0;  /* lignes fines verticales */
}

.zones-table th:last-child,
.zones-table td:last-child {
  border-right: none; /* pas de double ligne à droite */
}

.zones-table tbody tr:last-child td {
  border-bottom: none; /* dernière ligne pas de double ligne */
}

/* En-tête */
.zones-table thead {
  background: #2e7d32;
  color: #fff;
}

/* Gradient léger + effet carte pour chaque province */
.province-sudkivu td {
  background: linear-gradient(90deg, #c8e6c9, #a5d6a7);
  box-shadow: inset 0 0 0 0 rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
}

.province-nordkivu td {
  background: linear-gradient(90deg, #a5d6a7, #81c784);
  box-shadow: inset 0 0 0 0 rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
}

.province-maniema td {
  background: linear-gradient(90deg, #81c784, #66bb6a);
  box-shadow: inset 0 0 0 0 rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
}

.province-tanganyika td {
  background: linear-gradient(90deg, #66bb6a, #4caf50);
  box-shadow: inset 0 0 0 0 rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
}

/* Texte centré et gras */
.zones-table th, .zones-table td {
  text-align: center;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .zones-table {
    width: 100%; /* plein écran sur mobile */
  }

  .zones-table th, .zones-table td {
    padding: 12px 8px;
    font-size: 14px;
  }

  .zones-title {
    font-size: 24px;
  }

  .zones-section {
  padding: 30px 0px;

}
}

.projets-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.projets-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 30px;
}

/* Tableau */
.projets-table {
  width: 80%;
  margin: auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #c1c1c1;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  background: #ffffff;
}

/* Cellules */
.projets-table th,
.projets-table td {
  padding: 15px 20px;
  font-weight: 400;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  text-align: center;
}

/* Supprimer double bordure */
.projets-table th:last-child,
.projets-table td:last-child {
  border-right: none;
}

.projets-table tbody tr:last-child td {
  border-bottom: none;
}

/* En-tête premium */
.projets-table thead {
  background: linear-gradient(90deg, #2e7d32, #1b5e20);
  color: #ffffff;
}

/* Lignes alternées légères */
.projets-table tbody tr:nth-child(even) td {
  background: #f4f6f5;
}

/* Hover élégant */
.projets-table tbody tr:hover td {
  background: #d0f0c0;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .projets-table {
    width: 100%;
  }

  .projets-table th,
  .projets-table td {
    padding: 12px 8px;
    font-size: 14px;
  }

  .projets-title {
    font-size: 24px;
  }
}