body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    /* background-color: #f8f9fa; */
}


/* la navbar */
/* Navigation */
nav {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 1200px;
  padding: 0.5rem 1.5rem; /* Moins d’espace vertical */
  height: 60px; /* Définit une hauteur plus petite */


}

/* Logo */
.logo {
  font-weight: bold;
  font-size: 1.4rem; /* Taille réduite */
  color: #fff;
  display: flex;
  align-items: center;
}

.logo div {
    font-size: 1.5rem;
  color: #ffde59;
  margin-right: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.logo span {
    font-size: 0.75rem;
  line-height: 1.1;
  color: #012475;
}

/* Menu Bouton (mobile) */
.nav__menu__btn {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Liens de Navigation */
.nav__links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-right: 4%;
  align-items: center;
  align-items: center;
  justify-content:center;
  margin-top:18px;
}

.nav__links a {
  color: #012475; /* Couleur des liens initialement en blanc */
  font-size: 0.9rem; /* Réduit la taille des liens */
  padding: 0.3rem 0.8rem; /* Moins de padding */
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: bold;

}

.nav__links a:hover {
  color: #ffde59;
}

/* Effet de survol sous forme de barre animée */
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background-color: #ffde59;
  transition: width 0.3s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

/* Boutons de Connexion et Inscription */
.btn-connexion {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    width: 110px;
  display: inline-block;

  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(45deg, #ffca28, #ff8c00);
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
  margin-top: 12px;

}

.btn-connexion:hover {
  background: linear-gradient(45deg, #ff8c00, #ff5722);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.btn-connexion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn-connexion:hover::before {
  transform: scale(2.5);
}




/* Dropdown Menu */
.nav__item {
  position: relative;
}

.dropdown__menu {
  display: none;
  position: absolute;
  margin-top: 10px;
  top: 95%;
  left: 0;
  backdrop-filter: blur(10px); /* Applique un flou de 10px */
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  list-style: none;
}

.dropdown__menu li {
  padding: 0.5rem 1.5rem;
  width: max-content;
}

.dropdown__menu a {
  color: #ffca28;
  text-decoration: none;
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.dropdown__menu a:hover {
  background-color: #ffde59;
  color: #333;
  border-radius: 8px;
}

/* Afficher les sous-menus au survol */
.nav__item:hover .dropdown__menu {
  display: block;
}

.btncnx {
    margin-bottom: 40px;
    margin-left: 30px;
}

/* Mobile */
@media (max-width: 768px) {
  .nav__menu__btn {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #6a11cb;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    display: none;
  }

  .nav__links li {
    margin: 0.5rem 0;
  }

  .nav__links.show {
    display: flex;
  }

  .nav__item:hover .dropdown__menu {
    display: none;
  }

  .nav__item.active .dropdown__menu {
    display: block;
  }
}



.hero {
    padding: 40px 20px;
}

/* Styles existants */
h1 {
    font-size: 2em;
    color: #1a1a1a;
}

p {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.cta {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.cta:hover {
    background-color: #0056b3;
}

/* Galerie améliorée */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
    max-width: 800px;
    margin: 30px auto;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

/* Effet WOW au survol */
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Grille et tailles */
.large {
    grid-column: span 2;
    height: 300px;
}

.small {
    height: 200px;
}

/* Animation d'apparition */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #1a1a1a;
}

p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.5;
}

/* Bloc comparaison */
.compare-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.compare-text {
    flex: 1;
}

.compare-text h2 {
    font-size: 1.3em;
    color: #333;
}

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

.cta {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 10px;
}

.cta:hover {
    background-color: #0056b3;
}

.compare-image img {
    width: 100px;
}





.universities-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.universities {
    display: flex;
    gap: 15px;
    animation: scrollUniversities 12s linear infinite; /* Défilement automatique */
}

.university-card {
    flex: 0 0 250px;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.university-logo img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

.university-info {
    margin-left: 10px;
}

.university-info h3 {
    font-size: 1em;
    margin: 0;
    color: #1a1a1a;
}

.university-info p {
    font-size: 0.9em;
    margin: 2px 0;
    color: #666;
}

.rank {
    font-weight: bold;
    color: #007bff;
}

/* Animation pour défiler les universités */
@keyframes scrollUniversities {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}




    /* Général */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Titres et textes */
.title {
    font-size: 2em;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.text {
    color: #555;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Bloc comparaison */
.compare-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e3f2fd;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.compare-text {
    flex: 1;
}

.compare-title {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 5px;
}

.compare-description {
    font-size: 1em;
    color: #555;
}

.cta {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.cta:hover {
    background-color: #0056b3;
}

/* Icône */
.compare-image svg {
    width: 80px;
    height: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .compare-box {
        flex-direction: column;
        text-align: center;
    }

    .compare-image {
        margin-top: 15px;
    }
}



/* ----- Style du Modal ----- */
.modal {
    display: none; /* Change from flex to none */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Arrière-plan semi-transparent */
    backdrop-filter: blur(8px); /* Effet de flou */
    animation: fadeIn 0.3s ease-in-out;
}

/* Ajouter une classe pour afficher la modale */
.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fa); /* Dégradé léger */
    padding: 25px;
    border-radius: 12px;
    width: 420px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(-20px);
    animation: slideDown 0.3s ease-in-out forwards;
    max-height: 80vh; /* Empêche la modale d'être trop haute */
    overflow-y: auto; /* Ajoute un défilement si nécessaire */
}

/* ----- Animation d'apparition ----- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-20px); }
    to { transform: translateY(0); }
}

/* ----- Bouton de fermeture ----- */
/* Bouton de fermeture X */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333; /* Assure-toi qu'il contraste bien avec le fond */
    cursor: pointer;
    transition: transform 0.2s ease-in-out, color 0.3s;
}

.close:hover {
    color: #ff4d4d; /* Rouge au survol */
    transform: scale(1.2);
}


/* ----- Formulaire ----- */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
    font-weight: bold;
    color: #444;
}

form input, form select {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s ease-in-out;
}

form input:focus, form select:focus {
    border-color: #007bff;
    outline: none;
}

/* ----- Bouton Envoyer ----- */
form .cta {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

form .cta:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* ----- Responsive ----- */
@media (max-width: 500px) {
    .modal-content {
        width: 90%;
        padding: 20px;
    }
}



/* ce que je dois ajouter pour les programmes */
/* ----- Style de la section ----- */
.nos-programmes {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f8ff, #e6efff); /* Dégradé doux */
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* ----- Titre ----- */
.nos-programmes h1 {
    font-size: 2.5rem;
    color: #002b5c; /* Bleu profond */
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ----- Paragraphe ----- */
.nos-programmes p {
    font-size: 1.2rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* ----- Bouton ----- */
.cta {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.cta:hover {
    background: linear-gradient(135deg, #0056b3, #003f80);
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .nos-programmes {
        padding: 40px 15px;
    }

    .nos-programmes h1 {
        font-size: 2rem;
    }

    .nos-programmes p {
        font-size: 1rem;
    }

    .cta {
        font-size: 1rem;
        padding: 12px 25px;
    }
}


/* ----- Conteneur de la section ----- */
.nos-programmes {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8ff, #e6efff); /* Dégradé doux */
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}

/* ----- Effet lumineux ----- */
.nos-programmes::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    animation: shine 6s infinite linear;
}

/* ----- Animation Shine ----- */
@keyframes shine {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ----- Titre ----- */
.nos-programmes h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #002b5c;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* ----- Effet de soulignement animé ----- */
.nos-programmes h1::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #007bff;
    display: block;
    margin: 10px auto;
    border-radius: 2px;
    animation: underline 1.5s infinite alternate;
}

@keyframes underline {
    from {
        width: 50px;
    }
    to {
        width: 100px;
    }
}

/* ----- Paragraphe ----- */
.nos-programmes p {
    font-size: 1.4rem;
    color: #333;
    max-width: 700px;
    margin: 20px auto;
    line-height: 1.7;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards 0.5s;
}

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

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .nos-programmes {
        padding: 50px 15px;
    }

    .nos-programmes h1 {
        font-size: 2.5rem;
    }

    .nos-programmes p {
        font-size: 1.2rem;
    }
}







/* ----- Section Hero ----- */
.hero {
    text-align: center;
    padding: 80px 20px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 1200px;
    margin: 50px auto;
    position: relative;
}

/* ----- Titre et Texte ----- */
.nos-programmes h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #002b5c;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.nos-programmes p {
    font-size: 1.4rem;
    color: #333;
    max-width: 700px;
    margin: 20px auto;
    line-height: 1.7;
    font-weight: 500;
}

/* ----- Galerie d'Images ----- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Grille responsive */
    gap: 15px;
    padding: 30px;
    justify-content: center;
}

/* ----- Style des Images ----- */
.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* ----- Effet Zoom au Survol ----- */
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* ----- Animation d'apparition ----- */
.gallery img {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

/* Appliquer l'animation en décalé sur chaque image */
.gallery img:nth-child(1) { animation-delay: 0.2s; }
.gallery img:nth-child(2) { animation-delay: 0.4s; }
.gallery img:nth-child(3) { animation-delay: 0.6s; }
.gallery img:nth-child(4) { animation-delay: 0.8s; }
.gallery img:nth-child(5) { animation-delay: 1s; }

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

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .hero {
        padding: 50px 15px;
    }

    .nos-programmes h1 {
        font-size: 2.5rem;
    }

    .nos-programmes p {
        font-size: 1.2rem;
    }

    .gallery img {
        height: 200px;
    }
}



.section-programmes {
    text-align: center;
    padding: 40px 20px;
}

.section-programmes h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #004AAD, #E60023);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.section-programmes p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}





/* === Responsive Design === */

/* 📌 Écran large - Version Bureau */
@media (min-width: 1024px) {
    .container {
      max-width: 1100px;
    }
  }

  /* 📌 Tablettes */
  @media (max-width: 1024px) {
    .nav__bar {
      padding: 1rem;
    }

    .gallery {
      grid-template-columns: 1fr;
    }

    .compare-box {
      flex-direction: column;
      text-align: center;
    }

    .compare-image img {
      width: 80px;
    }
  }

  /* 📌 Mobiles */
  @media (max-width: 768px) {
    /* Navigation Mobile */
    .nav__menu__btn {
      display: block;
    }

    .nav__links {
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.9);
      padding: 1rem;
      display: none;
    }

    .nav__links.show {
      display: flex;
    }

    .nav__item {
      width: 100%;
      text-align: center;
    }

    .nav__links a {
      display: block;
      padding: 10px 0;
    }

    /* Galerie */
    .gallery {
      grid-template-columns: 1fr;
    }

    .large,
    .small {
      height: auto;
    }

    /* Universités */
    .universities {
      flex-wrap: wrap;
      justify-content: center;
      animation: none; /* Désactive le scroll automatique sur mobile */
    }

    .university-card {
      flex: 0 0 100%;
      margin-bottom: 10px;
    }
  }

  /* 📌 Petits Mobiles (max 480px) */
  @media (max-width: 480px) {
    h1 {
      font-size: 1.5em;
    }

    .cta {
      font-size: 0.9em;
      padding: 10px 15px;
    }
  }



  /* === 📌 Responsive pour Tablettes et Mobiles === */
@media (max-width: 1024px) {
    .nav__bar {
      padding: 1rem;
    }

    .grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  }

  @media (max-width: 768px) {
    /* Navigation Mobile */
    .nav__menu__btn {
      display: block;
    }

    .nav__links {
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.95);
      padding: 1rem;
      display: none;
    }

    .nav__links.show {
      display: flex;
    }

    .nav__item {
      width: 100%;
      text-align: center;
    }

    .grid {
      grid-template-columns: 1fr;
    }
  }

  /* === 📌 Pour Petits Mobiles (<480px) === */
  @media (max-width: 480px) {
    body {
      font-size: 14px;
    }

    h1 {
      font-size: 1.4rem;
    }

    .nav__bar {
      flex-direction: column;
    }
  }




  /* la section footer */


  /* Footer Styling */
.footer {
    background: rgba(0, 36, 117, 0.9); /* Bleu foncé avec transparence */
    color: white;
    padding: 2rem 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
  }

  /* Section de gauche */
  .footer-left p {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
  }

  /* Section centrale */
  .footer-center ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1.5rem;
  }

  .footer-center ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .footer-center ul li a:hover {
    color: #ffde59; /* Jaune vif au survol */
  }

  /* Section droite (Réseaux Sociaux) */
  .footer-right .social-icons {
    list-style: none;
    display: flex;
    gap: 1rem;
  }

  .social-icon {
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background: #ffde59;
    color: #012475;
    transform: scale(1.1);
  }

  /* Responsiveness */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }

    .footer-center ul {
      flex-direction: column;
      gap: 1rem;
    }

    .footer-right {
      margin-top: 1rem;
    }
  }




  /* ✅ Responsivité avancée pour tous les écrans */
@media (max-width: 1024px) {
    .footer-content {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }

    .footer-center ul {
      flex-direction: column;
      gap: 1rem;
    }

    .social-icons {
      justify-content: center;
    }
  }

  /* Petits écrans (mobile) */
  @media (max-width: 480px) {
    .footer {
      padding: 1.5rem 0.5rem;
    }

    .footer-content {
      gap: 0.5rem;
    }

    .footer-center ul {
      gap: 0.8rem;
    }

    .social-icons {
      gap: 0.8rem;
    }

    .social-icon {
      width: 35px;
      height: 35px;
      font-size: 1.2rem;
    }

    .footer-left p {
      font-size: 0.9rem;
    }

    .footer-center a {
      font-size: 0.9rem;
    }
  }
