/* Global */
:root {
  --primary-color: #2887ff;
  --primary-color-dark: #2476da;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
}



.contact-info a {
  margin-right: 20px;
  display: none;
  color: white;
  text-decoration: none;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  display: none;
  color: white;
}

.contact-info a:hover {
  text-decoration: underline;
}



nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #ffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}

.navbar .logo a {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.logo-image {
  max-height: 60px;
  margin-right: 40px;
  border-radius: 20px;
}

nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}

nav .navbar .links {
  display: flex;
}

nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}

nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #005bb5;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

nav .navbar .links li a:hover {
  text-decoration: underline 3px #ffc107;
}


.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}

.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
  line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}


.navbar .nav-links .sidebar-logo {
  display: none;
}

.navbar .bx-menu {
  display: none;
}

@media (max-width:920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a {
    font-size: 27px;
  }

  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }

  nav .navbar .links li a {
    font-size: 15px;
    color: white;
    font-weight: 520;
    text-decoration: none;
  }


  nav .navbar .links li a:hover {
    color: #f0c141;
    font-weight: bold;
  }

  .contact-info a {
    margin-right: 20px;
    color: white;
    display: block;
    text-decoration: none;
  }

  .social-icons a {
    margin-right: 10px;
    font-size: 18px;
    display: block;
    color: white;
  }

  .social-icons i {
    background-color: #f0c141;
    border-radius: 10px;
    padding: 7px;
    color: black;
  }

  .social-icons i:hover {
    background-color: black;
    color: #f0c141;
  }

}

@media (max-width:800px) {

  .navbar .bx-menu {
    display: block;
  }

  .contact-info a {
    margin-right: 20px;
    text-align: center;
    display: block;
    color: white;
    text-decoration: none;
  }

  .social-icons a {
    font-size: 18px;
    display: inline-block;
    margin-left: 50px;
    color: white;
  }

  .social-icons i {
    background-color: #f0c141;
    border-radius: 10px;
    padding: 7px;
    color: black;
  }

  .social-icons i:hover {
    background-color: black;
    color: #f0c141;
  }

  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 275px;
    width: 100%;
    background-color: #2c3e50;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }


  .navbar .bx-menu {
    font-size: 25px;
    cursor: pointer;
    color: black;
  }

  .sidebar-logo i {
    color: white;
    font-size: 25px;
    cursor: pointer;
  }

  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }

  nav .navbar .links li .arrow {
    line-height: 40px;
  }

  nav .navbar .links li {
    display: block;
  }

  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }

  nav .navbar .links li .sub-menu li {
    border-bottom: none;

  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }

  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }

  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }

  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }

  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }

  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }

  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 51, 224, 0.5);
  z-index: 99;
}








/* Splash Screen */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease-out;
}

#splash-screen img {
  width: 150px;
  /* Ajuste la taille du logo si nécessaire */
  animation: fadeIn 1.5s ease-in-out;
}

/* Animation du logo */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Disparition du splash screen */
.hidden {
  opacity: 0;
  pointer-events: none;
}
























/*new style*/

.py-section {
  /* Classe utilitaire pour padding vertical standard */
  padding: 60px 0;
}

#qui-sommes-nous {
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}

#qui-sommes-nous .section-title {
  text-align: center;
}


.section-subtitle-alt {
  font-size: 1.3em;
  color: #3498db;
  font-weight: 600;
  margin-bottom: 20px;
}

.qui-sommes-nous-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.qui-sommes-nous-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.qui-sommes-nous-content p {
  font-size: 1.05em;
  line-height: 1.7;
  text-align: center;
  color: #555;
  margin-bottom: 15px;
}

.qui-sommes-nous-content,
.cta-button-outline {
  text-align: center;
}


.cta-button-outline {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #3498db;
  color: #3498db;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.cta-button-outline:hover {
  background-color: #3498db;
  color: #fff;
}






.text-center {
  text-align: center;
}

.max-w-700 {
  max-width: 700px;
}

.auto-mx {
  margin-left: auto;
  margin-right: auto;
}

#domaines-expertise {
  background-color: #fff;
}

