@font-face {
  font-family: "Cuprum";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
}

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');


html {
  scroll-behavior: auto;
}

.en {
  display: none !important;
}

/*body */
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  background-color: #ffffff;
  background-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
  cursor: auto;
}

/* Custom Cursor */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #020073;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s ease, border-color 0.2s ease;
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  transform: scale(1.5);
  border-color: #0300a8;
  background: rgba(2, 0, 115, 0.1);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: #020073;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

.cursor-dot.hover {
  transform: scale(0);
}

/* Matrix Data Rain Background */
#matrix-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.08;
  pointer-events: none;
}

/* Morphing Blob Cursor */
.blob-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(2, 0, 115, 0.3) 0%, rgba(2, 0, 115, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  filter: blur(20px);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  mix-blend-mode: screen;
}

.blob-cursor.active {
  width: 80px;
  height: 80px;
  animation: blob-pulse 1s infinite;
}

@keyframes blob-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Particle Background */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(2, 0, 115, 0.6) 0%, rgba(2, 0, 115, 0.2) 100%);
  border-radius: 50%;
  animation: float 15s infinite;
  box-shadow: 0 0 10px rgba(2, 0, 115, 0.4);
  will-change: transform;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; top: 20%; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 16s; top: 40%; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 13s; top: 60%; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 15s; top: 10%; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 11s; top: 80%; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 17s; top: 30%; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 14s; top: 50%; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 12s; top: 70%; }
.particle:nth-child(10) { left: 15%; animation-delay: 3s; animation-duration: 16s; top: 90%; }

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-100px) translateX(50px) scale(1.2);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-200px) translateX(-30px) scale(0.8);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-100px) translateX(-50px) scale(1.1);
    opacity: 0.4;
  }
}

:root {
  --lien: #020073;
  --primary: #020073;
  --white: #F6F9F7;
  --grey: #c3c3c3;
  --content: calc((100vw/12)*9.5);
  --small: calc((100vw/12)*0.5);
  --mid: calc(100vw/12);
  --big: calc((100vw/12)*2);
}

/*scroll bar */
/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 0px;
  animation: 300ms ease-in-out;
}


/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  animation: 300ms ease-in-out;

}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--grey);
  animation: 300ms ease-in-out;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  transition: 500ms ease-in-out;
  background: var(--lien);
}

h5 {
  font-size: 1.3rem;
  margin: 0%;
}

h4 {
  font-size: 1.5rem;
}

h3 {
  font-weight: 500
}

/* Text Reveal Animation */
.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-text.revealed {
  opacity: 1;
  transform: translateY(0);
}

.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: word-appear 0.6s forwards;
}

@keyframes word-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading Skeleton for Cards */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Smooth Page Entrance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Enhanced Timeline Item Entrance */
.timeline-item {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideIn 0.6s ease-out forwards;
}

.timeline-item.timeline-right {
  transform: translateX(50px);
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stagger Timeline Items */
.timeline-item:nth-child(2) { animation-delay: 0.1s; }
.timeline-item:nth-child(3) { animation-delay: 0.2s; }
.timeline-item:nth-child(4) { animation-delay: 0.3s; }
.timeline-item:nth-child(5) { animation-delay: 0.4s; }
.timeline-item:nth-child(6) { animation-delay: 0.5s; }
.timeline-item:nth-child(7) { animation-delay: 0.6s; }

a {
  text-decoration: none;
  color: black;
}

/* loading 
html, body {
  margin: 0; 
  height: 100%; 
  width: 100vw;
  overflow: hidden;
  animation:scroll 6s forwards;
} */



.contact_back {
  top: 0;
  right: 0;
  position: fixed;
  z-index: 1000;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.406);
  display: none;
}

.contact {
  top: 0;
  right: 0;
  position: fixed;
  background-color: var(--white);
  height: 100vh;
  box-shadow: 5px 5px 40px 0px rgba(255, 0, 0, 0.101);
  z-index: 1000;
  margin-right: -100%;
  transition: 500ms;
  transition-timing-function: ease;
}

.cactive {
  margin-right: 0;
  transition: 500ms;
  transition-timing-function: ease;
}

.cbactive {
  display: block;
  transition: 500ms;
  cursor: pointer;
}

.contact .retour {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 20px;
  transition: 200ms ease-in-out;
}

.contact .retour:hover {}

.contact .retour img {
  height: 34px;
  margin: 10px;
  transition: 200ms ease-in-out;
}

.contact .retour:hover img {
  transition: 200ms ease-in-out;
  transform: translateX(-5px);
}


.contact .num {
  margin: 5vh 5vh;
  border-bottom: 1px solid gray;
  margin-bottom: 5vh;
}

.contact .num a:hover {
  color: var(--lien);
}

.contact h2 {
  color: gray;
  font-size: 18px;
}

.contact h3 {
  width: fit-content;
  font-size: 22px;
  font-weight: 400;
  line-height: .8;
  margin-left: 20px;
}



.contact form {
  position: relative;
}

.contact .input_group {
  margin: 2vh 5vh;
}

.contact input,
.contact textarea {
  font-size: 18px;
  padding: 15px;
  border-radius: 10px;
  border: none;
  width: 30vw;
  max-width: 30vw;
  font-family: "Fira Sans", sans-serif;
  font-weight: 100;
  font-style: normal;

  border: 1px solid var(--primary);
}

.contact textarea {
  height: 100px;
  font-size: 18px;
}

.contact #err {
  color: #FF2E00;
  margin-left: 5vh;
}

.contact #succ {
  color: green;
  margin-left: 5vh;
}

.contact .cour {
  color: black;
  margin: 2px 5vh;
  display: none;
  opacity: 0;
  transition-property: opacity;
  transition: 300ms;
  font-size: 15px;
}

.contact .tactive {
  transition: 300ms;
  opacity: 1;
  display: inline;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-bottom: 5px solid var(--primary);
}

.contact button[type=submit] {
  background-color: var(--lien);
  border: none;
  color: var(--white);
  padding: 16px 32px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 20px;
  transition: 200ms;
  float: right;
}

.contact button[type=submit]:hover {
  font-size: 17px;
  transform: scale(1.2);
  transition: 200ms;
  box-shadow: 5px 5px 40px 0px rgba(255, 0, 0, 0.101);
}

