/* Styles généraux */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
      }










html {
    scroll-behavior: smooth;
}

.dynamic-section {
    scroll-margin-top: 100px; /* Ajustez selon la hauteur de votre header */
}
















      body {
        background-color: rgb(44, 42, 42);
        color: #333;
        
      }


      
   /* ===== HEADER & MENU - STYLES COMPLETS ===== */

/* Header Principal */
.header {
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 5%;
    height: 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo a {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: -0.5px;
    margin-right: 245px;
}

/* Menu Desktop */
.desktop-nav {
    display: flex;
    align-items: center;
    margin: auto;
    
}

.menu {
    display: flex;
    list-style: none;
    gap: 30px;
     flex-wrap: nowrap;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 10px;
}

.menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Barre de recherche Desktop */
.search-desktop {
    display: flex;
    align-items: center;
}

.search-desktop form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 15px;
}

.search-desktop input {
    background: transparent;
    border: none;
    color: white;
    padding: 5px 10px;
    width: 200px;
    font-size: 0.9rem;
}

.search-desktop input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-desktop input:focus {
    outline: none;
}

.search-desktop button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 5px;
}




/* Style du bouton hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Animation pour transformer en croix */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* Overlay du menu mobile */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #1a1a1a;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

/* En-tête du menu mobile */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a1a1a;
}

.logo-mobile {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
}

.close-btn {
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #0070ba;
}

/* Barre de recherche mobile */
.search-mobile {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-mobile form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
}

.search-mobile input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
}

.search-mobile input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-mobile input:focus {
    outline: none;
}

.search-mobile button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 5px;
}

/* Items du menu mobile */
.mobile-menu-items {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu-items li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-items li a {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-items li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu-items li a i {
    margin-right: 15px;
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}


/* Correction du débordement quand le menu est ouvert */
body.menu-open {
    overflow: hidden;
}

/* ===== HERO SECTION ===== */

.hero-section {
    margin-top: 70px; /* Pour compenser le header fixe */
    position: relative;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 20px;
    text-align: center;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

/* Container du texte animé */
.bonjour-container {
    margin-bottom: 40px;
}

#animated-text {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    padding: 0 20px;
}

/* Container des boutons */
.boutons-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Boutons */
.bouton {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    text-decoration: none;
    font-weight: 600;
    min-width: 220px;
    text-align: center;
}

.bouton-primaire {
    background-color: #060333;
    color: white;
}

.bouton-primaire:hover {
    background-color: #0070ba;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 112, 186, 0.4);
}

.bouton-secondaire {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.bouton-secondaire:hover {
    background-color: white;
    color: #060333;
    transform: translateY(-3px);
}























      
      /* Section avec image de fond */
     .hero-section {
      margin-top: 2%;
  position: relative;
  height: 110vh;
  display: flex;
  flex-direction: column; /* CHANGE : passe en colonne */
  justify-content: center; /* centre verticalement */
  align-items: center; /* centre horizontalement */
  overflow: hidden;
}


    .background-image {
        position: absolute;
        top: 0;
        right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  z-index: 1;
}

.background-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

      /* Animation du texte Bonjour */
      .bonjour-container {
        position: relative;
        z-index: 2;
        text-align: center;
        height: 70px;
        display: flex; /* AJOUT */
  align-items: center; /* AJOUT */
  justify-content: center; /* AJOUT */
      }

      .bonjour-text {
        font-size: 4rem;
        font-weight: bold;
        color: white;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        overflow: hidden;
        border-right: 3px solid white;
        white-space: nowrap;
        animation: typing 3.5s steps(7, end), blink-caret 0.75s step-end infinite;
      }

      /* Animation d'écriture */
      @keyframes typing {
        from { width: 0 }
        to { width: 100% }
      }

      /* Animation du curseur */
      @keyframes blink-caret {
        from, to { border-color: transparent }
        50% { border-color: white }
      }

      /* Responsive */
      @media (max-width: 768px) {
        .header {
          flex-direction: column;
          padding: 10px;
        }

        .menu {
          margin: 15px 0;
        }

        .menu li {
          margin: 0 10px;
        }

        .bonjour-text {
          font-size: 2.5rem;
        }
      }


      #animated-text {
  font-size: 4rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  min-height: 60px;
  border-right: 3px solid white;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white }
}



.boutons-container {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  gap: 25px;
  position: relative;
  z-index: 2;
}

.bouton {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.5s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  text-decoration: none; /* enlève les lignes */
  color: inherit;
}

.bouton-primaire {
  background-color: #060333;
  color: white;
}

.bouton-primaire:hover {
  background-color: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bouton-secondaire {
  background-color: #060333;
  color: white;
  border: 2px solid white;
}

.bouton-secondaire:hover {
  background-color: white;
  color: #3498db;
  transform: translateY(-2px);
}







/* --- SECTION BLOG STYLÉE ET MODERNE --- */
.blog-section {
  position: relative;
  padding: 100px 8%;
  margin-top: 15%;
   background: linear-gradient(135deg, #000010, #020529, #010b3a);
  color: #fff;
  overflow: hidden;
  text-align: center;
    max-width: 1200px;            /* largeur maximale pour centrer */
  margin: 120px auto;           /* centré avec marge haut/bas */
    border-radius: 30px;          /* coins arrondis */
}

/* Dégradé d’arrière-plan animé */
.blog-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 90deg at 50% 50%, #2c82ff, #3acfd5, #3498db, #2c82ff);
  animation: rotateGradient 15s linear infinite;
  opacity: 0.15;
  z-index: 0;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.blog-section h2 {
  font-size: 2.8rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #3acfd5, #2c82ff);
   background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-section h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #3acfd5, #2c82ff);
  margin: 15px auto 25px;
  border-radius: 4px;
}

.blog-description {
  font-size: 1.1rem;
  color: #dcdcdc;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  animation: fadeIn 2s ease;
}

/* --- Cartes de blog --- */
.blog-container {
    margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}


.blog-card {
  width: 320px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 1s ease forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.3s; }
.blog-card:nth-child(2) { animation-delay: 0.6s; }
.blog-card:nth-child(3) { animation-delay: 0.9s; }

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.08);
}

.blog-content {
  padding: 25px;
  text-align: left;

}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
}