#domaines-expertise .section-subtitle {
  /* Hérite de .section-subtitle mais spécifique */
  font-size: 1.1em;
  color: #7f8c8d;
  margin-bottom: 40px;
}

.expertise-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.expertise-item {
  background-color: #f9f9f9;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.expertise-header {
  background-color: #fff;
  width: 100%;
  padding: 20px;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #2c3e50;
  transition: background-color 0.3s ease;
}

.expertise-header:hover {
  background-color: #f0f4f8;
}

.expertise-item.active .expertise-header {
  background-color: #eef1f5;
}


.expertise-icon-accordion {
  font-size: 1.8em;
  color: #3498db;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.expertise-header h3 {
  flex-grow: 1;
  margin: 0;
  font-size: 1.25em;
  font-weight: 600;
}

.expertise-header .a-icon {
  font-size: 1em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.expertise-item.active .expertise-header .a-icon {
  transform: rotate(180deg);
}

.expertise-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #fdfdfd;
}



.expertise-content p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.expertise-content .link-details {
  display: inline-block;
  color: #f00d3e;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 20px;
}

.expertise-content .link-details i {
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.expertise-content .link-details:hover i {
  transform: translateX(3px);
}










/* Section Gall */
.gall {
  padding: 60px 20px;
  text-align: center;
}

/* Container */
.gall .container {
  max-width: 700px;
  margin: 0 auto;
}

/* Titre de la section */
.gall .section-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

/* Texte de la section */
.gall .section-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Conteneur de l'image */
.gall-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

/* Image */
.gall-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  /* Coins arrondis */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Effet d'ombre */
  transition: transform 0.3s ease-in-out;
}

/* Effet au survol de l'image */
.gall-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .gall .section-title {
    font-size: 24px;
  }

  .gall .section-text {
    font-size: 14px;
  }

  .gall-image img {
    max-width: 75%;
  }

  .video-container h4 {
    font-size: 1.1em
  }

  .video-container {
    padding: 25px
  }
}



.video-container {
  background-color: #f7f7f7;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  padding: 20px;
  margin-top: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.video-container h4 {
  font-weight: 600;
  color: #333;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1em;
}

.video-container video {
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 10px;
  border: 1px solid #ccc;
}











#pourquoi-choisir .section-subtitle {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 50px;
}

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.pourquoi-item {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pourquoi-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pourquoi-icon {
  font-size: 2.8em;
  color: #f00d3e;
  margin-bottom: 20px;
  display: inline-block;
}

.pourquoi-item h3 {
  font-size: 1.4em;
  color: #2c3e50;
  margin-bottom: 10px;
}

.pourquoi-item p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666;
}







#chiffres-cles {
  background-color: #2672bd96;
  color: #fff;
}

#chiffres-cles .section-title {
  color: #fff;
  margin-bottom: 50px;
}

.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.chiffre-item i {
  font-size: 3em;
  color: #0056b3;
  margin-bottom: 15px;
}

.chiffre-valeur {
  display: block;
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.chiffre-label {
  font-size: 1.1em;
  color: #ecf0f1;
}






#temoignages {
  background-color: #f9f9f9;
}

#temoignages .section-title {
  margin-bottom: 50px;
}

.temoignages-slider {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.temoignage-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin: 0 10px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px auto;
  border: 3px solid #f00d3e;
}

.temoignage-texte {
  font-size: 1.05em;
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.temoignage-texte::before,
.temoignage-texte::after {
  content: '"';
  color: #3498db;
  font-size: 1.5em;
  font-weight: bold;
}

.temoignage-texte::before {
  margin-right: 5px;
}

.temoignage-texte::after {
  margin-left: 5px;
}


.client-nom {
  font-size: 1.2em;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-titre {
  font-size: 0.9em;
  color: #7f8c8d;
}

.swiper-button-next,
.swiper-button-prev {
  color: #3498db !important;
}

.swiper-pagination-bullet-active {
  background: #3498db !important;
}









#cta-principal {
  background-color: #3498db;
  color: #fff;
}

.cta-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 1.15em;
  max-width: 750px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
  opacity: 0.9;
}