.loading {
  position: fixed;
  background-color: var(--white);
  height: 100vh;
  width: 100vw;
  z-index: 100;
  display: grid;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.loading .top,
.loading .lback {
  height: 15vh;
  width: 15vw;
  grid-column: 1;
  grid-row: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.loading .hide {
  text-align: right;
  height: 15vh;
  width: 15vw;
  grid-column: 1;
  grid-row: 1;
  background-color: #F6F9F7;
  animation-timing-function: ease-in-out;

}

.loading .lback {
  background-image: url(../img/load.svg);
}

.chargement {
  animation: clign 1s infinite;
}

.loading .top {
  background-image: url(../img/load.svg);
}

@keyframes load {
  0% {
    margin-left: 0%;
    width: 30vw;
  }

  100% {
    margin-left: 100%;
    width: 0vw;
  }
}

@keyframes clign {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes app {
  99% {
    opacity: 0;

  }

  100% {
    opacity: 1;
  }
}

@keyframes des {
  99% {
    opacity: 1;

  }

  100% {
    opacity: 0;
    display: none;
  }
}


@keyframes scroll {
  99% {
    margin: 0;
    height: 100%;
    overflow: hidden;
  }

  100% {
    margin: 0;
    height: 100%;
    overflow: visible;
  }
}


/* menu et bouton  */
.menu {
  width: calc((100vw/12)*2.5);
  opacity: 0;
  top: 0;
  position: fixed;
  border-radius: 0;
  height: 100%;
  background-color: white;
  text-align: center;
  z-index: 100;
  transition: 200ms ease-in-out;
  left: 0;
  box-shadow: 5px 5px 40px 0px rgba(255, 0, 0, 0.101);
  left: 1%;
}

#imgprofil {
  margin-top: 10%;
  width: calc((100vw/12)*1.5);
}

.men {
  margin: 20% auto;
  width: 230px;
}

.men a {
  height: 30px;
  padding: 15px;
  display: flex;
  align-items: center;
  color: black;
  border-radius: 5px;
  white-space: nowrap;
  margin-right: 15px;
  cursor: pointer;
}


.men h5 {
  padding-right: 15px;
}

.men h4 {
  color: rgb(92, 92, 92);
}

.men .active {
  color: var(--lien);
  transition: 50ms ease-in-out;
}

.click {
  pointer-events: none;
}

.men .active h5 {
  color: var(--lien);
  background-color: var(--white);
  transition: 50ms ease-in-out;
  border-left: var(--lien) 2px solid;
  border-radius: 5px;
  padding: 10px 15px;
  text-align: left;
}

.men img {
  margin-right: 10%;
  height: 40px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.men .drag {
  display: none;
}

.reseaux {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5vh;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc((100vw/12)*2.5);
  margin-left: calc((100vw/12)*0.25);
}

.reseaux img {
  padding: 10px;
  max-height: 5vh;
}

.reseaux a {
  display: flex;
  align-items: center;
}

.reseaux .rleft {
  justify-content: flex-end;
}

.reseaux a:hover {
  transform: scale(1.3);
  transition: 50ms ease-in-out;
}

#boutontr:hover {
  background-color: rgb(0, 0, 54);
  box-shadow: none;
  cursor: pointer;
  transition: 100ms ease-in-out;
}

#boutontr {
  opacity: 1;
  z-index: 100;
  position: fixed;
  top: 5%;
  right: 5%;
  background: linear-gradient(135deg, #020073 0%, #0300a8 50%, #020073 100%);
  background-size: 200% 200%;
  border-radius: 8px;
  padding: 8px 28px;
  display: flex;
  overflow: hidden;
  animation: gradient-shift 3s ease infinite, float-button 3s ease-in-out infinite;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(2, 0, 115, 0.3);
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

#boutontr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

#boutontr:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 0, 115, 0.4), 0 0 30px rgba(2, 0, 115, 0.2);
}

#boutontr:hover::before {
  opacity: 1;
}

#boutontr.magnetic {
  transition: transform 0.2s ease-out;
}

#boutontr {
  animation: float-button 3s ease-in-out infinite;
}

@keyframes float-button {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Magnetic Button Effect */
.btn-magnetic {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btnsec1, .btnsec2 {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btnsec1:hover, .btnsec2:hover {
  transform: scale(1.05);
}

#boutontrac {
  top: 5%;
  right: 5%;
  width: fit-content;
  background-color: var(--lien);
  border-radius: 5px;
  padding: 5px 25px;
  display: flex;
  overflow: hidden;
  animation: app 1s forwards;
  transition: 200ms ease-in-out;
}


#boutontr.active,
#boutontrac.active {
  top: 40%;
  right: 10%;
  scale: 1.3;
  transition: 200ms ease-in-out;
  bottom: inherit;
}

#boutontr .ar img,
#boutontrac .ar img {
  width: 300px;
  margin-left: -280px;
  transition: 150ms ease-in-out;
}

#boutontr:hover .ar img,
#boutontrac:hover .ar img {
  width: 300px;
  margin-left: -260px;
  transition: 150ms ease-in-out;
}



#boutontr h4,
#boutontrac h4 {
  color: var(--white);
  font-weight: 700;
  margin: 0;
  line-height: 150%;
}

#boutontr .ar,
#boutontrac .ar {
  display: flex;
  width: 20px;
}



.content {
  animation: app 1s forwards;
  opacity: 0;
  margin-left: auto;
  margin-right: 0;
}

/*anim menu*/

.menu:hover {
  /* width: calc((100vw/12)*2.6);
    transition: 150ms ease-in-out; */
}

.menuh {
  box-shadow: inherit;
  opacity: 1;
  left: 0%;
  transition: 200ms ease-in-out;
}

@keyframes menu {
  0% {
    width: 0vh;
  }

  100% {
    width: calc((100vw/12)*2.5);
  }
}

/*accueil*/
.progress-container {
  height: 100vh;
  width: 2px;
  background: #ccc;
  position: fixed;
  top: 0;
  left: calc((100vw / 12)* 2.5);
  ;
  z-index: 10;
  background-color: #f1f1f1;
}

.progress-bar {
  height: 0;
  background: linear-gradient(180deg, #020073 0%, #0300a8 50%, #020073 100%);
  width: 3px;
  transition: width 0.2s ease-out;
  box-shadow: 0 0 10px rgba(2, 0, 115, 0.5), 0 0 20px rgba(2, 0, 115, 0.3);
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: radial-gradient(circle, rgba(2, 0, 115, 0.8) 0%, transparent 70%);
  filter: blur(5px);
}

.sec1 {
  height: 100vh;
  overflow: hidden;
  position: relative;
  margin-left: auto;
  margin-right: 0;
  width: var(--content);
}

.sec1 .back,
.secav .back {
  height: 100%;
  width: 100%;
  z-index: 3;
}

.sec1 img {
  height: 200px;
  object-fit: contain;
  z-index: -2;
}


.sec1 .item1 {
  position: absolute;
  top: 10%;
  left: 40%;
}

.sec1 .it {
  opacity: .4;

  display: none;
}

.sec1 .item2 {
  position: absolute;
  top: 35%;
  left: 15%;
}

.sec1 .item3 {
  position: absolute;
  top: 25%;
  left: 75%;
}

.sec1 .item4 {
  position: absolute;
  top: 55%;
  left: 85%;
}

.sec1 .item5 {
  position: absolute;
  top: 75%;
  left: 45%;
}

.sec1 .item6 {
  position: absolute;
  top: 70%;
  left: 15%;
}

.sec1 .item7 {
  position: absolute;
  top: 75%;
  left: 75%;
}

.sec1 .item8 {
  position: absolute;
  top: 15%;
  left: 60%;
}

.s1content {
  font-family: "Fira Sans", sans-serif;
  font-weight: 100;
  font-style: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  z-index: 2;
}


.texts1 {
  border-radius: 5px;
  padding: 30px;
  line-height: 500%;
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 3;
}

.texts1::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -5;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(30px);
  background-color: white;
}

.line {
  display: flex;
}

.texts1 .line1 h2::before,
.texts1 .line2 h2::before {
  content: "<";
  color: gray;
  font-weight: 400;
}

.texts1 .line1 h2::after,
.texts1 .line3 h2::after {
  content: ">";
  color: gray;
  font-weight: 400;
}

.texts1 .line3 h2 {
  padding-left: 1.8rem;
}


.orange {
  content: "";
  width: 80px;
  height: 80px;
  margin-left: -30px;
  margin-top: -30px;
  margin-right: 5px;
  background-color: #020073;
  border-radius: 5px;
  z-index: -1;
  grid-row: 1;
  grid-column: 1;
}

.textcontain {
  overflow: hidden;
  display: grid;
}

.texts1 h2 {
  margin: 0px;

  font-weight: 300;
  font-size: 3.8rem;
  grid-row: 1;
  grid-column: 1;
  padding-right: 10px;
  white-space: nowrap;
}

.texts1 h2 img {
  height: 1.2rem;
  margin-left: -5px;
}

.texts1 p {
  margin: 0%;
  font-size: 1.5rem;
  margin-right: 20px;
  color: gray;
  opacity: 0;
}

.texts1 span {
  color: var(--primary);
}

