/*  */
body {
  margin: 0;
  padding: 0;
}

header {
  position: fixed;
  width: 100%;
  z-index: 5;
  top: 0;
  left: 0;
  background-color: white;

}

header .navbar {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  /* background-color: white; */
  padding: 0px 20px;
}

.claimg {
  width: 100px;
  height: 100px;
}

.links {
  width: auto;
  height: auto;
  display: flex;
  list-style: none;
  gap: 55px;
  font-family: 'Roboto', sans-serif;
  /* Applique Roboto */
}

body.show-mobile-menu header::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.2);
}

.link {
  text-decoration: none;
  color: black;
  padding: 10px;
  transition: 0.2s ease;
}

#menu-close-button,
#menu-open-button {
  display: none;
}

.navbar .links .link:hover {
  color: white;
  background-color: #F4C201;
  border-radius: 20px;
  /* border: 2px solid #F4C201; */
}

.navbar a.actives {
  color: white;

  border-radius: 20px;
  background-color: #F4C201; /* Jaune pour le lien actif */
}
.slider {
  width: 100%;
  margin-top: 100px;
  height: 38vw;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  width: 400%;
  /* 4 slides */
  height: 100%;
  transition: transform 0.5s ease;
}

.slide {
  width: 25%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Contenu sur l'image */
.content {
  position: absolute;
  height: 100%;
  top: 0%;
  color: white;
  /* background: rgba(0, 0, 0, 0.5); */
  padding: 20px 60px;
  font-family: 'Roboto', sans-serif;
}

.pth1 {
  font-size: clamp(0.6rem, 5vw + 0.8rem, 2.5rem);
}

.text {
  width: auto;
  height: auto;
  font-size: clamp(1.1rem,3vw + 1rem, 1.5rem);
  display: flex;
  /* font-weight: bolder; */
}

.text :nth-child(2) {
  margin-left: 7px;
  color: #F4C201;
}

.content p {
  letter-spacing: 1px;
  line-height: 1.5;
  max-width: 50%;
}



/* Flèches */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(10px, 5vw, 20px);
  /* Taille adaptable */
  color: white;
  background: #F4C201;
  padding: 3px;
  /* cursor: pointer; */
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Points */
.dots {
  text-align: center;
  position: absolute;
  bottom: 30px;
  width: 100%;
}

.dot {
  height: clamp(10px, 2vw, 15px);
  /* Taille adaptable */
  width: clamp(10px, 2vw, 15px);
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.active {
  background-color: #F4C201;
}

.section-two {
  max-width: 1300px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  height: 40vw;
}

@media screen and (min-width: 1920px) {
  .section-two {
    max-width: 1600px; /* Augmente la largeur maximale */
    padding: 40px; /* Plus d'espace interne */
    height: 35vw; /* Réduit légèrement la hauteur relative */
  }
}

@media screen and (min-width: 2560px) {
  .section-two {
    max-width: 2000px; /* Plus large pour remplir l'écran */
    padding: 50px; /* Padding généreux pour l'équilibre */
    height: 30vw; /* Hauteur réduite pour éviter un étirement excessif */
    font-size: 1.2rem; /* Ajuste la taille du texte si nécessaire */
  }
}

/* Media query spécifique pour 4K (facultatif, si besoin de précision) */
@media screen and (min-width: 3840px) {
  .section-two {
    max-width: 2400px; /* Encore plus large pour 4K */
    padding: 60px; /* Espace supplémentaire */
    height: 25vw; /* Hauteur encore réduite pour proportion */
  }
}
.section-two .texte {
  width: 60%;
  font-family: 'Poppins', sans-serif;
  padding-right: 10px;
  /* Espacement entre texte et image */
  margin-left: 40px;

}

.section-two .texte h4 {
  color: #F4C201;
}

.section-two .image {
  width: 40%;
  /* Toujours la moitié exacte */
  height: 100%;
  /* Suit la hauteur de la section */
  display: flex;
  /* Pour contrôler l’image */
  justify-content: center;
  /* Centre l’image si besoin */
  align-items: center;
}

.section-two .image img {
  width: 100%;
  /* Remplit la largeur du conteneur .image */
  height: 100%;
  /* Remplit la hauteur du conteneur .image */
  object-fit: cover;
  /* Recadre l’image pour s’adapter */
  object-position: center;
  display: block;
}

.section-two .image img:hover {
  filter: brightness(0.8);
}

.btnexplore {
  width: auto;
  height: auto;
  padding: 15px 30px;
  color: white;
  background-color: #F4C201;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  /* Transition fluide pour le bouton lui-même */
}

.btnexplore::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 110%;
  height: auto;
  border: 1px solid #F4C201;
  top: -6px;
  /* margin-top: -10px; */
  margin-left: -10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  /* Transition fluide */
}

.btnexplore::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 110%;
  height: auto;
  border: 1px solid #F4C201;
  opacity: 0;
  margin-left: -5px;
  /* right: -25px; */
  /* left: -15px; */
  bottom: -6px;
  transition: opacity 0.3s ease;
  /* Transition fluide */
}

.btnexplore:hover::before {
  opacity: 1;
  /* Visible au survol */
}

.btnexplore:hover::after {
  opacity: 1;
  /* Visible au survol */
}

