/* =====================================================
   GLOBAL
===================================================== */

img {
  max-width: 100%;
  height: auto;
}

/* =====================================================
   HEADER
===================================================== */
.header .container {
  display: flex;
  align-items: center;
}

/* Bouton Don */
.don-cta {
  margin: 0 25px;
  flex-shrink: 0;
}

.btn-don-yellow {
  background-color: #fcbf49;
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.btn-don-yellow:hover {
  background-color: #1086c3;
  transform: translateY(-2px);
}

/* Menu */
#navmenu {
  margin-left: auto;
}

/* Ajout pour descendre un peu le caption */
.custom-caption {
  transform: translateY(40px);
}

/* Language switcher */
.language-switcher {
  margin-right: 15px;
}

.lang-select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-weight: 600;
  background: #fff;
  cursor: pointer;
}

/* Bouton principal */
.header .btn-getstarted {
  color: #000;
  background: #fcd116;
  font-size: 14px;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover {
  background: color-mix(in srgb, #f6ed77, transparent 15%);
}

/*<!-- ===== Styles hover cartes actualité ===== -->*/

.hover-scale:hover {
  transform: scale(1.03);
}


/* Responsive header */
@media (max-width: 1200px) {
  .header .logo { order: 1; }
  .header .btn-getstarted { order: 2; margin: 0 15px 0 0; padding: 6px 15px; }
  .header .navmenu { order: 3; }
}

@media (max-width: 991px) {
  .don-cta {
    display: none;
  }
}

/* Couleur principale */
:root {
  --cnr-primary: #1086c3;
  --cnr-primary-light: #4da3d1;
  --cnr-primary-dark: #0d6fa3;
}

/* Divider */
.divider {
  width: 60px;
  height: 4px;
  background: var(--cnr-primary);
  border-radius: 2px;
}

/* Cartes */
.info-card {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
  border-left: 4px solid var(--cnr-primary);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(16,134,195,0.2);
}

/* Icônes */
.icon {
  font-size: 1.8rem;
  color: var(--cnr-primary);
}

/* Couleurs */
:root {
  --cnr-primary: #1086c3;
  --cnr-dark: #0d6fa3;
}

/* Divider */
.divider {
  width: 60px;
  height: 4px;
  background: var(--cnr-primary);
  border-radius: 2px;
}

/* Cartes */
.info-card {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
  border-left: 4px solid var(--cnr-primary);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(16,134,195,0.2);
}




/* ================= INFO CARD ICONS ================= */

.icon-box{
  width:70px;
  height:70px;
  min-width:70px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:rgba(16,134,195,0.10);

  box-shadow:0 4px 15px rgba(0,0,0,0.08);

  transition:all 0.4s ease;
}

/* Icône */
.icon-box i{
  font-size:30px;
  color:var(--cnr-primary);
  transition:all 0.4s ease;
}

/* Card */
.info-card{
  display:flex;
  align-items:flex-start;
  gap:20px;

  padding:25px;

  background:#fff;

  border-radius:16px;

  box-shadow:0 5px 20px rgba(0,0,0,0.05);

  transition:all 0.4s ease;
}

/* Hover card */
.info-card:hover{
  transform:translateY(-6px);

  box-shadow:0 12px 30px rgba(16,134,195,0.15);
}

/* Hover icon box */
.info-card:hover .icon-box{
  background:var(--cnr-primary);

  transform:scale(1.1) rotate(5deg);
}

/* Hover icon */
.info-card:hover .icon-box i{
  color:#fff;
}

.icon-box i{
  font-size:30px;
  line-height:1;
}

/* Titres */
.info-card h5{
  font-weight:700;
  margin-bottom:10px;
  color:#222;
}

/* Texte */
.info-card p{
  margin:0;
  color:#666;
  line-height:1.7;
}

/* Lire plus */
.read-more{
  color:var(--cnr-primary);
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.read-more:hover{
  color:#0b5f8c;
  text-decoration:underline;
}








/* Texte */
h2, h5 {
  color: var(--cnr-dark);
}

p {
  color: #555;
}

/* Lire plus */
.read-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--cnr-primary);
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  color: var(--cnr-dark);
  text-decoration: underline;
}

/* Image */
.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--cnr-primary);
  color: #fff;
  padding: 8px 15px;
  font-weight: bold;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .info-card {
    flex-direction: column;
    text-align: center;
  }

  .icon-box {
    margin: auto;
  }
}

/* =====================================================
   CHIFFRES CLES
===================================================== */

/* Section fond */
#stats {
  background: #ffffff;
}

/* Box */
.stat-box {
  padding: 25px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(16,134,195,0.2);
}

