
  /* Polices */
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
  @import url("https://fonts.googleapis.com/css?family=Hind:300,400&display=swap");

  
  /* Variables */
  :root {
    --primary-color: #8B008B;      /* Violet principal */
    --primary-dark: #7d3c98;       /* Violet foncé */
    --primary-light: #9b59b6;      /* Violet clair */
    --accent-color: #18181b;       /* Noir sophistiqué */
    --text-color: #27272a;         /* Noir pour le texte */
    --text-light: #71717a;         /* Gris pour le texte secondaire */
    --background-light: #f4f4f5;   /* Fond clair */
    --white: #ffffff;
    --transition: all 0.3s ease;
    --bg-grey: #f5f7f6;
    --bg-black: #201f1d;
    --bg-white: #ffffff;
    --text-color: #212529;
    --text-color-white: #ffffff;
    --text-color-white: #ffffff;
    --font-color: #676767;
    --heading-color: #343a40;
    --border-color: #dee2e6;
}

[data-aos="fade-up"] {
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

[data-entrance] {
  visibility: hidden; /* Cache le titre par défaut */
  backface-visibility: hidden;
  opacity: 0; /* Rendre invisible */
  transform: scale(0.8); /* Zoom initial */
  transition: visibility 0s, opacity 1s ease, transform 1s ease; 
}

[data-entrance="zoomIn"].visible {
  visibility: visible; /* Affiche le titre */
  opacity: 1; /* Rend visible */
  transform: scale(1); /* Zoom à sa taille normale */
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blinking {
  0% {
    border-right-color: transparent;
  }
}

.typing-effect {
  /* white-space: nowrap; */
  overflow: hidden; /* Cache le texte en dehors des limites */
  border-right: 2px solid #18181b; /* Curseur clignotant */
  display: inline-block;
  animation: typing 2s steps(30, end), blinking 0.6s step-end infinite;
}
body {
  font-family: Poppins , sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}
  
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0 2rem;
  }
  
  header.transparent {
    background: rgba(255, 255, 255, 0.15); /* Fond blanc avec 15% d'opacité */
    backdrop-filter: blur(15px); /* Effet de flou pour améliorer la lisibilité */
    box-shadow: none;
  }
  
  header.solid {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  nav {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    justify-content: center; /* Assure que tout est à gauche */
    align-items: center;
    list-style: none;
  }
  
 .nav-links li {
    position: relative;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: bold;
    transition: var(--transition);
    position: relative;
    /* text-transform: uppercase; */
  }
  
  .nav-links li a:hover {
    color: var(--primary-color);
  }
  
  /* Effet de soulignement au survol */

  
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  /* Style pour le lien actif */
  .nav-links li a.active {
    color: var(--primary-color);
  }
  
  .nav-links li a.active::after {
    width: 100%;
  }
  
  .link{
    text-decoration: solid;
    color: var(--primary-color);
    }

.logo {
    height: 50px;
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 100%;
    width: auto;
  }
  
  @media (max-width: 768px) {
    nav {
      justify-content: space-between;
    }
    
    .logo {
      height: 40px;
    }
  }

  .nav-links {
   margin-left: 0px;  /* Position d'origine */
  }
  /* Style spécifique pour le bouton Contact dans la navigation */
  .nav-links li:last-child a {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
  }
  
  .nav-links li:last-child a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .nav-links li:last-child a::after {
    display: none; /* Supprime la ligne de soulignement pour ce bouton */
  }

  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    /* transition: width 0.3s ease; */
    transition: var(--transition);
  }


  .nav-links li a.active-link::after {
    width: 100%;
}
  
   /* Modification du style des boutons */
   .btn {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.9rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.3s;
  }

  /* Ajustement pour mobile */
  @media (max-width: 768px) {
    .nav-links li:last-child a {
      display: inline-block;
    }
    .nav-links li a {      
      font-weight:normal;
    }
  }
  
  /* Style des liens de navigation sur la vidéo */
  header.transparent .nav-links li a {
    color: var(--white);
  }
  
  /* Style des liens de navigation après défilement */
  header.solid .nav-links li a {
    color: var(--text-color);
  }
  
  /* Style du bouton contact sur la vidéo */
  header.transparent .nav-links li:last-child a {
    background-color: var(--white);
    color: var(--primary-color);
  }
  
  /* Style du bouton contact après défilement */
  header.solid .nav-links li:last-child a {
    background-color: var(--primary-color);
    color: var(--white);
  }

  /* Section Héro */
  .parallax-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }


  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5); /* Assombrit légèrement la vidéo */
  }
  
  .hero-content {
    position: relative;
    height: 120%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
  }
  
  .hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
  
  .hero-content p {
    font-size: 1.5rem;
    /* max-width: 800px; */
    opacity: 0.9;
    font-style: italic;
  }
  
  /* Boutons */
  .cta-buttons {
    display: flex;
    gap: 1.5rem;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    /* font-weight: 300; */
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
  }
  
  .btn.primary {
    background: linear-gradient(135deg,  #7d3c98  10%, #8B008B 90%);
    color: var(--white);
    border: none;
  }
  
  .btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
  }
  
  .btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .btn.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
  }
  
  .btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    box-shadow: 0 5px 15px rgba(109, 40, 217, 0.2);
  }
  


.rating {
    display: flex;
    align-items:center;
    flex-direction: column;
    gap: 10px;
  }


  .rating .google {
    display: flex;
    align-items:center;
    gap: 10px;
    margin-top: 100px;
  }
  
  .rating p{
    font-size: 1rem;
  }
  
  .stars {
    color: #FFD700;
    font-size: 1.8rem;
  }

  .google-icon {
    width: 60px;
  }
  
    /* Ajustement pour mobile */
 @media (max-width: 768px) {
        .nav-links {
          flex-direction: column;
          align-items: center;
        }

        .typing-effect {
          white-space: none;
          }

        .hero-content h1 {
          font-size: 2rem;
          font-weight: 600;
          line-height: 1.2;
          letter-spacing: -0.5px;
        }
      
        .hero-content p {
          font-size: 1rem;
        }
      
        .cta-buttons {
          flex-direction: column;
          width: 100%;
          max-width: 300px;
        }
      
        .btn {
          font-size: 0.6rem;
          text-align: center;
        }
        .hero-content{
        transform: scale(1); /* Zoom effect */
        transform-origin: center; /* Scale from the center */      
         }
         .rating .google {
          margin-top: 20px;
        }

        .rating p{
          font-size: 0.8rem;
        }
        
        .stars {
          color: #FFD700;
          font-size: 1rem;
        }
      
        .google-icon {
          width: 30px;
        }

         }
         
@media (max-width: 1700px) {
          .hero-content{
          transform: scale(0.8); /* Zoom effect */
          transform-origin: center; /* Scale from the center */      
           }
           }      

/* Slider */

.slider{
  background-color: #151414;
  height: 100px;
}
.slick-slide {
  margin: 20px 20px;
}

.slick-slide img {
  height: 60px;
  width: auto;
}
.slick-slide:nth-child(1) img,
.slick-slide:nth-child(2) img,
.slick-slide:nth-child(3) img {
  height: 75px;
  width: 75px;
}