.cta-button-large {
  display: inline-block;
  background-color: #fff;
  color: #3498db;
  padding: 18px 40px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button-large:hover {
  background-color: #ecf0f1;
  color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-alternative-contact {
  margin-top: 25px;
  font-size: 0.95em;
  opacity: 0.8;
}

.cta-alternative-contact a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.cta-alternative-contact a:hover {
  text-decoration: none;
}








#actualites {
  background-color: #fff;
}

#actualites .section-subtitle {
  font-size: 1.1em;
  color: #7f8c8d;
  margin-bottom: 50px;
}

.mt-40 {
  margin-top: 40px;
}

.actualites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.actualite-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.actualite-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


.actualite-image-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.actualite-card:hover .actualite-image-link img {
  transform: scale(1.05);
}

.actualite-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.actualite-meta {
  font-size: 0.85em;
  color: #7f8c8d;
  margin-bottom: 10px;
}

.actualite-meta span {
  margin-right: 15px;
}

.actualite-meta i {
  margin-right: 5px;
  color: #f00d3e;
}

.actualite-titre {
  font-size: 1.3em;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.4;
}

.actualite-titre a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.actualite-titre a:hover {
  color: #3498db;
}

.actualite-extrait {
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.actualite-content .cta-button-outline {
  margin-top: auto;
  text-align: center;
  align-self: center;
}

























/* Section for the Interactive Background */
.interactive-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  /* Send to background */
  background-size: 400% 400%;
  animation: gradientAnimation 10s ease infinite;
}

/* Floating Items (Icons and Words) */
.background__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-item {
  position: absolute;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  opacity: 0.8;
  animation: float 6s linear infinite, drift 12s ease-in-out infinite;
  white-space: nowrap;
}

/* Animate Background Gradient */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Float Effect for Items */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Drift Animation for Horizontal Movement */
@keyframes drift {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(50px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Generate Random Position for Items */
.floating-item:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-item:nth-child(2) {
  top: 20%;
  left: 75%;
  animation-delay: 1s;
}

.floating-item:nth-child(3) {
  top: 50%;
  left: 40%;
  animation-delay: 2s;
}

.floating-item:nth-child(4) {
  top: 30%;
  left: 20%;
  animation-delay: 3s;
}

.floating-item:nth-child(5) {
  top: 70%;
  left: 60%;
  animation-delay: 4s;
}

.floating-item:nth-child(6) {
  top: 80%;
  left: 10%;
  animation-delay: 5s;
}

.floating-item:nth-child(7) {
  top: 60%;
  left: 80%;
  animation-delay: 6s;
}

.floating-item:nth-child(8) {
  top: 15%;
  left: 45%;
  animation-delay: 7s;
}

.floating-item:nth-child(9) {
  top: 5%;
  left: 50%;
  animation-delay: 8s;
}

.floating-item:nth-child(10) {
  top: 90%;
  left: 35%;
  animation-delay: 9s;
}








.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 450px;
  overflow: hidden;
  background-color: #333;
}

.slides-container {
  position: relative;
  width: 100%;
  height: 470px;
  display: flex;
  transition: opacity 0.5s ease-in-out;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 0s 1s;

}

.slide.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 3;
  padding: 20px;
  width: 80%;
  max-width: 700px;
  opacity: 0;
  transform: translate(-50%, -40%);
  transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.slide-content h2 {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.2em;
  margin-bottom: 25px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.cta-button-slider {
  display: inline-block;
  background-color: #3498db;
  color: #ffffff;
  padding: 12px 28px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid #3498db;
}

.cta-button-slider:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  transform: translateY(-2px);
}

/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 10;
}

.slider-nav button {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 1.5em;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.slider-nav button:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Dots Navigation */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dots .dot.active {
  background-color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
    min-height: 400px;
  }

  .slide-content h2 {
    font-size: 2em;
  }

  .slide-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .cta-button-slider {
    padding: 10px 20px;
    font-size: 1em;
  }

  .slider-nav button {
    padding: 10px;
    font-size: 1.2em;
    width: 40px;
    height: 40px;
  }

  .slider-dots {
    bottom: 15px;
  }

  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }
}









