/* Sections
 */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-start: 0.5rem;
  margin-block-end: 1rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-block-start: 0;
  margin-block-end: 0.9rem;
}

/* Grouping content
 */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  white-space: pre-wrap;
}


img {
  border-style: none;
  height: auto;
  max-width: 100%;
}

figcaption {
  font-size: 16px;
  color: #333333;
  line-height: 1.4;
  font-style: italic;
  font-weight: 400;
}

@media (max-width: 767px) {
  table table {
    font-size: 0.8em;
  }

  table table th,
  table table td {
    padding: 7px;
    line-height: 1.3;
  }

  table table th {
    font-weight: 400;
  }
}

.forminator-ui#forminator-module-1677.forminator-design--default .forminator-label {
  color: #fff !important;
}

/*//////////////////////NAVBAR////////////////////////////////////////////*/


:root {
  --ong-bg: #F5F2EB;
  --ong-green: #1A3C2B;
  --ong-green-h: #122b1f;
  --ong-text: #2D2D2D;
  --ong-muted: #5a5a5a;
  --ong-radius: 50px;
  --ong-h: 72px;
}

/* ---- Barre de header ---- */
.ong-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ong-bg);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.ong-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--ong-h);
  padding: 0 2rem;
  max-width: 1280px;
  margin: 0 auto;
  gap: 1.5rem;
}

/* ---- Logo ---- */
.ong-nav__brand {
  flex-shrink: 0;
}

.ong-nav__logo-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.ong-nav__logo-img {
  height: 38px;
  width: auto;
}

.ong-nav__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ong-green);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ---- Zone centrale (menu + toggler) ---- */
.ong-nav__middle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Menu Bootstrap — réinitialisation + style ---- */
.ong-nav__menu {
  display: flex !important;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ong-nav__menu>li>a,
.ong-nav__menu>li>.nav-link {
  color: var(--ong-text) !important;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.45rem 0.85rem !important;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.ong-nav__menu>li>a:hover,
.ong-nav__menu>li>.nav-link:hover,
.ong-nav__menu>li.current-menu-item>a,
.ong-nav__menu>li.current-menu-ancestor>a {
  color: var(--ong-green) !important;
  background: rgba(26, 60, 43, 0.07);
}

/* Flèche dropdown */
.ong-nav__menu .dropdown-toggle::after {
  border-color: var(--ong-muted) transparent transparent;
  vertical-align: 0.15em;
}

/* ---- Dropdown menu ---- */
.ong-nav__menu .dropdown-menu {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
  padding: 0.5rem;
  min-width: 180px;
  margin-top: 0.4rem !important;
}

.ong-nav__menu .dropdown-item {
  font-size: 0.9rem;
  color: var(--ong-text);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  transition: background 0.15s;
}

.ong-nav__menu .dropdown-item:hover,
.ong-nav__menu .dropdown-item:focus {
  background: rgba(26, 60, 43, 0.07);
  color: var(--ong-green);
}

/* ---- Bouton CTA ---- */
.ong-nav__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  background: var(--ong-green);
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--ong-radius);
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ong-nav__btn:hover,
.ong-nav__btn:focus {
  background: var(--ong-green-h);
  transform: translateY(-1px);
  color: #fff !important;
  outline: none;
}

/* ---- Toggler hamburger custom ---- */
.ong-nav__toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 38px;
  height: 38px;
}

.ong-nav__toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ong-green);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}


@media (max-width: 991.98px) {

  .ong-nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0.75rem 1.25rem;
  }

  /* Logo + toggler sur la même ligne */
  .ong-nav__brand {
    order: 1;
  }

  .ong-nav__middle {
    order: 2;
    flex: unset;
  }

  .ong-nav__cta {
    order: 3;
    display: none !important;
  }

  /* caché en mobile */

  .ong-nav__toggler {
    display: flex;
  }

  /* Menu déroulant mobile */
  .ong-nav__middle .collapse {
    width: 100%;
    order: 10;
  }

  .ong-nav__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.75rem 0 1rem;
    border-top: 1px solid rgba(0, 0, 0, .06);
    margin-top: 0.5rem;
  }

  .ong-nav__menu>li {
    width: 100%;
  }

  .ong-nav__menu>li>a,
  .ong-nav__menu>li>.nav-link {
    display: block;
    padding: 0.65rem 0.5rem !important;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
  }

  /* Bouton CTA en mobile dans le menu déroulant */
  .ong-nav__menu::after {
    content: '';
  }
}