.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}
.slick-track:after
{
  clear: both;
}
.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide
{
  float: right;
}
.slick-slide img
{
  display: block;
}
.slick-slide.slick-loading img
{
  display: none;
}
.slick-slide.dragging img
{
  pointer-events: none;
}
.slick-initialized .slick-slide
{
  display: block;
}
.slick-loading .slick-slide
{
  visibility: hidden;
}
.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}



  /* Section Portage */
  #portage {
    background: white;
  }

  .portage-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;  /*Fond léger pour la section */
    border-radius: 10px; /* Coins arrondis */
    transform: scale(0.8); /* Zoom effect */
    transform-origin: center; /* Scale from the center */

  }

  #portage h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8e44ad; /* Couleur du titre */
  }

  .text-column p {
    font-size: 1rem; /* Taille du texte */
    line-height: 1.6; /* Hauteur de ligne pour lisibilité */
    color: #333; /* Couleur du texte */
    text-align: justify;
  }

  @media (max-width: 768px) {
    .portage-content {
      display: flex;
      justify-content: space-between;
      align-items: center ;
      flex-direction: column;
      background: white;  /*Fond léger pour la section */
      border-radius: 10px; /* Coins arrondis */
    }

    #portage h2 {
      text-align: center;
      font-size: 1.5rem;
    }

    .portage-content p {
      font-size: 0.7rem;
    }
    }
  
  .steps-container {
    display: flex;
    justify-content: center;
    gap : 10rem;
    align-items: center;
    align-content: center;
  }
  
  .step {
    text-align: center;
    position: relative;
    }
  
  .step-number {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
  }

  .step h3 {
    color: var(--text-color);
    font-size: 1.25rem;
  }
  
  .step p {
    color: black;
    font-size: 0.9rem;
    max-width: 200px;
  }
  
  /* Flèche entre les étapes */
  .step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -50%;
    top: -20%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 4rem;
    z-index: 2;
    animation: moveArrow 1s linear infinite;
  }

  @keyframes moveArrow {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(15px); /* Déplacement vers la droite */
    }
    100% {
        transform: translateX(0);
    }
  }

.infographic {
  width: 100%;
  max-width: 400px; /* Ajustez selon vos besoins */
  transition: transform 0.3s; /* Transition pour l'effet de survol */
}

.infographic:hover {
  transform: scale(1.05); /* Effet de zoom au survol */
}

.cta-text {
  font-weight: bold; /* Met le texte en gras */
  font-style: italic; /* Met le texte en italique */
}

#portage > .container {
  display: flex;
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
  /* margin-top: -2rem; */
}

.primary-btn {
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  background-color: var(--primary-color);
  box-shadow: -5px 5px 15px gray;
  color: white;
  border: none;
  transition: var(--transition);
  cursor: pointer;/* Transition pour l'effet de survol */
}

.primary-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  background-color: #5a1478 ;
}

  /* Version mobile */
  @media (max-width: 768px) {
    .steps-container {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
  
    .steps-container::before {
      width: 2px;
      height: 100%;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
    }
  
    .step:not(:last-child)::after {
      display: none;
    }

    #portage > .container {
      margin-top: 1rem;
    }
    .primary-btn{
      font-size: 0.6rem;
      font-weight: 600;
    }

    .step h3 {
      font-size: 1.15rem;
    }

    .step p {
      font-size: 0.7rem;
    }

  }

  /* Section Avantages */
  #avantages{
    width: auto;
    background-color: #f8ebf9;
    text-align: center;
  }
  
  #avantages h2 {
    padding-top: 1rem;
    text-align: center;
    font-size: 2.5rem; 
    color:#8e44ad ;
  }

  #avantages h3 {
    text-align: center;
    font-size: 1.5rem; 
    font-weight: bold; /* Met le texte en gras */
    font-style: italic; /* Met le texte en italique */
  }
  
#avantages ul li {
  display: flex;
  align-items: center;
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-benefits-list li::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 100% !important;
  background: var(--primary-color) !important;
}

.custom-benefits-list {
  list-style: none !important;
  max-width: 1000px !important;
  display: grid !important;
  margin: 4rem ;
  margin-left: 4rem;
  padding-left: 4rem;
  margin-bottom: -20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 13px !important;
}

.listes{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.custom-benefits-list li {
  background: white !important;
  border-radius: 15px !important;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.1) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 2px !important;
  position: relative !important;
  overflow: hidden !important;
}

.custom-benefits-list li:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 40px rgba(109, 40, 217, 0.15) !important;
}

.benefit-icon {
  font-size: 24px !important;
  color: var(--primary-color) !important;
  background: rgba(109, 40, 217, 0.1) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.benefit-content h3 {
  font-size: 18px !important;
  color: var(--text-color) !important;
  font-weight: 600 !important;
  text-align: justify;
}

.benefit-content p {
  color: var(--text-light) !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}

@media (max-width: 768px) {
  .custom-benefits-list {
    grid-template-columns: 1fr !important;
    margin: 1rem ;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .benefit-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
  }

    #avantages h2 {
      font-size: 1.5rem;
    }
    
    #avantages h3 {
      font-size: 0.8rem;
    }

    .benefit-content h3 {
      font-size: 15px !important;
      font-weight: 600 !important;
      text-align: center;
    }

    .benefit-content p {
      color: var(--text-light) !important;
      font-size: 10px !important;
      line-height: 1.5 !important;
    }

    .infographic {
      width: 70%;
    }

  }


/* Section Styling */
.offer-section {
  position: relative;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-content {
  text-align: center;
  color: black ;
}

.offer-content h1 {
  font-size: 3rem;
  color: var(--primary-dark);
  /* text-shadow: -5px 5px 15px pink ; */
}

.offer-details {
  display: flex; /* Utilisation de flexbox */
  align-items: center; /* Alignement vertical au centre */
  /* gap: 50px;  */
  text-align: left; /* Alignement des textes */
}

.offer-details ul {
  list-style-type: none; /* Supprime les puces */
  list-style: none; /* Supprimer les puces */
  text-align: left;
}

.offer-details li {
  font-size: 1rem;
}

.circle {
  width: 180px;
  height: 180px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  min-width: 180px; /* Assure une taille cohérente */
  min-height: 180px;
  text-align: center;
}

.circle p {
  font-size: 2.5rem;
  margin-bottom: -10px;
}

.circle span {
  font-size: 0.9rem;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: -5px 5px 15px gray;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  background: white;
  color:  #5a1478;
  border: none;
  transition: var(--transition);
  cursor: pointer;/* Transition pour l'effet de survol */
}

.cta-button:hover {
  background-color: #5a1478;
  box-shadow: -5px 5px 15px gray;
  color: white;
}

.classlistes{
    display: flex; /* Utilisation de flexbox */
    align-items: center; /* Alignement vertical au centre */
    gap: 5px; /* Espace entre les éléments */
    text-align: left; /* Alignement des textes */
  }
  

  @media (max-width: 768px) {

    .offer-content h1 {
      font-size: 1.5rem;
    }

    .classlistes {
      display: flex; /* Utilisation de flexbox */
      align-items:normal ; /* Alignement vertical au centre */
      flex-direction: column;
      text-align: left; /* Alignement des textes */
      gap: 0px; 
    }
    .classlistes li{
      text-align: left; /* Alignement des textes */
    }
    .offer-details {
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
    }

  .circle span {
    font-size: 0.7rem;

  }
  .offer-details li {
  font-size: 0.9rem;
}


.circle {
  width: 140px;
  height: 140px;
  min-width: 140px; /* Assure une taille cohérente */
  min-height: 140px;
}

.cta-button {
  padding: 0.8rem 1rem;
  font-size: 0.6rem;
  font-weight: 600;
}

}



/* Style pour la section Services */
.services {
    background-color: #f4f4f5; /* Fond clair */
    text-align: center; /* Centre le texte */
}

/* Style pour chaque élément de service */
.service-item {
    background: white; /* Fond blanc */
    border-radius: 10px; /* Coins arrondis */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Ombre pour profondeur */
    transition: transform 0.3s; /* Transition pour l'effet de survol */
}

/* Effet de survol */
.service-item:hover {
    transform: translateY(-5px); /* Légère élévation au survol */
}

/* Icône de service */
.service-icon {
    width: 50px; /* Largeur de l'icône */
    height: 50px; /* Hauteur de l'icône */
}

.service{
  background: #ffffff;
}

.service .service_item {
  position: relative;
  z-index: 1;
  border-top: 5px solid var(--primary-color);
  top: -20px;
  border-radius: 5px;
  width: 2000px;
  height: 360px;
 
}

.service_item > .anim-layer {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 5px;
  background-color: var(--primary-color);
  transition: height 0.3s ease;
}

.service_item:hover .anim-layer {
  height: 100%;
  border-radius: 5px;
}

.service_item p {
  display: none; /* Cacher l'image par défaut */
}

.service_item .card-button {
  display: none; /* Cacher l'image par défaut */
}

.service_item:hover p {
  display: block; /* Afficher l'image au survol */
}

.service_item:hover .card-button{
  display: block; 
}

.service_item:hover h5 {
  display: none; /* Afficher l'image au survol */
}

.service_item:hover i, .service_item:hover p {
  position: relative;
  z-index: 1;
  text-align: justify;
  color: var(--text-color-white);
  border-radius: 5px;
}

.service_item:hover h3 {
  position: relative;
  z-index: 1;
  text-align: justify;
  color: var(--text-color-white);
  border-radius: 5px;
}

.service_item:hover .card-button {
  position: relative;
  z-index: 1;
  color: var(--text-color-white);
  border-radius: 5px;
}

.service_item:hover i {
  color: var(--primary-color);
}

.div-service{
display: flex;
align-items: center;
justify-content: center;
gap: 40px;
border: #18181b ;
 box-shadow: #676767 ;
}


.service_item {
 box-shadow: #676767 ;
 border-radius: 5%;
}

#card_consultant {
  background: url('Consultant.png') no-repeat center center ; 
  background-size: 600px; 
}

