/* 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;
}

.don-button {
  background: #FFD700;
  color: #005bb5;
  padding: 5px 15px;
  display: none;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}





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;
}


.navbar ul li a.active {
  text-decoration:underline 3px #ffc107;
}






.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); /* Overlay sombre pour la lisibilité du texte */
    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;
    /* Animation d'apparition du texte */
    opacity: 0;
    transform: translate(-50%, -40%); /* Commence un peu au-dessus */
    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; /* Ajustez selon vos préférences */
    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; /* Ajustez */
    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; /* Couleur d'accentuation Nazan */
    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; /* Au-dessus du contenu mais potentiellement sous les dots */
}

.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; /* Peut-être réduire un peu la hauteur sur mobile */
        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;
    }
}






/* 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;
}










.container4 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

#nazan-expertises {
    padding: 60px 0;
    text-align: center;
}

#nazan-expertises h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #2c3e50; 
}

#nazan-expertises .section-subtitle {
    font-size: 1.1em;
    color: #7f8c8d; 
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.expertises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.expertise-card {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid transparent; 
}

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

.expertise-card.active {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(41, 128, 185, 0.2);
    border-left-color: #3498db; 
}

.expertise-icon {
    font-size: 2.5em; 
    color: #f00d3e;   
    margin-bottom: 15px;
}

.expertise-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.expertise-card .expertise-short-desc {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
}

.expertise-details-area {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    min-height: 200px; /* Pour éviter les sauts de page */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease;
}

#expertise-detail-content {
    max-width: 700px; /* Limite la largeur du texte pour la lisibilité */
}

#expertise-detail-content h3 {
    font-size: 1.8em;
    color: #f00d3e; /* Couleur d'accentuation */
    margin-bottom: 15px;
}

#expertise-detail-content p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #333;
}

#detail-icon-display { /* Optionnel, si vous voulez afficher l'icône dans les détails */
    font-size: 3em;
    color: #3498db;
    float: right; /* Ou un autre positionnement */
    margin-left: 20px;
}

/* Responsive */
@media (max-width: 768px) { /* Point de rupture pour les tablettes en portrait / grands téléphones */
    #nazan-expertises h2 {
        font-size: 2em;
    }
    .expertises-grid {
        grid-template-columns: repeat(2, 1fr); /* DEUX colonnes sur petits écrans */
        gap: 15px;  
    }
    .expertise-details-area {
        padding: 20px;
    }
    #expertise-detail-content h3 {
        font-size: 1.5em;
    }
    #expertise-detail-content p {
        font-size: 1em;
    }
}

@media (max-width: 376px) { /* Point de rupture pour les petits téléphones */
    .expertises-grid {
        grid-template-columns: 2fr; /* deux colonnes sur les très petits écrans */
        gap: 20px; 
    }
    .expertise-card {
        padding: 25px 15px;
    }
    .expertise-card h3 {
        font-size: 1.3em;
    }
}











/* CSS pour la Section Valeurs de Nazan Consulting */