/* DG NAZAN SARL */

.ceo-welcome-section {
  padding: 80px 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.ceo-welcome-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.ceo-intro-text {
  flex: 1;
  text-align: left;
  max-width: 750px;
}

.ceo-intro-text .section-title {
  font-size: 2.8em;
  color: #333333;
  margin-bottom: 5px;
  text-align: center;
}

.ceo-intro-text .section-title .highlight {
  color: #003366;
}

.ceo-subtitle {
  font-size: 1.3em;
  color: #005ea2;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.title-decorator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.decorator-line {
  flex-grow: 1;
  height: 1px;
  background-color: #dddddd;
  max-width: 100px;
}

.decorator-icon {
  color: #fdb813;
  font-size: 1.2em;
  margin: 0 15px;
}

.welcome-greeting {
  font-size: 1.4em;
  font-weight: 600;
  color: #003366;
  text-align: center;
  margin-bottom: 25px;
}

.welcome-greeting strong {
  font-weight: 700;
}


.ceo-intro-text p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
}

.ceo-intro-text .emphasis {
  color: #005ea2;
  font-weight: 600;
  font-style: italic;
}

.ceo-quote {
  background-color: #e9f2f9;
  border-left: 5px solid #005ea2;
  padding: 20px 25px 20px 50px;
  margin: 25px 0;
  font-size: 1.05em;
  font-style: italic;
  color: #333333;
  position: relative;
  border-radius: 0 8px 8px 0;
}

.quote-icon {
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 1.5em;
  color: #005ea2;
}

.ceo-vision-highlight {
  background-color: #003366;
  color: #ffffff;
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.vision-icon {
  font-size: 2em;
  color: #fdb813;
}

.ceo-vision-highlight p {
  font-size: 1.25em;
  font-weight: 500;
  margin-bottom: 0;
  color: #ffffff;
}

.highlight-text {
  font-weight: 700;
  color: #fdb813;
}


.ceo-closing {
  font-weight: 500;
}


.ceo-image-column {
  flex-basis: 350px;
  flex-shrink: 0;
  text-align: center;
  padding-top: 20px;
}

.ceo-main-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #ffffff;
  box-shadow: 0 5px 25px rgba(0, 51, 102, 0.2);
  margin-bottom: 20px;
}

.ceo-signature {
  margin-top: 10px;
}

.ceo-signature p {
  margin-bottom: 3px;
  line-height: 1.4;
}

.ceo-signature p strong {
  font-size: 1.2em;
  color: #003366;
}

.ceo-signature p em {
  font-size: 1em;
  color: #555555;
}


/* Responsive Layout */
@media (min-width: 992px) {
  .ceo-welcome-container {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 60px;
  }

  .ceo-intro-text {
    text-align: left;
  }

  .ceo-intro-text .section-title,
  .ceo-subtitle,
  .title-decorator,
  .welcome-greeting {
    text-align: left;
  }

  .title-decorator {
    justify-content: flex-start;
  }

  .decorator-line:first-child {
    flex-grow: 0;
  }
}

@media (max-width: 768px) {
  .ceo-welcome-section {
    padding: 60px 15px;
  }

  .ceo-intro-text .section-title {
    font-size: 2.2em;
  }

  .ceo-subtitle {
    font-size: 1.1em;
  }

  .ceo-intro-text p {
    font-size: 1em;
  }

  .ceo-main-photo {
    width: 220px;
    height: 220px;
  }

  .ceo-vision-highlight {
    flex-direction: column;
    gap: 10px;
  }

  .ceo-vision-highlight p {
    font-size: 1.1em;
  }
}











/* Why Nazan SARL */

.boostfaso {
  padding: 4rem 5%;
  text-align: center;
  background-color: #f4f7fc;
  color: #000;
  font-family: 'Arial', sans-serif;
}