.btn {
  width: auto;
  height: auto;
  padding: 15px 30px;
  color: white;
  background-color: #F4C201;
  border: none;
  position: relative;
  z-index: 0;
  margin-top: 30px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  /* Transition fluide pour le bouton lui-même */
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 110%;
  height: auto;
  border: 1px solid #F4C201;
  top: -6px;
  margin-left: -10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  /* Transition fluide */
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 110%;
  height: auto;
  border: 1px solid #F4C201;
  opacity: 0;
  margin-left: -5px;
  bottom: -6px;
  transition: opacity 0.3s ease;
  /* Transition fluide */
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover::after {
  opacity: 1;
}

.section-three {
  width: auto;
  height: auto;
  margin-top: 50px;
}

.section-three h4 {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  color: #F4C201;
  font-size: clamp(0.6rem, 5vw + 0.8rem, 2.5rem);
}

.section-three-slides {
  width: 100%;
  max-width: 1300px;
  height: 450px;
  overflow: hidden;
  position: relative;
  margin: 0 auto 20px;
  display: flex;
}

/* Écrans de bureau (1024px à 1920px) */
@media screen and (min-width: 1024px) and (max-width: 1920px) {
  .section-three-slides {
    max-width: 1400px;
    height: 500px;
    margin: 0 auto 25px;
  }
}

/* Écrans 32 pouces QHD et au-delà (2560px+) */
@media screen and (min-width: 2560px) {
  .section-three-slides {
    max-width: 2000px;
    height: 600px;
    margin: 0 auto 30px;
  }
}

/* Écrans 4K (facultatif, pour précision) */
@media screen and (min-width: 3840px) {
  .section-three-slides {
    max-width: 2400px;
    height: 720px;
    margin: 0 auto 40px;
  }
}

.section-three-container {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  width: calc(300px * 8);
}

.section-three-slide {
  margin: 0 10px;
  width: 300px;
  height: 400px;
  background-color: white;
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 1px solid white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.section-three-slide.active-slide {
  box-shadow: 2px 2px 10px yellow;
}

.section-three-slide .photo {
  width: 100%;
  height: 60%;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  position: relative;
  transition: all ease-in-out 0.3s;
}

.section-three-slide:hover>.photo {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.section-three-slide:hover>.textes h3 {
  font-family: 'Jost', sans-serif;
  color: #F4C201;
}

.section-three-slide .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-three-slide .textes {
  width: 100%;
  height: 40%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  box-sizing: border-box;

}

.section-three-slide .textes h3 {
  margin: 0;
  font-size: 1.2em;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
}

.section-three-slide .textes p {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  text-align: left;
  margin: 10px 0 0;
  font-size: 0.9em;
}

.section-three-prev,
.section-three-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(20px, 5vw, 40px);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  cursor: pointer;
}

.section-three-prev {
  left: 10px;
}

.section-three-next {
  right: 10px;
}

.section-three-dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.section-three-dot {
  height: clamp(10px, 2vw, 15px);
  width: clamp(10px, 2vw, 15px);
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.section-three-dot.active {
  background-color: #F4C201;
}

.section-four {
  width: 100%;
  height: auto;
  background-color: #F5F5F5;
  margin: 0 auto 20px;
  /* max-width: 1300px; */
}

.section-four-elements {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 colonnes par défaut */
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}


.first {
  width: 100%;
  /* Remplace la largeur fixe de 350px pour s'adapter à la grille */
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: all ease-in-out 0.2s;
  box-sizing: border-box;
}

.divSvg {
  flex-shrink: 0;
  /* Empêche le SVG de rétrécir */
}

.element {
  font-family: 'Poppins', sans-serif;
  flex: 1;
  /* Prend l'espace restant */
}


.carousel-3d {
  width: 80vw;
  height: 20vw;
  /* Hauteur définie */
  /* max-width: 1000px;
  max-height: 600px; */
  position: relative;
  /* Doit rester relative pour contenir les logos */
  margin: 50px auto;
  /* Marge pour espacement */
  perspective: 1000px;
  background-image: url("./image/fondlogo.jpeg");
  overflow: hidden;
  /* Empêche les logos de déborder */
}



.logo-container {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 30s infinite linear;
}

.logo {
  position: absolute;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%) rotateY(calc(var(--i) * 60deg)) translateZ(400px);
  /* Augmentez ici */
}

.logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;

}

@keyframes rotate {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}


/* Écrans de 900px et moins : 2 colonnes, 3 lignes */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 colonnes */
    grid-template-rows: repeat(3, auto);
    /* 3 lignes */
  }
}

/* Écrans de 420px et moins : 1 colonne */
@media (max-width: 500px) {
  .grid {
    grid-template-columns: 1fr;
    /* 1 colonne */
    grid-template-rows: auto;
    /* Hauteur automatique */
  }

  .first {
    height: auto;
    padding: 15px;
    flex-direction: column;
    /* SVG au-dessus du texte */
    align-items: center;
    text-align: center;
    border: 2px solid #F4C201;
  }
}


.section-four-elements h1 {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin-top: 10px;
  color: #F4C201;
  font-size: clamp(0.6rem, 5vw + 0.8rem, 2.5rem);
}

.divSvg {
  width: 90px;
  height: 90px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);

}

.icon {
  width: 40px;
  height: 40px;
}