.nazan-values-section {
    padding: 60px 20px;
    background-color: #ffffff; /* Fond blanc ou un gris très clair #f8f9fa */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center; /* Centre le titre et le sous-titre */
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.nazan-values-section h2 {
    font-size: 2.8em;
    color: #212529; /* Texte foncé principal */
    margin-bottom: 15px;
    font-weight: 700;
}

.nazan-values-section h2 .highlight {
    color: #004A99; /* Bleu institutionnel Nazan */
}

.nazan-values-section .section-subtitle {
    font-size: 1.2em;
    color: #495057; /* Texte gris clair */
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    /* Crée 1 colonne sur mobile, 2 sur tablette, 4 sur desktop */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; /* Espace entre les cartes */
}

.value-card {
    background-color: #f8f9fa; /* Fond légèrement différent pour les cartes, ou blanc */
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 4px solid #004A99; /* Bordure de couleur en haut de la carte */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.value-icon {
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 3em; /* Taille des icônes */
    color: #007bff; /* Bleu secondaire ou couleur d'accent pour les icônes */
}

.value-card h3 {
    font-size: 1.6em;
    color: #004A99; /* Bleu institutionnel pour les titres des valeurs */
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 1em;
    color: #343a40; /* Texte un peu plus foncé pour la description */
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 992px) { /* Pour tablettes moyennes */
    .values-grid {
        /* S'assure que sur tablette on a au plus 2 colonnes si minmax ne suffit pas */
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
         /* Pour forcer 2 colonnes : grid-template-columns: repeat(2, 1fr); */
    }
     .nazan-values-section h2 {
        font-size: 2.4em;
    }
    .nazan-values-section .section-subtitle {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) { /* Pour petites tablettes et grands mobiles */
    .values-grid {
        /* Pour forcer 1 ou 2 colonnes selon l'espace */
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
     .value-card {
        padding: 30px 25px;
    }
    .value-card h3 {
        font-size: 1.4em;
    }
}

@media (max-width: 576px) { /* Pour mobiles */
    .values-grid {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
    }
    .nazan-values-section h2 {
        font-size: 2em;
    }
    .nazan-values-section .section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .value-card {
        padding: 25px 20px;
    }
}









/* 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;
}





/* Section Objectifs */

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

.objectives-container {
    max-width: 1100px;
    margin: 0 auto;
}

.objectives-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.nazan-objectives-section h2 .highlight {
    color: #004A99; 
}

.nazan-objectives-section .section-subtitle {
    font-size: 1.2em;
    color: #495057;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.objectives-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 35px;
}

.objective-item {
    display: flex;
    align-items: flex-start; /* Aligne l'icône et le texte en haut */
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.objective-icon {
    margin-right: 25px;
    flex-shrink: 0; /* Empêche l'icône de rétrécir */
}

.objective-icon i {
    font-size: 2.8em; /* Taille des icônes */
    color: #007bff; /* Bleu secondaire ou couleur d'accent */
    background-color: #e7f3ff; /* Fond très clair pour l'icône */
    padding: 15px;
    border-radius: 50%; /* Cercle autour de l'icône */
    width: 70px; /* Assure une taille de cercle constante */
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.objective-text h3 {
    font-size: 1.5em;
    color: #004A99; /* Bleu institutionnel pour les titres des objectifs */
    margin-top: 0; /* Ajustement car l'icône a déjà un espace */
    margin-bottom: 10px;
    font-weight: 600;
}

.objective-text p {
    font-size: 1em;
    color: #343a40; /* Texte descriptif */
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .nazan-objectives-section h2 {
        font-size: 2.4em;
    }
    .nazan-objectives-section .section-subtitle {
        font-size: 1.1em;
    }
    .objective-icon i {
        font-size: 2.4em;
        padding: 12px;
        width: 60px;
        height: 60px;
    }
    .objective-text h3 {
        font-size: 1.35em;
    }
}

@media (max-width: 768px) {
    .objectives-list-container {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile et petites tablettes */
    }
    .objective-item {
        padding: 25px;
    }
     .objective-icon {
        margin-right: 20px; /* Réduire l'espace */
    }
}

@media (max-width: 480px) {
    .nazan-objectives-section h2 {
        font-size: 2em;
    }
    .nazan-objectives-section .section-subtitle {
        font-size: 1em;
    }
    .objective-item {
        flex-direction: column; /* Empile icône et texte sur très petits écrans */
        align-items: center;
        text-align: center;
    }
    .objective-icon {
        margin-right: 0;
        margin-bottom: 15px; /* Espace si empilé */
    }
}




/* CSS pour la Section Mot du DG de Nazan Consulting */

.nazan-ceo-message-section {
    padding: 70px 20px;
    background-color: #ffffff; /* Fond blanc ou très clair */
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.ceo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ceo-header {
    text-align: center;
    margin-bottom: 40px;
}

.nazan-ceo-message-section h2 {
    font-size: 2.8em;
    color: #212529;
    margin-bottom: 10px;
    font-weight: 700;
}

.nazan-ceo-message-section h2 .highlight {
    color: #004A99; /* Bleu Nazan */
}

.ceo-title-line {
    width: 80px;
    height: 4px;
    background-color: #007bff; /* Bleu secondaire ou accent */
    margin: 0 auto;
    border-radius: 2px;
}

.ceo-content-wrapper {
    display: flex;
    flex-direction: column; /* Par défaut pour mobile */
    gap: 40px;
}

.ceo-photo-container {
    text-align: center;
    flex-shrink: 0; /* Ne pas rétrécir sur les grands écrans si flex-direction: row */
    /* max-width: 300px; Si flex-direction: row */
    /* margin: 0 auto 30px auto; Si stacké */
}

.ceo-photo {
    width: 200px; /* Ajustez la taille */
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.ceo-name {
    font-size: 1.6em;
    color: #004A99;
    font-weight: 600;
    margin-bottom: 5px;
}

.ceo-position {
    font-size: 1em;
    color: #495057;
    font-style: italic;
}

.ceo-message-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #343a40;
}

.ceo-greeting,
.ceo-commitment,
.ceo-closing {
    margin-bottom: 20px;
}

.ceo-message-text strong {
    color: #004A99;
    font-weight: 600;
}

/* Styles pour l'accordéon interactif */
.ceo-accordion {
    margin: 25px 0;
    border-top: 1px solid #e0e0e0;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    background-color: #f8f9fa; /* Fond léger pour l'en-tête */
    color: #004A99;
    cursor: pointer;
    padding: 18px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover,
.accordion-header.active {
    background-color: #e9ecef; /* Changement au survol ou si actif */
}

.accordion-header i {
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 20px; /* Initialement caché */
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* Transition douce */
}
.accordion-content.open {
    padding: 20px 20px; /* Apparaît avec padding */
    /* max-height sera défini par JS, ex: scrollHeight */
}


.accordion-content p {
    margin-bottom: 15px;
    font-size: 1em;
    line-height: 1.7;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.accordion-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.accordion-content ul li i {
    color: #007bff; /* Couleur pour les icônes de liste */
    margin-right: 10px;
    padding-top: 4px; /* Ajustement vertical */
}

/* Styles pour grands écrans (layout avec photo à côté) */
@media (min-width: 992px) {
    .ceo-content-wrapper {
        flex-direction: row; /* Photo à gauche, texte à droite */
        align-items: flex-start; /* Aligne en haut */
    }
    .ceo-photo-container {
        flex: 0 0 300px; /* Largeur fixe pour la colonne photo */
        margin-right: 40px; /* Espace entre photo et texte */
        text-align: center; /* Maintenir le centrage de la photo et du nom */
        margin-bottom: 0; /* Enlever la marge du bas si à côté */
    }
    .ceo-message-text {
        flex: 1; /* Le texte prend le reste de l'espace */
    }
}

/* Responsive pour le texte et la photo */
@media (max-width: 768px) {
    .nazan-ceo-message-section h2 {
        font-size: 2.2em;
    }
    .ceo-photo {
        width: 180px;
        height: 180px;
    }
    .ceo-name {
        font-size: 1.4em;
    }
    .ceo-message-text {
        font-size: 1em;
    }
    .accordion-header {
        font-size: 1.1em;
        padding: 15px;
    }
}











/* 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);
}













.video-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f5f5f5;
}

.video-section h2 {
  font-size: 24px;
  color: #ff9800;
  margin-bottom: 20px;
}

.video-container {
  max-width: 700px; /* Largeur maximale */
  margin: 0 auto; /* Centrer la vidéo */
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 📱 Responsive pour petits écrans */
@media (max-width: 768px) {
  .video-container {
      max-width: 100%;
      padding: 0 10px;
  }

  .video-section h2 {
      font-size: 20px;
  }
}









/* CSS pour la Section FAQ de Nazan Consulting */

.nazan-faq-section {
    padding: 70px 20px;
    background-color: #f8f9fa; /* Fond clair pour la section */
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.faq-container {
    max-width: 900px; /* Un peu moins large pour la FAQ, plus concentré */
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.nazan-faq-section h2 {
    font-size: 2.8em;
    color: #212529;
    margin-bottom: 10px;
    font-weight: 700;
}

.nazan-faq-section h2 .highlight {
    color: #ff9800; /* Bleu Nazan */
}

.nazan-faq-section .section-subtitle {
    font-size: 1.2em;
    color: #495057;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-title-line {
    width: 80px;
    height: 4px;
    background-color: #ff9800; /* Bleu secondaire ou accent */
    margin: 0 auto;
    border-radius: 2px;
}

.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e0e7ef; /* Bordure discrète */
}

.faq-question {
    background-color: transparent; /* En-tête de question transparent */
    color: #004A99; /* Texte de la question en bleu Nazan */
    cursor: pointer;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.15em;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px; /* Pour que le hover s'applique bien aux coins */
}

.faq-question:hover {
    background-color: #f0f4f8; /* Léger fond au survol */
}

.faq-question span {
    flex-grow: 1; /* Le texte prend l'espace disponible */
    margin-right: 15px; /* Espace avant l'icône */
}

.faq-question .fa-minus {
    display: none; /* Caché par défaut */
}
.faq-question.active .fa-minus {
    display: inline-block;
}
.faq-question.active .fa-plus {
    display: none;
}
.faq-question i {
    font-size: 1em;
    color: #007bff; /* Couleur des icônes +/- */
}


.faq-answer {
    padding: 0 25px; /* Initialement sans padding vertical */
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    border-top: 1px solid transparent; /* Pour la transition de bordure si active */
    border-radius: 0 0 8px 8px; /* Arrondir les coins inférieurs */
}

.faq-question.active + .faq-answer {
    /* Style quand la question est active */
    border-top: 1px solid #e0e7ef;
}

.faq-answer.open {
    padding: 20px 25px;
    /* max-height sera défini par JS */
}

.faq-answer p {
    margin-bottom: 15px;
    font-size: 1em;
    line-height: 1.7;
    color: #343a40;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: disc; /* Puces classiques pour les listes dans les réponses */
    padding-left: 25px;
    margin-top: 10px;
    margin-bottom: 15px;
}
.faq-answer ul li {
    margin-bottom: 8px;
    color: #343a40;
}
.faq-answer a {
    color: #007bff;
    text-decoration: underline;
    font-weight: 500;
}
.faq-answer a:hover {
    color: #0056b3;
}

.faq-contact-prompt {
    margin-top: 50px;
    text-align: center;
    padding: 25px;
    background-color: #e9ecef; /* Fond distinct */
    border-radius: 8px;
}
.faq-contact-prompt p {
    font-size: 1.1em;
    color: #212529;
    margin-bottom: 15px;
    font-weight: 500;
}

.faq-contact-prompt .action-button.primary {
    display: inline-block; 
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background-color: #ff9800;
    color: #ffffff;
}
.faq-contact-prompt .action-button.primary:hover {
    background-color: #003a75;
    transform: translateY(-2px);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .nazan-faq-section h2 {
        font-size: 2.2em;
    }
    .nazan-faq-section .section-subtitle {
        font-size: 1.1em;
    }
    .faq-question {
        font-size: 1.05em;
        padding: 18px 20px;
    }
    .faq-answer {
        font-size: 0.95em;
    }
     .faq-answer.open {
        padding: 18px 20px;
    }
}









/* 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;
}