/* Icône */
.stat-icon {
  font-size: 2rem;
  color: #1086c3;
  margin-bottom: 10px;
}

/* Chiffres */
.stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  color: #1086c3;
}

/* Texte */
.stat-box p {
  margin-top: 5px;
  color: #555;
  font-size: 0.95rem;
}

/* =====================================================
   TEAM SECTION
===================================================== */
.team-image {
  height: 320px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carte équipe */
.team-card {
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

/* Secrétaire permanent (mise en avant) */
.current-sp .team-image {
  height: 400px;
}

.current-sp .team-card {
  transform: translateY(-20px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
  .current-sp .team-image {
    height: 340px;
  }

  .current-sp .team-card {
    transform: none;
  }
}

/* =====================================================
   BANNIÈRE PAGE
===================================================== */
.heading-banner {
  position: relative;
  width: 100%;
  min-height: 360px;
  background-color: #000;
  background-image: url("../img/banner/banner02.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.heading-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.heading-banner .container {
  position: relative;
  z-index: 2;
}

.heading-banner h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.heading-banner .partners-slogan {
  color: #ffffff;
  font-size: 1rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .heading-banner {
    min-height: 220px;
  }

  .heading-banner h2 {
    font-size: 1.6rem;
  }
}

/* =====================================================
   PAYMENT SECTION
===================================================== */
.payment-info .info-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #1086c3;
}

.payment-info h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #1086c3;
}

.payment-info i {
  margin-right: 6px;
}

.amount-btn {
  border: 1px solid #1086c3;
  background: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.amount-btn:hover {
  background: #1086c3;
  color: #fff;
}

.info-box {
  background: #f8f9fa;
  padding: 22px;
  border-radius: 12px;
}

.copy-btn {
  border: none;
  background: none;
  color: #1086c3;
  cursor: pointer;
  margin-left: 6px;
}

.payment-logos img {
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.payment-logos img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* =====================================================
   LIST & CARD
===================================================== */
.list-group-item {
  transition: all 0.3s ease;
}

.list-group-item:hover {
  background-color: #f0d67f;
  transform: translateX(5px);
}

.list-group-item.active {
  background-color: #e76561;
  border-color: #1086c3;
  font-weight: bold;
}

.card {
  border-radius: 12px;
}

iframe {
  background: #f8f9fa;
}

/* =====================================================
   CAROUSEL
===================================================== */
.carousel {
  margin-bottom: 0 !important;
}

.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

.carousel-item {
  height: 32rem;
  background-color: #E3BC14;
}

.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32rem;
  object-fit: cover;
}


/* Overlay sombre page d'accueil */

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
}

/* Texte carousel */
.custom-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: initial;
}


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  top: calc(50% + 20px); /* 👈 descend le contenu sous le navbar */
  transform: translateY(-50%);

  bottom: 3rem;
  z-index: 10;
}


/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
  background-color: #E3BC14;
  
}

.title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  animation: fadeInDown 1s;
}

.desc {
  font-size: 1.2rem;
  color: #ddd;
  margin: 15px 0;
  animation: fadeInUp 1.5s;
}

/* Bouton */
.btn-cnr {
  background-color: #1086c3;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-cnr:hover {
  background-color: #ffc107;
  color: #000;
}


/* =====================================================
   ANIMATIONS solutions durables
===================================================== */

.icon-hover i {
  transition: transform 0.4s ease, color 0.4s ease;
}
.icon-hover:hover i {
  transform: translateY(-10px) rotate(-10deg) scale(1.2);
  color: #f8f360; /* Bleu dynamique au hover si tu veux légèrement différent */
}
.hover-scale:hover {
  transform: scale(1.03);
}


.list-group-item i {
  font-size: 1.2rem;
  vertical-align: middle;
  transition: transform 0.3s;
}
.list-group-item i:hover {
  transform: scale(1.2);
}
.btn-outline-primary:hover {
  background-color: #1086c3;
  color: #fff;
  border-color: #1086c3;
}


/* =====================================================
   ANIMATIONS NOS SECRETAIRES PERMANENTS
===================================================== */

.team-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.team-image {
  overflow: hidden;
}

.team-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

/* 🔥 EFFET ZOOM AU SURVOL */
.team-card:hover .team-image img {
  transform: scale(1.1);
}

/* CONTENU */
.team-content {
  padding: 20px;
}

.team-content h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.team-content span {
  display: block;
  color: #1086c3;
  font-size: 14px;
  margin-bottom: 8px;
}

.team-content p {
  font-size: 14px;
  color: #777;
}

/* Mise en avant du SP actuel */
.team-card.active {
  border: 2px solid #1086c3;
}

