/* Définition de la police principale */
body, a {
  font-family: 'Raleway', monospace;
  color: white;
}

body {
  margin: 0;
  overflow: hidden;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Conteneur de l'image de fond, responsive et en plein écran */
.radar-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  background-image: url('../images/motifs.png'); /* Chemin de l'image */
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  overflow: hidden;
}

/* Superposition noire avec opacité */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.logo {
  width: 25vw; /* Taille responsive en fonction de la largeur de l'écran */
  max-width: 300px; /* Limite la taille maximale */
  height: auto;
  animation: heartbeat 2s infinite;
}

/* Slogan sous le logo */
.slogan {
  font-size: 1.5vw;
  font-weight: bold;
  color: rgba(74, 149, 207, 1);
  letter-spacing: 2em;
  margin-top: 20px;
  white-space: nowrap;
  /* display: inline-flex; */
}

.slogan .no-spacing {
  letter-spacing: 0; /* Supprime l'espacement pour la dernière lettre */
}

.logo-link {
  display: inline-block;
}

/* Arrêter l'animation au survol */
.logo:hover {
  animation: heartbeat 7s infinite;
}


/* Animation de battement de coeur pour la lueur */
@keyframes heartbeat {
  0%, 100% {
    box-shadow: 0 0 15px rgba(74, 149, 207, 0.6), 0 0 35px rgba(74, 149, 207, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(74, 149, 207, 0.9), 0 0 65px rgba(74, 149, 207, 0.7);
    transform: scale(1.05);
  }
}

/* Style de chaque point avec effet de pression */
.radar-point {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Apparence du point et animation du Clignotement */
.point-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(74, 149, 207, 1);
  animation: blink 1s infinite;
  transition: transform 0.3s ease;
}

/* Animation du clignotement */
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Agrandissement au survol */
.radar-point:hover {
  transform: scale(1.5);
}

/* Texte du service */
.service-label {
  position: absolute;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  transform: translateY(-25px);
  white-space: nowrap;
}

/* Hyperliens - points cliquables */
.point1 {
  top: 50px;
  left: 100px;
}

.point2 {
  top: 150px;
  left: 300px;
}

.point3 {
  top: 250px;
  left: 200px;
}

/* Style par défaut pour les images */
.side-link {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1.1);
  animation: zoomOut 1s forwards;
  text-decoration: none;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.side-image {
  width: 300px;
  height: auto;
  border-radius: inherit;
}

/* Effet zoom out lors du chargement */
@keyframes zoomOut {
  from {
    transform: translateY(-50%) scale(1.3);
    opacity: 0;
  }
  to {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
  }
}

/* Animation subtile au survol pour un effet professionnel */
.side-link:hover {
  transform: translateY(-50%) scale(1.15); /* Légère expansion au survol */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Ombre plus profonde */
}

/* Positionnement spécifique pour chaque côté */
.side-link.left {
  left: 10%;
}

.side-link.right {
  right: 10%;
}

/* Conteneur de titre avec arrière-plan dégradé */
.title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%; /* Couvre jusqu'à presque la moitié de l'image */
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.9rem;
  color: white;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(74, 149, 207, 1), rgba(74, 149, 207, 0));
  text-align: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: flex;
  align-items: flex-end; /* Place le texte en bas de la superposition */
  justify-content: center;
}

/* Texte à l'intérieur du titre avec animation */
.title-text {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.5rem;
  white-space: nowrap;
  transition: transform 0.4s ease, font-size 0.4s ease;
  z-index: 1;
}

/* Animation d'agrandissement du texte au survol */
.side-link:hover .title-text {
  transform: translateY(-20%);
  font-size: 2rem;
}

/* Overlay des bits avec plusieurs colonnes */
.bit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: space-around; /* Espacement entre les colonnes */
  overflow: hidden;
  pointer-events: none;
}
.bit-overlay, .bit-overlay2 {
  z-index: 1;
  font-family: 'Roboto mono', monospace;
}
.bit-overlay2 {
  width: 20%;
  height: 100%;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}
.bit-overlay2 .bit-column {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 5px; /* Espacement entre chaque bit */
}