/*///////////////////////////////PERSONNEL//////////////////////////////////////*/

.personnel-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.personnel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.personnel-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.personnel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.personnel-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.personnel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.personnel-image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}

.personnel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.personnel-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f5f5f5;
}

.personnel-name {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.3;
}

.personnel-title-function {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
}

.personnel-secondary {
  font-size: 14px;
  color: #777;
  margin-bottom: 3px;
}

.personnel-zone {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.personnel-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #555;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}

.social-icon:hover {
  background-color: #007bff;
  color: #ffffff;
  transform: scale(1.1);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .personnel-grid {
    grid-template-columns: 1fr;
  }

  .personnel-card {
    flex-direction: column;
  }

  .personnel-image {
    flex: 0 0 250px;
  }
}

/*//////////////////////////////HEADER PAGE/////////////////////////////////////*/
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.8) 100%);
}

/*///////////////////////////////////CARROUSEL D'ACCEUIL///////////////////////*/
/* ---- Wrapper global ---- */
.hero-carousel-wrap {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Splide occupe tout le wrapper ---- */
.hero-carousel-wrap .splide,
.hero-carousel-wrap .splide__track,
.hero-carousel-wrap .splide__list,
.hero-carousel-wrap .splide__slide {
  height: 100%;
  width: 100%;
}

.hero-carousel-wrap .splide {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ---- Chaque slide = image de fond ---- */
.hero-carousel-wrap .splide__slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---- Overlay sombre ---- */
.hero-carousel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
  pointer-events: none;
}

/* ---- Contenu textuel (par-dessus l'overlay) ---- */
.hero-carousel__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 780px;
  width: 100%;
}

.hero-carousel__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .4);
}

.hero-carousel__description {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.7;
  margin: 0 auto 2rem;
  max-width: 640px;
  opacity: 0.92;
}

.hero-carousel__description p {
  margin: 0;
}

/* ---- Bouton ---- */
.hero-carousel__btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: #1A3C2B;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: background 0.25s ease, transform 0.2s ease;
}

.hero-carousel__btn:hover,
.hero-carousel__btn:focus {
  background: #122b1f;
  transform: translateY(-2px);
  outline: none;
  color: #fff;
}

/* ---- Flèches Splide — repositionnées sur le wrapper ---- */
.hero-carousel-wrap .splide__arrow {
  background: transparent;
  opacity: 0.8;
  z-index: 3;
}

.hero-carousel-wrap .splide__arrow svg {
  fill: #fff;
  width: 2rem;
  height: 2rem;
}

.hero-carousel-wrap .splide__arrow:hover {
  opacity: 1;
}

/* ---- Pagination Splide (tirets) ---- */
.hero-carousel-wrap .splide__pagination {
  z-index: 3;
  bottom: 1.2rem;
}

.hero-carousel-wrap .splide__pagination__page {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.45);
  margin: 0 4px;
  transition: background 0.3s, width 0.3s;
}

.hero-carousel-wrap .splide__pagination__page.is-active {
  background: #fff;
  width: 40px;
  transform: none;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .hero-carousel__btn {
    padding: 0.75rem 1.6rem;
    font-size: 0.78rem;
  }
}

/* ///////////////////blog /////////// */
.bl-card {
  width: 102%;
  padding: 6px 6px 6px 6px;
  gap: 10px;
  opacity: 0px;
  background: #ffffff;
  box-shadow: 0px 4px 30px 0px #c8c8c8;
  cursor: pointer;
}

.bl-plus {
  font-weight: 700;
  color: #7d7d7d;
  font-size: 16px;
}

.bl-car {
  font-size: 16px;
}

.modal-fullscreen .modal-body {
  padding: 0;
}

.modal-fullscreen .modal-body {
  overflow: unset !important;

}

.bl-carde {
  gap: 10px;
  opacity: 0px;
  background: #ffffff;
}

.bl-recherche {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  border: none;
}

.dropdown-toggle {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  text-align: left;
  cursor: pointer;
  background: transparent;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  border: none;
  width: 30%;
}

.svg {
  cursor: pointer;
}