.blog-content p {
  font-size: 0.95rem;
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: #3acfd5;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #fff;
  text-shadow: 0 0 10px #3acfd5;
}

/* --- Animations --- */
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Effet de survol complet de la carte --- */
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}





/* --- Section Annonce - Style sombre et moderne --- */
.annonce-credit-karma {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 8%;
  margin-top: 15%;
    margin: 100px auto; /* centrer le bloc */
  overflow: hidden; /* pour que le fond animé ne dépasse pas */
  background: linear-gradient(135deg, #000010, #020529, #010b3a);
  color: #fff;
  position: relative;
   max-width: 1200px;
    border-radius: 30px; /* coins arrondis */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Effet d’animation douce d’arrière-plan */
.annonce-credit-karma::before {

     border-radius: 30px;
  opacity: 0.12;
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg at 50% 50%, #2c82ff, #3acfd5, #3498db, #2c82ff);
  animation: rotateGradient 18s linear infinite;
  opacity: 0.1;
  z-index: 0;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- Partie gauche (texte) --- */
.contenu-gauche {
  flex: 1;
  z-index: 1;
  animation: slideInLeft 1.5s ease forwards;
}

.contenu-gauche h1 {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #3acfd5, #2c82ff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contenu-gauche p {
  font-size: 1.1rem;
  color: #bfc8ff;
  letter-spacing: 0.5px;
  line-height: 1.7;
}

/* --- Partie droite (image + cercle) --- */
.contenu-droite {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1.5s ease forwards;
}

.contenu-droite img {
  width: 380px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(52, 152, 219, 0.3);
  z-index: 2;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.contenu-droite img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(58, 207, 213, 0.5);
}

/* Cercle décoratif derrière l’image */
.cercle-decoratif {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 207, 213, 0.35), transparent 70%);
  animation: pulseCircle 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulseCircle {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.4; }
}

/* --- Animations d’apparition --- */
@keyframes slideInLeft {
  from { transform: translateX(-80px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(80px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}








.temoignages-section {
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
  padding: 20px;
}

.temoignages-section h2 {
    color: white;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 60px;
}

.cartes-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}




.carte {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 30px;
  width: 45%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carte:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.carte-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.logo {
  height: 35px;
  width: auto;
}

.carte h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.carte p {
  font-size: 1rem;
  line-height: 1.6;
  color: white;
}

.carte a {
  display: inline-block;
  margin-top: 15px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.carte a:hover {
  color: #00bfff;
}















/* Conteneur des cartes (Flexbox) */
.cards-container {
    margin-left: 140px;
    display: flex;
    gap: 30px; /* Espace entre les cartes */
    max-width: 1200px;
    width: 100%;
    margin-bottom: 70px;
}

/* Style de chaque carte */
.card {
    flex: 1; /* Permet aux cartes de prendre une taille égale */
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Bordure blanche très subtile */
    border-radius: 15px; /* Coins arrondis */
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pousse le contenu vers le haut et le bouton vers le bas */
    height: 400px; /* Hauteur fixe pour l'uniformité */
    position: relative;
    overflow: hidden; /* Pour gérer la position absolue des icônes/boutons si nécessaire */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Ombre légère (moins visible sur fond noir) */
}

/* Style de l'icône en haut */
.icon-top {
    font-size: 3em;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    /* Positionnement pour correspondre au look de l'image (légèrement décalé) */
    position: absolute;
    top: 30px;
    left: 30px;
}

/* Contenu principal de la carte */
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* S'étend sur toute la hauteur restante */
    padding-top: 80px; /* Espace pour l'icône en haut */
}

/* Style du titre */
.card-content h2 {
    color: white;
    font-size: 1.8em;
    font-weight: 600; /* Plus gras pour l'impact */
    line-height: 1.3;
    margin: 0;
}

/* Style du bouton */
.btn {
    background-color: transparent; /* Fond transparent */
    color: #ffffff;
    border: 1px solid #ffffff; /* Bordure blanche */
    padding: 15px 30px;
    font-size: 1em;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
    margin-top: auto; /* Pousse le bouton vers le bas */
}

/* Effet au survol du bouton (optionnel mais agréable) */
.btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}






















.site-footer {
    background-color: #1a1a1a; /* Couleur de fond foncée comme dans l'image */
    color: #b0b0b0; /* Couleur du texte gris clair pour les liens */
    padding: 40px 100px 20px; /* Padding autour du contenu */
    line-height: 1.6;
}

/* --- Section des liens (Flexbox pour les colonnes) --- */
.footer-links-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    flex-grow: 1; /* Permet aux colonnes de grandir */
    min-width: 150px;
}

.footer-column h3 {
    color: #ffffff; /* Titres de colonne blancs */
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #ffffff;
}

/* Style spécial pour le logo vert (simulé) */
.jetbrains-logo {
    margin-top: 15px;
}

.logo-placeholder {
    font-size: 24px;
    color: #62a831; /* Vert JetBrains typique */
}

/* --- Ligne de séparation --- */
.footer-divider {
    border: none;
    height: 1px;
    background-color: #333333; /* Gris foncé pour la ligne */
    margin: 20px 0;
}

/* --- Section du milieu (Icônes et Sélecteurs) --- */
.footer-middle-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
}

/* Icônes de réseaux sociaux */
.social-icons {
    display: flex;
    gap: 15px;
}

.icon {
    color: #b0b0b0;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
}

.icon:hover {
    color: #ffffff;
}

/* Sélecteurs de langue et de région */
.selectors {
    display: flex;
    gap: 30px;
    color: #ffffff;
}

.selector-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.selector-icon {
    margin-right: 8px;
    font-size: 18px;
}

/* Icône 'A' pour la langue (simulée) */
.language-selector .selector-icon {
    font-weight: bold;
}

/* --- Section inférieure (Lien légaux et Copyright) --- */
.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Aligne le copyright en bas */
    padding-top: 20px;
    font-size: 12px;
}

.legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: #ffffff;
}

.copyright-info {
    text-align: right;
    line-height: 1.5;
}

.copyright-info p {
    margin: 0;
}

.developed-by {
    color: #b0b0b0; /* La couleur est plus grise ici */
}

.developed-by strong {
    font-weight: normal; /* Utilisation de strong dans le HTML, mais le style est normal pour ressembler à l'image */
}


/* --- Bloc "Activer Windows" (hors footer, en bas à droite) --- */
.windows-activation-prompt {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 10px 15px;
    background-color: #1a1a1a;
    border-top: 1px solid #333333;
    border-left: 1px solid #333333;
    color: #ffffff;
    text-align: right;
    font-size: 14px;
    width: 250px;
    z-index: 1000;
}

.activation-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 3px 0;
}

.activation-subtitle {
    font-size: 12px;
    color: #b0b0b0;
    margin: 0;
}




.submenu {
    display: none;  /* Cache les sous-liens par défaut */
    position: absolute;
    top: 100%; /* Place les sous-liens sous l'élément parent */
    left: 22%;
    background-color:black;
    border: 1px solid #ddd;
    border-radius: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.submenu li {
    padding: 10px;
}

.submenu a {
    color:white;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
   
}


/* Afficher les sous-liens lorsqu'on survole le lien principal */
.menu li:hover .submenu {
    background-color: #1a1a1a;
    display: block;
}





/*3 boutons pour le changement */
.btn-group{
  position: fixed;
  top: 20%;
  left: 35%;
  transform: translateY(-50%);
  display: flex;
  border: 2px solid #00a1;
  border-radius: 40px;
  overflow:hidden ;
  opacity: 0;
  pointer-events: auto;
  transition: all 0.5s ease;
  z-index: 999;
  background: white;

}

.btn-group.show{
  opacity: 1;
  pointer-events: auto;
}

.btn-group button{
  background: white;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: black;
  transition: all 0.3s ease;

}

.btn-group button.active{
  background: black;
  color: white;
}


.btn-group button:not(:last-child) {
  border-right: 2px solid #000;
}

/* === CONTENU DYNAMIQUE === */
.content {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  padding: 30px;
  transition: all 0.3s ease;
}















/*Desing pour la couche de Professiinnels */

/* 🌐 SECTION PROFESSIONNEL — Design moderne et harmonisé */
#section-professionnel {
  background-color: black;
  padding: 60px 8%;
  display: none; /* reste cachée tant qu'on ne clique pas sur le bouton */
}

