<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&amp;display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  --hue: 356;
  --first-color: hsl(var(--hue), 100%, 75%);
  --first-color-alt: hsl(var(--hue), 56%, 35%);
  --title-color: hsl(228, 8%, 95%);
  --text-color: hsl(228, 8%, 65%);
  --body-color: hsl(228, 15%, 20%);
  --container-color: hsl(228, 15%, 15%);

  /* Dark theme */
  --dark-body-color: hsl(228, 15%, 20%);
  --dark-container-color: hsl(228, 15%, 15%);
  --dark-title-color: hsl(228, 8%, 95%);
  --dark-text-color: hsl(228, 8%, 65%);
  
  --light-body-color: hsl(0, 0%, 100%);
  --light-container-color: hsl(228, 100%, 99%);
  --light-title-color: hsl(228, 15%, 15%);
  --light-text-color: hsl(228, 15%, 35%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 2em;
  --bigger-font-size: 1.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}


/* Thème clair par défaut */
body.light-theme {
  --body-color: var(--light-body-color);
  --container-color: var(--light-container-color);
  --title-color: var(--light-title-color);
  --text-color: var(--light-text-color);
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1152px) {
  :root {
    --biggest-font-size: 3rem;
    --bigger-font-size: 2rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

input,
textarea,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
textarea,
button {
  outline: none;
  border: none;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.link{
  color: var(--first-color);
}

li{
  list-style: none;
}

span{
  color: var(--first-color);
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 2rem;
}

.section__title, 
.section__subtitle {
  text-align: center;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

.section__title {
  font-size: var(--h1-font-size);
  margin-bottom: 1.5rem;
}

.section__subtitle {
  font-size: var(--small-font-size);
  margin-bottom: .25rem;
}

.section__subtitle span {
  color: var(--first-color);
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== HEADER &amp; NAV ===============*/
.header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  width: 100%;
  background-color: var(--container-color);
}

.nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo{
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.nav__logo span{
  color: var(--first-color);
}

.nav__toggle,
.nav__close{
  color: var(--title-color);
  font-size: 1.25rem;
  display: flex;
  cursor: pointer;
}

.nav__theme {
  position: relative;
  width: 60px;
  height: 30px;
  background-color: #678cd1;
  border-radius: 30px;
  cursor: pointer;
  padding: 0;
  border: 2px solid transparent;
  overflow: hidden;
  transition: 0.3s ease all;
  border: 1px solid rgb(138, 136, 136);
}

.nav__theme::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: 0.3s ease all;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.nav__theme::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #87CEEB;
  z-index: -1;
  transition: 0.3s ease all;
}

.theme-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.sun-icon {
  position: absolute;
  top: 50%;
  right: 60%; 
  transform: translateY(-50%) scale(0); 
  font-size: 1.2rem;
  color: #ffd43b;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}


.moon-icon {
  position: absolute;
  top: 50%;
  left: 30%; 
  transform: translateY(-50%) scale(0); 
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}


body.light-theme .sun-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

body.dark-mode .moon-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.dark-mode .nav__theme {
  background-color: #1a1a1a;
}

.dark-mode .nav__theme::before {
  left: calc(100% - 26px);
  background-color: #ffffff;
}

.dark-mode .nav__theme::after {
  background: #2c3e50;
}

@keyframes rotating {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/*Adaptation du thème*/

.light-theme .timeline-content {
  background-color: var(--container-color);
  border-color: var(--first-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.light-theme .timeline-content h3,
.light-theme .timeline-content p{
  color: black;
}

.light-theme .timeline-dot {
  box-shadow: 0 0 15px var(--first-color);
}

.light-theme .services__card{
  border: 1px solid var(--first-color);
}
.light-theme .nav__menu {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
}

.light-theme .home__social-link {
  background-color: var(--first-color);
}

.light-theme .button:hover {
  box-shadow: 0 8px 24px hsla(var(--hue), 100%, 40%, 0.25);
}

/* Navigation for mobile devices */
@media screen and (max-width:1023px) {
  .nav__menu{
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: hsl(0, 0%, 10%, .3);
    padding: 4.5rem 0 0 3rem;
    transition: right .4s;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }  
}

.nav__list{
  display: flex;
  flex-direction: row;
  gap: 1rem;
  row-gap: 3rem;
}

.nav__link{
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: color .4s;
}

.nav__link:hover{
  color: var(--first-color);
}

.nav__close{
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}


/* Show menu */
.show-menu{
  right: 0;
}

/* Add blur to header */
.blur-header{
  background-color: transparent;
}

.blur-header::after{
  content: '';
  position: absolute;
  width: 1000%;
  height: 100%;
  background-color: hsla(0, 0%, 10%, .3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); /*Pour safari*/
  top: 0;
  left: 0;
  z-index: -1;
}

/* Active link */
.active-link{
  color: var(--first-color);
}

/*=============== HOME ===============*/
.home{
  background-color: var(--container-color);
}

.home__container{
  padding-top: 2rem;
  row-gap: 2.5rem;
}

.home__data{
  text-align: center;
}

.home__subtitle,
.home__education{
  font-size: var(--bigger-font-size);
}

.home__subtitle span,
.home__title{
  color: var(--first-color);
}

.home__title{
  font-size: var(--biggest-font-size);
  font-weight: var(--font-semi-bold);
}

.home__description{
  margin-block: 1rem 1.5rem;
}

.certifications{
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.certification{
  width: 7rem;
  cursor: pointer;
}

.certifications .anssi{
  width: 4rem;
}

.home__social{
  display: flex;
  justify-content: center;
  column-gap: 1.25rem;
}

.home__social-link{
  display: flex;
  background-color: var(--first-color-alt);
  padding: .5rem;
  color: var(--title-color);
  font-size: 1.5rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform .4s;
}

.home__social-link:hover{
  transform: translateY(-.25rem);
}

.icon__cv{
  font-size: var(--h2-font-size);
  margin-right: .5rem;
}

.home__image{
  justify-self: center;
}

.home__blob{
  width: 320px;
  fill: var(--first-color);
  filter: drop-shadow(0 12px 12px hsla(var(--hue), 100%, 40%, .2));
}



/*=============== BUTTON ===============*/
.button{
  display: inline-block;
  padding: 1rem 1.75rem;
  background-color: var(--first-color);
  border-radius: .5rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: box-shadow .4s;
}

.button:hover{
  box-shadow: 0 8px 24px hsla(var(--hue), 100%, 40%, .25);
}

/*=============== ABOUT ===============*/
.timeline-items{
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.timeline-items::before{
  content:"";
  position: absolute;
  width: 5px;
  height: 100%;
  background-color: var(--first-color);
  left: calc(50% - 1px);
}

.timeline-item{
  margin-bottom: 40px;
  width: 100%;
  position: relative;
}

.timeline-item:last-child{
  margin-bottom: 0;
}

.timeline-item:nth-child(odd){
  padding-right: calc(50% + 30px);
  text-align: right;
}

.timeline-item:nth-child(even){
  padding-left: calc(50% + 30px);
}

.timeline-dot{
  height: 21px;
  width: 21px;
  background-color: var(--first-color);
  box-shadow: 0 0 25px var(--first-color),
              0 0 50px var(--first-color);
  position: absolute;
  left: calc(50% - 8px);
  border-radius: 50%;
  top: 10px;
}

.timeline-data{
  font-size: 20px;
  font-weight: 800;
  color: white;
  color: white;
  margin: 6px 0 15px;
}

.timeline-content{
  border: 3px solid var(--first-color);
  padding: 30px 50px;
  border-radius: 4rem;
  box-shadow: 0 0 10px var(--first-color);
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.timeline-content:hover{
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--first-color);  
}

.timeline-content h3{
  font-size: 20px;
  color: white;
  margin: 0 0 10px;
  font-weight: 500;
}

.timeline-content p {
  color: white;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}


/* Styles pour le bouton et la fenêtre modale */

.voirPlus {
  display: inline-block;
  margin-top: 10px;
  font-size: 16px;
  cursor: pointer;
  color: var(--first-color);
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: var(--body-color);
  margin: 8% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  position: relative;
  z-index: 3;
  border-radius: 1rem;
}

.modal-content h3,
.modal-content .subtitle{
  text-align: center;
}

.modal-content h3{
  color: var(--first-color);
}

.modal-content .subtitle{
  font-size: 20px;
}

.modal-content .icon-logo{
  font-size: 2rem;
  margin-right: 1rem;
}

.modal-proof{
  display: flex;
}

.content-realisation-details{
  width: 50%;
}

.img-realisation{
  width: 10rem;
}

.project_infos{
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  column-gap: 1rem;
}

.block_infos{
  width: 100%;
  background-color: #21232C;
  border-radius: 1rem;
  padding: 2rem;
}

.block_infos .small-font{
  font-size: 1rem;
}

.project_goal{
  width: 45%;
}

.project_conclusion{
  text-align: center;
  margin-top: 2rem;
}

@media screen and (max-width:760px) {
  .project_infos{
    display: flex;
    flex-direction: column;
  }

  .block_infos{
    margin-bottom: 1rem;
  }
  .project_goal{
    width: 100%;
  }
}
.block_infos p{
  text-align: center;
  font-size: 20px;
  margin-bottom: 1rem;
}


.modal-content li{
  display: block;
}

.close {
  color: var(--first-color);
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: var(--first-color);
  text-decoration: none;
  cursor: pointer;
}

.modal .overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Black with opacity */
  z-index: 1;
}

.modal-content li .skills__description {
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
}

.icon-modal{
  color: var(--first-color);
  margin-right: 0.5rem;
}

.modal-proof{
  margin-top: 8rem;
}

/*=============== CERTIFICATIONS  ===============*/
.certifications-container{
  display: flex;
  flex-wrap: wrap; /* Permet le retour à la ligne */
  gap: 2rem; /* Espace entre les certifications */
  justify-content: center;
  text-align: center;
  max-width: 1200px; /* Limite la largeur maximale du conteneur */
  margin: 0 auto; /* Centre le conteneur */
}

.certification-grid{
  display: flex;
  width: 40%;
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 5rem;
  width: calc(50% - 1rem); /* 50% de largeur moins la moitié du gap */
  min-width: 300px; /* Largeur minimum pour la responsive */
}

.left-certif{
  border-right: 2.5px solid var(--body-color);
  padding: 0 1rem 0 0;
  display: flex; /* Ajout de flex */
  align-items: center; /* Centre verticalement */
  justify-content: center; /* Centre horizontalement */
  width: 10rem; /* Garde la même largeur que précédemment */
}


.right-certif{
  text-align: left;
  padding-left: 1rem; /* Ajoute un espace entre l'image et le texte */
  width: 30rem;
}

.right-certif .button{
  padding: 0.5rem;
  width: 90%;
  margin-top: 1rem;
}

.button-modal{
  background-color: var(--first-color);
  border-radius: .5rem;
  color: var(--title-color);
  width: 40%;
  margin-bottom: 0.3rem;
}

.button-modal:hover{
  cursor: pointer;
}

.right-certif .button:hover{
  cursor: pointer;
}

 /* Styles pour la modal */
 .modal-certification {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content-certification {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: fadeIn 0.3s ease-out;
}

.modal-content-certification img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.close-button-certification {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.close-button-certification:hover {
  background: #f0f0f0;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.95);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}


/*=============== ENTREPRISE  ===============*/

/* HOME ENTREPRISE */

.container2{
  display: flex;
  justify-content: space-between;
  padding : 3rem 0 0 0;
  max-width: 1200px;
  margin: 40px auto;
}

.section-ent{
  margin-top: 5rem;
  background-color: #21232C;
  border-radius: 0 0 10rem 10rem;
}

.image-section{
  flex:1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-section img {
  border-radius: 10rem 10rem 0 0;
  width: 90%;
  height: 100%;
  object-fit: cover;
}

.content-section {
  flex: 1.5;
  padding: 0 20px;
}

.content-section h1{
  font-size: 36px;;
  color: #ffffff;
}

.content-section p{
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  text-align: justify;

}

.content-section h2{
  font-style: 24px;
  color: #ffffff;
  margin-top: 40px;
}

.content-section .stats{
  margin-top: 20px;
}

.content-section .stat{
  font-size: 28px;
  color: var(--first-color);
  margin-right: 2rem;
  font-weight: 800;
}

.content-section .stat-description{
  font-size: 15px;
  color: #ffffff;
  font-weight: 100;
  text-align: justify;
}

.stat-block{
  display: flex;
  align-items: center;
  row-gap: 10px;
  margin-bottom: 80px;
}

.subtitle{
  text-align: center;
  font-size: var(--bigger-font-size);
}
/* Organigrame */

.about_company {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0rem 3rem 5rem 3rem;
}


/* Arbre généalogique à gauche */
.genealogie {
  width: 48%; /* 50% - marge */
  display: flex;
  justify-content: center; /* Centre l'arbre horizontalement */
  align-items: center;
  background-color: #21232C;
  margin-top: 4rem;
  border-radius: 1rem;
}

.test{
  font-size: 15px;
}

.genealogie:hover{
  border : 2px solid var(--first-color);
}

.tree ul {
	padding-top: 20px; 
	position: relative;
}

.tree li {
	position: relative;
  float: left; 
  text-align: center;
	padding: 20px 5px 0 5px;
}

.tree li::before, .tree li::after{
	content: '';
	position: absolute; 
  top: 0; 
  right: 50%;
	border-top: 1px solid #ccc;
	width: 50%; 
  height: 20px;
}

.tree li::after{
	right: auto; 
  left: 50%;
	border-left: 1px solid #ccc;
}

.tree li:only-child::after, .tree li:only-child::before {
	display: none;
}

.tree li:only-child{ 
  padding-top: 0;
}

.tree li:first-child::before, .tree li:last-child::after{
	border: 0 none;
}

.tree li:last-child::before{
	border-right: 1px solid #ccc;
	border-radius: 0 5px 0 0;
}

.tree li:first-child::after{
	border-radius: 5px 0 0 0;
}
 
.tree ul ul::before{
	content: '';
	position: absolute; 
  top: 0; 
  left: 50%;
	border-left: 1px solid #ccc;
	width: 0; 
  height: 20px;
}
 
.no-link {
  border: 1px solid #ccc;
  padding: 5px 10px;
  text-decoration: none;
  color: white;
  display: inline-block;
  border-radius: 5px;
}


/* SI */
.si {
  width: 48%;
}

.si-col {
  flex: 1;
  padding: 15px;
  margin-left: 2rem;
}

.si-col h3 {
  margin-bottom: 1rem;
  color: var(--first-color);
}

.si-col h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.si-col ul {
  list-style: none;
  padding-left: 0;
}

.si-col li {
  margin-bottom: 0.5rem;
}

.box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.entreprise__card {
  width: 100%;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
}

/* Mes Missions */

.mission_info{
  text-align: center;
  padding: 2rem 5rem 1rem 5rem;
}

.mission_ent{
  margin-bottom: 6rem;
}

.mission {
  background-color: #21232C;
  padding: 1rem;
  border: 2px solid var(--first-color);
  border-radius: 1rem;
  margin: 0 1rem;
  width: 25%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 12rem; /* Hauteur initiale de la mission à 4rem */
  transition: height 0.3s ease-in-out; /* Transition pour l'animation d'ouverture/fermeture */
  z-index:1
}

.mission::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%; /* Ajustez la hauteur du flou selon vos besoins */
  background: linear-gradient(to top, rgba(33, 35, 44, 1), rgba(33, 35, 44, 0)); /* Dégradé de la couleur de fond à transparent */
  pointer-events: none; /* Empêche d'interférer avec les événements de la souris */
  z-index: 1; /* Assurez-vous que le flou est derrière le contenu */
}

.mission.no-blur::after {
  display: none; /* Masque le flou lorsque la classe no-blur est ajoutée */
}

.mission.open {
  height: auto; /* Affiche toute la hauteur automatiquement */
}

.toggle-btn {
  background-color: #21232C;
  width: 3rem;
  border: 2px solid var(--first-color);
  border-radius: 1rem;
  cursor: pointer;
  position: absolute;
  bottom: 0.5rem; /* Positionnement en bas avec un léger espace */
  left: 50%; /* Positionnement horizontal centré */
  transform: translate(-50%, 0); /* Centrage parfait */
  font-size: 1.2rem;
  color: var(--first-color);
  transition: transform 0.3s ease-in-out; 
  z-index: 2;/* Ajout d'une transition pour la rotation */
}

.group_mission{
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
}

.mission p{
  text-align: justify;
}

.mission h3{
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {

  /* Home Entreprise */

  .section-ent{
    margin-top: 0rem;
    padding-top: 3rem;
    border-radius: 0 0 5rem 5rem;
  }

  .container2 {
      flex-direction: column; /* Passe à une colonne pour les petits écrans */
      padding: 1rem; /* Réduit le padding */
      margin: 0;
    }

    .image-section {
      margin-bottom: 1rem; /* Ajoute un espacement en bas de l'image */
    }

    .image-section img {
      width: 100%; /* L'image prend 100% de la largeur */
      height: auto; /* Ajuste la hauteur automatiquement */
      border-radius: 10rem 10rem 0 0; /* Garde le même style de coin */
    }

    .content-section {
      padding: 0 10px; /* Réduit le padding pour le contenu */
    }

    .content-section h1 {
      font-size: 28px; /* Réduit la taille de la police */
    }

    .content-section p {
      font-size: 12px; /* Ajuste la taille de la police */
    }

    .content-section .stat {
      font-size: 15px; 
    }

    .content-section .stat-description {
      font-size: 10px; 
    }

    .stat-block {
      flex-direction: column; 
      align-items: flex-start; 
      margin-bottom: 10px; 
    }

    .subtitle{
      margin-top: 1rem;
    }
    
  /* Organigramme */
  .about_company {
      padding: 20px;
      display: flex;
      flex-direction: column; 
  }

  .genealogie {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0rem; /* Ajoute de l'espace en bas de l'organigramme */
  }
  .tree{
      padding: 1rem;
    }

    .tree .subtitle{
      font-size: 14px;
    }

    .no-link{
      font-size: 9px;
    }

  /* SI*/
  .si {
      width: 100%;
      margin-bottom: 2rem; /* Ajoute de l'espace en bas du système d'information */
    }
  .si-col {
        margin-left: 0; /* Supprime le margin-left sur les petits écrans */
        padding: 15px 0; /* Ajuste le padding */
    }

    .box {
        flex-direction: column; /* Empile les colonnes verticalement sur les petits écrans */
    }


  /*Mission*/
  .mission_info{
    margin: 0;
    padding: 1rem;
  }

  .group_mission {
      flex-direction: column; /* Empile les missions les unes en dessous des autres */
      align-items: center; /* Centre le contenu */
  }

  .mission {
      width: 90%; /* Ajuste la largeur pour qu'elle soit plus large sur mobile */
      margin: 0 0 1rem 0; /* Ajoute de l'espace entre les missions */
  }
}
  

/*=============== ABOUT ===============*/
.about__container{
  row-gap: 2.5rem;
}

.about__data{
  text-align: center;
}

.about__description{
  margin-bottom: 2rem;
}

.about__blob{
  width: 320px;
}

.about__blob path{
  stroke: var(--first-color);
}


/*=============== Competences ===============*/

.services__container{
  row-gap: 2rem;
  padding-block: 1rem;
}

.services__card{
  text-align: center;
  background-color: var(--container-color);
  padding: 3rem 1.25rem;
  border-radius: 1rem;
  border: 2px solid var(--container-color);
  transition: border .4s;
  margin-top: 4rem;
}

.entreprise_mission{
  width: 50rem;
  text-align: left;
}

.services__icon{
  display: block;
  font-size: 4rem;
  color: var(--first-color);
  margin-bottom: .75rem;
}

.services__title{
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
}


.services__card:hover{
  border: 2px solid var(--first-color);
}

.services__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Deux colonnes de largeur égale */
  gap: 1rem; /* Espace entre les éléments */
  justify-content: center; /* Centre la grille horizontalement */
}

.services__list li {
  border-radius: 4px; /* Coins arrondis */
  padding: 0.5rem; /* Espace intérieur */
  margin: 0; /* Supprimer la marge par défaut */
  font-size: 1rem; /* Taille de la police */
  text-align: left; /* Aligner le texte au centre */
}
.icon-logo {
  font-size: 1.5rem;
  color: var(--first-color); /* Couleur rose pour les icônes */
  fill: var(--first-color); /* Assure que le SVG a la même couleur */
  width: 1.5rem;
  height: 1.5rem;
}

.services__list i {
  margin-right: 0.5rem;
}

.services__list .services__level {
  font-size: 0.875rem; /* Taille de la police pour le niveau */
  color: #666; /* Couleur du texte pour le niveau */
}

.skills{
  background-color: var(--container-color);
}

.skills__container{
  padding-bottom: 2rem;
  row-gap: 3.5rem;
}

.skills__data{
  text-align: center;
}

.skills__description{
  margin-bottom: 2rem;
}

.skills__content,
.skills__grid{
  display: grid;
}

.skills__content{
  grid-template-columns: repeat(2, max-content);
  column-gap: 4rem;
  justify-content: center;
  align-items: baseline;
}

.skills__group{
  row-gap: 1rem;
  list-style: decimal-leading-zero;
}

.skills__item{
  font-weight: var(--font-medium);
  color: var(--title-color);
}

.skills__item::marker{
  color: var(--first-color);
}

.services__button {
  text-align: center;
}

/*=============== PROJECTS ===============*/
/* Container */
.projects {
  background-color: var(--container-color);
}

.projects__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding-block: 1rem;
}

/* Card Styles */
.projects__card {
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--container-color);
  padding: 1.5rem;
}

.projects__card:hover{
  border: 2px solid var(--first-color);
}

.projects__img {
  width: 100%;
  height: 55%; 
  border-radius: 1rem;
}

.projects__button {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s;
}

.projects__button i {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}


.projects__button:hover {
  color: var(--first-color);
}

.projects__subtitle {
  display: block;
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.projects__filters {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.filter-button {
  background-color: var(--container-color);
  color: white;
  border: none;
  border-radius: 2rem;
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
}

.filter-button:hover {
  background-color: var(--first-color);
  color: var(--container-color);
}

.block_infos a{
  color: var(--text-color);
}

.block_infos a:hover{
  color: var(--first-color);
}

.projects__img{
  position: relative;
  display: inline-block;
}

.projects__proof{
  z-index: 0;
}

.projects__proof:hover{
  cursor: pointer;
}

.project-imgs {
  position: relative;
}

.zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;          
  height: 50px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.projects__proof:hover + .zoom-icon {
  display: block;
}

.grid-projects{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  margin: 0 6rem;
}
.title-project{
  color: white;
  font-size: 1.125rem;
  padding-bottom: 0.5rem;
}

.context-project{
  border-top: 0.1rem solid white;
  padding-top: 1rem;
}

.logo-tools-projects{
  width: 2rem;
  margin: 0 0.5rem;
}

.logo-tools-project{
  margin: 0 0.5rem;
  width: 5rem;
}

.title-project a{
  color: var(--dark-text-color);
}

.project-item {
  position: relative;
  margin-bottom: 1rem;
}

.subtitle-project-details {
  display: none; /* Caché par défaut */
  color: white;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  transition: opacity 0.3s ease-in-out;
}

/* Version mobile */
@media (max-width: 768px) {
  .grid-projects {
    grid-template-columns: 1fr; /* Une seule colonne */
    margin: 0 1rem; /* Ajustement des marges */
  }

  .title-project {
    font-size: 1rem; /* Police plus petite */
  }

  .context-project {
    padding-top: 0.5rem; /* Espacement réduit */
  }

  .subtitle-project-details {
    font-size: 0.75rem; /* Police réduite */
  }

  .logo-tools-projects,
  .logo-tools-project {
    width: 2rem; /* Ajustement des tailles de logo */
  }
}
.project-item:hover .subtitle-project-details {
  display: block; /* Affiche la description au survol */
  opacity: 1;
}

.name-item{
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.name-item.active {
  color: var(--first-color);
  border-radius: 5px;
}

.title-section-project{
  font-size: 2rem;
  margin: 3rem 6rem 2rem 6rem;
  color: white;
}

.social-media-details{
  border-bottom: 0.1rem solid white;
  margin :0 6rem 2rem 6rem;
  padding: 1rem 0;
}

.reduce-margin{
  margin: 0;
}

.tool-content {
  display: none; /* Caché par défaut */
  padding: 1rem 6rem;
  margin-top: 1rem;
}

.tool-content.active {
  display: flex; /* Utiliser flexbox pour aligner le texte et l'image */
  justify-content: space-between; /* Texte à gauche, image à droite */
  gap: 1rem;
  flex-wrap: wrap;
  flex-direction: row;
}

.tool-content span{
  color: white;
}

.tool-content {
  display: none; /* Caché par défaut */
  padding: 1rem 6rem;
  margin-top: 1rem;
}

.tool-content.active {
  display: flex; /* Utiliser flexbox pour aligner le texte et l'image */
  justify-content: space-between; /* Texte à gauche, image à droite */
  gap: 1rem;
  flex-wrap: wrap;
}

.tool-content img {
  width: 25rem; /* Limiter la taille de l'image */
}

#login-gestionnaire img,
#epis-gestionnaire img,
#controles-gestionnaire img,
#notifications-gestionnaire img,
.big-size img{
  width: 100%; 
}

#instagram img{
  width: 10rem;
}

.tool-content video{
  width: 10rem;
}

@media (max-width: 768px) {
  .social-media-details {
    margin: 0 3rem 2rem 3rem; /* Réduire la marge latérale sur tablette */
  }
  
  .tool-content {
    padding: 1rem 3rem; /* Réduire le padding interne sur tablette */
  }

  .tool-content.active {
    flex-direction: column; /* Aligner les éléments verticalement si l'espace horizontal manque */
    align-items: center;
  }

  .tool-content img {
    width: 20rem; /* Réduire la taille de l'image sur tablette */
  }

  .tool-content video {
    width: 8rem; /* Réduire la taille de la vidéo sur tablette */
  }
}

@media (max-width: 480px) {
  .social-media-details {
    margin: 0 1rem 2rem 1rem; /* Marges encore plus petites sur mobile */
  }

  .tool-content {
    padding: 1rem; /* Padding minimal sur mobile */
  }

  .tool-content img {
    width: 100%; /* Utiliser toute la largeur disponible sur mobile */
  }

  .tool-content video {
    width: 100%; /* Adapter la taille de la vidéo à la largeur disponible */
  }
}


.performance-section {
  margin: 2rem 6rem;
}

.performance-section h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.performance-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.performance-section i {
  color: white;
  margin-right: 10px;
}
.statistics {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px; /* Espace entre les blocs */
}

.statistics &gt; div {
  flex: 1 1 calc(25% - 16px); /* Chaque div occupe 25% de la largeur avec espace entre */
  box-sizing: border-box; /* Inclure padding et bordures dans les dimensions */
  padding: 16px; /* Ajoute un peu d'espace intérieur */
  border-radius: 8px; /* Coins arrondis pour un style moderne */
  text-align: center; /* Centrer le texte */
}

@media (max-width: 768px) {
  .statistics &gt; div {
    flex: 1 1 calc(50% - 16px); /* Sur des écrans plus petits, deux blocs par ligne */
  }
  .performance-section {
    margin: 0;
  }

  .social-media-details .name-item{
    font-size: 0.8rem
  }

}

@media (max-width: 480px) {
  .statistics &gt; div {
    flex: 1 1 100%; /* Sur des écrans très petits, un bloc par ligne */
  }
}


.performance-section .statistics .data-statistics{
  font-size: 25px;
  color: rgb(255, 255, 255);
  text-align: center;
  margin: 0;
}


.performance-section .statistics .stat_about{
  font-size: 0.8rem;
  text-align: center;
}

.subtitle-infos{
  color: white;
}

.list-etapes{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.1rem solid white;
  margin :1.5rem 6rem 0.5rem 6rem;
  padding: 0.5rem 0;
  width: 50%;
  color: white;
  cursor: pointer;
}

.list-etapes i {
  transition: transform 0.3s ease;
  font-size: 1.5rem;
}

.list-etapes.active i {
  transform: rotate(180deg);
}

.list-etapes span {
  color: white;

}

.list-etapes span i{
  font-size: 1rem;
}


.cookie-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #f8f9fa;
}

.cookie-section h2 {
  color: #333;
  margin-bottom: 1rem;
}

.content-wrapper {
  padding: 1rem 0;
}

.description {
  line-height: 1.6;
  color: #555;
}

.benefits ul {
  list-style-type: none;
  padding-left: 1.5rem;
}

.benefits li {
  margin-bottom: 0.5rem;
}

.image-container {
  margin: 1.5rem 0;
  text-align: center;
}

#meta-suite img{
  width: 80%;
}

.align-center{
  display: flex;
  justify-content: center;
} 

.hidden {
  display: none;
}

.details {
  margin: 0 6rem 0.5rem 6rem;
}

.summary-section {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  margin: 3rem 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.summary-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
}

.results-container {
  display: flex;
  justify-content: space-around;
  margin-bottom: 2rem;
}

.result-item {
  text-align: center;
}

.result-number {
  font-size: 3rem;
  color: white;
  font-weight: bold;
}

.result-label {
  font-size: 1rem;
  color: white;
  margin-top: 10px;
}

.reduce-img{
  width: 50%;
}

.reduce-max-img{
  width: 20%;
}

.closing-message {
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
  animation-delay: 1s;
}



 /* Style du bandeau */
 .ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  transform: rotate(45deg);
  background: var(--first-color);
  padding: 7px 40px;
  font-size: 0.875rem;
  color: white;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

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

.card-realisation {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.7), 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-realisation h3 {
  text-align: left;
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
}

.card-realisation ul {
  list-style: disc;
  margin: 0;
  padding-left: 0px;
  font-size: 0.8rem;
}

.card-realisation li {
  margin-bottom: 10px;
}

.card-realisation:hover {
  transform: translateY(-5px);
  box-shadow: 2px 2px 14px rgba(255, 255, 255, 0.7), 0 8px 12px rgba(0, 0, 0, 0.15);

}
/* Masquer l'image par défaut */
#bdd-image {
  display: none;  /* L'image est cachée */
  max-width: 100%;
  margin: 20px 0;
  transition: opacity 0.3s ease;  /* Transition pour un effet fluide */
}

.button-img-realisation{
  padding: 0.2rem 0.75rem;
  background-color: var(--first-color);
  border-radius: .5rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.button-img-realisation:hover{
  cursor: pointer;
}

@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.patrimoine-section {
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tools-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tool-card {
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px var(--container-color);
  transition: transform 0.3s ease;
}

.card-about{
  width: 50%;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tool-header i {
  font-size: 2rem;
  color: white;
}

.tool-header h3 {
  font-size: 1.5rem;
  color: white;
  margin: 0;
}

.tool-description {
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.tool-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tool-image2 {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tool-image:hover {
  transform: scale(1.02);
}

.tool-image2:hover {
  transform: scale(1.02);
  cursor: pointer;
}

.devperso-container{
  display: flex;
  justify-content: center;
  margin: 1rem 4rem;
  gap: 2rem;
}

.devperso-container img{
  width: 50%;
  border-radius: 3rem;
  box-shadow: 3px 3px 10px var(--container-color);
}

@media (max-width: 768px) {
  .patrimoine-section {
      padding: 1rem;
  }

  .title-section-project {
      font-size: 1.75rem;
  }

  .tool-card {
      margin-bottom: 1rem;
      width: 50%;
  }

  .devperso-container{
    flex-wrap: wrap;
  }

  .devperso-container img{
    width: 100%;
  }

  .title-section-project{
    margin: 0;
  }

  .list-etapes{
    margin: 0.1rem 0.2rem;
    width: 12rem;
    font-size: 0.8rem;
  }

  .details {
    margin: 0;
  }

  .devperso-container{
    margin: 0;
  }

  .grid-projects{
    gap: 2rem;
  }

}



.title-devperso{
  color: white;
  font-size: 1.25rem;
  border-bottom: 0.1rem solid white;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  width: 90%;
}

.subtitle-devperso{
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: justify;
  width: 90%;
}

.horizontal-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.step-item {
  position: relative;
  text-align: center;
  flex: 1 1 calc(33.333% - 20px); /* 3 cartes par ligne avec un espace de 20px entre elles */
  max-width: calc(33.333% - 20px);
  min-width: 250px;
  box-sizing: border-box; /* Inclure le padding et la bordure dans la largeur totale */
}

/* Style du numéro intégré à la carte */
.step-item .step-marker {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: var(--first-color);
  color: white;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: -20px; /* Moitié hors de la carte */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.step-item .step-card {
  background-color: var(--container-color);
  padding: 2.5rem 1.5rem 1.5rem;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  border-top: 3px solid var(--first-color);
}

.step-item .step-card h3 {
  margin: 10px 0 5px 0;
  color: white;
  font-size: 1.2rem;
}

.step-item .step-card p {
  margin: 0 0 15px 0;
  color: #ddd;
}

.step-item .step-card iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
  margin-top: auto;
  background: white;
}

.pdf-container {
  width: 100%;
  margin-top: auto;
}

.pdf-button {
  background-color: var(--first-color);
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  font-size: 0.8rem;
  transition: background-color 0.3s;
}

.pdf-button:hover {
  background-color: var(--first-color-alt, #0056b3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .step-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .step-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item .step-card {
    min-height: auto;
    padding: 2rem 1rem 1rem;
  }

  .step-item .step-card iframe {
    height: 250px;
  }
}


/* Conteneur des étapes */
.steps-container {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: 3;
  gap: 1rem; /* Espace entre les cartes */
  justify-content: left;
}

/* Style des cartes d'étape */
.step-card {
  background-color: var(--container-color); /* Couleur de fond */
  border-radius: 12px; /* Coins arrondis */
  padding: 1.5rem;
  flex: 1 1 calc(33.333% - 2rem); /* 3 cartes par ligne avec espace */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 20rem; /* Largeur maximale des cartes */
  color: white;
}

.step-card:hover {
  transform: translateY(-5px); /* Effet de levée au survol */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Style des images dans les cartes */
.step-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 10%;
}

.step-img-reduce {
  width: 50%;
  height: auto;
  border-radius: 8px;
  margin-top: 10%;
}

/* Style des iframes dans les cartes */
.step-iframe iframe {
  width: 100%;
  height: 50%;
  border: none;
  border-radius: 8px;
  margin-top: 10%;
}

.card-subinfo{
  font-size: 00.8rem;
}

.video-container {
  max-width: 100%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 8px; /* Optionnel */
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/*=============== CYBERSECURITE ===============*/

.cybersecurity {
  background-color: var(--body-color);
  padding: 2rem 0;
}

.cybersecurity__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; 
}

.cybersecurity__image {
  flex: 1 1 45%; 
  max-width: 400px; 
}

.cybersecurity__image img {
  width: 100%;
  height: auto; 
}


.cybersecurity__info {
  flex: 1 1 45%;
  max-width: 500px; 
}

.cybersecurity__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--title-color);
}

.cybersecurity__description {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.cybersecurity__button {
  display: inline-block;
  text-decoration: none;
  color: var(--first-color);
  background-color: #fff;
  border: 1px solid var(--first-color);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.cybersecurity__button:hover {
  background-color: var(--first-color);
  color: #fff;
}

@media (max-width: 768px) {
  .cybersecurity__container {
    flex-direction: column; 
    text-align: center;
  }

  .cybersecurity__image, .cybersecurity__info {
    flex: 1 1 100%; 
    max-width: 100%;
  }
}


/*=============== CONTACT ===============*/
.contact__container{
  padding-top: 1rem;
}

.contact__form,
.contact__group{
  display: grid;
  row-gap: 1rem;
}

.contact__form{
  position: relative;
}

.contact__input{
  padding: 1rem 1.25rem;
  border-radius: .5rem;
  background-color: var(--container-color);
  color: var(--title-color);
}

.contact__input::placeholder{
  color: var(--text-color);
}

.contact__form textarea{
  height: 11rem;
  resize: none;
  margin-bottom: 2rem;
}

.contact__button{
  justify-self: center;
  cursor: pointer;
}

.contact__message{
  position: absolute;
  left: 0;
  bottom: 4.5rem;
  font-size: var(--small-font-size);
  color: var(--title-color);
}

/*=============== FOOTER ===============*/
.footer{
  background-color: var(--container-color);
  padding: 3.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.footer__title{
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: .25rem;
}

.footer__title span{
  color: var(--first-color);
}

.footer__education{
  font-size: var(--normal-font-size);
}

.footer__copy{
  text-align: center;
  margin-top: 2rem;
}

.footer__copy a{
  color: var(--text-color);
}

.conditions{
  color: var(--first-color);
  text-decoration: none;
}
/*=============== MENTIONS ===============*/
.content-mentions{
  margin-top: 5rem;
}



/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  border-radius: .5rem;
  background-color: hsl(228, 12%, 25%);
}

::-webkit-scrollbar-thumb{
  background-color: hsl(228, 8%, 35%);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover{
  background-color: hsl(228, 8%, 45%);
}

/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  padding: 6px;
  display: inline-flex;
  border-radius: .25rem;
  color: var(--first-color);
  font-size: 1.25rem;
  box-shadow: 0 4px 12px hsla(228, 15%, 8%, .4);
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover{
  transform: translateY(-.25rem);
}

/* Show Scroll Up */
.show-scroll{
  bottom: 3rem;
}

/*=============== VEILLE ==================*/

.veille__description{
  margin: 2rem 2rem;
  background-color: #21232C;
  padding: 2rem;
  border-radius: 1rem;
}

.veille__size{
  height: 60vh;
}

.veille__title{
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  padding: 0 5rem;
}

.veille__description p{
  margin-bottom: 2rem;
  text-align: justify;
  font-size: 18px;
}

.outils__veille{
  display: flex;
  align-items: center;
}

.logo__veille{
  width: 6rem;
}

.veille__layout {
  display: flex;
  gap: 2rem; 
  padding: 0 1.5rem;
}

.filter-controls {
  background-color: var(--container-color); 
  padding: 1rem;
  border-radius: 8px;
}

.filter-controls label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.veille__container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem;
  padding-block: 1rem;
}

.veille{
  background-color: var(--container-color);
}

.veille__img{
  width: 100%;
  height: 50%; 
  border-radius: 1rem;
}

.article__title{
  font-size: 1rem;
}

.veille:hover{
  cursor: pointer;
}

.info-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  text-align: justify;
  overflow-y: auto;
  margin-top: 1rem;
}

.info-overlay.active {
  display: flex;
}
.info-overlay .info-content {
  background: #333;
  padding: 20px;
  border-radius: 8px;
  max-width: 80%;
  margin: auto;
  position: relative;
}

.info-content p{
  margin-top: 1rem;
}
.info-overlay .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 30px;
  color: var(--first-color);
}
.eye-icon {
  cursor: pointer;
  font-size: 30px;
  color: var(--first-color);
}

/* Section générale */

@media (max-width: 768px) {
  .content-bilan {
    flex-direction: column;
  }
}

.section-bilan {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content-bilan {
  display: flex;
  justify-content: center;
  gap: 1rem; /* Espacement entre l'image et les divs */
  align-items: stretch; /* Assure que les divs et l'image ont la même hauteur */
  max-width: 800px; /* Limite la largeur totale */
  margin: 2rem auto 0 auto; /* Centre l'ensemble horizontalement */
}

.content-bilan img {
  height: 30rem; /* Hauteur fixe pour l'image */
  width: auto; /* Garde les proportions de l'image */
  object-fit: cover; /* Remplit l'espace sans déformer */
  border-radius: 8px; /* Ajoute des coins arrondis */
}


/* Paragraphes */
.section-bilan h4{
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.section-bilan {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: white;
}

.bilan-heart-project{
  font-size: 2rem;
}
/* Compétences */
.competences-bilan {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.bilan-competences {
  color: white;
  border: 0.1rem solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  width: clamp(250px, 30%, 350px);
  padding: 2rem;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bilan-competences:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.bilan-competences p:first-child {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.bilan-competences p:not(:first-child) {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.bilan-competences p:not(:first-child)::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .competences-bilan {
    flex-direction: column;
    align-items: center;
  }
  
  .bilan-competences {
    width: 100%;
    max-width: 400px;
  }
  
  .section__subtitle,
  .veille__title {
    text-align: center;
  }
}

/* Cards Grid */

.cards-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;

  padding: 40px 20px;

}



.card {

  border: 0.1rem solid white;
  border-radius: 10px;

  padding: 25px;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  opacity: 0;

  transform: translateY(20px);

  transition: all 0.6s ease;

}



.card.visible {

  opacity: 1;

  transform: translateY(0);

}



.card-header {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 20px;

}



.card-header i {

  font-size: 1.5rem;

  color: white;

}



.card-title {

  font-size: 1.25rem;

  font-weight: 600;

  color: white;

}



/* Skills Section */

.skills {
  background-color: var(--body-color);

  padding: 60px 20px;

}



.skills-title {

  text-align: center;

  font-size: 2rem;

  margin-bottom: 40px;

  color: white;

}



.skills-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;

}



.skill-category {

  opacity: 0;

  transform: translateY(20px);

  transition: all 0.8s ease;

}



.skill-category.visible {

  opacity: 1;

  transform: translateY(0);

}



.skill-header {

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 20px;

}



.skill-header i {

  color: white;

}



.skill-item {

border: 0.1rem solid white;
  padding: 15px;

  border-radius: 8px;

  margin-bottom: 15px;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

}



/* Project Section */

.project {


  padding: 60px 20px;

  margin: 40px 0;

  border-radius: 15px;

  opacity: 0;

  transform: translateY(20px);

  transition: all 1s ease;

}



.project.visible {

  opacity: 1;

  transform: translateY(0);

}



.project-header {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 30px;

}



.project-header i {

  color: var(--first-color);

  font-size: 2rem;

}



.project-title {

  font-size: 1.75rem;

  color: white;

}



.project-details {
  display: flex;
  flex-direction: column; /* Garde les divs empilées verticalement */
  justify-content: center; /* Répartit l'espace entre les divs */
  flex: 1; /* Adapte la hauteur à celle de l'image */
  gap: 2rem;
}

.project-detail-item {
  border: 0.1rem solid white;
  padding: 10px; /* Réduit le padding interne pour un rendu compact */
  border-radius: 8px;
  font-size: 0.9rem; /* Taille du texte réduite */
}

.download-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--first-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.download-button:hover {
  background-color: var(--container-color);
}

/* Conclusion */

.conclusion {

  text-align: center;

  padding: 60px 20px;

  max-width: 800px;

  margin: 0 auto;

  opacity: 0;

  transform: translateY(20px);

  transition: all 1s ease;

}



.conclusion.visible {

  opacity: 1;

  transform: translateY(0);

}



.conclusion h2 {

  font-size: 2rem;

  margin-bottom: 20px;

  color: white;

}



.conclusion p {

  font-size: 1.25rem;

  margin-bottom: 30px;

}



.cta-button {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 12px 24px;

  background: #3b82f6;

  color: white;

  text-decoration: none;

  border-radius: 8px;

  transition: background 0.3s ease;

}



.cta-button:hover {

  background: #2563eb;

}



@media (max-width: 768px) {

  .hero h1 {

      font-size: 2.5rem;

  }

  

  .cards-grid {

      grid-template-columns: 1fr;

  }

  

  .skills-grid {

      grid-template-columns: 1fr;

  }

}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container{
    margin-inline: 1rem;
  }
  
  .skills__content{
    grid-template-columns: max-content;
    row-gap: 1rem;
  }

  .services__card{
    padding-block: 1.5rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .home__container,
  .about__container,
  .skills__container,
  .services__container,
  .projects__container,
  .contact__container{
    grid-template-columns: 360px;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .nav__menu{
    width: 55%;
  }

  .home__container,
  .about__container,
  .skills__container{
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .home__data,
  .about__data,
  .skills__data,
  :is(.about__data, .skills__data) :is(.section__subtitle,.section__title){
    text-align: initial;
  }

  .home__social{
    justify-content: initial;
  }

  .home__blob,
  .about__blob{
    width: 400px;
  }

  .about__data{
    order: 1;
  }

  .services__container,
  .projects__container{
    grid-template-columns: repeat(2, 352px);
  }

  .footer{
    flex-direction: row;
  }

  .footer__copy{
    margin-top: 0;
  }

}

/* Styles pour les téléphones */
@media screen and (max-width: 768px) {
  .veille__layout {
      display: flex;
      flex-direction: column;
      padding: 0 20px;
  }

  .filter-controls {
      margin-bottom: 20px;
  }

  .filter-controls label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
  }

  .filter-controls input,
  .filter-controls select {
      width: 100%;
      padding: 8px;
      margin-bottom: 10px;
      font-size: 16px;
  }

  .veille__container {
      display: block;
  }

  .veille{
    margin-bottom: 2rem;
  }

}

@media screen and (max-width: 900px) {
  .timeline-items::before{
    left: 7px;
  }  

  .timeline-item:nth-child(odd){
    padding-right: 0;
    text-align: left; 
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even){
    padding-left: 37px;
  }

  .timeline-dot{
    left: 0;
  }
}

/* For large devices */

@media screen and (min-width: 1023px) {
  .section{
    padding-block: 7rem 2rem;
  }

  .section__subtitle{
    font-size: var(--normal-font-size);
  }

  .nav{
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__close,
  .nav__toggle{
    display: none;
  }
  
  .nav__list{
    flex-direction: row;

    column-gap: 3rem;
  }

  .nav__menu{
    width: initial;
  }

  .blur-header::after{
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }
}

@media screen and (min-width: 1152px) {
  .container{
    margin-inline: auto;
  }

  .home__container{
    grid-template-columns: 455px 550px;
    column-gap: 7rem;
    padding-block: 2rem 3rem;
  }

  .home__blob{
    width: 550px;
  }

  .home__content{
    row-gap: 4.5rem;
  }
  
  .home__description{
    margin-block: 1.5rem 2.5rem;
  }

  .home__social{
    column-gap: 1.5rem;
  }

  .about__container{
    grid-template-columns: 550px 460px;
    column-gap: 4.5rem;
    padding-bottom: 1rem;
  }

  .about__blob{
    width: 550px;
  }

  .about__description{
    margin-bottom: 3rem;
  }

  .skills__container{
    grid-template-columns: 340px 425px;
    column-gap: 10rem;
    padding-bottom: 4rem;
  }

  .skills__description{
    margin-bottom: 3rem;
  }

  .skills__content{
    column-gap: 8rem;
  }

  .skills__group{
    row-gap: 1.5rem;
  }

  .skills__item{
    font-size: var(--h3-font-size);
  }

  .services__container{
    grid-template-columns: repeat(3, 352px);
    padding-block: 2.5rem 4rem;
  }

  .services__card{
    padding: 3.5rem 2rem;
  }

  .projects__container{
    grid-template-columns: repeat(3, 350px);
    row-gap: 3rem;
    padding-block: 2.5rem 4rem;
  }

  .projects__button{
    font-size: var(--normal-font-size);
  }

  .contact__container{
    grid-template-columns: 680px;
    padding-block: 2.5rem 2rem;
  }

  .contact__form{
    row-gap: 1.5rem;
  }

  .contact__group{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }

  .contact__input{
    padding: 1.5rem;
  }

  .contact__form textarea{
    height: 20rem;
  }

  .scrollup{
    right: 3rem;
  }
  
}

@media screen and (max-width: 1200px) {
  .veille__layout {
      display: flex;
      flex-direction: column;
      padding: 0 20px;
  }
  .veille__container {
    grid-template-columns: repeat(2, 1fr); /* 2 articles par ligne sur tablettes */
  }
}


.test{
  border-radius: 0 0 10rem 10rem;
}</pre></body></html>