/* Chaque colonne de bits */
.bit-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px; /* Espacement entre chaque bit */
}

/* Style de chaque bit avec effet lumineux */
.bit {
  font-size: 1.2rem;
  color: rgba(0, 183, 255, 1); /* Bleu cyan vif */
  text-shadow: 
    0 0 10px rgba(0, 183, 255, 0.9),  /* Lueur plus forte autour des bits */
    0 0 20px rgba(0, 183, 255, 0.7), 
    0 0 30px rgba(0, 183, 255, 0.5); 
  opacity: 0;
  animation: bitFall 3s infinite linear;
}

/* Animation de chute des bits */
@keyframes bitFall {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* Décalages aléatoires pour chaque bit dans une colonne pour créer l’effet cascade */
.bit:nth-child(1) { animation-delay: 0s; }
.bit:nth-child(2) { animation-delay: 0.5s; }
.bit:nth-child(3) { animation-delay: 1s; }
.bit:nth-child(4) { animation-delay: 1.5s; }
.bit:nth-child(5) { animation-delay: 2s; }

/* Décalages supplémentaires pour chaque colonne pour créer la cascade */
.bit-column:nth-child(1) .bit { animation-delay: 0s; }
.bit-column:nth-child(2) .bit { animation-delay: 0.3s; }
.bit-column:nth-child(3) .bit { animation-delay: 0.6s; }

/* Style du conteneur de carrousel */
.carousel-container {
    overflow: hidden;
    width: 100vw;
    background-color: transparent;
    padding: 10px 0;
    margin-top: 20px;
    position: absolute;
	bottom: 12%;
    display: flex;
    justify-content: center;
}

/* Bande de défilement des logos */
.carousel-track {
    display: flex;
	width: 100%;
    gap: 30px; /* Espacement entre les logos */
    animation: scroll 15s linear infinite; /* Animation de défilement continu */
}

/* Styles des logos */
.carousel-item img {
    width: 100px; /* Ajuste la taille selon tes besoins */
    height: auto;
    transition: transform 0.3s ease;
}

/* Effet au survol du logo */
.carousel-item:hover img {
    transform: scale(1.1); /* Agrandissement léger au survol */
}

/* Animation de défilement */
@keyframes scroll {
    0% {
        transform: translateX(100);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Footer */
.footer {
  width: 100%;
  padding: 10px 0;
  background-color: #000; /* Fond noir */
  color: #fff; /* Texte blanc */
  text-align: center;
  font-size: 0.8rem;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
}

/* Conteneur principal */
.main-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* Empêche tout débordement */
}

/* Animation de slide pour left-section */
@keyframes slideInLeft {
    0% {
        transform: translateX(100%); /* Démarre en dehors de l'écran, à droite */
    }
    100% {
        transform: translateX(0); /* Position finale */
    }
}

/* Applique l'animation à left-section */
.left-section {
    width: 25vw;
    height: 100vh;
    background-image: url('../images/motifs.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    animation: slideInLeft 0.8s ease-out forwards; /* Animation de slide */
}

/* Superposition noire transparente */
.left-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.6); */
    pointer-events: none;
}

/* Bloc du logo et slogan */
.logo-slogan-container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
	background-color: rgba(0, 0, 0, 0.5);
}

.visitor-logo {
    width: 130px;
    height: auto;
	padding: 13px;
    margin-bottom: 0px;
}

.visitor-slogan {
    margin-top: -7%;
	font-size: 1rem;
    color: rgba(74, 149, 207, 1);
    letter-spacing: 0.2em;
}