#section-professionnel.active {
  display: block;
}

/* TITRES PRINCIPAUX */
#section-professionnel h2 {
  color: #005c99;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
}

#section-professionnel h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #00bfff;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* PARAGRAPHES GÉNÉRAUX */
#section-professionnel .description {
  color:white;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* 📰 BLOG / ARTICLES */
#section-professionnel .blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

#section-professionnel .blog-card {
  background: black;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

#section-professionnel .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

#section-professionnel .blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#section-professionnel .blog-content {
  padding: 20px;
}

#section-professionnel .blog-content h3 {
  color: white;
  margin-bottom: 10px;
}

#section-professionnel .blog-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: white;
}

#section-professionnel .read-more {
  color: #007acc;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

#section-professionnel .read-more:hover {
  color: #00bfff;
}

/* 💬 TÉMOIGNAGES */
#section-professionnel .temoignages-section {
  margin-top: 80px;
  color: white;
}

#section-professionnel .Jeane {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  

}


/* 🧩 ANNONCE / PARTIE ILLUSTRÉE */
#section-professionnel .annonce-credit-karma {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 90px;
   background: conic-gradient(from 180deg at 50% 50%, #004, #004, #004,) ;
  border-radius: 20px;
  padding: 50px;
  color: white;
  flex-wrap: wrap;
}


@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#section-professionnel .annonce-credit-karma .contenu-gauche {
  flex: 1;
  min-width: 280px;
}

#section-professionnel .annonce-credit-karma h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

#section-professionnel .annonce-credit-karma .contenu-droite {
  position: relative;
  flex: 1;
  text-align: right;
  min-width: 280px;
}

#section-professionnel .annonce-credit-karma img {
  width: 90%;
  max-width: 400px;
  border-radius: 16px;
}

#section-professionnel .annonce-credit-karma .cercle-decoratif {
  position: absolute;
  bottom: -20px;
  right: 50px;
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
}

/* 💎 CARDS CALL-TO-ACTION PROFESSIONNEL */
#section-professionnel .cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 80px;
  margin-left: 140px;
}

#section-professionnel .card {
  background: #000000;  /* ← CHANGÉ EN NOIR */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
}

#section-professionnel .card:hover {
  transform: translateY(-5px);
  border-color: #00ffcc;
  box-shadow: 0 10px 25px rgba(0, 255, 204, 0.3);
}