.element {
  width: 75%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.first:hover>.divSvg {
  background-color: #25283D;
  width: 90px;
  height: 90px;
  border-radius: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.first:hover>.svg {
  width: 50px;
  height: 50px;
  background-color: #F4C201;
  color: #F4C201;
}

.first:hover path {
  fill: #F4C201;
  /* Change en magenta au survol */
}

.first:hover {
  background-color: #25283D;
  color: white;
}

.section-sixe {
  width: auto;
  height: auto;
  background-color: white;
  margin: 0 auto 20px;
  max-width: 1300px;
}

.realisation {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.realisation h1 {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin-top: 10px;
  color: #F4C201;
  font-size: clamp(0.6rem, 5vw + 0.8rem, 2.5rem);
}

.grid2 {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.first2 {
  /* width: 400px; */
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.texte-hover {
  display: none;
  width: 15%;
  height: auto;
  text-align: center;
  position: absolute;
  color: white;
  font-family: 'Roboto', sans-serif;
  /* color: #F4C201; */
  font-size: clamp(0.9rem, 5vw + 0.8rem, 0.3rem);
}

.first2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all ease-in-out 0.5s;
}

.first2:hover>.texte-hover {
  display: block;
}

.section-seven {
  width: 100%;
  height: auto;
  background-color: #F5F5F5;
  margin: 0 auto 20px;
  /* border: 2px solid red; */
  /* max-width: 1300px; */
}

.experience {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.experience h1 {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin-top: 10px;
  color: #F4C201;
  font-size: clamp(0.6rem, 5vw + 0.8rem, 2.5rem);
}

.experience p {
  width: 90%;
  height: auto;
  text-align: center;
  color: #727977;
}

.bigCounter {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.container {
  width: 500px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 50px;

  align-items: start;
  font-family: Arial, sans-serif;
}

.counter-item {
  width: 200px;
  margin: 20px 0;
  display: flex;
  align-items: start;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  color: #555555;
}

#colo {
  color: #F4C201;
}

.partir1 {
  width: auto;
  height: auto;
  display: flex;
  gap: 90px;
}

.number {
  font-size: 25px;
  color: #333;
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 3px;
  background-color: #F5F5F5;
  border: 1px solid #b4b4b4;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress {
  height: 100%;
  background-color: #555555;
  width: 0;
  transition: width 2s ease-in-out;
}

.percentage {
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 20px;
  text-align: center;
  color: #fff;
  font-size: 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.label {
  margin-top: 5px;
  color: #666;
}

.container2 {
  width: 50%;
  margin: 50px auto;
  font-family: Arial, sans-serif;
}

.counter-item2 {
  width: 100%;
  margin: 20px 0;
}

.progress-bar2 {
  width: 100%;
  height: 35px;
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress2 {
  height: 100%;
  background-color: #F4C201;
  width: 0;
  transition: width 2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.content2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;

  position: relative;
  z-index: 1;
}

.name2 {
  color: #333;
  /* border: 2px solid red; */
  /* background-color: #D4A61E; */
  font-weight: bold;
  justify-items: start;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

.percentage2 {
  color: #333;
  font-size: 16px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

.first2:hover>img {
  filter: brightness(0.7);
}

.section-eight {
  width: 100%;
  height: auto;
  padding-bottom: 200px;
  /* height: 60vw; */
  background-color: white;
}

.future {
  width: 100%;
  height: 700px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

/* Image de fond */
.future>img:nth-child(2) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: invert(30%) brightness(0.5) contrast(100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;

}

.future h1 {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  color: white;
  position: absolute;
  z-index: 1;
  font-size: clamp(0.6rem, 5vw + 0.8rem, 2.5rem);
  top: 10px;
  /* Positionne le titre en haut */
}

.imag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  z-index: 1;
  width: 900px;
  max-width: 90%;
}

.img1 {
  width: auto;
  height: auto;
  position: relative;
}

.img1 img {
  width: 500px;
  height: 350px;
  object-fit: cover;
  object-position: center;
  filter: brightness(1);
}


.forme {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  /* top: 130%;  */
  /* Ajustez pour superposer à moitié sur .future */
  z-index: 100;
  /* Au-dessus de l’image de fond, mais peut être ajusté */
  /* bottom: -100px;  */
  /* Déplace le triangle pour qu’il soit à moitié hors de l’image */
  left: 50%;
  /* Centre horizontalement */
  transform: translateX(-50%);
  /* Ajuste le centrage précis */
}

.carre {
  width: 440px;
  height: 250px;
  background-color: white;
  display: flex;
  align-items: start;
  flex-direction: column;
  padding: 0px 30px;
  font-family: 'Roboto', sans-serif;
  z-index: 2;
}

.carre :nth-child(1) {
  color: black;
  font-size: clamp(0.6rem, 5vw + 0.8rem, 1.5rem);
}

.carre p {
  text-align: start;
  color: #727977;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 20px solid white;
}

.locol {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.locol span {
  font-size: clamp(0.6rem, 5vw + 0.8rem, 0.5rem);
}

.local {
  width: 25px;
  height: 25px;
}

footer {
  width: auto;
  height: 100%;
  overflow: hidden;
}

.foot {
  width: auto;
  height: 500px;
  background-image: url("./image/imagefooter.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  border: 0.1px solid #939393;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: black;
  opacity: 64%;
  z-index: 0;
}

.foot>* {
  position: relative;
  /* z-index: 1; */
}

.gridfoot {
  width: auto;
  height: auto;
  border-left: 1px solid #939393;
  border-right: 1px solid#939393;
  color: white;
  display: grid;
  grid-template-rows: 1fr 4fr;
  align-items: center;
  /* justify-content: center; */
  font-family: 'Roboto', sans-serif;
}

.gridfoot h1 {
  font-size: clamp(0.6rem, 5vw + 0.8rem, 1.5rem);
  border-bottom: 0.5px solid #939393;
  text-align: center;
}

.lienfoot {
  width: 300px;
  margin-left: 100px;
  height: auto;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 30px;
}

.lienfoot1 {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  /* transition: all ease-in-out 0.6s; */

}

.svgfoot {
  width: 8px;
  height: 10px;
  display: none;
  transition: all ease-in-out 10s;
}

.lienfoot1:hover>.svgfoot {
  display: block;
}

.lienfoot1 li {
  width: auto;
  height: auto;
  color: white;
  list-style: none;
}

.lienfoot1:hover>li {
  width: auto;
  height: auto;
  color: #F4C201;
  list-style: none;
}

.socialfoot {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social1 {
  width: 30px;
  height: 30px;
  padding: 5px;
  background-color: #2C2C2C;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social1:hover {
  background-color: #F4C201;
}

.numbersocial {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.phonesvg {
  width: 30px;
  height: 30px;
  background-color: #2C2C2C;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.whatsap {
  width: 250px;
  height: 80px;
  background-color: #F4C201;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  text-decoration: none;
  color: white;
}

.whatsap:hover>a {
  color: black;
}

.phonesvg:hover {
  background-color: #F4C201;
}

.phonesocial p:hover {
  color: #F4C201;
}

.emailfoot {
  width: auto;
  height: auto;
}

input {
  border: 1px solid #939393;
  border-radius: 20px;
  padding: 15px;
  background-color: #2C2C2C;
  color: white;
}

.copy {
  width: auto;
  height: auto;
  padding: 30px;
  background-color: black;
  display: flex;
  color: #939393;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}

#button {
  width: auto;
  height: auto;
  padding: 15px 58px;
  border: 1px solid #727977;
  background-color: #555555;
  border-radius: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  color: black;
  font-size: 1rem;

}

#button:hover {
  color: #F4C201;
}


.copyHover:hover {
  color: #F4C201;
  transition: all ease 0.5s;
}

/* .spacer { height: 100vh; } */
@media screen and (min-width: 820px) and (max-width: 900px) {


  .section-eight {
    width: 100%;
    height: auto;
    padding-bottom: 500px;
    /* height: 60vw; */
    background-color: white;
  }

  .foot {
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("./image/imagefooter.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
    border: 0.1px solid #939393;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .future {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    z-index: 0;
  }

  .imag {
    bottom: auto;
    height: 100%;
    display: flex;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1;
    max-width: 90%;

  }


  .future>img:nth-child(2) {
    width: 100%;
    /* height: 100%; */
    height: auto;
  }


  .future h1 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    color: white;
    z-index: 10;
    font-size: clamp(0.6rem, 5vw + 0.8rem, 2.5rem);
  }

  .img1 {
    width: auto;
    height: auto;
    position: relative;
  }

  .img1 img {
    width: 400px;
    /* Définissez une largeur fixe raisonnable */
    /* width: 50%; */
    height: 320px;
    /* Définissez une hauteur fixe */
    object-fit: cover;
    object-position: center;
    filter: brightness(1);
  }

  .carre {
    width: 380px;
    height: 250px;

  }

}


@media screen and (min-width: 750px) and (max-width: 810px) {
  .foot {
    /* bottom: 0; */
    width: auto;
    height: 100%;
    background-image: url("./image/imagefooter.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
    border: 0.1px solid #939393;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }


  .future {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }

  .section-eight {
    width: 100%;
    height: auto;
    padding-bottom: 400px;
    background-color: white;
  }

  .imag {
    bottom: auto;
    height: 100%;
    display: flex;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1;
    max-width: 90%;

  }


  .future>img:nth-child(2) {
    width: 100%;
    /* height: 100%; */
    height: auto;

  }

  .future h1 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    color: white;
    z-index: 10;
    font-size: clamp(0.6rem, 5vw + 0.8rem, 2.5rem);
  }

  .img1 {
    width: auto;
    height: auto;
    position: relative;
  }

  .img1 img {
    width: 370px;
    /* Définissez une largeur fixe raisonnable */
    /* width: 50%; */
    height: 320px;
    /* Définissez une hauteur fixe */
    object-fit: cover;
    object-position: center;
    filter: brightness(1);
  }

  .carre {
    width: 350px;
    height: 250px;

  }

}

@media (max-width:500px) {
  .claimg{
    width: 40px;
    height: 40px;
  }

  .navbar{
    padding: auto;
  }

  .section-eight {
    width: 100%;
    height: 100%;
    padding-bottom: 300px;

    background-color: white;
    /* border: 5px solid yellow; */
    /* max-height: 700px; */
  }

  .imag {
    bottom: auto;
    height: 100%;
    display: flex;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1;
    /* width: 900px; */
    max-width: 90%;
    /* margin-top: -100px; */

  }

  .future {
    width: 100%;
    height: 100%;
    /* height: 50vh; */
    display: flex;
    padding: 0px 0.1rem;
    flex-direction: column;
    position: relative;
    justify-content: center;
    /* align-items: center; */
    /* overflow: hidden; */
    z-index: 100;
  }

  .imag {
    /* gap: 20px; */
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* max-width: 90%; */
  }

  .future>img:nth-child(2) {
    width: 100%;
    height: 100%;
  }

  .future h1 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    color: white;
    /* position: absolute; */
    z-index: 10;
    font-size: clamp(0.6rem, 5vw + 0.8rem, 2.5rem);
    /* top: 10px;  */
    /* Positionne le titre en haut */
  }

  .img1 {
    margin-top: 100px;
    width: auto;
    height: 100%;
    position: relative;
    border: 1px solid red;
  }

  #img1 {
    margin-top: 235px;
    width: auto;
    height: 100%;
    position: relative;
    border: 2px solid yellow;
    margin-bottom: 30px;
  }

  #forme {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 100;
  }

  .img1 img {
    width: 390px;
    /* Définissez une largeur fixe raisonnable */
    /* width: 50%; */
    height: 320px;
    /* Définissez une hauteur fixe */
    object-fit: cover;
    object-position: center;
    filter: brightness(1);
  }

  .carre {
    width: 380px;
    height: 250px;
  }

  .foot {
    width: auto;
    height: 500px;
    background-image: url("./image/imagefooter.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
    border: 0.1px solid #939393;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
  }


}



@media (max-width:380px) {

  .claimg{
    width: 40px;
    height: 40px;
  }
  .navbar{
    padding: auto;
  }

  .counter-item {
    width: 47vw;
    margin: 20px 15px;
    display: flex;
    align-items: start;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #555555;
  }

  .progress-bar {
    height: 25px;
  }

  .future {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0px 0.1rem;
    flex-direction: column;
    position: relative;
    justify-content: center;
    z-index: 0;
  }

  .imag {
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .future>img:nth-child(2) {
    width: 100%;
    height: 100%;
  }

  .future h1 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    color: white;
    /* position: absolute; */
    z-index: 10;
    font-size: clamp(0.6rem, 5vw + 0.8rem, 2.5rem);
    top: 10px;
    /* Positionne le titre en haut */
  }

  .img1 {
    margin-top: 100px;
    width: auto;
    height: 100%;
    position: relative;
  }

  #img1 {
    margin-top: 235px;
    width: auto;
    height: 100%;
    position: relative;
    border: 2px solid yellow;
    margin-bottom: 30px;
  }

  #forme {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 100;
  }

  .img1 img {
    width: 330px;
    height: 320px;
    /* Définissez une hauteur fixe */
    object-fit: cover;
    object-position: center;
    filter: brightness(1);
  }

  .carre {
    width: 310px;
    height: 250px;
  }

}


@media (max-width: 600px) {

  header .navbar {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    background: white;
    /* padding: 0px 20px; */
  }

  .claimg{
    width: 50px;
    height: 50px;
  }
  .navbar{
    padding: auto;
  }
.AproSect{
  height: 100%;
}
  .container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0px;
    margin: 10px 0;
  }

  .counter-item {
    width: 50vw;
    margin: 20px 0;
    display: flex;
    align-items: start;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #555555;
  }

  .container2 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .partir1 {
    width: 100%;
    height: auto;
    display: flex;
  }

  .counter-item {
    padding: 0 0px;
  }

  .progress-bar {
    height: 30px;
  }

  .bigCounter {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    gap: 0;
  }

  .section-three {
    width: auto;
    height: auto;
    margin-top: 0px;
  }


  .prev,
  .next {
    padding: 5px;
  }

  .section-two {
    flex-direction: column;
    padding: 10px;
    height: auto;
    min-height: 300px;
    clip-path: none;
  }

  .section-two .text,
  .section-two .image {
    width: 100%;
    padding-right: 0;
  }

  .section-two .image {
    height: auto;
  }

  .section-two .image img {
    height: auto;
  }

  .section-three-slide {
    width: 250px;
    height: 350px;
  }

  .section-three-container {
    width: calc(250px * 9);
  }

  .section-three-slide .textes h3 {
    margin: 0;
    font-size: clamp(0.6rem, 2vw + 0.8rem, 2.5rem);
  }

  .section-three-slide .textes p {
    width: 100%;
    text-align: left;
    margin: 10px 0 0;
    font-size: clamp(0.6rem, 2vw + 0.8rem, 0.5rem);  }
}

@media (max-width: 500px) {

  .claimg{
    width: 40px;
    height: 40px;
  }
  .navbar{
    padding: auto;
  }
  .counter-item {
    width: 43vw;
    margin: 20px 10px;
    display: flex;
    align-items: start;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #555555;
  }

  .grid2 {
    grid-template-columns: 1fr;
    /* 1 colonne */
    grid-template-rows: auto;
  }

  .first2 {
    height: auto;
    flex-direction: column;
    /* SVG au-dessus du texte */
    align-items: center;
    text-align: center;
    border: 2px solid #F4C201;
    transition: all ease-in-out 0.2s;
    box-sizing: border-box;
  }

  .texte-hover {
    width: 35%;
  }

}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -30%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.content.animate {
  animation: fadeSlideUp 1s ease-out forwards;
}


/* Media queries pour petits écrans */
@media (max-width: 900px) {

  .future {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    z-index: 0;
  }

  .grid2 {
    grid-template-columns: repeat(2, 1fr);
    /* 2 colonnes */
    grid-template-rows: repeat(3, auto);
    /* 3 lignes */
    gap: 10px;
  }

  .navbar .links {
    display: block;
    top: 0;
    left: -300px;
    background-color: white;
    position: fixed;
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    gap: 5px;
    transition: left 0.2s ease;
  }

  body.show-mobile-menu .navbar .links {
    left: 0;
  }

  #menu-close-button,
  #menu-open-button {
    display: block;
  }

  .navbar #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;

  }

  .navbar #menu-open-button {
    color: #f5c518;

  }

  .navbar .links .link {
    display: block;
    /* margin-top: 17px; */
  }

  .content {
    position: absolute;
    top: 0%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3px 3px;
    margin: 0;
  }

  .text {
    width: auto;
    height: auto;
    font-size: clamp(0.5rem, 5vw + 1rem, 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
  }

  .text h1 {
    margin: 0;
  }

  .text :nth-child(2) {
    margin: 0;
  }

  .content p {
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.5;
    font-size: 0.9rem;
    max-width: 100%;
    padding: 10px 13px;

  }

  .prev,
  .next {
    display: none;
  }

  .slider {
    width: 100%;
    /* Pleine largeur */
    height: 150vw;
    /* Hauteur proportionnelle à la largeur */
    margin: 0px auto;
  }
 

  .btnexplore {
    width: auto;
    height: auto;
    padding: 10px 15px;
    color: white;
    background-color: #F4C201;
    border: none;
    position: relative;
    z-index: 1;
    /* Le bouton est devant */
  }

  .section-two {
    flex-direction: column;
    padding: 10px;
    height: auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
  }

  .section-two .texte,
  .section-two .image {
    text-align: center;
    width: 100%;
    padding-right: 0;
    /* Pas d’espacement supplémentaire sur mobile */
  }

  .section-two .texte h3 {
    text-align: start;
  }

  .section-two .texte p {
    text-align: start;
  }

  .section-two .image {
    height: auto;
    /* Hauteur automatique sur mobile */
  }

  .section-two .image img {
    height: auto;
    /* Hauteur naturelle sur mobile */
  }

  .section-two .texte {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: start;

  }

  .section-two .texte h4 {
    text-align: start;
    margin: 0;
  }

  .grid {
    width: auto;
    height: auto;
    display: grid;
  }

  .grid2 {
    width: auto;
    height: auto;
    display: grid;
  }

  .carousel-3d {
    width: 90vw;
    height: 20vw;
    perspective: 800px;
    /* Réduit la perspective pour écrans moyens */
  }

  .logo {
    width: 8vw;
    height: 8vw;
    transform: translate(-50%, -50%) rotateY(calc(var(--i) * 60deg)) translateZ(35vw);
  }

  .container {
    width: 400px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    font-family: 'Poppins', sans-serif;
  }

  .partir1 {
    width: auto;
    height: auto;
    display: flex;
    gap: 10px;
  }

  .container2 {
    width: 40%;
    margin: 50px auto;
    /* gap: 10px; */
    font-family: 'Poppins', sans-serif;
  }

  .bigCounter {
    width: 100%;
    height: auto;
    display: flex;
    gap: 5px;
    justify-content: space-between;
  }

  .section-eight {
    width: 100%;
    height: 100%;
    background-color: white;
  }

  .foot {
    width: 100%;
    height: 100%;
  }
}


@media screen and (max-width:350px) {
  .container {
    width: 300px;
    /* margin: 50px auto; */
    display: flex;
    flex-direction: column;
    align-items: start;
    font-family: 'Poppins', sans-serif;
  }
  .navbar{
    padding: auto;
  }

  .counter-item {
    width: 40vw;
    margin: 20px 10px;
    display: flex;
    align-items: start;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #555555;
  }

  .partir1 {
    width: auto;
    height: auto;
    display: flex;
    /* gap: 10px; */
  }

  .content {
    position: absolute;
    top: 0%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5px 10px;
    margin: 0;
  }

  .slider {
    margin-top: 50px;
  }

  .text h1 {
    margin: 0;
  }

  .text :nth-child(2) {
    margin: 0;
  }

  .content p {
    /* font-weight: bold; */
    letter-spacing: 1px;
    text-align: center;
    line-height: 1;
    font-size: 0.9rem;
    max-width: 100%;
    padding: 0px 0px;
    bottom: 0;

  }

  .prev,
  .next {
    display: none;
  }

  .pth1 {
    /* font-size: 8vw; */
    font-size: clamp(1.1rem, 5vw + 0.8rem, 2.5rem);

  }

  .text {
    width: auto;
    height: auto;
    font-size: clamp(0.5rem, 5vw + 1rem, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
  }

  .btnexplore {
    width: auto;
    height: auto;
    padding: 8px 12px;
    color: white;
    background-color: #F4C201;
    border: none;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    /* Le bouton est devant */
  }

  .dots {
    text-align: center;
    position: absolute;
    bottom: 0px;
    width: 100%;
  }

  .section-two.btn {
    margin: 0;
    text-align: center;

  }

  .carousel-3d {
    width: 100%;
    height: 30vw;
    perspective: 600px;
    /* Encore plus réduit pour petits écrans */
  }

  .logo {
    width: 12vw;
    height: 12vw;
    transform: translate(-50%, -50%) rotateY(calc(var(--i) * 60deg)) translateZ(40vw);
  }
}


/* Sectionpropo */
.sectionpropo {
  width: 100%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.AproSect {
  width: 100%;
  height: 50vh;
  min-height: 550px;
  max-height: 600px;
  position: relative;
  overflow: hidden;
}

.AproBaground {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.AproBaground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  filter: brightness(0.7);
}

.aboutCenter {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  width: 90%;
  max-width: 800px;
}

.aboutCenter p {
  color: white;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
}

.aboutTrait {
  width: 20%;
  height: 5px;
  background-color: #e0e0df;
}

.AproBande {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #C8C8C8;
  color: black;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
}

.AproBande :nth-child(1) {
  color: #727977;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  margin: 0;
}



/* Media Queries for additional responsiveness */
@media (max-width: 768px) {
  .AproSect {
      height: 45vh;
      min-height: 200px;
      /* min-height: 250px; */
  }

  .aboutCenter p {
      font-size: clamp(1rem, 3.5vw, 1.5rem);
  }

  .AproBande {
      gap: 8px;
      padding: 8px 15px;
      margin-bottom: 0; /* Pas d’espace en bas */
  }
  .sectionpropo{
    margin-bottom: 0; /* Pas d’espace en bas */
  }
}

@media (max-width: 480px) {
  .AproSect {
      height: 45vh;
      min-height: 200px;
  }

  .aboutCenter {
      padding: 15px;
  }
  
.aboutTrait {
  width: 20%;
  height: 5px;
  background-color: #e0e0df;
}

  .aboutCenter p {
      font-size: clamp(0.9rem, 3vw, 1.2rem);
  }

  .AproBande {
      gap: 5px;
      padding: 10px;
  }

  .AproBande p {
      font-size: clamp(0.8rem, 2vw, 0.9rem);
  }
}


/* AproSect2 */
/* Réinitialisation pour éviter des marges/paddings inattendus */

.AproSect2 {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: white; /* Fond léger pour contraste */
  min-height: 400px; /* Hauteur minimale pour éviter un aspect écrasé */
}

/* Conteneur texte */
.AproText {
  flex: 1;
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

/* Titre */
.AproText h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  color: #F4C201;
  margin-bottom: 15px;
}

/* Paragraphe */
.AproText p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-family: 'Jost', sans-serif;
  color: #555;
  line-height: 1.6;
}

/* Bouton */
.AproText .btnexplore {
  padding: 15px 20px;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  color: white;
  background-color: #F4C201; /* Bleu pour un look moderne */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.AproText .btnexplore:hover {
  background-color: #F4C201; /* Plus sombre au survol */
}

.AproImg {
  flex: 1;
  min-width: 350px;
  display: flex;
  justify-content: center;
  position: relative;
}

.AproImg img {
  width: 100%;
  max-width: 500px; /* Réduit de 600px à 500px pour une image plus petite */
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
}

/* Conteneur pour les cercles */
.AproImg .circle-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Cercle principal (le plus grand) */
.AproImg .circle-container::before {
  content: '';
  position: absolute;
  width: 90%;
  max-width: 540px; /* Inchangé */
  height: 90%;
  max-height: 540px;
  border: 3px solid #F5A623;
  border-radius: 50%;
  z-index: 1;
}

/* Deuxième cercle */
.AproImg .circle-container::after {
  content: '';
  position: absolute;
  width: 80%;
  max-width: 480px; /* Inchangé */
  height: 80%;
  max-height: 480px;
  border: 3px solid #F5A623;
  border-radius: 50%;
  z-index: 1;
}

/* Troisième cercle (le plus petit) */
.AproImg .circle-container {
  width: 70%;
  max-width: 420px; /* Inchangé */
  height: 70%;
  max-height: 420px;
  border: 3px solid #F5A623;
  border-radius: 50%;
  z-index: 2;
}


.AproSect22 {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: white; /* Fond léger pour contraste */
  min-height: 400px; /* Hauteur minimale pour éviter un aspect écrasé */
}

.stats-section {
  background-image: url('./image/pondbag.jpeg'); /* Remplacez par votre image de fond */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 50px 20px;
  color: white;
  margin-bottom: 20px;
  position: relative;
}

/* Ajout d'un overlay pour assombrir l'image de fond */
.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Overlay sombre */
  z-index: 1;
}

/* Conteneur des stats */
.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Style des éléments individuels */
.stat-item {
  text-align: center;
  margin: 20px;
  font-family: 'Jost', sans-serif;
  flex: 1;
  min-width: 200px; /* Pour éviter que les éléments soient trop serrés sur petits écrans */
}

/* Style des icônes */
.stat-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

/* Style des titres (nombres) */
.stat-item h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Style des paragraphes */
.stat-item p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.services-section h4{
  font-size: clamp(0.6rem, 5vw + 0.8rem, 2.5rem);
  color: #F4C201;
  font-family: 'Jost', sans-serif;
  font-weight: bold;
}
.serText{
  top: 0;
  margin-top: -40px;
  font-family: 'Poppins', sans-serif;
}

.services-section {
  padding: 50px 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Conteneur des services */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
  gap: 20px; /* Espacement entre les éléments */
  max-width: 1200px;
  margin-top: 80px;
  /* margin: 0 auto; */
}
/* Style des éléments individuels */
.service-item {
  background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px 20px; /* Augmenter le padding pour plus de hauteur */
    text-align: center;
    transition: box-shadow 0.3s ease;
    min-height: 350px; /* Hauteur minimale pour allonger les éléments */
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between; /* Espacer les éléments internes */
}

.service-item:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Style des icônes */
.service-icon {
  width: 60px; /* Légère augmentation de la taille pour équilibrer */
  height: 60px;
  margin-bottom: 20px;
}

/* Style des titres */
.service-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

/* Style des paragraphes */
.service-item p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1; /* Permet au texte de prendre l'espace disponible */
}

/* Style du lien "Read More" */
.read-more {
  display: inline-block;
  font-size: 1rem;
  color: #f5c518; /* Couleur jaune */
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

.contact-section {
  /* padding: 50px 20px; */
  background-color: white;
}

/* Conteneur principal */
.contact-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Partie gauche : Informations de contact */
.contact-info {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: start;
  font-family: 'Jost', sans-serif;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.4;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 5px;
}

.info-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Partie droite : Formulaire de contact */
.contact-form {
  flex: 1;
  max-width: 600px;
  font-family: 'Jost', sans-serif;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;

}
.form-row input {
  background-color: white;
}

.contact-form input,
.contact-form textarea {
  outline: none;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  color: #666;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form textarea {
  resize: vertical;
  margin-bottom: 20px;
}

.contact-form button {
  background-color: #f5c518; /* Jaune comme dans l'image */
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #FFA903;
}
.map-section{
  /* border: 2px solid red; */
  /* max-width: 1280px; */
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 30px; 
}

@media screen and (min-width: 1024px) and (max-width: 1920px) {
  .map-section {
    max-width: 1400px; /* Largeur augmentée pour remplir les écrans Full HD */
    height: 400px; /* Hauteur légèrement augmentée pour l'équilibre */
    padding: 60px 40px; /* Padding ajusté pour plus d'espace */
  }
} 
.gooMap{
  width: 100%;
  height: 100%;
}

.gooMap iframe{
  width: 100%; /* Largeur de la capture */
  height: 100%; /* Hauteur de la capture */
  padding: 0;
}

.join-us-section {
  display: flex;
  max-width: 1280px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 10px;
  font-family: "Poppins","sans-serif";
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.image-container {
  position: relative;
  width: 40%;
  background: url('./image/offreEm2.jpeg') no-repeat center center/cover;
}
.image-container2 {
  position: relative;
  width: 40%;
  background: url('./image/Rejconception.png') no-repeat center center/cover;
}

.image-container3 {
  position: relative;
  width: 40%;
  background-position: center;
  background-size: cover;
  background: url('./image/Rejmacon.png') no-repeat center center/cover;
}

.image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #f5a623;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
}

.image-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-container {
  padding: 20px;
  width: 60%;
}

.location {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.location svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.job-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.responsibilities {
  list-style-type: none;
  margin-bottom: 20px;
}

.responsibilities li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}

.responsibilities li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f5a623;
  font-size: 20px;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btns {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-learn-more {
  background-color: #f5a623;
  color: #fff;
}

.btn-apply {
  background-color: #fff;
  color: #f5a623;
  border: 2px solid #f5a623;
}

.btn-learn-more:hover {
  background-color: #e69500;
}

.btn-apply:hover {
  background-color: #f5a623;
  color: #fff;
}

.no-job-offers {
  text-align: center;
  padding: 40px 20px;
  width: auto;
  background-color: #f5f5f5;
  /* max-width: 800px; */
  font-family: "Poppins","sans-serif";
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.no-job-offers h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.no-job-offers .icon {
  max-width: 100px;
  height: auto;
  margin: 20px 0;
}

.no-job-offers p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.no-job-offers p a {
  color: #0077b5;
  text-decoration: underline;
  transition: color 0.3s;
}

.no-job-offers p a:hover {
  color: #005582;
}

.no-job-offers .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f5a623;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.no-job-offers .btn:hover {
  background-color: #e69500;
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
      max-width: 120px;
  }

  .site-title {
      font-size: 24px;
  }

  .no-job-offers {
      padding: 30px 15px;
  }

  .no-job-offers h2 {
      font-size: 24px;
  }

  .no-job-offers .icon {
      max-width: 80px;
  }

  .no-job-offers p {
      font-size: 14px;
  }
}

@media (max-width: 768px) {
  .join-us-section {
      flex-direction: column;
  }

  .image-container {
      width: 100%;
      height: 200px;
  }
  .image-container2 {
    width: 100%;
    height: 200px;
}
.image-container3 {
  width: 100%;
  height: 200px;
  background-position: center;
  background-size: cover;
}

  .content-container {
      width: 100%;
      padding: 15px;
  }

  .job-title {
      font-size: 24px;
  }

  .buttons {
      flex-direction: column;
      gap: 10px;
  }

  .btns {
      text-align: center;
      width: 50%;
  }
}

/* Responsive Design */
@media (max-width: 1280px) {
  #map {
      width: 100%;
      height: 50vw; /* Maintenir un ratio proche de 16:9 (720/1280 ≈ 0.5625) */
  }
}

@media (max-width: 480px) {
  .map-section {
      padding: 30px 10px;
  }

}
/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
      flex-direction: column;
      gap: 30px;
  }

  .contact-info,
  .contact-form {
      max-width: 100%;
  }

  .contact-info h2 {
      font-size: 1.8rem;
  }

  .contact-form h3 {
      font-size: 1.3rem;
  }

  .form-row {
      flex-direction: column;
      gap: 15px;
  }
}

@media (max-width: 480px) {
  .contact-section {
      padding: 30px 10px;
  }

  .contact-info h2 {
      font-size: 1.5rem;
  }

  .contact-form h3 {
      font-size: 1.2rem;
  }

  .info-item p {
      font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form textarea {
      font-size: 0.9rem;
      padding: 10px;
  }

  .contact-form button {
      font-size: 0.9rem;
      padding: 10px 15px;
      width: 100%; /* Bouton pleine largeur sur mobile */
  }
}

/* Responsive Design */

@media (max-width: 1200px) {
  .services-section {
    padding: 50px 20px;
    background-color: #fff;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 850px) {
  .services-container {
      grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur écrans moyens */
  }
  
}


/* Responsive Design */


/* Media Queries pour responsivité */
@media (max-width: 768px) {
  .services-section {
    padding: 50px 20px;
    background-color: #fff;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .stats-container {
    flex-direction: column;
}

.stat-item {
    margin: 15px 0;
}

.stat-item h3 {
    font-size: 2rem;
}

.stat-item p {
    font-size: 0.9rem;
}
  .AproSect2 {
      flex-direction: column; /* Empile texte et image */
      gap: 10px;
      padding: 20px;
      min-height: auto;
  }
  .AproSect22 {
    flex-direction: column-reverse;
    /* Empile texte et image */
    gap: 10px;
    padding: 20px;
    min-height: auto;
}

  .AproText {
      max-width: 100%;
      padding: 15px;
      text-align: center; /* Centre le texte pour mobile */
  }

  .AproText h1 {
      font-size: clamp(1.3rem, 4vw, 2rem);
  }

  .AproText p {
    /* font-family: 'poppins', sans-serif; */
      font-size: clamp(0.85rem, 2.2vw, 1rem);
  }

  .AproImg img {
    max-width: 450px; /* Augmenté de 300px à 450px pour tablette */
}
.AproImg .circle-container::before {
    max-width: 405px; /* 90% de 450px */
    max-height: 405px;
}
.AproImg .circle-container::after {
    max-width: 360px; /* 80% de 450px */
    max-height: 360px;
}
.AproImg .circle-container {
    max-width: 315px; /* 70% de 450px */
    max-height: 315px;
}
}

@media (max-width: 480px) {
  .services-container {
    grid-template-columns: 1fr; /* 1 colonne sur petits écrans */
}

.service-item h3 {
    font-size: 1.3rem;
}

.service-item p {
    font-size: 0.9rem;
}

.service-icon {
    width: 40px;
    height: 40px;
}
  .stats-section {
      padding: 30px 10px;
  }

  .stat-item h3 {
      font-size: 1.8rem;
  }

  .stat-icon {
      width: 40px;
      height: 40px;
  }
  .AproSect2 {
      padding: 15px;
  }

  .AproText {
      padding: 10px;
  }

  .AproText h1 {
      font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  }

  .AproText p {
      font-size: clamp(0.8rem, 2vw, 0.9rem);
  }

  .AproText .btnexplore {
      padding: 10px 18px;
      font-size: clamp(0.7rem, 1.8vw, 0.9rem);
  }

  .AproImg img {
    max-width: 400px; /* Augmenté de 300px à 400px pour mobile */
}
.AproImg .circle-container::before {
    max-width: 360px; /* 90% de 400px */
    max-height: 360px;
}
.AproImg .circle-container::after {
    max-width: 320px; /* 80% de 400px */
    max-height: 320px;
}
.AproImg .circle-container {
    max-width: 280px; /* 70% de 400px */
    max-height: 280px;
}
}


  
    
 