
/* =================== ANIMATIONS =================== */
   .about-us {
        padding: 50px;
        background: floralwhite;
    }
    .text-content {
    max-width: 500px;
    margin: 0 auto;
    }

    .about-label {
    color: #d08c47;
    font-weight: 600;
    text-align: center;
    }

    .greeting {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: -10px;
    }

    .name {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    }

    .description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
    }

    .contact-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #ff865e;
    color: #000;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
    }

    .contact-btn:hover {
    background-color: #ff5722;
    color: white;
    }
    .parent{
        text-align: right;
    }
    .why-alignable h1 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center
    }

    .features-grid {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width:90%;
    justify-content:center;
    margin: 0 auto;
    }

    .feature {
    
    background-color: white;
    padding: 20px 5px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
    }

    .feature:hover {
    transform: translateY(-5px);
    }

    .feature img {
    height: 50px;
    margin-bottom: 20px;
    margin: 0 auto;
    }

    .feature h2 {
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: center
    }

    .feature p {
    font-size: 14px;
    color: #666;
    text-align: center;
    }
@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =================== GÉNÉRAL =================== */
body {
  margin: 0;
  font-family: var(--font-sans), sans-serif;
  background-color: #f0f4f8;
}

.logo {
  height: 100px;
  background-color: black;
}

/* =================== HERO SECTION =================== */
.hero-section {
  position: relative;
  height: 100vh;
  color: white;
  background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 88%)),
              url(/images/pc.jpg) no-repeat center center / cover;
}

.hero-title {
  animation: slideFromLeft 1s ease-out forwards;
  opacity: 0;
  font-size: calc(3rem + 2vw);
}

.hero-content {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  font-size: 2rem;
}

/* =================== NAVBAR =================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 5px 20px;
  background-color: rgba(3, 3, 3, 56%);
  box-shadow: rgba(0, 0, 0, 0.76) 0px 4px 6px -1px,
              rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.navbar.sticky {
  position: fixed !important;
  background-color: rgb(0, 0, 0);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.navbar-left,
.navbar-center {
  display: flex;
  align-items: center;
}

.navbar-center {
  flex: 1;
  justify-content: center;
  gap: 0px;
}


.navbar a {
  display: block;
  text-align: center;
  padding: 5px 20px;
  text-decoration: none;
  font-weight: bold;
  color: #39cb7b;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

.navbar a.active,
.navbar a:hover {
  border-bottom: 2px solid #39cb7b;
}

.navbar-links-wrapper {
    width: 55%;
    margin: auto;
  }
/* =================== BOUTONS =================== */
.btn {
  position: relative;
  padding: 0.5rem 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}

.matrix {
  background: #fff00;
  border: 2px solid #39cb7b;
  color: #39cb7b;
}

.btn-Send {
  border-radius: 0rem;
  color: #ffffff;
  background: #0c3d28;
  padding: 10px 25px;
  font-size: 25px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-Send:hover {
  background: #145c3e;
  transform: scale(1.05);
}

/* =================== CODE RAIN =================== */
.code-rain {
  color: white;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(38 185 91 / 14%) 0%, rgb(52 177 119 / 10%) 50%, rgb(63 171 92 / 17%) 100%);
  opacity: 0;
  transition: 0.3s;
}

.matrix:hover .code-rain {
  opacity: 1;
  animation: rain 1s linear infinite;
}

/* =================== SECTIONS FULLSCREEN =================== */
.fullscreen-section {
  overflow: hidden;
  width: 90%;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin: auto;
  text-align: center;
  padding: 15px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.fullscreen-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-section.hidden {
  opacity: 0;
  transform: translateY(50px);
}

/* =================== CARTES AVEC IMAGES =================== */
.bg-card-1 {
  background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 88%)), url(/images/global.jpg) no-repeat center center / cover;
  color: white;
}
.bg-card-2 {
  background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 88%)), url(/images/solution.jpg) no-repeat center center / cover;
  color: white;
}
.bg-card-3 {
  background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 88%)), url(/images/security.jpg) no-repeat center center / cover;
  color: white;
}
.bg-card-4 {
  background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 88%)), url(/images/innovation.jpg) no-repeat center center / cover;
  color: white;
}
.bg-card-5 {
  background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 88%)), url(/images/team.jpg) no-repeat center center / cover;
  color: white;
}
.bg-card-6 {
  background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 88%)), url(/images/growth.jpg) no-repeat center center / cover;
  color: white;
}

