/*
Theme Name: Mon Thème Amélioré
Author: CIRCOE
Version: 1.4
Description: Header avec menu espacé et plus lisible
*/

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #000000;
}

/* Bouton texte actif au survol */
.custom-header a:hover {
  color: #ddff00; /* couleur personnalisée au survol */
    position: relative;
}

.header-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
}

/* bloc en tête */
header.custom-header {
  position: sticky;
  top: 0;  
  padding: 5px 0;
  z-index: 1000;
  background: #f5f8fc;
}

.logo img {
  height: auto; 
  display: block;
  max-height: 110px;
}

/* MENU */
.main-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
  cursor: pointer;
  font-weight: 500;
}

.nav-links li a {
  text-decoration: none;
  color: #1a1a1a;
}

/* couleur en passant sur les menus header*/
.nav-links li:hover > a,
.nav-links li:hover {
  color: rgb(0, 86, 150);
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.nav-menu {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: inline;
}

.nav-menu li a {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 10px 14px;
  transition: color 0.3s ease;
}

/*
/* BOUTON DÉMO */
.demo-button .btn-demo,  {
  background-color: #2a5bff;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.demo-button .btn-demo:hover ,{
  background-color: #1e44cc;
}

.hero-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

/* Section 1 page d'accueil */

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
    height: 450px; /* ou ce qui te convient */
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 40px;
}
/* texte de la page 1 bandeau*/
.hero-text {  
  flex: 1 1 500px;
    text-align: left;
  max-width: 600px;
    margin-right: 40px;
}

#hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
  word-break: break-word;
  white-space: normal;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#hero-title-wrapper {
  position: relative;
  height: 150px; /* fixe juste la hauteur du conteneur texte */
  overflow: hidden;
}

.hero-list {
  list-style: disc;
  padding-left: 0;
  margin: 0 auto;
  max-width: 600px;
  color: white;
  direction: rtl; /* inverser les puces à droite */
  text-align: right;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 400px;
}

.floating-image {
  position: absolute;
  opacity: 0.8;
  transition: transform 1s ease-in-out, filter 1s ease-in-out;
  animation: float 5s infinite ease-in-out alternate;
}

/* Personnalise les positions et tailles dans la section 1 */
.img-1 {
  top: 10px;
  left: 20px;
  width: 300px;
  filter: blur(1px);
  border-color: #000000;
}
.img-2 {
  top: 120px;
  left: 180px;
  width: 400px;
  filter: blur(2px);
}
.img-3 {
  top: 50px;
  left: 400px;
  width: 350px;
  filter: blur(0.5px);
}

/* Animation flottante */
@keyframes float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
    filter: brightness(1);
  }
  100% {
    transform: translateY(-10px) scale(1.05);
    opacity: 1;
    filter: brightness(1.2);
  }
}


.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}


/* Section numéros 2 page d'accueil */
.section-grid {
  background-color: #f9f9f9;
  padding: 20px 10px;
  text-align: center;
  color: #555;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  margin-top: 0px; /* ou une valeur réduite comme 10px */  
  color: #555;
  
}

.section-header p {
  max-width: 800px;
  margin: 0 auto 5px;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* le retournement des cartes de l'équipe et de la front page */
    /* dimensiion de la carte */
.flip-card {
  background-color: transparent;
  width: 250px;
  height: 450px;
  perspective: 1000px;
  position: relative; /* ✅ essentiel pour contenir .flip-card-inner */
  margin: 10px;
}

.flip-card .person-name {
  font-size: 18px;
  color: rgb(0, 86, 150);
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
  text-decoration: none; /* Empêche le soulignement par défaut */
  display: block;
}
.flip-card .person-name:hover {
  text-decoration: underline;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
  transform-origin: center center;
}

   /* retournement CIRCOE*/
.flip-card-front2,
.flip-card-back2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  box-shadow: 0 5px 5px rgb(238, 238, 237);
  backface-visibility: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  padding: 15px;
  color: white;
  box-sizing: border-box; /* ✅ pour uniformiser la taille incluant padding */
}
.flip-card-back2 {
  background: rgb(0, 86, 150);
    color: white;
  transform: rotateY(180deg);
  font-style: italic; 
  font-size: 16px;
}

    /* retournement */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgb(0, 177, 161);
  box-shadow: 0 5px 5px rgb(238, 238, 237);
  backface-visibility: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  padding: 15px;
  color: white;
  box-sizing: border-box; /* ✅ pour uniformiser la taille incluant padding */
}

 