.bl-horizontal {
  color: #7d7d7d;
  height: 1px;
  border: 1px solid #7d7d7d;
}

.bl-card-img-top {
  gap: 0px;
  opacity: 0px;
  position: relative;
}

.bl-card-body {

  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 0px;
}

.bl-date {
  font-size: 17px;
  font-weight: 300;
  line-height: 25.02px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #7d7d7d;
}

.bl-targs {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 25.02px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #35b1e6;
  white-space: nowrap;
  max-width: 200px;
  /* Définis la largeur maximale que tu souhaites */
  overflow: hidden;
  text-overflow: ellipsis;
  justify-content: flex-end;
}

.bl-targs ul li a {
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 25.02px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #35b1e6;
  display: flex;
  white-space: nowrap
}

.bl-retour {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 10;
  cursor: pointer;
}

.bl-retour:hover .c1 {
  display: none !important;
}

.bl-retour:hover .c2 {
  display: block !important;
}

.post-categories {
  margin: 0;
  padding: 0;
}

blockquote {
  border-left: 4px solid #ccc;
  margin: 1em 0;
  padding: 0.5em 1em;
  background: #f9f9f9;
  font-style: italic;
}

.post-categories li {
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #35b1e6;
  list-style: none;
}

.post-categories li a {
  text-decoration: none;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 0px;
}

.avis-client-btn {
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 50px;
  font-family: Poppins;
  font-size: 15px;
  font-weight: 700;
  line-height: 25.02px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  display: inline-block;
  cursor: pointer;
  font-family: 'Montserrat';
  background-color: #04633a;
}

.avis-client-btn a {
  text-decoration: none;
  color: inherit;
}

.avis-client-btn:hover {
  color: #FFFFFF !important;
  background-color: #06BC6D;
}