/* =================== TEXTES ET CARDS =================== */
.text-muted p {
  color: white;
}

.card h5 {
  color: #00ff73;
}

.content-section {
  padding: 2rem;
  background-color: #f8f9fa;
  color: #212529;
}

.card {
  box-sizing: border-box;
  border: none;
  animation: fadeInUp 3s ease-out forwards;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0rem;
  margin: 0rem;
}

.cards {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.icon-metric {
  width: 30%;
}

/* =================== CHOOSE US =================== */
.Choose-Us {
  width: 90%;
  margin: -35px auto 2rem auto;
  background-color: #8487752e;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 5;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
              rgba(0, 0, 0, 0.12) 0px -12px 30px,
              rgba(0, 0, 0, 0.12) 0px 4px 6px,
              rgba(0, 0, 0, 0.17) 0px 12px 13px,
              rgba(0, 0, 0, 0.09) 0px -3px 5px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.Choose-Us.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================== WHY CARD =================== */
.why-card {
  background-color: #aedbb02b;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.why-card p {
  color: white;
}

.icon {
  transition: transform 0.3s ease;
}

.why-card:hover .icon {
  transform: scale(1.1);
}
/*========================WORK PROCESS=======================*/
.step-box {
  width: 18%;
  min-width: 150px;
  position: relative;
  z-index: 2;
  padding: 20px 10px;
  opacity: 0;
  transform: translateY(20px);
  /*animation: fadeInUp 1s forwards;*/
}

.step-circle {
  width: 50px;
  height: 50px;
  background-color: #39cb7b;
  color: white;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.progress-line {
  position: absolute;
  top: 40px; /* height of .step-circle + margin */
  left: 9%;
  width: 82%;
  height: 4px;
  background-color: #d9d9d9;
  z-index: 1;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 4s ease-out, transform 2s ease-out;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*======================technologie================ */@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

.tech-logo-loop {
  opacity: 0;
  animation: fadeInOut 4s ease-in-out infinite;
}

/* =================== MENU ICON =================== */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  color: #39cb7b;
  z-index: 20;
}

/* =================== RESPONSIVE =================== */

@media (max-width: 900px) {
  .menu-icon {
    display: block;
  }

  .navbar-links-wrapper {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
    z-index: 999;
  }

  .navbar.responsive .navbar-links-wrapper {
    display: flex;
  }

  .navbar-center {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .navbar a {
    padding: 10px;
    font-size: 1.1rem;
  }
  .services{
    margin:0rem 2rem;
  }

  .services h3{
    text-align:center;
  }
}

/* =================== CONTACT US =================== */
.border {
  margin: auto;
  height: 10px;
  background: linear-gradient(102deg, rgb(12 44 33) 0%, rgb(14 91 55) 45%, rgb(57 203 123 / 48%) 100%);
  }

.form-feedback {
  color: #dc3545;
  margin-top: 0.5rem;
}

.form-success {
  color: #28a745;
}

.form__group {
  position: relative;
  padding: 15px 0 0;
  margin-top: 10px;
  width: 95%;
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 2px solid black;
  outline: 0;
  font-size: 1.3rem;
  color: black;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;

  &::placeholder {
    color: transparent;
  }

  &:placeholder-shown ~ .form__label {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
  }
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 1rem;
  color: black;
}

.form__field:focus {
  ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #11998e;
    font-weight:700;
  }
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  border-image: linear-gradient(to right, #11998e,#38ef7d);
  border-image-slice: 1;
}

/* reset input */
.form__field{
  &:required,&:invalid { box-shadow:none; }
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #333;
}

.circle-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(255 255 255);
  color: #0d5a36;
  font-size: 20px;
}

.map{
  background: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), /* ← ici on ajoute un voile noir semi-transparent */
  url(/images/green.jpg) no-repeat center center / cover;
}