.btnsec1 {
  align-items: center;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  border-radius: 5px;
  padding: 10px 13px;
  background-color: white;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  transition: 200ms ease-in-out;
  opacity: 0;
  border: 0px solid var(--grey);
  cursor: pointer;
}

.btnsec1:hover {
  box-shadow: none;
  padding: 5px;
  transition: 200ms ease-in-out;
  border: 0px solid var(--grey);
}

.btnsec1:hover>img {
  transition: 2s ease-in-out;
  animation-play-state: paused;
  animation-timing-function: ease-in-out;
  padding-bottom: 3px;
}

.btnsec1 p {
  margin: 0;
  margin-left: 10px;
  white-space: nowrap;
  font-size: 17px;
  line-height: 5vh;

}

.btnsec1 img {
  height: inherit;
  background-color: var(--lien);
  height: 4vh;
  padding: 0% 0.5vh 1vh 0.5vh;
  border-radius: 5px;
  margin-left: 20px;
  aspect-ratio: 1.1;
  transition: 200ms ease-in-out;
}

/*animation section 1*/

section {
  background-color: F6F9F7;
}

.s1content .line .hide {
  margin-top: 1%;
  margin-left: auto;
  margin-right: 0;
  grid-row: 1;
  grid-column: 1;
  height: 90%;
  width: 100%;
  background-color: #ffffff;
  animation: typing 1s forwards, blink .15s step-end infinite alternate, opt 1.5s forwards;
  border-left: 0px solid black;
}

.s1content .line1 p {
  opacity: 1;
}


.s1content .line2 .hide {
  animation-delay: 1.5s;
}

.s1content .line2 p {
  animation: opl 1.4s forwards;
}

.s1content .line3 .hide {
  animation-delay: 3s;
}

.s1content .line3 p {
  animation: opl 2.8s forwards;
}


@keyframes typing {
  0% {
    width: 100%;
  }

  30% {
    width: 100%;
  }

  50% {
    width: 30%;
  }

  100% {
    width: 0%;
  }
}

@keyframes opt {
  01% {
    opacity: 1;
    border-left-width: 2px;
  }

  99% {
    opacity: 1;
    border-left-width: 2px;
  }

  100% {
    opacity: 0;
  }
}

@keyframes ops {
  01% {
    opacity: 1;
    border-left-width: 2px;
  }

  99% {
    opacity: 1;
    border-left-width: 2px;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }

  100% {
    border-color: transparent;
  }
}

@keyframes opi {
  01% {
    opacity: 1;
  }

  99% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes opl {
  99% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.s1content h4 {
  opacity: 0;
  padding: 20px;
  animation: 3s up 1s forwards;
}

.btnsec1 {
  animation-timing-function: ease-in-out;
  animation: 2s up 1s forwards;
  animation-delay: 3s;
}

.btnsec1 img {
  animation-timing-function: ease-in-out;
  animation: animdown .7s infinite alternate;

}

@keyframes up {
  85% {
    opacity: 0;
    margin-top: 20vh;
  }

  100% {
    opacity: 1;
    margin-top: 0vh;
  }
}

@keyframes animdown {
  0% {
    transform: translate(0%, 20%);
    padding-bottom: 2px;
  }

  50% {
    padding-bottom: 1vh;
    transform: translate(0%, 0%);
  }

  100% {
    padding-bottom: 1vh;
    transform: translate(0%, 0%);
  }
}


/*sec2*/
.sec2 {
  height: fit-content;
  width: var(--content);
  position: relative;
  background-color: #ffffff;
  margin-left: auto;
  margin-right: 0;
  margin-top: -200px;
  padding-top: 150px;
}

.title {
  font-family: "Fira Sans", sans-serif;
  font-weight: 100;
  font-style: normal;
  top: 5vh;
  margin-left: calc((100vw/12)*3);
  margin-top: 10vh;
  margin-bottom: 10vh;
  width: fit-content;
  left: var(--small);
  display: grid;
  z-index: 50;
  position: sticky;
  border-radius: 5px;
}

.title .line {
  display: none;
}

.title1 .line {
  display: flex;
}

.texttitle {
  border-radius: 5px;
  padding: 10px 20px;
  line-height: 200%;
  grid-column: 1;
  grid-row: 1;
}

.texttitle::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -5;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  background-color: white;
}


.textcontain {
  overflow: hidden;
  display: grid;
}

.texttitle h5 {
  margin: 0px;
  font-size: 1.5rem;
  grid-row: 1;
  grid-column: 1;
  padding-right: 10px;
}

.texttitle p {
  margin: 0%;
  font-size: 1.5rem;
  margin-right: 20px;
  color: gray;
  opacity: 0;
}

.texttitle span {
  color: var(--primary);
}

.title .orange {
  z-index: -10;
  width: 60px;
  height: 60px;
  margin-left: -20px;
  margin-top: -20px;
}

/*title1*/

.title1 .line1 .hide,
.title1 .line2 .hide {
  margin-top: 1%;
  margin-left: auto;
  margin-right: 0;
  grid-row: 1;
  grid-column: 1;
  height: 80%;
  width: 100%;
  background-color: #ffffff;
  animation: typing2 0.4s forwards, blink .15s step-end infinite alternate, opt .5s forwards;
  border-left: 0px solid black;
}

.title1 .line3,
.title1 .line4,
.title1 .line5,
.title1 .line6,
.title1 .line7,
.title1 .line8,
.title1 .line9,
.title1 .line10 {
  display: none;
}

.title1 .line1 p {
  opacity: 1;
}

.title1 .line1 .hide {
  animation-delay: .3s;
}

.title1 .line2 .hide {
  animation-delay: .3s;
}



.title1 .line2 .hide {
  animation-delay: .8s;
}

.title1 .line2 p {
  animation: opl .7s forwards;
}

@keyframes disp {
  99% {
    display: none;
  }

  100% {
    display: flex;
  }
}

@keyframes typing2 {
  0% {
    width: 100%;
  }

  10% {
    width: 100%;
  }

  50% {
    width: 30%;
  }

  100% {
    width: 0%;
  }
}

/*Messages*/

.message {
  width: var(--content);
  margin-top: 7vh;
  overflow: hidden;
  height: fit-content;

}

.message img {
  width: var(--small);
  height: var(--small)
}

.message .period {
  display: flex;
  align-items: center;
  margin-left: var(--small);
  margin-right: var(--small);
}

.message .moi {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: var(--small);
  margin-left: var(--small);

}

.message h3 {
  padding: 15px 40px;
  margin: 2vh;
  border-radius: 10px;
  border-bottom: 2px solid var(--primary);
  line-height: 200%;
  background-color: #f0f0f0;
  ;
}

.message h3 span {
  color: var(--primary);
}

.button {
  width: var(--content);
  height: 10vh;
}

.btnsec2 {
  align-items: center;
  border-radius: 5px;
  padding: 10px 13px;
  background-color: transparent;
  z-index: 1;
  transition: 200ms ease-in-out;
  opacity: 1;
  border: 0px solid var(--grey);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 0 auto;
}

.btnsec2:hover {
  box-shadow: none;
  padding: 5px;
  transition: 200ms ease-in-out;
  border: 0px solid var(--grey);
}

.btnsec2:hover>img {
  transition: 2s ease-in-out;
  animation-play-state: paused;
  animation-timing-function: ease-in-out;
  padding-bottom: 3px;
}

.btnsec2 p {
  margin: 0;
  white-space: nowrap;
  font-size: 17px;
  line-height: 5vh;

}

.btnsec2 img {
  height: inherit;
  background-color: var(--lien);
  height: 4vh;
  padding: 0% 0.5vh 1vh 0.5vh;
  border-radius: 5px;
  aspect-ratio: 1.1;
  transition: 200ms ease-in-out;
}

.btnsec2 img {
  animation-timing-function: ease-in-out;
  animation: animdown .7s infinite alternate;

}

/*sec3*/

.sec3 {
  position: relative;
  width: var(--content);
  margin-left: auto;
  margin-right: 0;
  padding-top: var(--mid);
}

/*title*/

.title2 .line1,
.title2 .line2,
.title2 .line5,
.title2 .line6,
.title2 .line7,
.title2 .line8,
.title2 .line9,
.title2 .line10 {
  display: none;
}

.title2 .line3,
.title2 .line4 {
  display: flex;
}

.title2 .line3 .hide,
.title2 .line4 .hide {
  margin-top: 1%;
  margin-left: auto;
  margin-right: 0;
  grid-row: 1;
  grid-column: 1;
  height: 80%;
  width: 100%;
  background-color: #ffffff;
  animation: typing2 0.4s forwards, blink .15s step-end infinite alternate, opt .5s forwards;
  border-left: 0px solid black;
}



.title2 .line3 p {
  opacity: 1;
}

.title2 .line3 .hide {
  animation-delay: .3s;
}

.title2 .line3 .hide {
  animation-delay: .3s;
}



.title2 .line4 .hide {
  animation-delay: .8s;

}

.title2 .line4 p {
  animation: opl .7s forwards;
}



/*contenu sec3*/
.sec3 div {
  text-align: center;
}

.ens h3 {
  text-align: left
}

.ens img {
  height: 1.2rem;
  margin-left: 5px;
  margin-right: 5px;
}

.sec3 .zone1,
.sec3 .zone2,
.sec3 .zone3 {
  height: 20vh;
}



.sec3 p {
  text-align: justify;
  text-justify: distribute;
  text-align-last: left;
  font-size: 18px;
}


.sec3 .solu {
  width: 500px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(2);
  border-radius: 5px;
  padding: 15px;
  opacity: 1;
  margin-top: 50px;
}

.sec3 .ens {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -20%) scale(1);
  opacity: 1;
}