.flip-card-back {
  background: rgb(0, 86, 150);
    color: white;
  transform: rotateY(180deg);
  font-style: italic;
  font-size: 16px;
}

.flip-cards-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.flip-cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch; /* 🔄 Assure alignement vertical */
}


/* -------------------- PARTIE 3 --------------- */
.reporting-highlight {
  padding: 60px 20px;
  background: #f5f9fc;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.container-reporting {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.reporting-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  min-width: 220px;
  align-items: center;
}

.indicator-box {
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 260px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.indicator-box i {
  font-size: 22px;
  color: #005696;
}

.indicator-box .arrow {
  font-size: 24px;
  color: #888;
}

.reporting-image {
  flex: 1 1 400px;
  max-width: 500px;
}

.reporting-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tab-btn {
  padding: 12px 24px;
  border: 2px solid rgb(0, 0, 0);
  background-color: transparent;
  color: rgb(0, 86, 150);
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background-color: rgb(0, 86, 150);
  color: white;
}

.tabs-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.reporting-tab-content {
  display: none;
}

.reporting-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.highlight-zone {
  position: absolute;
  border: 3px dashed rgb(231, 49, 71);
  border-radius: 12px;
  pointer-events: none;
  display: none;
  animation: pulse-border 1.2s infinite ease-in-out;
  z-index: 10;
}



@keyframes pulse-border {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.6; }
}

@keyframes zoomGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 86, 150, 0);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(0, 86, 150, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 86, 150, 0);
  }
}

.indicator-box.active-box {
  background-color: #e0f2ff;
  border: 2px solid #000000;
  animation: zoomGlow 1.5s ease-in-out infinite;
}




/* SLIDER CONTAINER */
.slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 50px auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Actualité ils nous font confiance */
.slide {
  display: none;
  padding: 40px;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  display: flex;
  opacity: 1;
}
/* La barre secrete pour aligner le point */
.timeline {
  position: relative;
  border-left: 0px solid rgb(0, 86, 150);
  height: auto; /* ou auto avec des éléments enfants */
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

/* La barre verticale */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, rgb(0, 86, 150), #00c896);
  transform: translateX(-50%);
  z-index: 1;
}