/* Titres */
.container h2 {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-title span {
  color: #f00d3e;
  font-style: italic;
  text-decoration: underline;
}

.section-subtitle {
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
}

/* Grille de présentation */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Cartes stylisées */
.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.card {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card.show {
  opacity: 1;
  transform: translateX(0);
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
  color: #333;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #f00d3e;
}

.card-content p {
  font-size: 1rem;
  color: #444;
}

/* Bouton interactif */
.container .btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  background: #007bff;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.container .btn:hover {
  background: #222;
  color: white;
}

/* Version responsive */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}









/* Section contenant les drapeaux */
.flags-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Style des drapeaux */
.flag-box {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.flag-box img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Effet au survol */
.flag-box:hover {
  transform: scale(1.1);
}















/* SECTION ÉQUIPE PRO - NAZAN  */

.nazan-team-section-pro {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.team-carousel-wrapper {
  position: relative;
  margin-top: 50px;
}

.team-carousel-track-container {
  overflow: hidden;
}

.team-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* LA CARTE MEMBRE - C'est ici que la magie opère */
.team-card {
  flex: 0 0 300px;
  /* Largeur fixe de la carte */
  margin: 0 15px;
  position: relative;
  /* Indispensable pour positionner l'overlay */
  border-radius: 10px;
  overflow: hidden;
  /* Cache le débordement de l'image au zoom */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* La photo du membre */
.team-card-photo {
  width: 100%;
  height: 380px;
  /* Hauteur fixe pour des cartes uniformes */
  object-fit: cover;
  /* Assure que l'image couvre la zone sans se déformer */
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(100%);
  /* Photo en noir et blanc par défaut */
}

/* L'overlay qui apparaît au survol */
.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to top, rgba(0, 19, 56, 0.85) 0%, rgba(0, 19, 56, 0) 60%);
  /* Dégradé pour la lisibilité */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Aligne le contenu en bas */
  padding: 25px;

  /* Animation d'apparition */
  opacity: 0;
  transform: translateY(20px);
  /* Commence légèrement décalé vers le bas */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.team-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.team-card-role {
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.team-card-social a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* EFFETS AU SURVOL (HOVER) */
/* MODIFICATIONS POUR CARTE ACTIVE */

/* La carte se soulève légèrement */
.team-card:hover,
.team-card.is-active {
  transform: translateY(-10px);
}

/* Zoom sur la photo et passage en couleur */
.team-card:hover .team-card-photo,
.team-card.is-active .team-card-photo {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* L'overlay devient visible et se met en place */
.team-card:hover .team-card-overlay,
.team-card.is-active .team-card-overlay {
  opacity: 1;
  transform: translateY(0);
}



/* Boutons du carrousel */
.team-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.team-carousel-btn:hover {
  background-color: #fff;
  color: #0056b3;
  /* Une couleur de votre charte graphique */
  transform: translateY(-50%) scale(1.1);
}

.team-carousel-btn.prev {
  left: -25px;
}

.team-carousel-btn.next {
  right: -25px;
}

/* Responsive pour les mobiles */
@media (max-width: 768px) {
  .team-card {
    flex: 0 0 280px;
    /* Cartes un peu moins larges sur mobile */
  }

  .team-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .team-carousel-btn.prev {
    left: 10px;
  }

  .team-carousel-btn.next {
    right: 10px;
  }
}













/* Nazan Ambitions Section */

.nazan-ambitions-section {
  padding: 60px 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nazan-ambitions-content {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.nazan-ambitions-image {
  margin-bottom: 30px;
  text-align: center;
}

.nazan-ambitions-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 3px solid #eeeeee;
  max-height: 400px;
  object-fit: cover;
}

.nazan-ambitions-text h2 {
  font-size: 2.8em;
  color: #212529;
  margin-bottom: 15px;
  font-weight: 700;
}

.nazan-ambitions-text h2 .highlight {
  color: #004A99;
}

.nazan-ambitions-text .section-subtitle {
  font-size: 1.2em;
  color: #495057;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.nazan-impact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  text-align: left;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.nazan-impact-list li {
  font-size: 1.1em;
  color: #212529;
  margin-bottom: 15px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.nazan-impact-list .icon-bullet {
  color: #f00d3e;
  margin-right: 12px;
  font-size: 1.2em;
  padding-top: 3px;
}

.nazan-impact-list strong {
  color: #004A99;
  font-weight: 600;
}

.nazan-quote {
  background-color: #f8f9fa;
  border-left: 5px solid #004A99;
  margin: 40px auto;
  padding: 25px 30px;
  font-size: 1.25em;
  font-style: italic;
  color: #212529;
  max-width: 800px;
  border-radius: 0 8px 8px 0;
}

.nazan-quote span {
  display: block;
  font-size: 0.9em;
  color: #495057;
  margin-top: 10px;
  font-style: normal;
  text-align: right;
}

.nazan-ambitions-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.action-button {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.action-button i {
  margin-right: 10px;
  font-size: 1.2em;
}

.action-button.primary {
  background-color: #004A99;
  color: #ffffff;
}

.action-button.primary:hover {
  background-color: #003a75;
  transform: translateY(-2px);
}

.action-button.secondary {
  background-color: transparent;
  color: #004A99;
  border: 2px solid #004A99;
}

.action-button.secondary:hover {
  background-color: #004A99;
  color: #ffffff;
  transform: translateY(-2px);
}



@media (max-width: 768px) {
  .nazan-ambitions-text h2 {
    font-size: 2.2em;
  }

  .nazan-ambitions-text .section-subtitle {
    font-size: 1.1em;
  }

  .nazan-impact-list li {
    font-size: 1em;
  }

  .nazan-quote {
    font-size: 1.1em;
    padding: 20px;
  }

  .nazan-ambitions-actions {
    flex-direction: column;
    align-items: center;
  }

  .action-button {
    width: 80%;
    justify-content: center;
    margin-bottom: 15px;
  }

  .action-button:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .nazan-ambitions-content {
    padding: 25px;
  }

  .nazan-ambitions-text h2 {
    font-size: 1.9em;
  }
}












/* Section d'appel à l'action */
.cta {
  background: linear-gradient(to right, #ff9800, #fff);
  padding: 10px 10px;
  text-align: center;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 90%;
}


/* Section carte Google Map */
.contact-map {
  margin-top: 40px;
  padding: 20px;
  background: #f8f9fa;
  color: #212529;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-map h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: #0056b3;
}

.contact-map p {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 20px;
}

.contact-map p i {
  color: #dc3545;
  margin-right: 5px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}











/* SECTION PARTENAIRES */

.partenaires-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f4f4f4;
  overflow: hidden;
}

.partenaires-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #005bb5;
}

.partenaires-section .underline {
  text-decoration: underline;
  color: #f00d3e;
}

.partenaires-description {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
}

/* SLIDER */
.partenaires-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partenaires-wrapper {
  display: flex;
  gap: 20px;
  width: max-content;
  /* Permet d’étendre la largeur automatiquement */
  animation: scroll 60s linear infinite;
}

.partenaires-wrapper img {
  width: 150px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.partenaires-wrapper img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .partenaires-wrapper img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .partenaires-wrapper img {
    width: 100px;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}










/* Styles du Footer */
.footer {
  background: #2c3e50;
  padding: 50px 0;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Logo */
.footer-logo {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 14px;
  color: #fff;
}

/* Liens de navigation */
.footer-links,
.footer-social,
.footer-contact {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.footer-links h3,
.footer-social h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
}

.footer-links h3::after,
.footer-social h3::after,
.footer-contact h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #f00d3e;
  margin: 8px auto;
}

/* Liste des liens */
.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin: 8px 0;
}

.footer-links a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #007bff;
}

/* Icônes des réseaux sociaux */
.social-iconss {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-iconss a {
  display: inline-block;
  font-size: 20px;
  color: #007bff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-iconss a:hover {
  color: #f00d3e;
  transform: scale(1.2);
}

.social-iconss i:hover {
  color: #fff;
  background-color: #f00d3e;
  transform: scale(1.1);
}

/* Icônes de contact */
.footer-contact i {
  margin-right: 8px;
  color: #007bff;
}

/* Copyright */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #007bff;
  font-size: 14px;
  color: #fff;
}