#card_entreprise {
  background: url('Entreprise.png') no-repeat center center ; 
  background-size: 600px; 
}

#card_formation {
  background: url('Formation.png') no-repeat center center ; 
  background-size: 600px; 
}

@media (max-width: 1700px) {

#card_consultant {
  background-size: 450px; 
}

#card_entreprise {
  background-size: 450px; 
}

#card_formation {
  background-size: 450px; 
}

}

.service h2 {
  text-align: center;
  font-size: 2.5rem;  
  color:#8e44ad ;
}

.service h3 , .service h4 {
    text-align: center;
    font-size: 1.25rem; 
    font-weight: bold; /* Met le texte en gras */
    font-style: italic; /* Met le texte en italique */
}


.service_item h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold; /* Met le texte en gras */
  font-style: italic; /* Met le texte en italique */
  color: black;
}

h5{
  text-align: center;
  font-size: 1.15rem;
  font-weight: bold; /* Met le texte en gras */
  font-style: italic;
  text-align: center;
}

@media (max-width: 768px) {
  .service h4 {
    font-size: 0.8rem; 
}

.service h3 {
  font-size: 1.2rem; 
}

.service h2 {
  font-size: 1.5rem;
}

.service p {
  font-size: 0.8rem;
}

.service a {
  font-size: 0.8rem;
}

.service h5 {
  font-size: 0.9rem;
}

.div-service{
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
  
.service .service_item {
  width: 300px;
  height: 200px;
}

  
.service_item:hover {
  height: 220px;
}

#card_consultant {
  background: url('Consultant.png') no-repeat center center ; 
  background-size: 300px; 
}

#card_entreprise {
  background: url('Entreprise.png') no-repeat center center ; 
  background-size: 300px; 
}

#card_formation {
  background: url('Formation.png') no-repeat center center ; 
  background-size: 300px; 
}

}

.raison{
  background: linear-gradient(to right,#ffffff,  #ffe1ff, #e3d4e6); /* Dégradé bleu */
}

.raison-content{
  display: flex; 
  align-items: flex-start; 
  justify-content: center; 
  gap: 20px;
}    
.raison-content p,.raison-content table{
flex: 1; 
max-width: 50%;
}

table {
  width: 60%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  }
  th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    }
    th {
    background-color: var(--primary-color);
    color: white;
    text-transform: uppercase;
    }
    tr:hover {
    background-color: #f8ebf9;
    }
    

#simulateur h1 {
  font-size: 2.5rem;
  text-align: center;
  text-shadow: -5px 5px 15px pink ;
  color: white; /* Couleur du texte */
}

#simulateur p {
  font-size: 1.2rem;
  color: white; /* Couleur du texte */
  max-width: 600px;
  font-style: italic; /* Met le texte en italique */
}

#simulateur button {
  padding: 1.2rem 3rem;
  background: var(--white);
  color: var(--primary-color) ;
  text-align: center;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  box-shadow: 0 5px 15px pink;
}

.contents{
  flex-direction: column;
 align-items: baseline;
}

#simulateur button:hover {
  background-color: #5a1478;
  box-shadow: -5px 5px 15px gray;
  color: white;
} 

#simulateur button:active {
  transform: scale(0.95);
}

.simulateur-content{
  display: flex;
    align-items: center;
    justify-content: center;
    gap: -50px;
}

#simulateur img {
  height: 300px;
  width: 450px;
}

/* Animation au défilement */
@keyframes fadeIn {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}


@media (max-width: 768px) {
 
#simulateur img {
  height: 180px;
  width: 260px;
}

.simulateur-content, .contents{
  display: flex;
  flex-direction: column;
    align-items: center;
    justify-content: center;
}

#simulateur button {
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  align-items: center;
}

#simulateur h1 {
  font-size: 1.5rem;
}

#simulateur p {
  font-size: 0.9rem;
  text-align: center;
}


}


/* Style pour le bouton d'envoi */
.submit-button {
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  background-color: var(--primary-color);
  box-shadow: -5px 5px 15px gray;
  color: white;
  border: none;
  transition: var(--transition);
  cursor: pointer;/* Transition pour l'effet de survol */
  text-align: center;
  width: 550px;
}

/* Effet de survol pour le bouton */
.submit-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  background-color: #5a1478 ;
}

.h-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
}

@media (min-width: 1700px) {

  .h-logo {
    margin-top: 150px;   
  }
  }

  
@media (max-width: 768px) {
  .h-logo {
    margin-top: 200px;   
  }
  }

  @media (max-width: 430px) {
    .h-logo {
      margin-top: 100px;   
    }
  
    }

#team-section h2 {
  text-align: center;
  font-size: 2.5rem;  
  color:#8e44ad ;
}

#team-section h4 {
  text-align: center;
  font-weight: bold; /* Met le texte en gras */
  font-style: italic; /* Met le texte en italique */
  font-size: 1.15rem;  
}

/* Team Section Styles */
.team-section {
  display: flex;
  gap: 2rem;
  min-height: 100vh;
  align-items: center;
}

.team-content {
  flex: 0 0 50%;
  margin-top: -300px;
}

@media (max-width: 1700px) {
.team-content {
  flex: 0 0 50%;
  margin-top: -150px;
}
}
.team-content label:not(:last-child) {
  text-align: center;
  font-size: 1rem;
  font-weight: bold; /* Met le texte en gras */
  color: black;
}

.team-content label:last-child {
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold; /* Met le texte en gras */
  color: black;
}

.team-images {
  display: flex;
  flex-direction: column;
  gap:200px;
  }

/* Team images layout */
.team-logo img{
  position: relative;
  width: 80%;
  height: 80%;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
}


@media (max-width: 768px) {
  h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.3px;
  }
  
#team-section h2 {
  font-size: 1.5rem;  
}

#team-section h4 {
 font-size: 0.8rem ;
}

.team-images {
  gap:50px;
  }

  .team-section {
    display: flex;
  flex-direction: column;
  }

  /* .contact-form {
    max-width: 1000px; 
    top:-100%; 
  } */

  .submit-button {
    width: 350px;
  }

  }



.footer-widget ul {
  margin: 0px;
  padding: 0px;
}
.footer-section {
background: #151414;
position: relative;
}
.footer-cta {
border-bottom: 1px solid #373636;
}
.single-cta i {
color: var(--primary-color);
font-size: 25px;
float: left;
margin-top: 8px;
}
.cta-text {
padding-left: 15px;
display: inline-block;
}
.cta-text h4 {
color: #fff;
font-size: 20px;
font-weight: 600;
font-style: normal;
margin-bottom: 2px;
}
.cta-text span {
color: #757575;
font-size: 14px;
font-weight: 400;
font-style: normal;
}