.avis-client-btn1 {
  display: inline-block;
  border: 1px solid rgba(55, 57, 63, 1);
  color: rgba(125, 125, 125, 1);
  border-radius: 50px;
  padding-top: 16px;
  padding-bottom: 16px;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 25.02px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.chargement {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: #057D49;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.bl-card-text {
  font-size: 19px;
  font-weight: 600;
  line-height: 23.02px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #37393f;
  overflow: hidden;
  /* Cache le texte qui dépasse */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Limite à 2 lignes */
  -webkit-box-orient: vertical;
  /* Définit l'orientation de la boîte */
  text-overflow: ellipsis;
  /* Affiche les points de suspension (...) */
}

.card-text-bl p {
  font-size: 20px;
  font-weight: 500;
  line-height: 32.4px;
  text-align: left;
  color: rgba(255, 255, 255, 1);
}

@media only screen and (min-width: 314px) and (max-width: 991px) {
  .scroll-to-top {
    max-width: 12% !important;
  }
}

/* /////////////////////////////QUI SOMME NOUS//////////////////////////////// */
.about-hero {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.about-hero-title {
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.6;
}

/* Main Content Section */
.about-content {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Block */
.about-section {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.about-section:nth-child(1) {
  animation-delay: 0.1s;
}

.about-section:nth-child(2) {
  animation-delay: 0.2s;
}

.about-section:nth-child(3) {
  animation-delay: 0.3s;
}

.about-section:nth-child(4) {
  animation-delay: 0.4s;
}

.about-section:nth-child(5) {
  animation-delay: 0.5s;
}

.about-section:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #6aea6696;
}

.section-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, #122b1f 0%, #66ea8a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Content */
.section-content {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  background: #f8f9fa;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-content p {
  margin: 0 0 15px 0;
}

.section-content p:last-child {
  margin-bottom: 0;
}

.section-content ul,
.section-content ol {
  margin: 15px 0;
  padding-left: 25px;
}

.section-content li {
  margin-bottom: 10px;
}

.section-content h1,
.section-content h2,
.section-content h3,
.section-content h4 {
  color: #2c3e50;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-content h1 {
  font-size: 28px;
}

.section-content h2 {
  font-size: 24px;
}

.section-content h3 {
  font-size: 20px;
}

.section-content h4 {
  font-size: 18px;
}

.section-content strong {
  color: #667eea;
  font-weight: 600;
}

.section-content a {
  color: #667eea;
  text-decoration: none;
  border-bottom: 1px solid #667eea;
  transition: all 0.3s ease;
}

.section-content a:hover {
  color: #6aea6696;
  border-bottom-color: #6aea6696;
}

/* Alternate Section Styling */
.about-section:nth-child(even) .section-header {
  border-bottom-color: #6aea6696;
}

.about-section:nth-child(even) .section-icon {
  background: linear-gradient(135deg, #122b1f 0%, #66ea8a 100%);
}


.about-section:nth-child(even) .section-content {
  background: #fff;
  border: 2px solid #f0f0f0;
}

/* Decorative Elements */
.section-decorative {
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    height: 300px;
  }

  .about-hero-title {
    font-size: 36px;
  }

  .about-hero-subtitle {
    font-size: 16px;
  }

  .about-content {
    padding: 50px 0;
  }

  .about-section {
    margin-bottom: 50px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .section-icon {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-content {
    padding: 25px 20px;
    font-size: 15px;
  }

  .section-decorative::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-icon {
    width: 50px;
    height: 50px;
  }

  .section-icon svg {
    width: 25px;
    height: 25px;
  }
}

/* Print Styles */
@media print {
  .about-hero {
    height: auto;
    padding: 40px 20px;
    background: #667eea;
  }

  .about-section {
    page-break-inside: avoid;
    margin-bottom: 40px;
  }

  .section-content {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ////////////////////////////Section Valeurs//////////////////////////////////// */
.values-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.values-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.values-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grille de valeurs */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Carte de valeur */
.value-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}


.value-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Variantes de couleur de fond */
.value-card.bg-light-green {
  background: #e8f8f5;
}

.value-card.bg-light-blue {
  background: #ebf5fb;
}

.value-card.bg-light-yellow {
  background: #fef9e7;
}

.value-card.bg-light-purple {
  background: #f4ecf7;
}

/* Icône de la valeur */
.value-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
}

.value-icon svg,
.value-icon i {
  width: 50px;
  height: 50px;
  color: #ffffff;
  font-size: 50px;
}

.value-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Titre de la valeur */
.value-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Description de la valeur */
.value-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* Animation d'apparition */
.value-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.value-card:nth-child(1) {
  animation-delay: 0.1s;
}

.value-card:nth-child(2) {
  animation-delay: 0.2s;
}

.value-card:nth-child(3) {
  animation-delay: 0.3s;
}

.value-card:nth-child(4) {
  animation-delay: 0.4s;
}

.value-card:nth-child(5) {
  animation-delay: 0.5s;
}

.value-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .values-section {
    padding: 60px 0;
  }

  .values-title {
    font-size: 32px;
  }

  .values-subtitle {
    font-size: 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 40px 30px;
  }

  .value-icon {
    width: 80px;
    height: 80px;
  }

  .value-icon svg,
  .value-icon i {
    width: 40px;
    height: 40px;
    font-size: 40px;
  }

  .value-title {
    font-size: 20px;
  }

  .value-description {
    font-size: 15px;
  }
}

/*/////////////////////////////// Section témoignages /////////////////////////////////*/
.testimonials-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Carte de témoignage */
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 40px 40px;
  margin: 0 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.splide__slide.is-active .testimonial-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Photo circulaire */
.testimonial-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 30px;
  border: 4px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texte du témoignage */
.testimonial-text {
  margin-bottom: 30px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.testimonial-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  font-style: italic;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.testimonial-text p::before {
  content: '"';
  font-size: 48px;
  color: #ddd;
  position: absolute;
  top: -15px;
  left: -10px;
  font-family: Georgia, serif;
}

/* Nom de la personne */
.testimonial-name {
  font-size: 22px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 8px 0;
  font-family: 'Georgia', serif;
}

/* Fonction/Rôle */
.testimonial-role {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

/* Flèches de navigation */
.splide__arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.splide__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  position: relative;
}

.splide__arrow:hover {
  background: var(--ong-green);
  border-color: var(--ong-green);
  color: #fff;
}

.splide__arrow svg {
  width: 24px;
  height: 24px;
  color: #666;
  transition: color 0.3s ease;
}

.splide__arrow:hover svg {
  color: #ffffff;
}

.splide__arrow--prev {
  left: -60px;
}

.splide__arrow--next {
  right: -60px;
}

.splide__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Pagination dots */
.splide__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}

.splide__pagination__page {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.splide__pagination__page.is-active {
  background: #2c3e50;
  width: 30px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 1200px) {
  .splide__arrow--prev {
    left: 0;
  }

  .splide__arrow--next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 40px 30px 30px;
    min-height: 400px;
    margin: 0 10px;
  }

  .testimonial-photo {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
  }

  .testimonial-text p {
    font-size: 15px;
  }

  .testimonial-name {
    font-size: 20px;
  }

  .splide__arrow {
    width: 40px;
    height: 40px;
  }

  .splide__arrow svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    margin: 0 5px;
  }

  .splide__arrows {
    display: none;
    /* Cache les flèches sur très petits écrans */
  }
}

/*////////////////////////////////STYLE FORMULAIRE ///////////////////////////////////*/
.forminator-ui.forminator-custom-form[data-design=default] .forminator-input {
  border: #B4B4B5 solid 1px !important;
  border-radius: 5px !important;
  padding: 10px 20px !important;
  gap: 10px;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-weight: 300 !important;
  font-style: Light !important;
  font-size: 1.125rem !important;
}

.forminator-ui.forminator-custom-form[data-design=default] .forminator-textarea {
  border: #B4B4B5 solid 1px !important;
  border-radius: 5px !important;
  padding: 10px 20px !important;
  gap: 10px;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-weight: 300 !important;
  font-style: Light !important;
  font-size: 1.125rem !important;
}

.forminator-ui.forminator-custom-form[data-design=default] .forminator-description span:not(.forminator-monospace) {
  display: none !important;
}

.forminator-ui#forminator-module-1738.forminator-design--default .forminator-button-submit {
  font-family: 'Urbanist', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  background-color: #057D49;
  color: #FFFFFF;
  padding: 10px 10px;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.forminator-ui#forminator-module-1738.forminator-design--default .forminator-button-submit:hover {
  background-color: #04633a;
}

.forminator-ui#forminator-module-1738.forminator-design--default .forminator-button-submit::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.0001 1L5.6001 2.5L13.0001 10L5.6001 17.5L7.0001 19L16.0001 10L7.0001 1Z' fill='%23E6F2ED'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

.forminator-btn-submit {
  position: relative;
  padding-right: 44px !important;
  background: linear-gradient(90deg, #057D49 0.48%, #06BC6D 100%) !important;
  border: none !important;
  border-radius: 6px !important;
  color: white !important;
  font-weight: 600 !important;
}

.forminator-btn-submit::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.43177 0.289752C8.94093 -0.152198 9.69765 -0.0805478 10.1219 0.449802L14.1219 5.4498C14.5461 5.98015 14.4774 6.76831 13.9682 7.21031C13.4592 7.65231 12.7025 7.58056 12.2781 7.05031L8.27817 2.05026C7.85385 1.51991 7.92273 0.731715 8.43177 0.289752Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.43177 12.2103C7.92273 11.7683 7.85385 10.9802 8.27817 10.4498L12.2781 5.4498C12.7025 4.91945 13.4592 4.8478 13.9682 5.28975C14.4774 5.73171 14.5461 6.51994 14.1219 7.05031L10.1219 12.0503C9.69765 12.5806 8.94093 12.6523 8.43177 12.2103Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 6.25C12 6.94038 11.4628 7.5 10.8 7.5H1.2C0.537252 7.5 0 6.94038 0 6.25C0 5.55965 0.537252 5 1.2 5H10.8C11.4628 5 12 5.55965 12 6.25Z' fill='white'/%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: right 0.2s ease;
}

/*////////////////////////////////////GALLERIE****BIBLIOTHEQUE//////////////////////////////*/

.library-section {
  background-color: #f8f9fa;
}

.library-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.library-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.library-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Filtres par catégorie */
.library-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 3px 13px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #1A3C2B;
  border-color: #1A3C2B;
  color: #ffffff;
}

/* Grille de documents */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Carte de document */
.document-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.document-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Aperçu du document */
.document-preview {
  position: relative;
  height: 150px;
  background: linear-gradient(135deg, #49b581 0%, #1A3C2B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.document-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.document-icon {
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.9);
}

.document-type {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Informations du document */
.document-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.document-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #1A3C2B;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.document-name {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 2px 0;
  line-height: 1.3;
}

.document-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.document-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  font-size: 13px;
  color: #999;
}