@media screen and (min-width: 1300px) {
  .sec3 .ens {
    transform: translate(-50%, -20%) scale(1.4);
  }

}

.sec3 .anal {
  width: 400px;
  margin: 5%;
  margin-right: 2%;
  border-radius: 5px;
  padding: 15px;
}

.sec3 .difi {
  width: 400px;
  margin: 5%;
  margin-left: 2%;
  border-radius: 5px;
  padding: 10px;
}

/*section4*/

.sec4 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(180deg, rgba(246, 249, 247, 0) 0%, rgba(2, 0, 115, 0.02) 50%, rgba(246, 249, 247, 0) 100%);
  padding: 60px 5%;
  min-height: auto;
  position: relative;
}

/* Live Stats Showcase */
.stats-showcase {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 247, 0.9));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(2, 0, 115, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #020073, #0300a8, #9333ea);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.stat-item.animate::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(2, 0, 115, 0.2);
  border-color: rgba(2, 0, 115, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #020073;
  margin-bottom: 10px;
  font-family: 'Fira Sans', sans-serif;
  text-shadow: 0 0 20px rgba(2, 0, 115, 0.2);
}

.stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Live Terminal Showcase */
.terminal-showcase {
  max-width: 800px;
  margin: 40px auto 60px;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(2, 0, 115, 0.2);
  animation: float-terminal 6s ease-in-out infinite;
  border: 1px solid #1a1a1a;
}

@keyframes float-terminal {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.terminal-header {
  background: #141414;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #222;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
  color: #999;
  font-size: 12px;
  margin-left: 10px;
  font-family: 'Fira Sans', monospace;
}

.terminal-body {
  padding: 25px;
  min-height: 150px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #00ff00;
  background: #000;
  line-height: 1.8;
}

.terminal-line {
  color: #e0e0e0;
  margin-bottom: 12px;
  opacity: 0.95;
}

.terminal-output {
  color: #00ff41;
  line-height: 1.8;
  text-shadow: 0 0 2px rgba(0, 255, 65, 0.3);
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: #0f0;
  animation: blink-cursor 1s step-end infinite;
  vertical-align: middle;
  margin-left: 2px;
}

@keyframes blink-cursor {
  50% { opacity: 0; }
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #020073, transparent);
  z-index: 1;
  box-shadow: 0 0 10px rgba(2, 0, 115, 0.3);
  animation: glow-line 3s ease-in-out infinite;
}

@keyframes glow-line {
  0%, 100% {
    box-shadow: 0 0 10px rgba(2, 0, 115, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(2, 0, 115, 0.6);
  }
}

.timeline-item {
  display: flex;
  margin-bottom: 20px;
  position: relative;
}

.timeline-right {
  justify-content: flex-end;
}

.timeline-left {
  justify-content: flex-start;
}

.timeline-content-wrapper {
  width: 45%;
}

.timeline-right .timeline-content-wrapper {
  text-align: left;
  padding-left: 20px;
}

.timeline-left .timeline-content-wrapper {
  text-align: right;
  padding-right: 20px;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(2, 0, 115, 0.2);
  border-radius: 12px;
  padding: 20px;
  max-width: 380px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(2, 0, 115, 0.05), transparent);
  transition: left 0.5s;
}

.timeline-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(2, 0, 115, 0.1), rgba(147, 51, 234, 0.1), transparent);
  animation: holographic-spin 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.timeline-card:hover::after {
  opacity: 1;
}

@keyframes holographic-spin {
  100% { transform: rotate(360deg); }
}

.timeline-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(2, 0, 115, 0.15), 0 0 20px rgba(2, 0, 115, 0.1);
  border-color: #0300a8;
}

.timeline-card:hover::before {
  left: 100%;
}

.timeline-left .timeline-card {
  margin-left: auto;
}

.timeline-card h4 {
  color: #020073;
  margin: 0 0 10px 0;
  font-size: 18px;
  position: relative;
  display: inline-block;
}

.timeline-card:hover h4 {
  text-shadow: 0 0 10px rgba(2, 0, 115, 0.3), 0 0 20px rgba(2, 0, 115, 0.2);
  animation: neon-flicker 2s infinite;
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 10px rgba(2, 0, 115, 0.3), 0 0 20px rgba(2, 0, 115, 0.2);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

/* Animated Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #020073, #0300a8, #9333ea, #020073);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 4s ease infinite;
  font-weight: 700;
}

@keyframes gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Text Scramble Effect */
.scramble-text {
  position: relative;
  overflow: hidden;
}

/* Mouse Trail Particles */
.mouse-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(2, 0, 115, 0.8), transparent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  animation: particle-fade 1s ease-out forwards;
}

@keyframes particle-fade {
  0% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(0) translateY(-50px);
    opacity: 0;
  }
}

/* Liquid Morphing Blob */
.liquid-blob {
  position: fixed;
  width: 200px;
  height: 200px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: linear-gradient(45deg, rgba(2, 0, 115, 0.1), rgba(147, 51, 234, 0.1));
  filter: blur(40px);
  animation: morph 8s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes morph {
  0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(0deg);
  }
  25% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 70% 40% 60% / 50% 60% 30% 60%;
    transform: rotate(180deg);
  }
  75% {
    border-radius: 70% 30% 60% 40% / 30% 70% 40% 60%;
  }
}