.footer-content {
position: relative;
z-index: 2;
}
.footer-pattern img {
position: absolute;
top: 0;
left: 0;
height: 330px;
background-size: cover;
background-position: 100% 100%;
}
.footer-logo {
margin-bottom: 30px;
}
.footer-logo img {
  width: 200px;
  height: 50px;
}
.footer-text p {
margin-bottom: 14px;
font-size: 14px;
    color: #7e7e7e;
line-height: 28px;
}
.footer-social-icon span {
color: #fff;
display: block;
font-size: 20px;
font-weight: 700;
font-family: Arial, sans-serif;
margin-bottom: 20px;
}
.footer-social-icon a {
color: #fff;
font-size: 16px;
margin-right: 15px;
}
.footer-social-icon i {
height: 40px;
width: 40px;
text-align: center;
line-height: 38px;
border-radius: 50%;
}
.facebook-bg{
background: #3B5998;
}
.linkedin-bg{
background: #084c81;
}
.instagram-bg{
background: #dd39af;
}
.footer-widget-heading h3 {
color: #fff;
font-size: 20px;
font-weight: 600;
margin-bottom: 40px;
position: relative;
}
.footer-widget-heading h3::before {
content: "";
position: absolute;
left: 0;
bottom: -15px;
height: 3px;
width: 60px;
background: var(--primary-color);
}
.footer-widget ul li {
display: inline-block;
float: left;
width: 50%;
margin-bottom: 12px;
}
.footer-widget ul li a:hover{
color: var(--primary-color);
}
.footer-widget ul li a {
color: #878787;
text-transform: capitalize;
}
.subscribe-form {
position: relative;
overflow: hidden;
}
.subscribe-form input {
width: 100%;
padding: 14px 28px;
background: #2E2E2E;
border: 1px solid #2E2E2E;
color: #fff;
border-radius: 0px;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background:var(--primary-color);
  padding: 13px 20px;
  border: 1px solid var(--primary-color);
  top: 0;
}
.subscribe-form button i {
color: #fff;
font-size: 22px;
transform: rotate(-6deg);
}
.copyright-area{
background: #202020;
padding: 25px 0;
}
.copyright-text p {
margin: 0;
font-size: 14px;
color: #878787;
}
.copyright-text p a{
color: var(--primary-color);
}

 #menu-mobile,#hamburger{
  display: none;
} 

@media (max-width: 768px) {
  .cta-text h4 {
    color: #fff;
    font-size: 15px;
    }
    .cta-text span {
    font-size: 12px;
    }
    .single-cta i {
      font-size: 20px;   
      }

    .footer-widget-heading h3 {
        margin-top: 30px;
        }
}

@media (max-width: 1700px) {
.form-content{
  transform: scale(0.91); 
   transform-origin: center; 
}
.container {
  transform: scale(0.9); /* Zoom effect */
  transform-origin: center; /* Scale from the center */
}
}


@media (max-width: 768px) {
  /* Important styles */
#menu-mobile,#hamburger{
  display: block;
}
#bg-menu-mobile {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  background-color: #4E62F7;
  background-color: #0f00fe;

  will-change: transform;
}

  #menu-mobile ul {
    width: 100%;
    position: fixed;
    top: 100px;
    left:0; 
    list-style: none;
    color: #fff;
    z-index:3;
  }

#menu-mobile ul li {
  font-weight:50;
  font-size: 13px;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  will-change: transform;
}

#menu-mobile ul li:hover {
  color: #111;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

#hamburger {
  width: 60px;
  height: 40px;
  position: relative;
  margin: 40px auto;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 60px;
  background-color: transparent;
}

#hamburger:hover span:nth-child(1) {
  top: -4px;
  -webkit-transition: .20s ease-in-out;
  -moz-transition: .20s ease-in-out;
  -o-transition: .20s ease-in-out;
  transition: .20s ease-in-out;
}

#hamburger:hover span:nth-child(3) {
  top: 34px;
  -webkit-transition: .16s ease-in-out;
  -moz-transition: .16s ease-in-out;
  -o-transition: .16s ease-in-out;
  transition: .16s ease-in-out;
}

#hamburger span {
  z-index: 3;
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #111;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .20s ease-in-out;
  -moz-transition: .20s ease-in-out;
  -o-transition: .20s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 0px;
}

#hamburger span:nth-child(2) {
  top: 14px;
}

#hamburger span:nth-child(3) {
  top: 28px;
}

#hamburger.open span:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  background-color: #fff;
}

#hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -30px;
  -webkit-transition: .16s ease-in-out;
  -moz-transition: .16s ease-in-out;
  -o-transition: .16s ease-in-out;
  transition: .16s ease-in-out;
}

#hamburger.open span:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  background-color: #fff;
}


}



  /* Polices */
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
  
  /* Variables */
  :root {
    --primary-color: #8B008B;      /* Violet principal */
    --primary-dark: #7d3c98;       /* Violet foncé */
    --primary-light: #9b59b6;      /* Violet clair */
    --accent-color: #18181b;       /* Noir sophistiqué */
    --text-color: #27272a;         /* Noir pour le texte */
    --text-light: #71717a;         /* Gris pour le texte secondaire */
    --background-light: #f4f4f5;   /* Fond clair */
    --white: #ffffff;
    --transition: all 0.3s ease;
    --bg-grey: #f5f7f6;
    --bg-black: #201f1d;
    --bg-white: #ffffff;
    --text-color: #212529;
    --text-color-white: #ffffff;
    --font-color: #676767;
    --heading-color: #343a40;
    --border-color: #dee2e6;
}