.document-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.document-pages {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Boutons d'action */
.document-actions {
  display: flex;
  gap: 10px;
}

.document-btn {
  flex: 1;
  padding: 5px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-preview {
  background: #1A3C2B;
  color: #ffffff;
}

.btn-preview:hover {
  background: #084728;
}

.btn-download {
  background: #f0f0f0;
  color: #2c3e50;
}

.btn-download:hover {
  background: #e0e0e0;
  color: #1A3C2B;
}

/* Message si aucun document */
.no-documents {
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .library-section {
    padding: 60px 0;
  }

  .library-title {
    font-size: 32px;
  }

  .documents-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .library-filters {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 200px;
    text-align: center;
  }
}



/*///////////////////////////  GALLERIE   /////////////////////////////////////*/
/* Section Galerie */
.gallery-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.gallery-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grille d'albums */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Carte d'album */
.album-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.album-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.album-cover {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #e0e0e0;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.album-card:hover .album-cover img {
  transform: scale(1.1);
}

.album-count {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.album-info {
  padding: 25px;
}

.album-name {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 10px 0;
}

.album-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.album-date {
  font-size: 13px;
  color: #999;
  margin-top: 10px;
}

/* Message si aucun album */
.no-albums {
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-title {
    font-size: 32px;
  }

  .albums-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .album-cover {
    height: 220px;
  }
}

/*///////////////////////////  FAQ   /////////////////////////////////////*/
.faq-section {
  padding: 60px 0;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
}

.accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  background-color: #ffffff;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  background: linear-gradient(135deg, #06BC6D 0%, #057D49 100%);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.accordion-button:focus {
  border-color: #06BC6D;
  box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.25);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 25px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  background-color: #e9ffea;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08);
}

.accordion-item:last-child {
  margin-bottom: 0;
}


/*//////////////////////////NOS PARTENAIRES///////////////////////////////*/
#partners-splide .splide__track .splide__list {
  min-height: 266px !important;
  align-items: center;
}