/* Bloc du menu de navigation avec style amélioré */
.menu {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centre le menu verticalement dans son bloc */
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent pour une touche moderne */
    padding: 10px;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu ul li {
    margin: 5px 0;
    position: relative;
    width: 100%;
    text-align: center;
}

/* Style des liens du menu avec effets */
.menu ul li a {
    color: rgba(74, 149, 207, 1);
	background-color: rgba(74, 149, 207, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 10px 20px;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
	color: #fff;
}

/* Barres latérales pour chaque élément du menu */
.menu ul li a::before, .menu ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background-color: rgba(74, 149, 207, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.menu ul li a::before {
    left: 0;
}

.menu ul li a::after {
    right: 0;
}

/* Effet de survol avec surbrillance et style pour l'élément actif */
.menu ul li a:hover, .menu ul li a.active {
    color: #0dcaf0;
    transform: scale(1.1);
}

.menu ul li a:hover::before, .menu ul li a:hover::after,
.menu ul li a.active::before, .menu ul li a.active::after {
    opacity: 1;
    height: 120%;
}

/* Transition et espacement amélioré */
.menu ul li a {
    border-radius: 5px;
    overflow: hidden;
}

/* Section défilante à droite */
.right-content {
    width: 75vw;
    height: 100vh;
    background-color: #fff;
    padding: 20px;
    overflow-y: auto;
    scroll-behavior: smooth;
	font-family: 'Roboto mono', monospace;
}
.right-content2 {
    width: 75vw;
    /* height: 100%; */
    background-color: #fff;
    padding: 20px;
    overflow-y: auto;
    scroll-behavior: smooth;
	font-family: 'Roboto mono', monospace;
}

/* Style des sections de contenu */
section {
    /* height: 100%; */
	position: relative;
	padding: 0 20px 15% 20px;
    border-bottom: 1px solid #ddd;
}
/* Style du bouton de navigation */
.scroll-button {
    display: none; /* Masqué par défaut */
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 8px 15px;
    font-size: 0.9rem;
    background-color: rgba(74, 149, 207, 1);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scroll-button:hover {
    background-color: #0dcaf0;
}

/* Style pour le titre avec image d'arrière-plan et overlay */
.section-title {
    width: 100%;
	position: relative; /* Nécessaire pour le positionnement absolu de l'overlay */
    font-size: 2rem;
    color: #fff; /* Texte blanc pour contraste */
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    display: inline-block; /* Limite l'arrière-plan au texte */
    overflow: hidden; /* Cache l'excédent pour l'overlay */
}

/* Superposition (overlay) avec pseudo-élément */
.section-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay noir avec opacité de 50% */
    border-radius: 15px; /* Coin arrondi pour suivre le titre */
    z-index: 1; /* Place l'overlay au-dessus de l'image */
}
/* Place le texte au-dessus de l'overlay */
.section-title span {
    position: relative;
    z-index: 2;
}
#apropos .section-title {
    background-image: url('../images/about.jpg'); /* Remplace par le chemin de ton image */
}
#mission .section-title {
    background-image: url('../images/mission.jpg'); /* Remplace par le chemin de ton image */
}
#historique .section-title {
    background-image: url('../images/histoire.jpg'); /* Remplace par le chemin de ton image */
}
#services .section-title {
    background-image: url('../images/services.jpg'); /* Remplace par le chemin de ton image */
}
#approche .section-title {
    background-image: url('../images/banner.jpg'); /* Remplace par le chemin de ton image */
}
#expertise .section-title {
    background-image: url('../images/expertise.jpg'); /* Remplace par le chemin de ton image */
}
#contact .section-title {
    background-image: url('../images/contact-us.jpg'); /* Remplace par le chemin de ton image */
}
#infogerance .section-title {
    background-image: url('../images/infogerance.jpg'); /* Remplace par le chemin de ton image */
}
#graphisme .section-title {
    background-image: url('../images/graphism.jpg'); /* Remplace par le chemin de ton image */
}
#dev .section-title {
    background-image: url('../images/coding.jpg'); /* Remplace par le chemin de ton image */
}
#reparation .section-title {
    background-image: url('../images/repair.jpg'); /* Remplace par le chemin de ton image */
}
#reseau .section-title {
    background-image: url('../images/reseau.jpg'); /* Remplace par le chemin de ton image */
}

section h2,
section h5 {
    color: rgba(74, 149, 207, 1);
}
section h2 {
    font-size: 1.5rem;
	font-weight: 300;
	font-family: 'Roboto mono', monospace;
}
section h5 {
    font-size: 1.2rem;
}

section p, section ul {
    font-size: 0.95rem;
    color: #333;
	text-align: justify;
	font-family: 'Raleway', monospace;
}