[data-aos="fade-up"] {
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

[data-entrance] {
  visibility: hidden; /* Cache le titre par défaut */
  backface-visibility: hidden;
  opacity: 0; /* Rendre invisible */
  transform: scale(0.8); /* Zoom initial */
  transition: visibility 0s, opacity 1s ease, transform 1s ease; 
}

[data-entrance="zoomIn"].visible {
  visibility: visible; /* Affiche le titre */
  opacity: 1; /* Rend visible */
  transform: scale(1); /* Zoom à sa taille normale */
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blinking {
  0% {
    border-right-color: transparent;
  }
}

.typing-effect {
  /* white-space: nowrap; */
  overflow: hidden; /* Cache le texte en dehors des limites */
  border-right: 2px solid #18181b; /* Curseur clignotant */
  display: inline-block;
  animation: typing 2s steps(30, end), blinking 0.6s step-end infinite;
}
  
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0 2rem;
  }
  
  header.transparent {
    background: rgba(182, 182, 182, 0.15); /* Fond blanc avec 15% d'opacité */
    backdrop-filter: blur(15px); /* Effet de flou pour améliorer la lisibilité */
    box-shadow: none;
  }
  
  header.solid {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
.rating {
    display: flex;
    align-items:center;
    flex-direction: column;
    gap: 10px;
  }


  .rating .google {
    display: flex;
    align-items:center;
    gap: 10px;
    margin-top: 100px;
  }
  
  .rating p{
    font-size: 1rem;
  }
  
  .stars {
    color: #FFD700;
    font-size: 1.8rem;
  }

  .google-icon {
    width: 60px;
  }
  .navbar-toggler {
    border-color: var(--primary-color);
    border-width: 3px;
    border-color: var(--primary-color);
  }
  
    /* Ajustement pour mobile */
 @media (max-width: 768px) {
        .nav-links {
          flex-direction: column;
          align-items: center;
          margin: 0px;
          gap: 0rem;
        }

        .nav-links li a {
          font-size: 0.8rem;
        }

        .nav-links li:last-child a {
          padding: 0.4rem 1rem;
      }

        .typing-effect {
          white-space: none;
          }

        .hero-content h1 {
          font-size: 2rem;
          font-weight: 600;
          line-height: 1.2;
          letter-spacing: -0.5px;
        }
      
        .hero-content p {
          font-size: 1rem;
        }
      
        .cta-buttons {
          flex-direction: column;
          width: 100%;
          max-width: 300px;
        }
      
        .btn {
          font-size: 0.6rem;
          text-align: center;
        }
        .hero-content{
        transform: scale(1); /* Zoom effect */
        transform-origin: center; /* Scale from the center */      
         }
         .rating .google {
          margin-top: 20px;
        }

        .rating p{
          font-size: 0.8rem;
        }
        
        .stars {
          color: #FFD700;
          font-size: 1rem;
        }
      
        .google-icon {
          width: 30px;
        }

      

         }
         
@media (max-width: 1700px) {
          .hero-content{
          transform: scale(0.8); /* Zoom effect */
          transform-origin: center; /* Scale from the center */      
           }
           }      

/* Slider */

.slider{
  background-color: #151414;
  height: 100px;
}
.slick-slide {
  margin: 20px 20px;
}

.slick-slide img {
  height: 60px;
  width: auto;
}
.slick-slide:nth-child(1) img,
.slick-slide:nth-child(2) img,
.slick-slide:nth-child(3) img {
  height: 75px;
  width: 75px;
}

.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}
.slick-track:after
{
  clear: both;
}
.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide
{
  float: right;
}
.slick-slide img
{
  display: block;
}
.slick-slide.slick-loading img
{
  display: none;
}
.slick-slide.dragging img
{
  pointer-events: none;
}
.slick-initialized .slick-slide
{
  display: block;
}
.slick-loading .slick-slide
{
  visibility: hidden;
}
.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}



  /* Section Portage */
  #portage {
    background: white;
  }

  .portage-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;  /*Fond léger pour la section */
    border-radius: 10px; /* Coins arrondis */
    transform: scale(0.8); /* Zoom effect */
    transform-origin: center; /* Scale from the center */

  }

  #portage h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8e44ad; /* Couleur du titre */
  }

  .text-column p, .raison p {
    font-size: 1rem; /* Taille du texte */
    line-height: 1.6; /* Hauteur de ligne pour lisibilité */
    color: #555555; /* Couleur du texte */
    text-align: justify;
  }

  @media (max-width: 768px) {
    .portage-content {
      display: flex;
      justify-content: space-between;
      align-items: center ;
      flex-direction: column;
      background: white;  /*Fond léger pour la section */
      border-radius: 10px; /* Coins arrondis */
    }

    #portage h2 {
      text-align: center;
      font-size: 1.5rem;
    }

    .portage-content p {
      font-size: 0.7rem;
    }
    }

  
    @media (max-width: 768px) {
      .portage-content {
        display: flex;
        justify-content: space-between;
        align-items: center ;
        flex-direction: column;
        background: white;  /*Fond léger pour la section */
        border-radius: 10px; /* Coins arrondis */
      }
  
      #portage h2 {
        text-align: center;
        font-size: 1.5rem;
      }
  
      .portage-content p {
        font-size: 0.7rem;
      }
      }
  
  .steps-container {
    display: flex;
    justify-content: center;
    gap : 10rem;
    align-items: center;
    align-content: center;
  }
  
  .step {
    text-align: center;
    position: relative;
    }
  
  .step-number {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
  }

  .step h3 {
    color: var(--text-color);
    font-size: 1.25rem;
  }
  
  .step p {
    color: black;
    font-size: 0.9rem;
    max-width: 200px;
  }
  
  /* Flèche entre les étapes */
  .step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -50%;
    top: -20%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 4rem;
    z-index: 2;
    animation: moveArrow 1s linear infinite;
  }

  @keyframes moveArrow {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(15px); /* Déplacement vers la droite */
    }
    100% {
        transform: translateX(0);
    }
  }
   
.text-column {
  flex: 1;
}

.image-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.infographic {
  width: 100%;
  max-width: 400px; /* Ajustez selon vos besoins */
  transition: transform 0.3s; /* Transition pour l'effet de survol */
}

.infographic:hover {
  transform: scale(1.05); /* Effet de zoom au survol */
}

.cta-text {
  font-weight: bold; /* Met le texte en gras */
  font-style: italic; /* Met le texte en italique */
}

#portage > .container {
  display: flex;
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
  margin-top: -2rem;
}

.primary-btn {
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  background-color: var(--primary-color);
  box-shadow: -5px 5px 15px gray;
  color: white;
  border: none;
  transition: var(--transition);
  cursor: pointer;/* Transition pour l'effet de survol */
}

.primary-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  background-color: #5a1478 ;
}

  /* Version mobile */
  @media (max-width: 768px) {
    .steps-container {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
  
    .steps-container::before {
      width: 2px;
      height: 100%;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
    }
  
    .step:not(:last-child)::after {
      display: none;
    }

    #portage > .container {
      margin-top: 1rem;
    }
    .primary-btn{
      font-size: 0.6rem;
      font-weight: 600;
    }

    .step h3 {
      font-size: 1.15rem;
    }

    .step p {
      font-size: 0.7rem;
    }

  }

  /* Section Avantages */
  #avantages{
    width: auto;
    background-color: #f8ebf9;
    text-align: center;
  }
  
  #avantages h2 {
    padding-top: 1rem;
    text-align: center;
    font-size: 2.5rem; 
    color:#8e44ad ;
  }

  #avantages h3 {
    text-align: center;
    font-size: 1.5rem; 
    font-weight: bold; /* Met le texte en gras */
    font-style: italic; /* Met le texte en italique */
  }
  
#avantages ul li {
  display: flex;
  align-items: center;
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-benefits-list li::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 100% !important;
  background: var(--primary-color) !important;
}

.custom-benefits-list {
  list-style: none !important;
  max-width: 1000px !important;
  display: grid !important;
  margin: 4rem ;
  margin-left: 4rem;
  padding-left: 4rem;
  margin-bottom: -20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 13px !important;
}

.listes{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.custom-benefits-list li {
  background: white !important;
  border-radius: 15px !important;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.1) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 2px !important;
  position: relative !important;
  overflow: hidden !important;
}

.custom-benefits-list li:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 40px rgba(109, 40, 217, 0.15) !important;
}