/* Le point qui descend */
.scroll-indicator {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 49.1%; /* décale à gauche de la ligne */
  width: 20px;
  height: 20px;
  background-color:rgb(0, 86, 150);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  transition: top 0.3s ease;
  z-index: 1;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 40px;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-content {
  background: #f1f2f6;
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* POINTS le long des textes*/ 
.timeline-item::after {
  content: "";
  position: absolute;
  top: 90px; /* aligne le point avec le contenu */
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 4px solid rgb(0, 86, 150);
  border-radius: 50%;
  z-index: 2;
}

.timeline-item.left::after {
  right: -11px;
}

.timeline-item.right::after {
  left: -11px;
}

/* section 2 pages actualité*/

.logo-slider {
  height: 100px;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 40px;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.logo-track img {
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-track img:hover {
  filter: none;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-section {
  background-color: #f4f7fa;
  padding: 60px 20px;
  text-align: center;
}

.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.carousel-slide {
  display: none;
  flex-direction: column;
  align-items: center;
}

.carousel-slide.active {
  display: flex;
}

.carousel-logo {
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.carousel-text {
  font-size: 20px;
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.carousel-author {
  font-weight: bold;
  color: rgb(0, 86, 150);
}



.card-logo { /* ✅ taille des logos sur les cartes */
  height: auto;
  margin-bottom: 1px; 
}


/* solution partie 1*/

.ariane-solution {
  background: #f4f9ff;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0a1e40;
}

.ariane-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.ariane-step {
  flex: 1 1 160px;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.ariane-step:hover {
  transform: translateY(-8px);
}

.step-icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: rgb(0, 86, 150);
}

.ariane-solution {
  background: #f4f9ff;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0a1e40;
}

.ariane-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.ariane-step-wrapper {
  width: 260px;
  text-align: center;
  position: relative;
}

.ariane-step {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.ariane-step:hover {
  transform: translateY(-6px);
}

.step-icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: rgb(0, 86, 150);
}

.ariane-section {
  padding: 80px 20px;
  background: #f7f9fc;
  text-align: center;
}

.ariane-title {
  font-size: 32px;
  margin-bottom: 30px;
}

.ariane-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.ariane-step {
  background: linear-gradient(135deg, #2a5bff, #00c4cc);
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
  font-weight: bold;
}

.ariane-step:hover {
  transform: scale(1.05);
}

.ariane-detail {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: none;
  animation: slideIn 0.4s ease forwards;
}

.ariane-detail img {
  width: 100%;
  border-radius: 8px;
  margin-top: 15px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ariane-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: slideIn 0.4s ease forwards;
}

.ariane-block h3 {
  font-size: 24px;
  color: rgb(0, 86, 150);
  margin-bottom: 15px;
  text-align: center;
}

.ariane-block-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.ariane-block-content p {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  min-width: 250px;
}

.ariane-block-content img {
  width: 250px;
  max-width: 100%;
  border-radius: 12px;
}

.ariane-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.ariane-step-card {
  background-color: #f5f7fa;
  padding: 20px;
  border-radius: 12px;
  width: 200px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.ariane-step-card:hover {
  transform: translateY(-5px);
  background-color: #eaf1ff;
}

.ariane-step-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: rgb(0, 86, 150);
}

.ariane-step-card p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

#ariane-detail {
  display: none;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  animation: slideIn 0.5s ease;
}

#ariane-detail img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-section {
  position: relative;
  padding: 100px 20px;
  background-color: #fff;
  overflow: hidden;
}

.hero-background-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveLines 60s linear infinite;
  z-index: 0;
  opacity: 0.3;
}

@keyframes moveLines {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-60px, -60px);
  }
}



.hero-image {
  flex: 1 1 40%;
  text-align: center;
  padding: 20px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}
.hero-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background-color: #ffffff;
}

.hero-background-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.hero-background-svg svg {
  width: 100%;
  height: 100%;
}

.animated-lines-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveBackground 30s linear infinite;
  z-index: 0;
  opacity: 0.3;
}

@keyframes moveBackground {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-100px, -100px);
  }
}
.ariane-step-card.active {
  background-color: #eaf1ff;
  border: 2px solid #2a5bff;
  box-shadow: 0 8px 16px rgba(42, 91, 255, 0.2);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.etapes-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.etape {
  display: flex;
  align-items: center;
  gap: 40px;
}

.etape-gauche {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.carte {
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  width: 140px;
}

.carte img {
  width: 60px;
  margin-bottom: 10px;
}

.carte h3 {
  font-size: 16px;
  margin: 0;
}

.fleche {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #2a5bff, #00c896);
  margin-top: 10px;
}

.etape-droite {
  flex: 1;
  background: #f7f9fc;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 2px solid black;
}

.etape-droite h4 {
  margin-top: 0;
  font-size: 20px;
  color: #2a5bff;
}

.etape-droite p {
  font-size: 16px;
  color: #444;
}
@media (max-width: 768px) {
  .etape {
    flex-direction: column;
    align-items: flex-start;
  }

  .etape-gauche {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .fleche {
    height: 2px;
    width: 40px;
  }
}

.selection-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin: 10px;
  flex: 1;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Quand une boîte est sélectionnée */
.selection-card.selected {
  border: 2px solid rgb(248,175,68); /* jaune doux */
  background-color: #fffde7; /* jaune très clair */
  box-shadow: 0 0 15px rgba(251, 192, 45, 0.4);
  transform: scale(1.02);
}
.selection-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}
/* Titre au-dessus des cartes */
.pricing-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 30px;
}

.pricing-switch {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.switch-box {
  background: #f8f8f8;
  padding: 20px 30px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-weight: bold;
  transition: all 0.3s ease;
}

.switch-box:hover {
  background-color: #e0e0e0;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: white;
  padding: 30px;
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.card h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.price {
  font-size: 2em;
  font-weight: bold;
}

.period {
  font-weight: normal;
  font-size: 0.9em;
  color: gray;
}

.btn-yellow {
  background: #FFD54F;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
}
.choice-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.choice-card {
  background: #f0f0f0;
  padding: 20px 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.choice-card:hover {
  background-color: #ffe08a;
}

.pricing-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  width: 280px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
    justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  transition: transform 0.3s;
}

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

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.price {
  font-size: 36px;
  font-weight: bold;
  margin: 10px 0;
}

.price span {
  display: block;
  font-size: 14px;
  color: #777;
}

.desc {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

ul li {
  padding: 6px 0;
  font-size: 14px;
}

/*bouton de tarification*/

.btn {
  margin-top: auto;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: white;
}

.basic .btn {
  background-color: #fbbe24cc;
}

.silver .btn {
  background-color: #f97316;
}

.gold .btn {
  background-color: #d97706;
}



.container-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 20px;
}

.logo-slogan {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
}

.slogan {
  font-size: 14px;
  color: #4b4b4b;
  line-height: 1.3;
    display: flex;
}



.submenu {
  display: none;
  position: absolute;
  background: white;
  top: 30px;
  left: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  list-style: none;
  padding: 10px 0;
  z-index: 100;
  min-width: 150px;
}

.submenu li {
  padding: 8px 20px;
}

.submenu li a {
  color: #333;
}

.dropdown:hover .submenu {
  display: block;
}
/* bouton de démo entête*/
.cta-button {
  background: #647eff;
  color: #1a1a1a;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: rgb(248,175,68);
}


.circoe-section {
  text-align: center;
  padding: 2rem;
  background: #f9f9f9;
}

.circoe-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.circoe-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.circoe-card {
  flex: 1 1 calc(50% - 40px); /* 2 cartes par ligne avec 20px de gap */
  box-sizing: border-box;
  background: white;
  border-radius: 15px;
  padding: 10px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.circoe-detail-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  min-height: 60px;
}


.circoe-card:hover,
.circoe-card.active {
  background-color: #e6f0ff;
  transform: translateY(-4px);
}

.circoe-details {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.circoe-detail {
  display: none;
  padding: 20px;
  background: #fff;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 12px;
}

.circoe-detail.active {
  display: block;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to   {opacity: 1; transform: translateY(0);}
}


.typewriter {
  display: inline;
  border-right: 2px solid white;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: white; }
}

.button-group {
background-color: #f9ae40;
  color: white;
  font-weight: bold;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  border: none;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.header-buttons .btn-demo , .main-nav,  .nav-links a.btn-demo{
background-color: #f9ae40;
  color: white;
  font-weight: bold;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  border: none;
position : relative ;
}

.header-buttons .btn-demo2 ,.main-nav .nav-links a.btn-demo2 {
background-color: rgb(231, 49, 71);
  color: white;
  font-weight: bold;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  border: none;
  margin-right: 5px;
  margin-left: 10px;
}


.buttons-wrapper {
  display: flex;
  justify-content: flex-end; /* les aligner à droite */
  gap: 10px; /* réduit l’espace entre les deux */
  margin-top: 20px; /* remonter les boutons */
}
.buttons-wrapper button {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
}

.button-group-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
  position: relative;
  z-index: 11; /* au-dessus du menu */
}

.header-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
  z-index: 11;
}