/* Styles généraux pour les sections */
.background-section {
    position: relative;
    /* padding: 50px 20px; */
    color: #333;
    /* background-size: cover; */
    background-position: bottom;
    background-repeat: no-repeat;
    /* overflow: hidden; */
	background-image: url('../images/circuit_.png'); /* Remplace par l'image de section 1 */
}

/* Overlay en dégradé du blanc au transparent */
.background-overlay {
    content: "";
    position: fixed;
    bottom: 0;
    /* left: 0; */
    width: 100%;
    height: 50%;
	background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,     /* Début du blanc */
        rgba(255, 255, 255, 1) 30%,    /* Blanc opaque sur les premiers 20% */
        rgba(74, 149, 207, 0) 100%    /* Transparent à 100% */
    );
    z-index: -1;
}

/* Contenu de la section au-dessus de l'overlay */
.background-section h2, .background-section h5, .background-section p, .background-section ul {
    position: relative;
    z-index: 2;
}


.evidence {
    font-size: 2.5rem;
    color: #777;
	text-align: justify;
	font-weight: 300;
	font-family: 'Raleway', monospace;
}
.evidence1 {
    font-size: 2rem;
	text-align: justify;
	font-weight: 200;
	font-family: 'Raleway', monospace;
}
.evidence2 {
    font-size: 1.5rem;
	text-align: justify;
	font-weight: 200;
	font-family: 'Raleway', monospace;
}
.accentue{
	color: #333;
	font-weight: 500;
}

/* Conteneur des boutons */
.icon-buttons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* Style des boutons d'icône */
.icon-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px;
    background-color: rgba(74, 149, 207, 1);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    width: 120px;
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

/* Icônes dans les boutons */
.icon-button i {
    font-size: 2rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

/* Animation et changement de couleur au survol */
.icon-button:hover {
    transform: translateY(-5px) scale(1.05); /* Soulèvement et agrandissement */
    background-color: #000;
}

.icon-button:hover i {
    transform: rotate(20deg) scale(1.1); /* Rotation légère et agrandissement de l'icône */
}

/* Texte dans les boutons */
.icon-button span {
    font-size: 0.9rem;
    line-height: 1.2;
    color: white;
}

/* Section de contact divisée en deux colonnes */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    background-color: transparent;
}

