/* 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: underline 3px solid rgb(173, 171, 171);
  font-size: 15px;
  font-weight: 600;
}

nav .navbar .links li a:hover {
  text-decoration: none;
}


.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: black;
    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: #ffff;
    border-radius: 10px;
    padding: 7px;
    color: black;
  }

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

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

  .don-button:hover {
    text-decoration: underline;
  }
}

@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 {
    margin-right: 10px;
    font-size: 18px;
    text-align: center;
    display: block;
    color: white;
  }

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

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

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

  .don-button:hover {
    text-decoration: underline;
  }

  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background-color: #005bb5;
    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;
}


/* Carousel Section */
#home {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.5); /* Fallback in case the image fails to load */
}

/* Superposition sombre pour les images */
.carousel-item {
  position: relative;
  overflow: hidden;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Couche sombre (50% d'opacité) */
  z-index: 1; /* Place la superposition au-dessus de l'image */
}

.fixed-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.7);
  max-width: 90%;
  z-index: 10;
  text-align: center;
}

/* Animation Base */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

/* Delays for Staggered Appearance */
.delay-1 {
  animation-delay: 0.5s;
}

.delay-2 {
  animation-delay: 1s;
}

.delay-3 {
  animation-delay: 1.5s;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Text and Button Styles */
.fixed-content p {
  font-size: 1rem;
  font-weight: 500;
  margin: 10px 0;
}

.fixed-content h2 {
  font-size: 2rem;
  margin: 10px 0;
  font-weight: 700;
}

.fixed-content .btn {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.fixed-content .btn:hover {
  background-color: #0056b3;
}


.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color);
}








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











.section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.section h2 {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 20px;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
}

.value-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item i {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 10px;
}

.value-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}







.statistics {
    display: flex;
    justify-content: space-around;
    background-color: #eef2f7;
    padding: 30px;
}

.statistic {
    text-align: center;
}

.statistic i {
    font-size: 2em;
    color: #0056b3;
    margin-bottom: 10px;
}

.statistic h3 {
    font-size: 1.6em;
    margin: 10px 0;
}

.statistic p {
    font-size: 0.9em;
}







/* 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 Mission Styles */
.mission-section {
  padding: 60px 20px;
  color: black;
  font-weight: 500;
  text-align: center;
}

.mission-section .container {
  max-width: 1000px;
  box-shadow: 0 2px 5px black;

  margin: 0 auto;
}

.mission-section h2 {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-section h2 i {
  margin-right: 10px;
  color: #ff9800;
}

.mission-section p {
  font-size: 1.2em;
  line-height: 1.8;
  color: black;
  margin: 0 auto;
  text-align: justify;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission-section h2 {
    font-size: 2em;
  }

  .mission-section p {
    font-size: 1em;
    padding: 15px;
  }
}



.objectives-section {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background: #007bff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}
.objectives-section h2{
  color: white;
}
.objective {
  display: none;
  padding: 20px;
}
.objective h3{
  color: black;
}
.objective p{
  color: #ffff;
}
.objective.active {
  display: block;
}
.navigation {
  margin-top: 20px;
}
.nav-button {
  background: white;
  color: black;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  margin: 0 10px;
}
.nav-button:hover {
  background: #f4b400;
}









/*intervention*/

.intervention-section {
  text-align: center;
  padding: 60px 20px;
}

.intervention-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a237e;
}

.intervention-section h2 span {
  color: #ff9800;
}

.intervention-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.intervention-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.intervention-box:hover {
  transform: translateY(-5px);
}

.intervention-box i {
  font-size: 2.5rem;
  color: #ff9800;
  margin-bottom: 10px;
}

.intervention-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1a237e;
}

.intervention-box p {
  font-size: 1rem;
  color: #333;
}

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

@media (max-width: 480px) {
  .intervention-container {
      grid-template-columns: 1fr;
  }
}










/* SECTION PRÉSIDENT */

.president-section {
  background: #f5f5f5;
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.president-container {
  display: flex;
  max-width: 1200px;
  gap: 40px;
  align-items: center;
}

.president-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.president-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
.president-text > * {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.president-text > *.show {
  opacity: 1;
  transform: translateX(0);
}

.president-text {
  flex: 1;
  text-align: left;
}

.president-title {
  font-size: 1rem;
  color: #2a5298;
  font-weight: bold;
  text-transform: uppercase;
}

.president-text h2 {
  font-size: 2.2rem;
  color: #2a5298;
  font-weight: bold;
}

.president-text h2 span {
  text-decoration: underline;
  color: #f4b400;
}

.president-quote {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-top: 10px;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .president-container {
      flex-direction: column;
      text-align: center;
  }

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

  .president-image img {
      max-width: 300px;
  }
}











/* 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: #0057b3e7;
  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;
  }
}










.faq-container {
  max-width: 800px;
  background-color: #bbbbbba8;
  margin: auto;
}
.faq-container h2 {
  text-align: center;
  padding: 20px;
}
.faq-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  background: #0057b3e7;
  color: white;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  padding: 15px;
  display: none;
  background: #f1f1f1;
}
.faq-question::after {
  content: '+';
  font-size: 20px;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question::after {
  content: '-';
}










/* 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: #1a237e;
}

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

.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 20s 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: #1a1a1a;
  color: #ffffff;
  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: #bbb;
}

/* 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: #007bff;
  position: relative;
}

.footer-links h3::after,
.footer-social h3::after,
.footer-contact h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #007bff;
  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: #bbb;
  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: #bbb;
  transition: transform 0.3s ease, color 0.3s ease;
}

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

.social-iconss i:hover {
  color: #fff;
  background-color: #007bff;
  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 #333;
  font-size: 14px;
  color: #bbb;
}