/* Perspective Zoom on Scroll */
.zoom-scroll {
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

/* 3D Flip Card */
.flip-card {
  perspective: 1500px;
  transform-style: preserve-3d;
}

.flip-card-inner {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

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

/* SVG Drawing Animation */
.draw-svg path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 3s ease-out forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Elastic Bounce */
@keyframes elastic-bounce {
  0%, 100% { transform: scale(1) translateY(0); }
  30% { transform: scale(1.1) translateY(-20px); }
  50% { transform: scale(0.95) translateY(0); }
  70% { transform: scale(1.05) translateY(-10px); }
  90% { transform: scale(0.98) translateY(0); }
}

.elastic {
  animation: elastic-bounce 2s ease-in-out infinite;
}

/* Page Transition Curtain */
.page-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #020073, #0300a8);
  transform: translateY(-100%);
  z-index: 10000;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-curtain.active {
  transform: translateY(0);
}

/* Glitch Effect */
.glitch {
  position: relative;
  animation: glitch-animation 3s infinite;
}

@keyframes glitch-animation {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(-2px, 2px); }
  92% { transform: translate(2px, -2px); }
  93% { transform: translate(-2px, -2px); }
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch::before {
  animation: glitch-before 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
  animation: glitch-after 3s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-before {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(-2px, 0); }
}

@keyframes glitch-after {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(2px, 0); }
}

.timeline-card p {
  margin: 0;
  line-height: 1.6;
  color: #333;
  font-size: 14px;
}

/* Tech Badge Pills */
.tech-badge {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(2, 0, 115, 0.1), rgba(147, 51, 234, 0.1));
  border: 1px solid rgba(2, 0, 115, 0.2);
  border-radius: 20px;
  font-size: 11px;
  margin: 5px 3px 0 0;
  color: #020073;
  font-weight: 500;
  transition: all 0.3s;
}

.tech-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 0, 115, 0.2);
  background: linear-gradient(135deg, rgba(2, 0, 115, 0.15), rgba(147, 51, 234, 0.15));
}

/* Floating Tooltip */
.floating-tooltip {
  position: absolute;
  background: rgba(2, 0, 115, 0.95);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.floating-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(2, 0, 115, 0.95);
}

.floating-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #020073;
  border-radius: 50%;
  z-index: 2;
  top: 20px;
  box-shadow: 0 0 0 0 rgba(2, 0, 115, 0.7);
  animation: pulse-dot 2s infinite;
  cursor: pointer;
  transition: all 0.3s;
}

.timeline-dot:hover {
  animation: shake-dot 0.5s ease-in-out, pulse-dot 2s infinite;
  transform: translateX(-50%) scale(1.5);
}

@keyframes shake-dot {
  0%, 100% { transform: translateX(-50%) rotate(0deg); }
  25% { transform: translateX(-50%) rotate(-10deg); }
  75% { transform: translateX(-50%) rotate(10deg); }
}

.timeline-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #020073;
  animation: ripple 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(2, 0, 115, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(2, 0, 115, 0);
  }
}

@keyframes ripple {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 250%;
    height: 250%;
    opacity: 0;
  }
}

/*title*/

.title3 .line1,
.title3 .line2,
.title3 .line3,
.title3 .line4,
.title3 .line9,
.title3 .line10 {
  display: none;
}

.title3 .line5,
.title3 .line6,
.title3 .line7,
.title3 .line8 {
  display: flex;
}

.title3 .line5 .hide,
.title3 .line6 .hide,
.title3 .line7 .hide,
.title3 .line8 .hide {
  margin-top: 1%;
  margin-left: auto;
  margin-right: 0;
  grid-row: 1;
  grid-column: 1;
  height: 85%;
  width: 100%;
  background-color: #ffffff;
  animation: typing2 0.4s forwards, blink .15s step-end infinite alternate, opt .5s forwards;
  border-left: 0px solid black;
}



.title3 .line5 p {
  opacity: 1;
}

.title3 .line5 .hide {
  animation-delay: .3s;
}

.title3 .line6 .hide {
  animation-delay: .8s;
}

.title3 .line6 p {
  animation: opl .7s forwards;
}

.title3 .line7 .hide {
  animation-delay: 1.3s;
}

.title3 .line7 p {
  animation: opl 1.2s forwards;
}

.title3 .line8 .hide {
  animation-delay: 1.8s;
}

.title3 .line8 p {
  animation: opl 1.7s forwards;
}


.title4 .line1,
.title4 .line2,
.title4 .line3,
.title4 .line4,
.title4 .line5,
.title4 .line6 {
  display: none;
}

.title4 .line7,
.title4 .line8 {
  display: flex;
}

.title4 .line7 .hide,
.title4 .line8 .hide {
  margin-top: 1%;
  margin-left: auto;
  margin-right: 0;
  grid-row: 1;
  grid-column: 1;
  height: 85%;
  width: 100%;
  background-color: #ffffff;
  animation: typing2 0.4s forwards, blink .15s step-end infinite alternate, opt .5s forwards;
  border-left: 0px solid black;
}



.title4 .line7 p {
  opacity: 1;
}

.title4 .line7 .hide {
  animation-delay: .3s;
}

.title4 .line7 .hide {
  animation-delay: .3s;
}



.title4 .line8 .hide {
  animation-delay: .8s;

}

.title4 .line8 p {
  animation: opl .7s forwards;
}

.arg {
  float: right;
  width: 200px;
}

.arg1 {
  position: sticky;
  bottom: 150px;
  float: right;
  margin-right: var(--mid);
  width: 200px;
  margin-top: var(--small);
  background-color: #F6F9F7;
  z-index: 60;
  border-radius: 5px;
  padding: 10px;
  opacity: 1;
  transition: 300ms;
}

.arg1 img {
  height: 1.5rem;
  margin: 5px
}

.dn {
  opacity: 0;
}


.design {
  width: 55vw;
  height: 80vw;
  float: left;
  bottom: 0%;
}

.design .pe,
.design .mac {
  width: 70vw;
  border-radius: 5px;
  margin-left: -80px;
}

.design .pe {
  margin-bottom: 52px;
}

.design .mac {
  position: sticky;
  bottom: -3vw;
  margin-top: -135%;
  opacity: 1;
  height: 80vw;
}

.mobile {
  width: 15vw;
  height: fit-content;
  float: right;
  margin-right: var(--small);
  position: absolute;
  right: 0px;
  bottom: 0;
  z-index: 70;
}

.mobile .pem,
.mobile .iphone {
  width: 15vw;
  border-radius: 5px;
  margin-top: -2000px;
  z-index: 5;
}

.mobile .iphone {
  position: sticky;
  opacity: 1;
  bottom: 0;
}

/*section 5*/

.sec5 {
  background-color: white;
  height: fit-content;
  width: var(--content);
  margin-top: var(--mid);
  margin-bottom: var(--small);
  margin-left: auto;
  margin-right: 0;
}

.sec5 h2 {
  font-size: 42px;
  margin-left: var(--small);
}

.sec5 h2 img {
  height: 30px;
}

.cards {
  margin-top: var(--small);
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  border-radius: 5px;
  padding-right: var(--small);
}

#next {
  height: 400px;
  width: var(--small);
  position: absolute;
  right: 0;
  z-index: 30;
}

#nextimg,
#previmg {
  position: absolute;
  visibility: hidden;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  width: 2vw;

}

#previmg.visible,
#nextimg.visible {
  visibility: visible;
  cursor: none;
}

#next img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  position: relative;
}

#next:hover {
  cursor: none;
  z-index: 30;
}

#next:hover img {
  display: none;
}

#prev {
  margin-left: calc((100vw/12)*2.5);
  ;
  height: 400px;
  width: 50px;
  position: absolute;
  left: 0;
  z-index: 60;
}

#prev:hover {
  cursor: none;
  z-index: 30;
}


.card {
  overflow: hidden;
  transition: 200ms ease-in-out;
  height: 450px;
  width: 500px;
  flex: 0 0 auto;
  position: relative;
}

.card .img {
  transition: 200ms ease-in-out;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  position: relative;
  width: 60%;
  overflow: hidden;
}

.card .img .im1 {
  animation: real 3s infinite alternate;
}

