html,
body {
  height: 100dvh;
  /* Prend en compte les barres de navigation mobiles */
  margin: 0;
  padding: 0;
  overflow: auto;
  scroll-behavior: smooth;
}

.pulsing-point {
  width: 50px;
  height: 50px;
  margin-bottom: 1.2rem;
  background-color: #00CB79;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 203, 121, 0.6);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 203, 121, 0.7);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 50px 40px rgba(0, 203, 121, 0);
    transform: scale(1.1);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 203, 121, 0);
    transform: scale(1);
  }
}

.container {
  margin: auto;
  padding: 0 1rem;
}

.content-container {
  background: linear-gradient(143deg, rgba(0, 101, 60, 1) 7%, rgba(255, 255, 255, 0) 33%, rgba(255, 255, 255, 0) 68%, rgba(0, 101, 60, 0.3358720197063201) 80%, rgba(255, 255, 255, 0) 90%);
  padding: 3rem 3rem;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 10px 20px hsla(0, 0%, 4%, 0.323);
  z-index: 1;
  margin-bottom: 3rem;

  /* Réduction de la taille du composant et de son contenu */
  transform: scale(0.70);
  /* Réduit de 0.85 point l'élément' */
}

.content-container::before {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: rgba(0, 0, 0, 0.841);
  border-radius: inherit;
  z-index: -1;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo-container svg {
  width: 200px;
  height: auto;
}

@media screen and (max-width: 525px) {
  .petit-text-sm {
    font-size: 10px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    /* Hauteur d'une ligne */
  }

  .content-container {
    padding: 30px 25px;
    width: 100%;
  }

  .container {
    margin: 0 !important;
  }
}


/* ==================
 * STYLE CTA - WHATSAPP / EMAIL
 */

.cta {
  position: relative;
  padding: 10px 14px;
  border-radius: 7px;
  border: 1px solid #FFC900;
  font-size: 14px;
  letter-spacing: 1px;
  background: transparent;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.cta:hover {
  background: #FFC900;
  box-shadow: 0 0 12px 2px rgba(255, 201, 0, 0.6);
  /* Réduction de l'effet néon */
  color: black;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}


.cta::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 25px 10px #fff;
  /* Effet plus contenu */
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

.cta:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: sh02 0.5s 0s linear;
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.cta:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}

.cta-container {
  display: inline-block;
}

.content-cta {
  display: flex;
}

.content-cta-text {
  text-align: left;
}

/* ==================
 * STYLE PAGE D'ACCUEIL
 */

.ctn-scroll {
  overflow: hidden;
}

.container-2 {
  min-width: 100dvw;
}

.content-container-2 {
  width: 100vw;
  background: linear-gradient(124deg, rgba(0, 0, 0, 1) 54%, rgba(0, 173, 103, 1) 72%, rgba(0, 0, 0, 1) 86%);
  border-bottom: none;
  /* padding, border-radius, et box-shadow sont gérés par Tailwind */
  /* margin-bottom est géré par Tailwind */
  position: relative;
  /* Nécessaire pour le pseudo-élément */
  z-index: 1;
  /* Pour s'assurer que le contenu est au-dessus du ::before */
}

.content-container-2::before {
  width: 100dvw;
  content: "";
  position: absolute;
  inset: 1px;
  /* Remplace top, right, bottom, left */
  background-color: rgba(0, 0, 0, 0.841);
  border-radius: inherit;
  /* Hérite du border-radius du parent */
  z-index: -1;
  /* Place le ::before derrière le contenu */
}

/* GLOWING EFFET SUR LES BORDURES */

.glowing-border {
  position: relative;
  overflow: hidden;
  /* Cache les débordements du pseudo-élément */
}

.glowing-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 27%, rgba(0, 173, 103, 1) 49%, rgba(0, 0, 0, 1) 79%);
  border-radius: inherit;
  z-index: -1;
  filter: blur(10px);
  /* Effet de flou pour le "glow" */
  animation: glow-animation 3s infinite alternate;
  /* Animation pour un effet dynamique */
}

@keyframes glow-animation {
  0% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

.section-logos-tech img {
  min-height: 100px;
}

/* BORDER ANIMATION*/

.card-x {
  margin: 2rem;
  padding: 2rem;
  width: 300px;
  background: #0C0C0C;
  text-align: center;
  border-radius: 10px;
  position: relative;
  transition: 40s ease-in-out;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.card-x::after,
.card-x::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), transparent, transparent, #00ad67);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  opacity: -1;
  /* Caché par défaut */
  animation: 33s spin linear infinite;
}

.card-x::before {
  filter: blur(0.5rem);
  opacity: 0;
}

.card-x:hover::after,
.card-x:hover::before {
  opacity: 1;
  /* Devient visible au hover */
}

@keyframes spin {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}


/* LE REVEAL AU HOVER DE LA SOURIS */

.reveal-container {
  position: relative;
  overflow: hidden;
}

.reveal-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: mask 0.1s ease, -webkit-mask 0.1s ease;
  /* Animation fluide */
}

.top-green-line {
  border-top: 1px solid linear-gradient(90deg, rgba(0, 0, 0, 1) 19%, rgba(0, 173, 103, 1) 49%, rgba(0, 0, 0, 1) 75%);
  ;
}

footer svg {
  color: white;
}


/* styles.css */
:root {
  --radius-lg: 1rem;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

#services {
  background-color: #000;
  padding: 6rem 1.5rem;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

#services h2:first-of-type {
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #FFC900;
  text-align: left;
}

#services h2:nth-of-type(2) {
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 600;
  color: #F3F4F6;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  #services h2:nth-of-type(2) {
    font-size: 3rem;
  }
}

#services p {
  color: #9CA3AF;
  font-size: 1.25rem;
  line-height: 2rem;
  max-width: 42rem;
  margin-top: 1.5rem;
}

.services-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    margin-top: 4rem;
  }
}

.card-wrapper {
  position: relative;
}

.card-bg {
  position: absolute;
  inset: 1px;
  background: white;
  border-radius: 1rem;
  z-index: 0;
}

.card-inner {
  position: relative;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius-lg) + 1px);
  z-index: 10;
  height: 100%;
}

.card-inner.large-left {
  border-top-left-radius: calc(2rem + 1px);
  border-bottom-left-radius: calc(2rem + 1px);
}

.card-inner.large-right {
  border-top-right-radius: calc(2rem + 1px);
  border-bottom-right-radius: calc(2rem + 1px);
}

.card-content {
  padding: 2rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.card-text {
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #9CA3AF;
  max-width: 36rem;
  text-align: center;
  margin: 0 auto;
}

.card-img {
  position: relative;
  width: 100%;
  min-height: 30rem;
  margin-top: auto;
}

.card-img img {
  position: absolute;
  top: 2.5rem;
  bottom: 0;
  left: 2.5rem;
  right: 2.5rem;
  width: calc(100% - 5rem);
  height: calc(100% - 2.5rem);
  object-fit: cover;
  object-position: top;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.code-block {
  position: absolute;
  top: 2.5rem;
  bottom: 0;
  left: 2.5rem;
  right: 0;
  background-color: #111827;
  border-top-left-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.code-tabs {
  display: flex;
  background-color: rgba(31, 41, 55, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-tabs div {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #9CA3AF;
}

.code-tabs .active {
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}