.benefit-icon {
  font-size: 24px !important;
  color: var(--primary-color) !important;
  background: rgba(109, 40, 217, 0.1) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.benefit-content h3 {
  font-size: 18px !important;
  color: var(--text-color) !important;
  font-weight: 600 !important;
  text-align: justify;
}

.benefit-content p {
  color: var(--text-light) !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}

@media (max-width: 768px) {
  .custom-benefits-list {
    grid-template-columns: 1fr !important;
    margin: 1rem ;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .benefit-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
  }

    #avantages h2 {
      font-size: 1.5rem;
    }
    
    #avantages h3 {
      font-size: 0.8rem;
    }

    .benefit-content h3 {
      font-size: 15px !important;
      font-weight: 600 !important;
      text-align: center;
    }

    .benefit-content p {
      color: var(--text-light) !important;
      font-size: 10px !important;
      line-height: 1.5 !important;
    }

    .infographic {
      width: 70%;
    }

  }

  .street {
    position: relative;
    background: linear-gradient(to right,#b16cb1,  #8B008B, #352638); /* Dégradé bleu */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .street-content {
    text-align: center;
    color: rgb(255, 255, 255) ;
    text-shadow: -5px 5px 15px black; 
    font-size: 1.5rem;
  }
  .street-details {
    display: flex; /* Utilisation de flexbox */
    align-items: center; /* Alignement vertical au centre */
    text-align: left; /* Alignement des textes */
  }
  .street ul {
    list-style-type: none; /* Supprime les puces */
    list-style: none; /* Supprimer les puces */
    text-align: left;
  }
/* Section Styling */
.offer-section {
  position: relative;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-content {
  text-align: center;
  color: rgb(0, 0, 0) ;
}

.offer-content h1 {
  font-size: 3rem;
}

.offer-details {
  display: flex; /* Utilisation de flexbox */
  align-items: center; /* Alignement vertical au centre */
  text-align: left; /* Alignement des textes */
}

.offer-details ul {
  list-style-type: none; /* Supprime les puces */
  list-style: none; /* Supprimer les puces */
  text-align: left;
}

.offer-details li {
  font-size: 1rem;
}

.circle {
  width: 180px;
  height: 180px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  min-width: 180px; /* Assure une taille cohérente */
  min-height: 180px;
  text-align: center;
}

.circle p {
  font-size: 2.5rem;
  margin-bottom: -10px;
}

.circle span {
  font-size: 0.9rem;
}

.input-icon {
  font-size: 1.5rem;
  color: #8B008B; /* Vert */
  margin: 10px;
  transition: color 0.3s;
}
.street-details .input-icon {
  font-size: 1.5rem;
  color: #ffffff; /* Vert */
  margin: 10px;
  transition: color 0.3s;
}
/* Changement de couleur au survol */
.input-icon:hover {
  color: #FF6347; /* Rouge tomate */
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: -5px 5px 15px gray;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  background: white;
  color:  #5a1478;
  border: none;
  transition: var(--transition);
  cursor: pointer;/* Transition pour l'effet de survol */
}

.cta-button:hover {
  background-color: #5a1478;
  box-shadow: -5px 5px 15px gray;
  color: white;
}

.classlistes{
    display: flex; /* Utilisation de flexbox */
    align-items: center; /* Alignement vertical au centre */
    /* gap: 5px;  */
    text-align: left; /* Alignement des textes */
  }
  
.classliste li {
  font-size: 1.1rem;
  font-weight: bold;
  /* background: var(--primary-color); */
  /* border-radius: 15px; */
  }

  @media (max-width: 768px) {

    .offer-content h1 {
      font-size: 1.5rem;
    }

    .classlistes {
      display: flex; /* Utilisation de flexbox */
      align-items:normal ; /* Alignement vertical au centre */
      flex-direction: column;
      text-align: left; /* Alignement des textes */
      gap: 0px; 
    }
    .classlistes li{
      text-align: left; /* Alignement des textes */
    }
    .offer-details {
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
    }

  .circle span {
    font-size: 0.7rem;

  }
  .offer-details li {
  font-size: 0.9rem;
}


.circle {
  width: 140px;
  height: 140px;
  min-width: 140px; /* Assure une taille cohérente */
  min-height: 140px;
}

.cta-button {
  padding: 0.8rem 1rem;
  font-size: 0.6rem;
  font-weight: 600;
}

}

/* Style pour la section Services */
.services {
    background-color: #f4f4f5; /* Fond clair */
    text-align: center; /* Centre le texte */
}

/* Style pour chaque élément de service */
.service-item {
    background: white; /* Fond blanc */
    border-radius: 10px; /* Coins arrondis */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Ombre pour profondeur */
    transition: transform 0.3s; /* Transition pour l'effet de survol */
}

/* Effet de survol */
.service-item:hover {
    transform: translateY(-5px); /* Légère élévation au survol */
}

/* Icône de service */
.service-icon {
    width: 50px; /* Largeur de l'icône */
    height: 50px; /* Hauteur de l'icône */
}

.service{
  background: #ffffff;
}

.service .service_item {
  position: relative;
  z-index: 1;
  border-top: 5px solid var(--primary-color);
  top: -20px;
  border-radius: 5px;
  width: 2000px;
  height: 300px;
 
}

.service .service_item p{
  font-size: 0.8rem;
}

.service .service_item a{
  text-decoration: underline;

}

.service_item > .anim-layer {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 5px;
  background-color: var(--primary-color);
  transition: height 0.3s ease;
}

.service_item:hover .anim-layer {
  height: 100%;
  border-radius: 5px;
}

.service_item p {
  display: none; /* Cacher l'image par défaut */
}

.service_item .card-button {
  display: none; /* Cacher l'image par défaut */
}

.service_item:hover p {
  display: block; /* Afficher l'image au survol */
}



.service_item:hover h5 {
  display: none; /* Afficher l'image au survol */
}

.service_item:hover i, .service_item:hover p {
  position: relative;
  z-index: 1;
  text-align: justify;
  color: var(--text-color-white);
  border-radius: 5px;
}

.service_item:hover h3 {
  position: relative;
  z-index: 1;
  text-align: justify;
  color: var(--text-color-white);
  border-radius: 5px;
}

.service_item:hover .card-button {
  position: relative;
  z-index: 1;
  color: var(--text-color-white);
  border-radius: 5px;
}

.service_item:hover i {
  color: var(--primary-color);
}

.div-service{
display: flex;
align-items: center;
justify-content: center;
gap: 40px;
border: #18181b ;
 box-shadow: #676767 ;
}


.service_item {
 box-shadow: #676767 ;
 border-radius: 5%;
}

#card_consultant {
  background: url('Consultant.png') no-repeat center center ; 
  background-size: 600px; 
}

#card_entreprise {
  background: url('Entreprise.png') no-repeat center center ; 
  background-size: 600px; 
}

#card_formation {
  background: url('Formation.png') no-repeat center center ; 
  background-size: 600px; 
}

@media (max-width: 1700px) {

#card_consultant {
  background-size: 450px; 
}

#card_entreprise {
  background-size: 450px; 
}

#card_formation {
  background-size: 450px; 
}

}

.service h2,.raison h2 {
  text-align: center;
  font-size: 2.5rem;  
  color:#8e44ad ;
}

.service h3 , .service h4 , .raison h4{
    text-align: center;
    font-size: 1.25rem; 
    font-weight: bold; /* Met le texte en gras */
    font-style: italic; /* Met le texte en italique */
}


.service_item h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold; /* Met le texte en gras */
  font-style: italic; /* Met le texte en italique */
  color: black;
}

h5{
  text-align: center;
  font-size: 1.15rem;
  font-weight: bold; /* Met le texte en gras */
  font-style: italic;
  text-align: center;
}

@media (max-width: 768px) {
  .service h4 {
    font-size: 0.8rem; 
}

.service h3 {
  font-size: 1.2rem; 
}

.service h2 {
  font-size: 1.5rem;
}

.service p {
  font-size: 0.8rem;
}

.service a {
  font-size: 0.8rem;
}

.service h5 {
  font-size: 0.9rem;
}

.div-service{
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
  
.service .service_item {
  width: 300px;
  height: 150px;
}

  
.service_item:hover {
  height: 220px;
}

#card_consultant {
  background: url('Consultant.png') no-repeat center center ; 
  background-size: 300px; 
}

#card_entreprise {
  background: url('Entreprise.png') no-repeat center center ; 
  background-size: 300px; 
}

#card_formation {
  background: url('Formation.png') no-repeat center center ; 
  background-size: 300px; 
}

}

  /* Section Simulateur */
#simulateur {
  position: relative;
  background-image: url('testing.jpg');
  background-size: cover; /* L'image couvre toute la largeur et la hauteur du conteneur */
  background-position: center; /* L'image est centrée */
  background-attachment: fixed; /* Fixe l'arrière-plan pour qu'il ne défile pas avec la page */
  background-size: 1000px;
  padding: 50px; /* Ajuste le padding selon ton besoin */
  color: white; /* Exemple de style de texte */
  z-index: 1; /* Le texte reste au-dessus de l'image */
}

/* Pseudo-élément uniquement pour l'image */
#simulateur::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.8) 100%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 1) 30%
  );
  pointer-events: none; /* Permet d'interagir avec le texte */
  z-index: -1; /* S'assure que l'overlay est en dessous du contenu */
}

#simulateur h1 {
  font-size: 2.5rem;
  text-align: center;
  color: white; /* Couleur du texte */
}

#simulateur p {
  font-size: 1.2rem;
  color: white; /* Couleur du texte */
  max-width: 600px;
  font-style: italic; /* Met le texte en italique */
}

#simulateur button {
  padding: 1.2rem 3rem;
  background: var(--white);
  color: var(--primary-color) ;
  text-align: center;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  box-shadow: 0 5px 15px pink;
}

.contents{
  flex-direction: column;
 align-items: baseline;
}