.card:hover .img .im1 {
  animation: realb 200ms forwards;
  margin-left: 0%;
  transition: 200ms;
}



@keyframes real {
  0% {
    margin-left: 0%;
  }

  40% {
    margin-left: 0%;
  }

  60% {
    margin-left: -100%;
  }

  90% {
    margin-left: -100%;
  }

  100% {
    margin-left: -100%;
  }
}

@keyframes realb {
  0% {}

  100% {
    margin-left: 0%;
  }

}

.card h4 {
  top: 0;
  left: 0;
  position: absolute;
  margin: 25px;
  font-size: 25px;
  font-weight: 300;
}


.card .lien {
  bottom: 0;
  left: 0;
  position: absolute;
  margin: 25px;
}

.card:hover .aww a {
  font-size: 20px;
}


.card .aww {
  top: 0;
  right: 0;
  position: absolute;
  margin: 25px;
}

.card .aww {
  top: 0;
  right: 0;
  position: absolute;
  margin: 25px;
}

.card .aww img {
  float: left;
  margin: 10px;
}

.card a {
  line-height: 120%;
  display: block;
  transition: 200ms ease-in-out;
}

.card .img img {
  transition: 200ms ease-in-out;
  width: 100%;
}

.card:hover {
  box-shadow: none;
  box-shadow: inset 5px 5px 40px 0px rgba(0, 0, 0, 0.066);
}

.card:hover .img {
  width: 80%;
  overflow: visible;
  transition: 200ms ease-in-out;
}

.card:hover .img img {
  transition: 200ms ease-in-out;
  width: 50%;
}

.card:hover a {
  line-height: 150%;
  font-size: 25px;
  text-decoration: underline;
  transition: 200ms ease-in-out;
}

.card a:hover {
  text-decoration: underline;
  color: #746aff;
  transition: 100ms ease-in-out;
}

.sec5 h3 {
  margin-left: var(--small);
}

.sec5 .autre a {
  color: var(--lien);
  background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
}

.sec5 .autre a:hover {
  color: var(--lien);
  text-decoration: underline;
}


/*faq*/



.title5 .line1,
.title5 .line2,
.title5 .line3,
.title5 .line4,
.title5 .line5,
.title5 .line6,
.title5 .line7,
.title5 .line8 {
  display: none;
}

.title5 .line9,
.title5 .line10 {
  display: flex;
}

.title5 .line9 .hide,
.title5 .line10 .hide {
  margin-top: 1%;
  margin-left: auto;
  margin-right: 0;
  grid-row: 1;
  grid-column: 1;
  height: 80%;
  width: 100%;
  background-color: #ffffff;
  animation: typing2 0.4s forwards, blink .15s step-end infinite alternate, opt .5s forwards;
  border-left: 0px solid black;
}



.title5 .line9 p {
  opacity: 1;
}

.title5 .line9 .hide {
  animation-delay: .3s;
}


.title5 .line10 .hide {
  animation-delay: .8s;

}

.title5 .line10 p {
  animation: opl .7s forwards;
}


.faq {
  height: fit-content;
  overflow: hidden;
  position: relative;
  margin-left: auto;
  margin-right: 0;
  width: var(--content);
}