#section-professionnel .icon-top {
  font-size: 3em;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
  position: absolute;
  top: 30px;
  left: 30px;
}

#section-professionnel .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 80px;
}

#section-professionnel .card-content h2 {
  color: white;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 20px 0;
}

#section-professionnel .btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 15px 30px;
  font-size: 1em;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;
  margin-top: auto;
}

#section-professionnel .btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}



/* --- Gestion des sections dynamiques --- */
.tab-section {
  display: none; /* Par défaut, elles sont cachées */
}

.tab-section.active {
  display: block; /* Seule la section active s'affiche */
}












/*Developeur */ 
 #section-developpeur {
  display: none;
}

#section-developpeur.active {
  display: block;
}
























/* SECTION DYNAMIQUE */
.dynamic-section {
    display: none;
    margin-left: 140px;
    margin-top: 40px;
    padding: 20px;
}

/* En-tête avec retour */
.header-dynamic {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.header-dynamic h2 {
    color: #00ffcc;
    font-size: 2.5em;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.back-icon {
    font-size: 2.5em;
    cursor: pointer;
    color: #00ffcc;
    transition: 0.3s;
    padding: 10px;
    border-radius: 50%;
}

.back-icon:hover {
    transform: scale(1.2);
    background: rgba(0, 255, 204, 0.1);
}

/* Zone flèches + cartes */
.scroll-zone {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

/* Flèches */
.arrow {
    font-size: 3.5em;
    color: #00ffcc;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
    padding: 15px;
    border-radius: 50%;
}

.arrow:hover {
    transform: scale(1.2);
    background: rgba(0, 255, 204, 0.1);
}

/* Conteneur horizontal */
.scroll-cards {
    display: flex;
    gap: 35px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    max-width: 1200px;
    padding: 30px 20px;
}

/* SOUS-CARTES STYLE NOIR MODERNE */
.sub-card {
    min-width: 320px;
    height: 420px;
    background: #000000;
    border-radius: 20px;
    border: 2px solid #333;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(0, 255, 204, 0.1),
        inset 0 0 20px rgba(0, 255, 204, 0.05);
    color: white;
    padding: 35px;
    font-size: 1.3em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.sub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ffcc, #0099ff, #00ffcc);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.sub-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 255, 204, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.sub-card:hover {
    transform: translateY(-10px);
    border-color: #00ffcc;
    box-shadow: 
        0 20px 40px rgba(0, 255, 204, 0.3),
        0 0 30px rgba(0, 255, 204, 0.2),
        inset 0 0 30px rgba(0, 255, 204, 0.1);
}

.sub-card:hover::after {
    left: 100%;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Contenu des cartes */
.sub-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    z-index: 2;
}

.sub-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #00ffcc;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.sub-card p {
    font-size: 1em;
    line-height: 1.6;
    margin: 8px 0;
    color: #e0e0e0;
}

.sub-card .price {
    font-size: 1.4em;
    color: #00ff00;
    font-weight: bold;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.sub-card .duration {
    font-size: 1em;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.sub-card .level {
    font-size: 0.9em;
    color: #ff6b6b;
    font-weight: 600;
}

/* Bouton Suivre style néon */
.follow-btn {
    background: #000;
    color: #00ffcc;
    border: 2px solid #00ffcc;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.follow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.2), transparent);
    transition: left 0.5s ease;
}

.follow-btn:hover {
    background: #00ffcc;
    color: #000;
    box-shadow: 
        0 0 25px rgba(0, 255, 204, 0.6),
        0 0 50px rgba(0, 255, 204, 0.3);
    transform: translateY(-2px);
}

.follow-btn:hover::before {
    left: 100%;
}

.follow-btn.following {
    background: #00ff00;
    color: #000;
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    transform: scale(0.95);
}

/* Couleurs différentes par section */
.sub-card[data-section="assistance"]::before {
    background: linear-gradient(90deg, #ff6b6b, #ff8e53, #ff6b6b);
}

.sub-card[data-section="assistance"] h3 {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.sub-card[data-section="commercial"]::before {
    background: linear-gradient(90deg, #4ecdc4, #44a08d, #4ecdc4);
}

.sub-card[data-section="commercial"] h3 {
    color: #4ecdc4;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.sub-card[data-section="admins"]::before {
    background: linear-gradient(90deg, #ffd93d, #ff6b6b, #ffd93d);
}

.sub-card[data-section="admins"] h3 {
    color: #ffd93d;
    text-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
}












/* SECTION DYNAMIQUE UNIFORMISÉE */
.dynamic-section {
    display: none;
    margin: 20px 0 0 140px;
    padding: 20px;
    min-height: 80vh;
}

/* En-tête avec retour */
.header-dynamic {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.header-dynamic h2 {
    color: #00ffcc;
    font-size: 2.2em;
    margin: 0;
    font-weight: 700;
}

.back-icon {
    font-size: 2.2em;
    cursor: pointer;
    color: #00ffcc;
    transition: 0.3s;
    padding: 8px;
    border-radius: 50%;
}

.back-icon:hover {
    transform: scale(1.1);
    background: rgba(0, 255, 204, 0.1);
}

/* Zone flèches + cartes */
.scroll-zone {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

/* Flèches */
.arrow {
    font-size: 3em;
    color: #004;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
    padding: 12px;
    border-radius: 50%;
}

.arrow:hover {
    transform: scale(1.1);
    background: rgba(0, 255, 204, 0.1);
}

/* Conteneur horizontal */
.scroll-cards {
    display: flex;
    gap: 25px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    max-width: 1100px;
    padding: 20px 15px;
}

/* CARTES UNIFORMISÉES */
.sub-card {
    min-width: 300px;
    height: 380px;
    background: #000000;
    border-radius: 15px;
    border: 2px solid #333;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(0, 255, 204, 0.1);
    color: white;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ffcc, #0099ff);
}

.sub-card:hover {
    transform: translateY(-5px);
    border-color: #00ffcc;
    box-shadow: 
        0 15px 35px rgba(0, 255, 204, 0.2),
        0 0 25px rgba(0, 255, 204, 0.1);
}

/* Contenu des cartes */
.sub-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    z-index: 2;
}

.sub-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #00ffcc;
    font-weight: 600;
    text-align: center;
}

.sub-card p {
    font-size: 0.95em;
    line-height: 1.5;
    margin: 6px 0;
    color: #e0e0e0;
    text-align: center;
}

.sub-card .price {
    font-size: 1.2em;
    color: #00ff00;
    font-weight: bold;
    margin: 8px 0;
}

.sub-card .duration {
    font-size: 0.9em;
    color: #ffcc00;
}

.member-name {
    font-weight: bold;
    color: #ffd93d !important;
    font-size: 1em !important;
    margin: 8px 0 !important;
}

/* BOUTON ACTION UNIFORME */
.action-btn {
    background: #000;
    color: #00ffcc;
    border: 2px solid #00ffcc;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
    margin-top: auto;
}

.action-btn:hover {
    background: #00ffcc;
    color: #000;
    box-shadow: 
        0 0 25px rgba(0, 255, 204, 0.6),
        0 0 50px rgba(0, 255, 204, 0.3);
    transform: translateY(-2px);
}

/* Photo des membres */
.member-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffd93d;
    box-shadow: 0 0 15px rgba(255, 217, 61, 0.4);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Couleurs par section */
.sub-card[data-section="commercial"]::before {
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

.sub-card[data-section="commercial"] h3 {
    color: #4ecdc4;
}

.sub-card[data-section="commercial"] .action-btn {
    border-color: #4ecdc4;
    color: #4ecdc4;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
}

.sub-card[data-section="commercial"] .action-btn:hover {
    background: #4ecdc4;
    color: #000;
}

.sub-card[data-section="admins"]::before {
    background: linear-gradient(90deg, #ffd93d, #ff6b6b);
}

.sub-card[data-section="admins"] h3 {
    color: #ffd93d;
}

.sub-card[data-section="admins"] .action-btn {
    border-color: #ff6b6b;
    color: #ff6b6b;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

.sub-card[data-section="admins"] .action-btn:hover {
    background: #ff6b6b;
    color: #000;
}



















/* Correction pour le menu mobile */
.mobile-menu {
  top: 0;
  padding-top: 80px; /* ← AJOUTEZ CE PADDING */
}

.mobile-menu-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  z-index: 1002;
}

.mobile-menu-items {
  margin-top: 20px;
}




