.team-card.active::before {
  content: "Actuel";
  position: absolute;
  top: 15px;
  right: 15px;
  background: #1086c3;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}

/* =====================================================
   SECTION OBJECTIF
===================================================== */
/* IMAGE */
.objectif-image-box {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.objectif-image-box img {
  transition: transform 0.5s ease;
  width: 100%;
}

/* 🔥 ZOOM AU SURVOL */
.objectif-image-box:hover img {
  transform: scale(1.08);
}

/* OVERLAY léger */
.objectif-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16,134,195,0.1);
  opacity: 0;
  transition: 0.4s;
}

.objectif-image-box:hover::after {
  opacity: 1;
}

/* CONTENU */
.objectif-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-left: 5px solid #1086c3;
  transition: 0.3s;
}

.objectif-content:hover {
  transform: translateY(-5px);
}

/* LISTE */
.objectif-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
}

.objectif-list i {
  color: #1086c3;
  font-size: 18px;
  margin-top: 3px;
}

/* =====================================================
   SECTION OBJECTIF
===================================================== */

.objectif-content {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.objectif-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.divider {
  border-radius: 3px;
}
@media (max-width:768px){
  .objectif-content {
    padding: 3rem 2rem;
  }
  .objectif-content p, .objectif-content ul li {
    font-size: 0.95rem !important;
  }
  h2.fw-bold {
    font-size: 1.75rem !important;
  }
}


/* =====================================================
   ANIMATIONS VISION-MISSION
===================================================== */

.vision-mission {
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

/* TITRE */
.section-title {
  color: #1086c3;
  font-size: 2rem;
}

.section-subtitle {
  color: #6c757d;
  font-style: italic;
  max-width: 700px;
  margin: auto;
}

/* DIVIDER */
.divider {
  width: 60px;
  height: 4px;
  background: #1086c3;
  border-radius: 2px;
}

/* CARDS */
.card-custom {
  background: #fff;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

/* Bande latérale (effet institutionnel) */
.card-custom::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #1086c3;
}

/* HOVER */
.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* CARD FEATURED */
.featured {
  border: 2px solid #1086c3;
  transform: scale(1.02);
}

/* ICON */
.icon-box {
  width: 70px;
  height: 70px;
  background: rgba(16,134,195,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.icon-box i {
  font-size: 28px;
  color: #1086c3;
}

/* OBJECTIFS */
.objectifs-list {
  list-style: none;
  padding-left: 0;
}

.objectifs-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.objectifs-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1086c3;
  font-weight: bold;
}

/* LIEN */
.read-more {
  color: #1086c3;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.read-more:hover {
  text-decoration: underline;
}

/* =====================================================
   ANIMATIONS VALEURS
===================================================== */

/* SECTION */
.values-section {
  background: #ffffff;
}

/* TITRE */
.section-title {
  color: #1086c3;
  font-weight: 700;
}

.section-subtitle {
  color: #6c757d;
  max-width: 600px;
  margin: auto;
}

/* DIVIDER */
.divider {
  width: 60px;
  height: 4px;
  background: #1086c3;
  border-radius: 2px;
}

/* CARTE VALEUR */
.value-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Ligne décorative en haut */
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #1086c3;
}

/* HOVER */
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ICON */
.icon-box {
  width: 70px;
  height: 70px;
  background: rgba(16,134,195,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 28px;
  color: #1086c3;
}

/* TEXTE */
.value-card p {
  font-size: 0.95rem;
  color: #6c757d;
}



/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   NEW SLIDES
===================================================== */

/* Image */
.slider-img {
  height: 90vh;
  object-fit: cover;
}

/* Overlay propre */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}

/* Correction caption */
.custom-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: initial;
}

/* Texte */
.custom-caption p {
  max-width: 700px;
}

/* Bouton */
.btn-cnr {
  background: #1086c3;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
}

.btn-cnr:hover {
  background: #ffc107;
  color: #000;
}

.bg-cnr {
  background-color: #1086c3;
  color: #fff;
}


/* =====================================================
   ACTUALITES
===================================================== */



.actualites-section{
  background:#f8f9fa;
}

/* TITRE */
.section-title{
  color:#1086c3;
  font-size:2.3rem;
}

.divider{
  width:70px;
  height:4px;

  background:#1086c3;

  border-radius:30px;
}

/* ================= CARD ================= */

.news-card{
  background:#fff;

  border-radius:20px;

  overflow:hidden;

  height:100%;

  box-shadow:0 5px 25px rgba(0,0,0,0.06);

  transition:all 0.4s ease;
}

/* HOVER */
.news-card:hover{
  transform:translateY(-8px);

  box-shadow:0 15px 35px rgba(16,134,195,0.15);
}

/* ================= IMAGE ================= */

.news-image{
  height:230px;

  overflow:hidden;
}

.news-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.5s ease;
}