.faq1 {
  margin-left: var(--small);
  margin-right: var(--small);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.faq1 p {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.faq h4 {
  white-space: nowrap;
  margin-top: 10px;
  margin-bottom: 0;
}

.faq .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
}

.faq img {
  height: 3vh;
}

.faq p {
  font-size: 22px;
  width: 100%;
}

.faq .hr {
  margin: var(--small);
  width: var(--small);
  height: 2px;
  border: none;
  background-color: var(--primary);
}


/*section 6*/

.sec6 {
  height: fit-content;
  width: var(--content);
  margin-left: auto;

  padding-top: var(--small);
  margin-right: 0;
}

.sec6 h1 {
  font-size: 48px;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 700px;
}

.sec6 h3 {
  margin-top: 5px;
}

.sec6 h5 {
  margin-top: 5vh;
  font-size: 32px;
  font-weight: 400;
}

.sec6 a {
  margin-top: 5vh;
  text-decoration: underline;
}

.sec6 a:hover {
  color: var(--lien);
}

.sec6 .txt {
  padding: var(--small);
  padding-top: 0;
  width: 60%;
}

.sec6 .txt p,
.sec6 .txt a {
  font-size: 22px;
}

.sec6 .comp {
  display: flex;
  margin-left: var(--small);
  margin-bottom: var(--small);
}

.sec6 .cdev {
  margin-left: 5vw;
}

.sec6 h4 {
  margin: 0px
}

.sec6 img {
  margin: 10px 10px 10px 0px;
  height: 5vh;
}


.bottom {
  bottom: 10px;
  left: 50%;
  transform: translate(0%, -50%);
  text-align: center;
  padding: 10px;
}

.sec4mobile {
  display: none;
}


.reseaux2 {
  display: none;
}

.contact .reseaux {
  display: none;
}

/* TABLETTE */

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

  .texts1 h2 {
    margin: 0px;
    font-weight: 300;
    font-size: 2.5rem;
    grid-row: 1;
    grid-column: 1;
    padding-right: 10px;
    white-space: nowrap;
  }
  .slider{ 
  display: block!important;
  }
  
  .slide-hide-mobile,
  .slide.slide-hide-mobile,
  .slides .slide-hide-mobile {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  .texts1 {
    line-height: 350%;
  }

  .men .ang {
    display: block !important;
  }

  .men {
    width: fit-content;
  }

  :root {
    --content: 100%;
    --small: calc((100vw/12)*0.5);
    --mid: calc(100vw/12);
    --big: calc((100vw/12)*2);
  }

  .reseaux img {
    padding: 20px;
    height: 7vh;
    max-height: inherit;
  }

  .contact form {
    position: relative;
  }

  .cookie-manager-btn {
    bottom: 160px !important;
    right: 20px !important;
  }

  .men img {
    height: 32px;
    width: auto;
    margin: auto;
    display: inline-block;
    object-fit: contain;
  }

  .men .drag {
    display: block;
    margin: auto;
    height: 4vw;
    margin-top: 4vh;
  }

  .men a {
    margin-top: 1vh;
    margin-right: 0;
  }

  .menu {
    right: 0%;
    left: inherit;
    height: 0;

  }

  .menu:hover {
    transform: inherit;
    left: inherit;
  }

  .menu h5,
  .menu #imgprofil,
  .menu .reseaux {
    display: none;
  }

  .menu .men {
    margin-right: 2vh;
    padding-right: 0;
    margin-top: 40vh;
    padding-bottom: 2vh;
    background: rgba(255, 255, 255, 0.76);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.2px);
    -webkit-backdrop-filter: blur(5.2px);
    border: 1px solid rgba(255, 255, 255, 0.44);
  }

  .title {
    right: var(--small);
    left: inherit;
    z-index: 100;
  }

  #boutontr {
    top: inherit;
    bottom: 5%;
    right: 5%;
  }

  .title {
    margin-right: var(--small)
  }

  .message img {
    height: 5vw;
    width: 5vw;
    margin-top: 2vh;
  }

  .message .period,
  .message .moi {
    align-items: flex-start;
    margin-left: var(--mid);
    margin-right: var(--mid);
  }

  .message h3 {
    padding: 15px 40px;
    margin: 2vh;
    border-radius: 5px;
    line-height: 130%;
    background-color: #f0f0f0;
  }

  .message br {
    content: ""
  }

  .message br:after {
    content: "\00a0"
  }

  .sec3 {
    margin-top: var(--mid);
  }

  .sec3 .ens {
    flex-direction: column;
    transform: translate(-50%, -20%) scale(1.2);
  }

  .sec3 .anal,
  .sec3 .difi {
    margin: 0;
    padding: 0;
  }

  .sec4 {
    display: block !important;
  }

  .design .pe {
    width: 110vw;
    margin: 0;
    margin-left: -7vh;
  }

  .design {
    height: 155vw;
  }

  .design .mac {
    width: 110vw;
    height: 175vw;
    margin: 0;
    margin-top: -140vw;
    margin-bottom: 100%;
    margin-left: -7vh;
  }

  #boutontr.active {
    bottom: 5%;
    right: 5%;
    top: inherit;
    scale: 1;
    transition: 300ms ease-in-out;
  }

  #realisation {
    height: 5vh;
  }

  .ang {
    display: block;
  }

  .card a {
    line-height: 150%;
    font-size: 25px;
    text-decoration: underline;
  }

  .sec6 {
    margin-top: 10vh;
  }

  .sec6 .comp {
    flex-direction: column;
  }

  .sec6 .cdev {
    margin: 0;
    margin-top: var(--small);
  }

  .contact input,
  .contact textarea {
    width: 90%;
    max-width: 100%;
  }

  .contact {
    width: 100vw;
    margin-left: 100vw;
  }

  .cactive {
    margin-left: 0vw;
  }

  .reseaux2 {
    justify-content: flex-end;
    display: flex;
  }

  .reseaux2 img {
    height: 40px;
    margin: 2vw;
  }

  .contact .input_group {
    margin: 2vh 10vw;
  }


  .mobile {
    display: none;
  }

  .contact .num {

    padding: 2vh 10vw;
    border-bottom: 1px solid gray;
    margin-bottom: 1vh;
  }


  .contact .num a h3 {
    color: var(--lien);
    margin-bottom: 5vh;
    font-size: 2rem;
  }

  .contact .num h2 {
    margin-bottom: 4vh;
  }

  .contact .reseaux {
    margin: auto;
    display: flex;
    width: 100%;
  }

  .reseaux a:hover {
    transform: inherit;
  }

  .lang {
    display: none !important;
  }

  .progress-container {
    width: 100vw;
    height: 4px;
    background: #ccc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #f1f1f1;
  }

  #awwwards {
    display: none;
  }

  #imgprofil {
    position: absolute;
    top: 5%;
    height: 15vh;
    width: 15vh;
    left: 50%;
    transform: translateX(-50%);
  }

  .s1content { 
    top: 60%; 
}

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

    .contact .num a h3 {
      font-size: 1.5rem;
    }


    .cookie-manager-btn {
      display: none!important;
    }
 


  #boutontr h4 {
    font-size: 22px;
  }

  .loading .top,
  .loading .lback,
  .loading .hide {
    margin-top: -15vh;
    height: 30vh;
    width: 50vw;
  }

  .sec6 .txt p,
  .sec6 .txt a {
    font-size: 18px;
  }

  .contact input,
  .contact textarea {
    margin: 0px;
  }


  .sec1 .it {
    height: 5vh;
    display: none;
  }

  .sec1 .item2 {
    position: absolute;
    top: 25%;
    left: 15%;
  }

  .sec1 .item8 {
    position: absolute;
    top: 5%;
    left: 70%;
  }

  .sec1 .item1 {
    position: absolute;
    top: 10%;
    left: 20%;
  }

  .contact h2,
  .contact h3 {
    margin: 10px;

  }

  .contact #err {
    color: #FF2E00;
    margin: 2px;
    margin-left: 5vh;
  }

  .contact .input_group {
    margin: 5px 10vw;
  }

  #boutontr {
    border-radius: 5px;
  }

  .men img {
    height: 10vw;
  }

  .title {
    margin-left: 7vw;
    margin-right: 0;
  }

  .title .hide {
    height: 95%;
  }

  .title h5 {
    font-size: 1.2rem;
    letter-spacing: -.7px;
    white-space: nowrap;
  }


  .men a {
    padding: 5px;
  }

  .texts1 {
    padding: 10px;
    line-height: 300%;
    border-radius: 5px;

  }

  .texttitle {
    padding: 10px;
    line-height: 150%;
  }

  .message h3 {
    font-size: 1rem;
    padding: 15px;
    margin: 2vh;
    border-radius: 5px;
    line-height: 140%;
    background-color: #f0f0f0;
    letter-spacing: -.7px;
  }

  .message img {
    height: 10vw;
    width: 10vw;
    margin-top: 2vh;
  }

  .orange {
    width: 50px;
    height: 50px;
    margin-left: -15px;
    margin-top: -15px;
  }

  .texts1 h2 {
    font-size: 1.7rem;
    letter-spacing: -.7px;
  }

  .texts1 p,
  .texttitle p {
    margin-right: 7px;
    font-size: .9rem;
  }

  .s1content {
    top: 60%;
  }

  .bottom{
    padding: 0px;
  }

  .s1content h4 {
    margin-right: 20%;
  }

  h4 {
    font-size: inherit;
  }

  .btnsec1 {
    left: 10%;
  }

  .btnsec1 p {
    display: none;
  }

  .btnsec1 p {
    display: none;
  }

  .btnsec1 img {
    margin: 0;
  }

  .sec3 .ens {
    flex-direction: column;
    transform: translate(-50%, -20%) scale(.9);
  }

  .faq1 {
    flex-direction: column;
  }

  .sec4mobile {
    margin-top: 5vh;
  }

  .faq p {
    font-size: 18px;
    margin-bottom: 10vh;
  }

  .card {
    width: 80%;
  }

  .card a {
    padding-top: 5px;
    font-size: 22px;
  }

  .card:hover {
    width: 100vw;
  }

  #rÃ©alisation {
    height: 0vh;
  }

  .arg1 p {
    font-size: 15px;
  }

  .sec6 .txt {
    width: 80vw;
  }

  .sec6 h5 {
    margin-top: 5vh;
    font-size: 20px;
    font-weight: 400;
  }

  .reseaux2 img {
    height: 30px;
    margin: 2vw;
  }

  .sec6 .comp {
    margin-bottom: 20%;
  }

  .contact {
    width: 0;
  }

  .contact form {
    margin-top: 10px
  }

  .cactive {
    width: 100vw;
  }

  .contact textarea {
    height: 50px;
  }

  .contact .cour {
    font-size: 10px;
  }

  .contact .input_group {

    margin: 5px 10vw;
  }

  .contact button[type=submit] {
    padding: 2vw;
    font-size: 20px;
    width: 100%;
    margin: 0px;
  }


  .texts1 .line3 h2 {
    padding-left: 1rem;
  }

}

}