#simulateur button:hover {
  background-color: #5a1478;
  box-shadow: -5px 5px 15px gray;
  color: white;
} 

#simulateur button:active {
  transform: scale(0.95);
}

.simulateur-content{
  display: flex;
    align-items: center;
    justify-content: center;
    gap: -50px;
}

#simulateur img {
  height: 300px;
  width: 450px;
}

/* Animation au défilement */
@keyframes fadeIn {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}


@media (max-width: 768px) {
 
#simulateur img {
  height: 180px;
  width: 260px;
}

.simulateur-content, .contents{
  display: flex;
  flex-direction: column;
    align-items: center;
    justify-content: center;
}

#simulateur button {
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  align-items: center;
}

#simulateur h1 {
  font-size: 1.5rem;
}

#simulateur p {
  font-size: 0.9rem;
  text-align: center;
}


}


/* Titre de la section */
.contact h2 {
    font-size: 2.5rem; /* Taille du titre */
}

.contact-form {
  max-width: 600px; /* Largeur maximale du formulaire */
  margin: 0 auto; /* Centre le formulaire */
  background: white; /* Fond blanc */
  padding: 20px; /* Espacement interne */
  border-radius: 10px; /* Coins arrondis */
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1); /* Ombre pour profondeur */
}

/* Style pour chaque groupe de formulaire */
.form-group {
  margin-bottom: 15px; /* Espacement en bas */
}



/* Style pour le bouton d'envoi */
.submit-button {
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  background-color: var(--primary-color);
  box-shadow: -5px 5px 15px gray;
  color: white;
  border: none;
  transition: var(--transition);
  cursor: pointer;/* Transition pour l'effet de survol */
  text-align: center;
  width: 550px;
}

/* Effet de survol pour le bouton */
.submit-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  background-color: #5a1478 ;
}

.h-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
}

@media (min-width: 1700px) {

  .h-logo {
    margin-top: 150px;   
  }
  }

  
@media (max-width: 768px) {
  .h-logo {
    margin-top: 200px;   
  }
  }

  @media (max-width: 430px) {
    .h-logo {
      margin-top: 100px;   
    }
  
    }

#team-section h2 {
  text-align: center;
  font-size: 2.5rem;  
  color:#8e44ad ;
}

#team-section h4 {
  text-align: center;
  font-weight: bold; /* Met le texte en gras */
  font-style: italic; /* Met le texte en italique */
  font-size: 1.15rem;  
}

/* Team Section Styles */
.team-section {
  display: flex;
  gap: 2rem;
  margin-bottom: -10rem;
  align-items: center;
}

.team-content {
  flex: 0 0 50%;
  margin-top: -300px;
}

@media (max-width: 1700px) {
.team-content {
  flex: 0 0 50%;
  margin-top: -150px;
}
}
.team-content label:not(:last-child) {
  text-align: center;
  font-size: 1rem;
  font-weight: bold; /* Met le texte en gras */
  color: black;
}

.team-content label:last-child {
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold; /* Met le texte en gras */
  color: black;
}

.team-images {
  display: flex;
  flex-direction: column;
  gap:200px;
  }

/* Team images layout */
.team-logo img{
  position: relative;
  width: 80%;
  height: 80%;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
}


@media (max-width: 768px) {
  h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.3px;
  }
  
#team-section h2 {
  font-size: 1.5rem;  
}

#team-section h4 {
 font-size: 0.8rem ;
}

.team-images {
  gap:50px;
  }

  .team-section {
    display: flex;
  flex-direction: column;
  }

  /* .contact-form {
    max-width: 1000px; 
    top:-100%; 
  } */

  .submit-button {
    width: 350px;
  }

  }



.footer-widget ul {
  margin: 0px;
  padding: 0px;
}
.footer-section {
background: #151414;
position: relative;
}
.footer-cta {
border-bottom: 1px solid #373636;
}
.single-cta i {
color: var(--primary-color);
font-size: 25px;
float: left;
margin-top: 8px;
}
.cta-text {
padding-left: 15px;
display: inline-block;
}
.cta-text h4 {
color: #fff;
font-size: 20px;
font-weight: 600;
font-style: normal;
margin-bottom: 2px;
}
.cta-text span {
color: #757575;
font-size: 14px;
font-weight: 400;
font-style: normal;
}


.footer-content {
position: relative;
z-index: 2;
}
.footer-pattern img {
position: absolute;
top: 0;
left: 0;
height: 330px;
background-size: cover;
background-position: 100% 100%;
}
.footer-logo {
margin-bottom: 30px;
}
.footer-logo img {
  width: 200px;
  height: 50px;
}
.footer-text p {
margin-bottom: 14px;
font-size: 14px;
    color: #7e7e7e;
line-height: 28px;
}
.footer-social-icon span {
color: #fff;
display: block;
font-size: 20px;
font-weight: 700;
font-family: Poppins , sans-serif;
margin-bottom: 20px;
}
.footer-social-icon a {
color: #fff;
font-size: 16px;
margin-right: 15px;
}
.footer-social-icon i {
height: 40px;
width: 40px;
text-align: center;
line-height: 38px;
border-radius: 50%;
}
.facebook-bg{
background: #3B5998;
}
.linkedin-bg{
background: #084c81;
}
.instagram-bg{
background: #dd39af;
}
.footer-widget-heading h3 {
color: #fff;
font-size: 20px;
font-weight: 600;
margin-bottom: 40px;
position: relative;
}
.footer-widget-heading h3::before {
content: "";
position: absolute;
left: 0;
bottom: -15px;
height: 3px;
width: 60px;
background: var(--primary-color);
}
.footer-widget ul li {
display: inline-block;
float: left;
width: 50%;
margin-bottom: 12px;
}
.footer-widget ul li a:hover{
color: var(--primary-color);
}
.footer-widget ul li a {
color: #878787;
text-transform: capitalize;
}
.subscribe-form {
position: relative;
overflow: hidden;
}
.subscribe-form input {
width: 100%;
padding: 14px 28px;
background: #2E2E2E;
border: 1px solid #2E2E2E;
color: #fff;
border-radius: 0px;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background:var(--primary-color);
  padding: 13px 20px;
  border: 1px solid var(--primary-color);
  top: 0;
}
.subscribe-form button i {
color: #fff;
font-size: 22px;
transform: rotate(-6deg);
}
.copyright-area{
background: #202020;
padding: 25px 0;
}
.copyright-text p {
margin: 0;
font-size: 14px;
color: #878787;
}
.copyright-text p a{
color: var(--primary-color);
}

@media (max-width: 768px) {
  .cta-text h4 {
    color: #fff;
    font-size: 15px;
    }
    .cta-text span {
    font-size: 12px;
    }
    .single-cta i {
      font-size: 20px;   
      }

    .footer-widget-heading h3 {
        margin-top: 30px;
        }
}

@media (max-width: 1700px) {
.form-content{
  transform: scale(0.91); 
   transform-origin: center; 
}
.container {
  transform: scale(0.9); /* Zoom effect */
  transform-origin: center; /* Scale from the center */
}
}

#menu{
    display: none;
}

@media (max-width: 768px) {

#toggle {
  display: block;
  width: 28px;
  height: 30px;
  margin: 30px auto 10px;
  margin-right: 70px;
}

#toggle span:after,
#toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
}
#toggle span:after{
  top: 9px;
}
#toggle span {
  position: relative;
  display: block;
}

#toggle span,
#toggle span:after,
#toggle span:before {
  width: 100%;
  height: 5px;
  background-color: var(--primary-color);
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 2px;
}

/* on activation */
#toggle.on span {
  background-color: transparent;
}
#toggle.on span:before {
  transform: rotate(45deg) translate(5px, 5px);
}
#toggle.on span:after {
  transform: rotate(-45deg) translate(7px, -8px);
}
#toggle.on + #menu {
  opacity: 1;
  visibility: visible;
}