/* IMAGE HOVER */
.news-card:hover .news-image img{
  transform:scale(1.08);
}

/* ================= CONTENT ================= */

.news-content{
  padding:24px;
}

/* DATE */
.news-date{
  font-size:14px;

  color:#1086c3;

  font-weight:600;
}

/* TITRE */
.news-content h5{
  margin:15px 0;

  font-size:20px;

  font-weight:700;

  color:#222;

  line-height:1.5;
}

/* TEXTE */
.news-content p{
  color:#666;

  line-height:1.7;

  margin-bottom:18px;
}

/* ================= BOUTON ================= */

.read-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;

  color:#1086c3;

  font-weight:700;

  text-decoration:none;

  transition:0.3s ease;
}

.read-btn i{
  transition:0.3s ease;
}

/* HOVER BUTTON */
.read-btn:hover{
  color:#0b5f8c;
}

.read-btn:hover i{
  transform:translateX(5px);
}

/* ================= PAGINATION ================= */

.pagination .page-link{
  width:45px;
  height:45px;

  margin:0 5px;

  border:none;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#1086c3;

  font-weight:700;

  transition:0.3s ease;
}

/* ACTIVE */
.pagination .page-item.active .page-link{
  background:#1086c3;

  color:#fff;
}

/* HOVER */
.pagination .page-link:hover{
  background:#1086c3;

  color:#fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width:768px){

  .section-title{
    font-size:1.8rem;
  }

  .news-image{
    height:200px;
  }

}




/* ================= RESPONSIVE ================= */

@media (max-width:768px){

  .section-title{
    font-size:1.8rem;
  }

  .news-image{
    height:200px;
  }

}


/* ================= SECTION ================= */

.map-rdc-section{
  background:#f4f9fc;
}

.section-title{
  color:#1086c3;

  font-size:2.3rem;
}

.divider{
  width:70px;
  height:4px;

  background:#1086c3;

  border-radius:30px;
}

/* ================= MAP ================= */

.map-wrapper{
  position:relative;

  background:#fff;

  border-radius:25px;

  padding:20px;

  overflow:hidden;

  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.rdc-map{
  width:100%;

  border-radius:20px;
}

/* ================= PROVINCES ================= */

.province-btn{
  position:absolute;

  border:none;

  background:rgba(16,134,195,0.25);

  border-radius:50%;

  cursor:pointer;

  transition:0.3s ease;

}

.doctors.section {
  background: #f7f9fc;
}

/* ================= TITRE ================= */
.divider {
  width: 80px;
  height: 3px;
  background: #1086c3; /* CNR PRIMARY */
  border-radius: 10px;
}

/* ================= CARD ================= */
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16,134,195,0.25);
}

/* ================= IMAGE ================= */
.team-img {
  position: relative;
}

.team-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s;
}

.team-card:hover img {
  transform: scale(1.05);
}

/* ================= OVERLAY ================= */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(16,134,195,0.78); /* CNR PRIMARY */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}

.team-card:hover .overlay {
  opacity: 1;
}

/* ================= SOCIAL ================= */
.social a {
  color: #fff;
  font-size: 18px;
  margin: 0 8px;
  transition: 0.2s;
}

.social a:hover {
  transform: scale(1.2);
}

/* ================= INFO ================= */
.team-info {
  padding: 18px;
}

.team-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  color: #0f2d3a;
}

.team-info span {
  color: #1086c3; /* CNR PRIMARY */
  font-weight: 600;
  font-size: 14px;
}

.team-info p {
  font-size: 13px;
  color: #777;
}

/* ================= ACTUALITÉS WRAPPER ================= */

.actualites-wrapper{
  background: linear-gradient(
    180deg,
    rgba(16,134,195,0.06),
    rgba(255,255,255,1)
  );
  padding: 60px 0;
  border-radius: 25px;
  position: relative;
}

/* effet de séparation doux */
.actualites-wrapper::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #1086c3, transparent);
  border-radius: 10px;
}

/* cartes news */
.news-card{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(16,134,195,.08);
  transition: .3s ease;
}

.news-card:hover{
  transform: translateY(-5px);
}

/* image */
.news-image img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* contenu */
.news-content{
  padding: 15px;
}

/* date */
.news-date{
  font-size: 13px;
  color: #1086c3;
  font-weight: 500;
}

/* bouton */
.read-btn{
  color: #1086c3;
  font-weight: 600;
  text-decoration: none;
}

.read-btn:hover{
  text-decoration: underline;
}