.fade {
  background: linear-gradient(137deg, #ffffff, #b8ceff, #004fff, #ffffff);
  background-size: 240% 240%;
  animation: gradient-animation 5s ease infinite;
}

.fade2 {
  background: linear-gradient(137deg, #ffffff, #b8ceff, #002e92, #002279);
  background-size: 240% 240%;
  animation: gradient-animation 5s ease infinite;
}



.backbottom::before {
  content: "";
  height: 20vh;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(137deg, #ffffff, #ffffff, #cbdcff, #ffffff);
  background-size: 240% 240%;
  animation: gradient-animation 5s ease infinite;
}

.backbottom::after {
  content: "";
  width: 100%;
  height: 20vh;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #ffffff, #ffffff00);
  background-size: 100%;
}

.orange {
  background: linear-gradient(137deg, #ffffff, #b8ceff, #004fff, #ffffff);
  background-size: 240% 240%;
  animation: gradient-animation 5s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.secav {
  padding-bottom: 40px;
  position: relative;
  height: fit-content;
  width: var(--content);
  margin-left: auto;
  margin-right: 0;
}

.secav h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.secav h2 img {
  width: 25px;
}

.reviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 0px;
}

.review-card {
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  text-align: center;
  position: relative;
}

.review-card::after {
  content: "";
  filter: blur(10px);
  background-color: white;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}

.client-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.client-info h4 {
  margin: 5px 0;
  font-size: 1.2em;
}

.client-info p {
  color: #777;
  font-size: 1.3em;
  margin: 5px;
}

.client-review {
  font-size: 1em;
  margin-bottom: 15px;
  color: #333;
  z-index: 1;
  position: relative;
  font-weight: 500;
}

.rating img {
  width: 20px;
  height: 20px;

  z-index: 1;
  position: relative;
}


.lang {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 5px;
}

.lang a,
p {
  padding: 0px;
  margin: 0px;
}

.lang p {
  font-size: 20px;
}

.lang .active,
.lang a:hover {
  font-weight: 600;
  color: var(--primary);
}

.men .ang {
  display: none;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 350px;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 15px;
  z-index: 800;
  display: none;
}

.cookie-popup h4 {
  margin: 0;
  font-size: 16px;
}

.cookie-popup p {
  font-size: 14px;
  margin: 10px 0;
}

.cookie-popup .cookie-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cookie-popup button {
  padding: 5px 10px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.cookie-popup button:hover {
  filter: brightness(0.8);
}

.cookie-popup button.accept {
  background-color: var(--lien);
  color: white;
  border-radius: 5px;
  width: 100%;
}

.cookie-popup button.decline {
  background-color: var(--grey);
  color: black;
  border-radius: 5px;
}

.cookie-manager-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: transparent;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1;
}

.cookie-manager-btn img {
  width: 30px;
  height: 30px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.slider {
  position: relative;
  width: 80%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  height: 300px; 
  animation: 4s up2 1s forwards; 
  opacity: 0;
  display: none;
}

@keyframes up2 {
  85% {
    opacity: 0; 
  }

  100% {
    opacity: 1; 
  }
}

.slides {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slide img {
  width: 100%;
  border-radius: 10px;
  transition: transform 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide.previous {
  z-index: 0;
}

.slide.active img {
  transform: scale(1.5);  
}


@media screen and (min-height: 900px) {
  .sec6 {
    height: 95vh;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    justify-content: space-around;
  }
}





/* Styles pour la politique de confidentialitÃ© */
.privacy-policy {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.privacy-policy h1 {
    color: #333;
    margin-bottom: 2rem;
}

.privacy-policy section {
    margin-bottom: 2rem;
}

.privacy-policy h2 {
    color: #444;
    margin-bottom: 1rem;
}

.privacy-policy p, .privacy-policy ul {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-policy ul {
    padding-left: 2rem;
}

/* Styles pour la case Ã  cocher de confidentialitÃ© */
.privacy-consent {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-consent input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-consent label {
    font-size: 0.9rem;
    color: #666;
}

.privacy-consent a {
    color: #007bff;
    text-decoration: underline;
}

.privacy-consent a:hover {
    color: #0056b3;
}

/* Styles supplÃ©mentaires pour la politique de confidentialitÃ© */
.privacy-policy .last-update {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-policy .intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.privacy-policy section {
    margin-bottom: 3rem;
}

.privacy-policy section:last-child {
    margin-bottom: 4rem;
}

.privacy-policy h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.privacy-policy ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-policy ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 0 1.5rem;
    }
    
    .privacy-policy h1 {
        font-size: 1.8rem;
    }
    
    .privacy-policy h2 {
        font-size: 1.3rem;
    }
    
    .privacy-policy .intro {
        font-size: 1rem;
    }
}

/* ========== EXTREME UNFORGETTABLE ANIMATIONS ========== */

/* Mouse Particle Trails */
.mouse-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 0, 115, 0.9), rgba(0, 102, 204, 0.5), transparent);
  pointer-events: none;
  z-index: 9999;
  animation: particle-explode 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: 0 0 15px rgba(2, 0, 115, 0.6), 0 0 30px rgba(0, 102, 204, 0.3);
}

@keyframes particle-explode {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(
      calc((random() - 0.5) * 150px),
      calc((random() - 0.5) * 150px)
    ) scale(0) rotate(360deg);
    opacity: 0;
  }
}

.mouse-particle:nth-child(2n) {
  animation-duration: 1.3s;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.9), rgba(2, 0, 115, 0.5), transparent);
}

.mouse-particle:nth-child(3n) {
  animation-duration: 0.8s;
  width: 10px;
  height: 10px;
}

.mouse-particle:nth-child(4n) {
  animation-duration: 1.1s;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(2, 0, 115, 0.4), transparent);
}



/* Liquid Morphing Blobs */
.liquid-blob {
  position: fixed;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, 
    rgba(2, 0, 115, 0.05), 
    rgba(0, 102, 204, 0.08), 
    rgba(0, 170, 255, 0.05)
  );
  filter: blur(40px);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: liquid-float 20s ease-in-out infinite, liquid-morph 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

@keyframes liquid-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30vw, 20vh) rotate(120deg);
  }
  66% {
    transform: translate(-20vw, -30vh) rotate(240deg);
  }
}

@keyframes liquid-morph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: scale(1);
  }
  20% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: scale(1.1);
  }
  40% {
    border-radius: 50% 50% 20% 80% / 25% 75% 25% 75%;
    transform: scale(0.9);
  }
  60% {
    border-radius: 80% 20% 50% 50% / 75% 25% 75% 25%;
    transform: scale(1.05);
  }
  80% {
    border-radius: 40% 60% 40% 60% / 70% 30% 50% 50%;
    transform: scale(0.95);
  }
}

.liquid-blob:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.liquid-blob:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: -5s;
  animation-duration: 25s;
}

.liquid-blob:nth-child(3) {
  bottom: 15%;
  left: 50%;
  animation-delay: -10s;
  animation-duration: 30s;
}

/* Elastic Bounce for Timeline Cards */
@keyframes elastic-bounce {
  0% {
    transform: scale(0) rotate(-5deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.08) rotate(2deg);
  }
  65% {
    transform: scale(0.95) rotate(-1deg);
  }
  80% {
    transform: scale(1.02) rotate(0.5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Terminal Elastic Growth */
.terminal-showcase.elastic {
  animation: elastic-terminal 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes elastic-terminal {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  25% {
    transform: scale(1.06) translateY(-8px) rotate(1deg);
  }
  50% {
    transform: scale(0.96) translateY(4px) rotate(-0.5deg);
  }
  75% {
    transform: scale(1.03) translateY(-3px) rotate(0.5deg);
  }
}

/* Enhanced Section Transitions with Perspective */
.sec2, .sec4 {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  will-change: transform, opacity;
  transform-style: preserve-3d;
}

/* Scramble Text Styling */
.scramble-text {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-block;
  position: relative;
}

.scramble-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #020073, #0066cc, #020073);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.scramble-text:hover::after {
  transform: scaleX(1);
}

/* Glitch Effect for Special Elements */
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

.glitch-effect {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

/* Neon Pulse for Interactive Elements */
@keyframes neon-pulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(2, 0, 115, 0.5),
                0 0 10px rgba(2, 0, 115, 0.3),
                0 0 15px rgba(0, 102, 204, 0.2);
  }
  50% {
    box-shadow: 0 0 10px rgba(2, 0, 115, 0.8),
                0 0 20px rgba(2, 0, 115, 0.5),
                0 0 30px rgba(0, 102, 204, 0.4),
                0 0 40px rgba(0, 102, 204, 0.2);
  }
}

.timeline-card:hover {
  animation: neon-pulse 2s ease-in-out infinite;
}

/* Floating Animation Enhancement */
@keyframes enhanced-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .mouse-particle,
  .liquid-blob,
  .page-curtain,
  .elastic-bounce,
  .glitch-effect {
    animation: none !important;
  }
  
  .sec2, .sec4 {
    transition: none !important;
  }
}