.partners-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.partners-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.partners-header {
  text-align: center;
}

.partners-title {
  font-size: 42px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partners-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Carrousel Splide */
.partners-carousel {
  margin: 0 auto;
  padding: 20px 0;
}

/* Carte de partenaire */
.partner-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  margin: 0 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1A3C2B 0%, #49b581 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.partner-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.partner-card:hover::before {
  transform: scaleX(1);
}

/* Logo du partenaire */
.partner-logo {
  width: 100%;
  max-width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Nom du partenaire */
.partner-name {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

/* Flèches de navigation */
.partners-carousel .splide__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.partners-carousel .splide__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  position: absolute;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partners-carousel .splide__arrow:hover {
  background: #1A3C2B;
  border-color: #1A3C2B;
}

.partners-carousel .splide__arrow svg {
  width: 24px;
  height: 24px;
  fill: #666;
  transition: fill 0.3s ease;
}

.partners-carousel .splide__arrow:hover svg {
  fill: #ffffff;
}

.partners-carousel .splide__arrow--prev {
  left: -60px;
}

.partners-carousel .splide__arrow--next {
  right: -60px;
}

.partners-carousel .splide__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Pagination dots */
.partners-carousel .splide__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}

.partners-carousel .splide__pagination__page {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.partners-carousel .splide__pagination__page.is-active {
  background: linear-gradient(135deg, #1A3C2B 0%, #49b581 100%);
  width: 30px;
  border-radius: 6px;
}

/* Badge de nombre */
.partners-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1A3C2B 0%, #49b581 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
  .partners-carousel .splide__arrow--prev {
    left: 0;
  }

  .partners-carousel .splide__arrow--next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 60px 0;
  }

  .partners-title {
    font-size: 32px;
  }

  .partners-subtitle {
    font-size: 16px;
  }

  .partner-card {
    padding: 30px 20px;
    min-height: 180px;
    margin: 0 10px;
  }

  .partner-logo {
    max-width: 140px;
    height: 100px;
  }

  .partners-carousel .splide__arrow {
    width: 40px;
    height: 40px;
  }

  .partners-carousel .splide__arrow svg {
    width: 20px;
    height: 20px;
  }
.partners-carousel .splide__pagination__page {
  visibility: hidden;
}
}

@media (max-width: 480px) {
  .partners-carousel .splide__arrows {
    display: contents;
  }
}