/* Bloc gauche avec informations de contact */
.left-contact {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.left-contact h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.left-contact p {
    font-size: 1.5rem;
    color: #555;
    margin: 20px 0;
}

.contact-info p {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin: 10px 0;
	font-family: 'Roboto Mono', monospace;
}

.contact-info i {
    color: #4a95cf;
    margin-right: 8px;
}

.contact-info a {
    color: #4a95cf;
    text-decoration: none;
	font-family: 'Roboto Mono', monospace;
}

.contact-info a:hover {
    color: #0dcaf0;
}

/* Bloc droit avec le formulaire de contact */
.right-contact {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.contact-form h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.form-group label i {
    margin-right: 8px;
    color: #4a95cf;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4a95cf;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #4a95cf;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0dcaf0;
}

/* Confirmations E-mail */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Menu fixe en bas de page de détails services*/
.fixed-menu {
    position: sticky;
    bottom: 80px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
}

/* Style des boutons du menu */
.menu-item {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
    position: relative;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 20px;
	width: 120px;
    transition: transform 0.3s ease, background-color 0.3s ease;
	background-color: rgba(74, 149, 207, 1);
	border-radius: 10px;
}

/* Icône dans chaque bouton */
.menu-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.menu-item:hover i {
    transform: rotate(20deg) scale(1.1); /* Rotation légère et agrandissement de l'icône */
}

/* Effet de survol */
.menu-item:hover{
    color: #fff;
	background-color: #000;
	transform: translateY(-5px) scale(1.05); /* Soulèvement et agrandissement */
}

/* Couleur active */
.menu-item[data-active="true"] {
    color: #fff;
	background-color: #000;
}

/* Flèche pointant vers le haut pour l’élément actif */
.menu-item[data-active="true"]::before {
    content: "▲";
    position: absolute;
    top: -36px; /* Positionne la flèche au-dessus de l'élément */
    font-size: 2.5rem;
    color: #000;
}

/* Texte de chaque bouton */
.menu-item span {
    font-size: 0.8rem;
}

.bordures{
	border: 1px solid #4a95cf;
	border-radius: 8px;
}

.addpadding-b{
	padding-bottom: 50%;
}

.allpad{
	padding: 10px;
}

.hauteurDeLigne{
	margin: 10px 0;
}

.margin-top{
	margin-top: 60px;
}

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

.gras-900{
	font-weight: 900;
}
.gras-800{
	font-weight: 800;
}
.gras-700{
	font-weight: 700;
}
.gras-600{
	font-weight: 600;
}
.gras-500{
	font-weight: 500;
}
.gras-400{
	font-weight: 400;
}
.gras-300{
	font-weight: 300;
}

/* Conteneur principal pour les étapes du processus */
.process-steps {
    display: flex;
    flex-direction: row; /* Aligne les étapes horizontalement */
    gap: 20px;
    padding: 20px;
    overflow-x: auto; /* Ajoute un défilement horizontal pour les petits écrans */
}

/* Style de chaque étape */
.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 150px; /* Largeur minimale pour chaque étape */
}

/* Icône de l'étape */
.step-icon {
    font-size: 2rem;
    color: #4a95cf;
    flex-shrink: 0;
}

/* Contenu de l'étape */
.step-content {
    display: flex;
    flex-direction: column;
}

/* Titre de l'étape */
.step-title {
    font-size: 1rem;
    font-weight: bold;
	text-transform: capitalize;
    margin: 0 0 5px;
}

.title-color1{
	color: #4a95cf;
}

.title-color2{
	color: #333;
}

/* Sous-titre de l'étape */
.step-subtitle {
    font-size: 0.9rem;
    color: #333;
    font-weight: bold;
    margin: 0 0 5px;
}

/* Description de l'étape */
.step-description {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Conteneur principal en deux colonnes */
.two-column-container {
    display: flex;
    gap: 50px;
    /* padding: 20px; */
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Style des services */
.service h5 {
    font-size: 0.8rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0px;
}

.service ul {
    list-style-type: disc;
    padding-left: 20px;
}

.service ul li {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.5;
}

/* Style du conteneur de bouton CTA */
.cta-container {
    display: flex;
    justify-content: center;
    margin-top: 3px;
}

/* Bouton d'appel à l'action */
.cta-button {
    padding: 10px 30px;
    background-color: #4a95cf; /* Couleur principale */
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Effet de survol et clic pour le bouton */
.cta-button:hover {
    background-color: #000; /* Couleur au survol */
    transform: translateY(-3px);
}

.cta-button:active {
    transform: translateY(1px);
}


/* Grille de projets */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* Style de chaque projet */
.project-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

/* Image du projet */
.project-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Contenu du projet */
.project-content {
    padding: 15px;
    text-align: center;
}

.project-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 10px 0;
}

.project-content p {
    font-size: 0.95rem;
    color: #555;
    margin: 5px 0 15px;
}

/* Lien vers le projet */
.project-link {
    color: #4a95cf;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.project-link:hover {
    color: #0dcaf0;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 20px;
}

.page-link {
    padding: 10px 15px;
    margin: 0 5px;
    background-color: #f4f4f4;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.page-link:hover {
    background-color: #4a95cf;
    color: #fff;
}

.page-link.active {
    background-color: #4a95cf;
    color: #fff;
    pointer-events: none;
}



/*  Page de détails des projets */

/* Conteneur principal */
.project-details-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Titre et résumé */
.project-header h1 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.project-header p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
}

/* Image principale */
.project-image img {
    width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

/* Section des descriptions */
.project-description, .project-details, .project-gallery {
    margin: 30px 0;
}

.project-description h2, .project-details h2, .project-gallery h2 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 10px;
}

/* Galerie d'images */
.gallery-images {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-images img {
    width: 48%;
    border-radius: 8px;
}

/* Lien de retour */
.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: #4a95cf;
    text-decoration: none;
    font-size: 1rem;
}

.back-link a:hover {
    color: #0dcaf0;
}