/* menu appearance*/
#menu {
  position: relative;
  color: #999;
  width: 400px;
  padding: 10px;
  margin: auto;
  text-align: center;
  border-radius: 4px;
  background: black;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  /* just for this demo */
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s;
}

ul, li, li a {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}
li a {
  padding: 5px;
  color: #888;
  text-decoration: none;
  transition: all .2s;
}
li a:hover,
li a:focus {
  background: var(--primary-color);
  color: #fff;
}

/* demo styles */
/* body { margin-top: 3em; background: #eee; color: #555; font-family: "Open Sans", "Segoe UI", Helvetica, Arial, sans-serif; }
p, p a { font-size: 12px;text-align: center; color: #888; } */
   
  }


/* h2{
  text-decoration: underline;
} */

footer a{
  text-decoration: underline;
}


@keyframes slidy {
  0% { left: 0%; }
  20% { left: 0%; }
  25% { left: -100%; }
  45% { left: -100%; }
  50% { left: -200%; }
  70% { left: -200%; }
  75% { left: -300%; }
  95% { left: -300%; }
  100% { left: -400%; }
  }
  /* div#slider { overflow: hidden; } */
  div#slider figure img { width: 20%; float: left; }
  div#slider figure { 
    position: absolute;
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 20s slidy infinite;
    z-index: -1;
    object-fit: cover;
  }

  div#slider {
    background-attachment: fixed;
    transition: transform 0.5s ease-in-out;
  }
  
  div#slider::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
      rgba(0, 0, 0, 0.5) 100%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.5) 0
    );
  }
  
  div#slider .container-fluid {
    z-index: 10;
  }


  .text-gradient-anim {
    font-size: 2em;
    font-weight: bold;
    background: linear-gradient(90deg, #8B008B, #ffffff, #7d3c98, #71717a);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradient-animation 5s linear infinite;
}
/* Animation du dégradé */
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}


.text-gradient {
  font-size: 2em;
  font-weight: bold;
  background: linear-gradient(90deg, #ce55b0, #f34dac 12%, #f48e66 27%, #f0b832 38%, #b2ce37 54%, #63d7af 70%, #1cc2df 84%, #0580e6 94%, #ce55b0);
  background-size: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  /* display: inline-block; */
}



header {
  font-family:  Poppins , sans-serif;
  font-weight: 300;
  /* font-feature-settings: "liga" 1; */
}


       /* Conteneur du bouton */
       .floating-button {
        position: fixed;
        bottom: 0px;
        right:5px;
        transform: translateY(-50%);
        background-color: var(--primary-color) ;
        color: white;
        border: none;
        border-radius: 50px;
        display: flex;
        align-items: center;
        padding: 10px;
        cursor: pointer;
        transition: width 0.3s, padding 0.3s;
        overflow: hidden;
        white-space: nowrap;
        width: 70px;
        z-index: 20;
    }

    /* Icône à gauche */
    .floating-button img {
        width: 50px;
        /* height: 30px; */
    }

    /* Texte caché par défaut */
    .floating-button span {
        margin-left: 10px;
        opacity: 0;
        font-weight: bold;
        transition: opacity 0.3s;
    }

    /* Effet hover */
    .floating-button:hover {
        width: 200px;
        padding-left: 15px;
    }

    /* Texte visible au hover */
    .floating-button:hover span {
        opacity: 1;
    }


    
       /* Conteneur du bouton */
       .floating-button2 {
        position: fixed;
        bottom: 100px;
        right:5px;
        transform: translateY(-50%);
        background-color: var(--primary-color) ;
        color: white;
        border: none;
        border-radius: 50px;
        display: flex;
        align-items: center;
        padding: 10px;
        cursor: pointer;
        transition: width 0.3s, padding 0.3s;
        overflow: hidden;
        white-space: nowrap;
        width: 70px;
        z-index: 20;
    }

    /* Icône à gauche */
    .floating-button2 img {
        width: 50px;
    }

    /* Texte caché par défaut */
    .floating-button2 span {
        margin-left: 10px;
        font-weight: bold;
        transition: opacity 0.3s;
    }

    /* Effet hover */
    .floating-button2:hover {
        width: 200px;
        padding-left: 15px;
    }

    /* Texte visible au hover */
    .floating-button:hover span {
        opacity: 1;
    }


    .banner {
        display: flex;
        align-items: center;
        background: linear-gradient(to right,#b16cb1,  #8B008B, #4e3053); /* Dégradé bleu */
        padding: 15px;
        width: 500px;
        height: 50px;
        border-radius: 40px;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 20; 
    }
    .profile-img {
        width: 45px;
        height: 45px;
        margin-right: 30px;
        margin-left: -10px;
    }
    .banner-content {
        flex-grow: 1;
        color: white;
    }
    .banner-content b {
        font-weight: bold;
    }
    .close-btn {
      position: absolute;
      right: 10px;
      cursor: pointer;
      text-align: center;
      line-height: 30px;
      width: 36px;
      height: 36px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      color: #8B008B;
      font-size: 20px;
  }
  
  .close-btn:hover {
      transform: rotate(90deg);
      background: #8B008B;
      color: white;
      box-shadow: 0 4px 12px rgba(142, 68, 173, 0.2);
  }  


/* Style de la barre de défilement */
::-webkit-scrollbar {
  width: 10px; /* Largeur de la scrollbar */
}

/* Couleur de l'arrière-plan de la scrollbar */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* Gris clair */
}

/* Couleur de la poignée de défilement */
::-webkit-scrollbar-thumb {
  background: var(--primary-color); 
  border-radius: 5px;
}

/* Couleur de la poignée lorsqu'on la survole */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}



@media (max-width: 768px) {
.floating-button {
  width: 50px;
}

.floating-button img {
  width: 30px;
}
  .floating-button2 {
        bottom: 70px;
        width: 50px;
    }

    .floating-button2 img {
        width: 30px;
    }

    .banner {
      padding: 10px;
      width: 400px;
      height: 40px;
  }
  .profile-img {
      width: 35px;
      height: 35px;
      margin-right: 20px;
      margin-left: -5px;
  }
  .close-btn {
    line-height: 10px;
    width: 16px;
    height: 16px;
}

a { font-size: 13px;}
}



@media (max-width: 530px) {
      .banner {
        padding: 10px;
        width: 300px;
        height: 30px;
        
    }
    .profile-img {
        width: 30px;
        height: 30px;
    }
    .close-btn {
      line-height: 30px;
      width: 12px;
      height: 12px;
  }
  
  a { font-size: 10px;}
  }


@media (max-width: 768px){
  .street-content {
    font-size: 1rem;
  }
  .street-details {
    flex-direction: column;
  } .street-details img{
    width: 80%;
  }

 .raison h2{
    font-size: 1.5rem;
}

.raison h4{
  font-size: 0.8rem;
}

.raison p {
  font-size: 0.7rem; 
}


.raison-content{
  gap: 0px;
  display:flex;
  justify-content:center;
  align-items: center; 
  flex-direction: column;
}  

table {
  width: 90%;
  }
  th, td {
    font-size: 0.8rem;
    }

    .raison-content p,.raison-content table{
      flex: 0; 
      max-width: 100%;
      }
  }

#FAQ-section {
  margin: 0 auto;
  z-index:1000;
  margin-top: -2rem ;
  width: 55rem;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid var(--primary-color);
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #cfb6cb;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: var(--primary-color);
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: var(--primary-color);
}

.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 400;
  color: #878787;

}

#FAQ-section h2 {
  text-align: center;
  font-size: 2.5rem;  
  color:#8e44ad ;
}

.step-circle {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  margin-right: 8px;
}

@media (max-width: 768px) {
  #FAQ-section {
    width: 90%;
    margin-top: 10rem;
  }

  #FAQ-section h2 {
    font-size: 1.8rem;
  }

  .accordion button {
    font-size: 1rem;
  }

  .accordion .accordion-content p {
    font-size: 0.95rem;
  }
    .accordion button[aria-expanded="true"] + .accordion-content {
      max-height: 17em;
    }
}
