/* Variables et Reset */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root {
    --primary-color: #5865f2;
    --secondary-color: #2c2f33;
    --accent-color: #99aab5;
    --background-color: #23272a;
    --text-color: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
}
body, html {
    background: #121212 !important;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 10px; /* Largeur de la barre de défilement */
}

::-webkit-scrollbar-track {
    background: #171717; /* Couleur de fond de la piste */
    border-radius: 10px; /* Forme de la piste */
}

::-webkit-scrollbar-thumb {
    background-color: #344CB7 ; /* Couleur de la barre de défilement */
    border-radius: 10px; /* Forme de la barre de défilement */
    border: 3px solid #344CB7 ; /* Espace autour de la barre de défilement */
}
html, body {
    background: #121212 !important;
    scroll-behavior: smooth !important;
}  

body, html {
    background: #121212 !important;
    line-height: 1.6;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.logo-container {
    position: relative;
    width: 70px;
    height: 70px;
}

.logo-loader {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: pulse 2s infinite;
    border-radius: 50%;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid transparent;
    border-top-color: #f4f4f4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1000;
    padding: 1rem 0;
    height: 12vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title-navbar {
    transition: all 0.2s ease-in-out;
}
.nav-content {
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    border: 1px solid transparent;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
    margin: 1rem;
    width: 90%;
    transition: all 0.2s ease-in-out;
    height: 95%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo span {
    font-size: 1.1em;
    font-weight: 700;
    color: #ffffff;
}

.burger-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Section des boutons */
.button_section {
    display: flex;
    gap: 1rem;
    margin-left: 20v;
}

.invite-btn {
    background-color: #344CB7 !important;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: box-shadow 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    width: 200px;
    overflow: hidden;
}

.invite-btn .text {
    transition: opacity 0.3s ease-in-out;
}

.invite-btn i {
    font-size: 1.4rem;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.invite-btn:hover .text {
    opacity: 0;
}

.invite-btn:hover i {
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive */
@media screen and (max-width: 900px) {
    .button_section {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        right: unset;
        position: absolute;
        top: 10vh;
        background-color: #ffffff;
        border-radius:  0 0 10px 10px;
        /* padding: 10px; */
        width: 90%;
    }
    .button_section .invite-btn:nth-child(3) {
        background: white;
        color: #5865f2;
    }
    .button_section.active {
        padding-top: 30px;
        padding-bottom: 30px;
        display: flex;
    }
    #no-active {
        display: none;
    }
    .burger-menu {
        display: block;
    }
    .burger-menu i {
        color: #5020F4;
    }
    
    .invite-btn .text {
        opacity: 1;
    }
    
    .invite-btn i {
        opacity: 1;
        transform: scale(1.2);
    }
}
.container-stats {
    margin-bottom: 5vh;
}
/* Hero Section */
.hero {
    height: 79vh;
    width: 100vw !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 11vh;
    background: #121212;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}
.accueil_opacity {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    background-color: #121212;
}
.hero-content {
    flex: 1;
    padding-right: 2rem;
    max-width: 44rem;
    font-family: "Montserrat", sans-serif;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3em;
    position: relative;
    z-index: 99;
}
.hero-content span {
    background: linear-gradient(90deg,rgba(52, 76, 183, 1) 0%, rgba(131, 170, 242, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Pour compatibilité Firefox */
    background-clip: text;
    color: transparent;
}


.hero p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-left: 3px;
    width: 80%;
    text-align: end;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    width: 80%;
    justify-content: end;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    width: 200px; /* Taille fixe pour éviter les bugs */
    height: 50px;
    overflow: hidden;
}

/* Style du bouton principal */
.primary-btn {
    background-color: #5020F4;
    color: white;
    border: 2px solid transparent;
}

.secondary-btn {
    background-color: transparent;
    color: #5020F4;
    border: 2px solid #5020F4;
}

/* Gestion de l'icône */
.invite-btn i {
    font-size: 1.4rem;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Gestion du texte */
.invite-btn .text {
    transition: opacity 0.3s ease-in-out;
}

/* Effet au survol */
.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    width: 200px; /* Taille fixe pour éviter les bugs */
    height: 47px;
    overflow: hidden;
}

/* Style du bouton "Ajouter au Serveur" */
.primary-btn {
    background-color: #5020F4;
    color: white;
    border: 2px solid transparent;
}

/* Style du bouton "Documentation" */
.secondary-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

/* Icônes des boutons */
.invite-btn i, .doc-btn i {
    font-size: 1.4rem;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Texte des boutons */
.invite-btn .text, .doc-btn .text {
    transition: opacity 0.3s ease-in-out;
}

/* Effet au survol */
.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-2px);
}

/* Effet spécifique au bouton "Ajouter au Serveur" */
.primary-btn:hover {
    background: #ffffff;
    border: 2px solid #5020F4;
    color: #5020F4;
}

.primary-btn:hover .text {
    opacity: 0;
}

.primary-btn:hover i {
    opacity: 1;
    transform: scale(1.2);
    color: white !important;
}
/* Partner Section */
/* Partner Section */
.partner {
    width: 100vw;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 99;
}

.partner .partner_resize {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #5020F4;
    position: relative;
    overflow: hidden; /* Assure que rien ne déborde */
}

.partner .partner_resize .partner-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    width: max-content;
    will-change: transform;
}

.partner .partner_resize .partner-grid .partner-card {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1; /* Largeur fixe pour les cartes */
}

.partner .partner_resize .partner-grid .partner-card img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.partner .partner_resize .partner-grid .partner-card:hover {
    transform: scale(1.05);
}

/* Div centrale "Ils nous font confiance" */
.partner .partner_resize .partner-card.trusus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25vw;
    height: 100%;
    background: #040315;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.trusus h1 {
    font-family: sans-serif;
    font-weight: bold;
    font-size: 1.6rem;
    color: #fffefe;
    text-align: center;
    margin: 0;
}

/* Pause au survol (optionnel) */
.partner:hover .partner-grid {
    animation-play-state: paused;
}

/* Supprimer les styles spécifiques inutiles */
.frenchgg, .frenchcorp {
    height: 100% !important;
}

.frenchgg img, .frenchcorp img {
    height: 100% !important;
}

.banner-section {
    width: 100vw;
    /* height: 60vh; */
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    flex-direction: column;
    margin-top: 10vh;
}
.banner-section .banner-resize {
    width: 90%;
    height: 35vh;
    display: none;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 0;
}
.banner-section .banner-resize .banner {
    width: 100%;
    height: 100%;
    background: url("./public/upload/img/cover_dispatchio.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-top: 0;
    border-bottom: 0;
    padding-top: 1vh;
}
/* Effet spécifique au bouton "Documentation" */
.secondary-btn:hover {
    background: none !important;
    border-color: #ffffff;
    color: #ffffff;
}

.secondary-btn:hover .text {
    opacity: 0;
}

.secondary-btn:hover i {
    opacity: 1;
    transform: scale(1.2);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-right: 1em;
    flex-direction: column;
    position: relative;
    z-index: 99;
}

.hero-image img {
    max-width: 60%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    width: 100vw;
    height: 100vh;
    background-position: right;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.features_opacity{
    width: 100%;
    background-color: rgb(10 10 10 / 80%);
    height: 100%;
    padding: 6rem 2rem;
}
.feature_resize {
    margin: 0 auto;
    max-width: 90vw;
    padding: 6rem 2rem;
}
.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 6rem;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px;
    justify-content: center; /* Centre les colonnes si elles sont plus petites que le conteneur */
}

.feature-card {
    width: 100%;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.feature-card:hover{
    transform: translateY(-10px)
}

.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.feature-card.active .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out;
    padding: 15px;
}

.card-front {
    background: rgb(37 38 51);
    color: white;
}

.card-front i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #5020F4;
}

.card-front h3 {
    font-size: 18px;
    font-weight: bold;
}

.card-back {
    background:rgb(37 38 51);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Permet de placer le texte en haut et l'icône + titre en bas */
    padding: 15px;
}

.card-back p {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-back .card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.card-back .card-footer i {
    font-size: 20px;
}


/* Statistics Section */
.statistics {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    width: 85%;
    background: #ffffff;
    border-top: 0;
}

.stat-item {display: flex;text-align: center;justify-content: center;align-items: center;}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #09064d;
    display: flex;
    align-items: baseline;
}
.stat-numbers {
    font-size: 3rem;
    font-weight: 700;
    color: #09064d;
    display: block;
    display: flex;
    align-items: start;
}
.stat-label {
    display: flex;
    font-size: 1.2rem;
    color: #2a41d3;
    margin-left: 5px;
}

/* Section Documentation */
.documentation {
    width: 100vw;
    height: 30vh;
    display: flex;
    text-align: center;
    justify-content: start;
    align-items: center;
}

.documentation-section {
    width: calc(100% - 10px);
    background: rgb(255 255 255);
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .nav-card {
    background: rgb(37 38 51);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    max-height: 50%;
    width: 30vw;
  }
  
  .nav-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
  }
  
  .nav-card h2 {
    font-size: 1.5rem;
    color: #ffffff;
  }
  
  .nav-card p {
    color: rgba(255, 255, 255, 0.7);
  }
  
  @media (prefers-color-scheme: light) {
    body {
      background-color: #ffffff;
      color: #213547;
    }
    
    .nav-card {
      background: rgba(0, 0, 0, 0.05);
    }
    
    .nav-card:hover {
      background: rgba(0, 0, 0, 0.08);
    }
    
    .nav-card p {
      color: rgba(0, 0, 0, 0.7);
    }
  }


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        max-width: 100vw;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        max-width: 90vw;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
    }
    
    .accueil_opacity {
        min-height: 100vh;
        padding: 0 !important;
        justify-content: center;
        align-items: center;
    }
    .hero-content{
        padding-top: 10vh;
    }
    .hero-image{
        display: none !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    footer {
        padding: 4rem 1rem 2rem;
    }
}
@media (max-width: 1200px) {
    .documentation-section {
        display: none;
      }
}
.cards {
  width: calc(100% - 2em);
  display: grid;
  grid-template-columns: repeat(4, 25%);
  grid-template-rows: repeat(2, 50%);
  grid-template-areas:
    "a a b c"
    "a a d d";
  width: 85%;
  box-sizing: content-box;
}
.card {
  width: 100%;
  position: relative;
  transition: all 0.25s ease;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  box-sizing: content-box;
}
.card:before {
  height: 0;
  content: "";
  display: block;
  padding-bottom: 47.36%;
  box-sizing: content-box;
}
.card.content:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
}
.card:nth-child(1) {
  grid-area: a;
  border: 1px solid transparent;
  border-radius: 20px 0 0 0;
}
.card:nth-child(2) {
  grid-area: b;
}
.card:nth-child(3) {
  grid-area: c;
}
.card:nth-child(4) {
  grid-area: d;
}
.card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  box-sizing: content-box;
}
.card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  box-sizing: border-box;
  border-radius: 20px 0 0 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-label {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  background: #089f8a;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.7em;
  color: white;
  padding: 0.5em;
}
.card-title {
  left: 1em;
  /* bottom: 1em; */
  max-width: 85%;
  z-index: 5;
  font-size: 1em;
}
.card.form {
  position: relative;
}
.card.form:before {
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
}
.card.form:after {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  width: calc(100% - 1em);
  height: calc(100% - 1em);
  content: "";
  background: #252833;
}
.card.form .form-title {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 7vw;
  font-weight: 900;
  z-index: 5;
  text-transform: uppercase;
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.card.form .form-title:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  content: "Docu...";
  opacity: 0.5;
  filter: blur(10px);
  transition: all 0.25s ease;
  z-index: 2;
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  transform: translateX(-50%) translateY(-50%);
}
.card:nth-child(2) .card-label {
  background: #ef4e7b;
}
.card:nth-child(3) .card-label {
  background: #1098ad;
}
.container {
    max-width: 100vw;
    margin: 0 auto;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-section {
    text-align: left;
    margin-bottom: 85px;
}

.header-subtext {
    color: #5020F4;
    font-size: 14px;
    text-transform: uppercase;
}

.header-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
    line-height: 1.2;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card-item {
    border: 1px solid #e5e7eb;
    border-top:  0;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    border-right: 0;
    border-bottom: 0;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    font-size: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #09064d;
}
.card-icon i{
    font-size: 4vh;
    color: white;
}

.card-icon::before {
}

.card-title {
    color: #81a8f1;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
}

.card-text {
    color: #dee0e7;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
.container-features {
    width: 100vw;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 99;
}
.features-resize {
    width: 80%;
    height: auto;
}
.stripe-container {
  max-width: 86%;
  margin: 0 auto;
  padding: 40px;
  font-family: Arial, sans-serif;
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 99;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.stripe-header {
  flex: 3;
  text-align: left;
}

.stripe-title {
  color: #80a6ef;
  font-size: 28px;
  margin: 0 0 15px 0;
  line-height: 1.3;
  font-weight: 700;
  margin-top: 10vh;
}

.stripe-description {
  color: #dee0e7;
  font-size: 16px;
  line-height: 1.6;
}

.highlight {
  color: #1a0dab;
  font-weight: normal;
}

.app-cards {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 350px;
  margin-left: auto;
}

.app-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.app-icon {
  width: 40px;
  height: 40px;
}

.app-content {
  flex: 1;
}

.app-name {
  color: #09064d;
  font-size: 18px;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.app-desc {
  color: #2f3239;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.stripe-describe-image {
    margin-top: 4%;
    width: 100%;
    height: 50vh;
}
.stripe-describe-image .describe-image {
    width: 100%;
    height: 100%;
    background: url('./public/upload/img/cover_dispatchio.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid transparent;
    border-radius: 10px;
}
.app-card i{
    font-size: 30px;
    color: #09064d;
}
.dynamic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    pointer-events: none;
    transition: background 0.3s ease;
}
canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}
canvas:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 60px; /* zone floue */
    pointer-events: none;
    backdrop-filter: blur(8px);
    /* Pour certains navigateurs, ajoute un fond transparent semi-opaque pour que le blur soit visible */
    background: rgba(255, 255, 255, 0.1);
}
.container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.statistiques {
    width: 100vw;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 99;
}
.container-stat {
    font-size: 5rem;
    font-weight: bold;
    color: #ff6f61;
    margin: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.stats.active {
    opacity: 1;
}

.description {
    font-size: 1.2rem;
    color: #ebebeb;
    opacity: 0;
    transition: opacity 0.5s;
}

.description.active {
    opacity: 1;
}
.stat {
    font-weight: bold;
    font-size: 5vw;
    color: #ffffff;
    text-align: center;
}

.help-container {
    background: rgb(18 18 19);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.help-container .help-opacity {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 99;
}
.help-container .help-opacity .resize{
    width: 80%;
    height: 100%;
    color: rgb(29, 31, 39);
    margin: 0;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 5vh;
}

.main-title {
    font-size: 2.5em;
    color: #80a6ef;
}
.subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #ffffff;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}
.card-help {
    background-color: white;
    border-radius: 10px 10px 10px 0px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.card-title-help {
    font-size: 1.2em;
    margin-bottom: 10px;
}
.card-text-help {
    font-size: 0.9em;
    color: #4a4a4a;
    margin-bottom: 15px;
}
.card-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}
.card-link:hover {
    text-decoration: underline;
}
.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}
.container-adding {
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10vh;
    margin-bottom: 10vh;
}
.adding-resize {
    width: 75%;
    padding: 5vw;
    padding-left: 10vw;
    border-radius: 10px;
    background: white;
    box-shadow: 0 10px 16px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 999;
}
.heading {
    color: #1a2a44;
    font-size: 2.5vw;
    font-weight: 1000;
}
.subtext {
    color: #445670;
    font-size: 16px;
    margin-bottom: 20px;
}
.start-button {
    background-color: #344CB7;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}
.start-button:hover {
    background-color: #09064d;
}
.section_exemple {
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    width: 50%;
    flex-wrap: wrap;
    height: 49vh;
    align-items: center;
    justify-content: center;
    width: 100vw;
    gap: 5vw;
    position: relative;
    z-index: 99;
}
.section_expl {
      flex: 1;
      width: 75%;
      height: 100%;
      padding: 20px;
      /* background: #ffffff; */
      border-radius: 10px;
      box-sizing: border-box;
    }
.section.full-width {
    max-width: 100%;
}
.log-entry, .protection-item, .report-item {
    background: #2a2a2a;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: relative;
}
.log-entry {
    border-left: 4px solid #a600ff;
}
.log-entry .details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    padding-left: 10px;
}
.log-entry .details span {
    color: #a0a0a0;
    font-size: 12px;
}
.log-entry .details .placeholder {
    display: inline-block;
    width: 100px;
    height: 10px;
    background: #555;
    border-radius: 2px;
}
.log-entry span, .protection-item span, .report-item span {
    color: #fff;
    font-size: 14px;
}
.log-entry .user {
    color: #a0a0a0;
}
.log-entry .executor {
    color: #a600ff;
}
.protection-item .action {
    color: #00ff00;
}
.report-item {
    justify-content: space-between;
}
.report-item .report-btn {
    background: #2a2a2a;
    border: none;
    color: #a600ff;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.exemple_resize {
    width: 81vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5vh;
}
.chat-container {
    width: 100%;
    background: rgba(40, 40, 40, 0.9);
    border-radius: 10px;
    padding: 15px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-top: 2vw;
}
.chat-container::after {
    content: "✨";
    position: absolute;
    top: -25px;
    right: -10px;
    font-size: 2vw;
    color: #6a5acd;
}
.message {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
    margin: 30px;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
}
.probot .avatar {
    background-color: #a855f7;
}
.pablo .avatar {
    background-color: #4b5563;
}
.message-content {
    flex: 1;
}
.message-header {
    display: flex;
    align-items: center;
}
.username {
    color: white;
    font-weight: bold;
    margin-right: 5px;
}
.timestamp {
    color: #9ca3af;
    font-size: 12px;
}
.message-text {
    color: white;
    font-size: 14px;
}
.message-text a {
    color: #60a5fa;
    text-decoration: none;
}
.message-text a:hover {
    text-decoration: underline;
}
.exemple-title {
    font-weight: 1000;
    color: #80a6ef;
}
.exemple-description {
    color: #ffffff;
}
.no-margin {
    margin: 0;
}
.container_separator {
    width: 100%;
    height: 1px;
    background: #4c4c4c;
    margin-bottom: 10px;
}
.logs::after {
    content: '📁' !important;
}
.latence::after {
    content: '🛜' !important;
}

.footer {
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 99;
}
.footer-center {
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    padding: 40px;
    color: #d3d3d3;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-width: 90%;
    margin-top: 3vh;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: #1a2a44;
    font-size: 1.2em;
    margin-bottom: 0.5vh;
    font-weight: bold;
    display: flex;
}

.footer-section h3 span{
    margin-right: 8px;
    max-width: 30px;
}
.footer-section h3 span img{
    max-width: 30px;
    border-radius: 100%;
}

.footer-section p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #5d5d5d;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #0c084c;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #344cb7;
}

.footer-language {
    margin-top: auto;
}

.footer-language select {
    background: #1a1a3d;
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 8px 30px 8px 8px;
    font-size: 0.9em;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.footer-language select:focus {
    outline: none;
    border-color: #666;
}
.section1 {
    width: 1px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
}
.scrollTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: #344cb7;
    color: #fff;
    border: none;
    border-radius: 50%;
    opacity: 0;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .dynamic-bg {
        display: none;
    }
}
@media screen and (max-width: 900px) {
    .hero-image {
        display: none;
    }
    .hero {
        height: 70vh !important;
        overflow: hidden;
    }
    .accueil_opacity {
        height: 100vh !important;
        overflow: hidden;
        margin: 0;
    }
    .partner {
        /* position: absolute; */
        bottom: 0;
        right: 0;
        z-index: 999;
    }
    .container-features {
        margin-top: 5vh !important;
        flex-direction: column;
        height: auto;
    }
    .features-resize {
        display: flex;
        flex-direction: column;
    }
    .stripe-container {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 5vw
    }
    .section_exemple {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 5vw
    }
    .exemple_resize {
        flex-direction: column;
    }
    .section_expl {
        width: 100%;
    }
    .chat-container {
        margin-top: 5vh;
    }
    .chat-container::after {
        content: '' !important;
    }
    .description {
        font-size: 3vw;
        max-width: 80%;
        color: #ebebeb;
        opacity: 0;
        transition: opacity 0.5s;
        text-align: center;
    }
    .statistiques {
        justify-content: center;
    }
    .container-stats {
        margin-top: 10vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .stat {
        font-size: 15vw;
    }
    .help-container{
        flex-direction: column;
        height: auto;
    }
    .help-container .help-opacity .resize{
        padding: 0;
        align-items: center;
    }
    .footer {
        padding: 0;
        width: 100vw;
    }
    .footer-center {
        max-width: 100%;
    }
    .heading {
        color: #1a2a44;
        font-size: 5vw;
        font-weight: 1000;
        margin-bottom: 1vh;
    }
    .subtext {
        color: #1a2a44;
        font-size: 3vw;
        max-width: 80%;
    }
}
@media screen and (max-width: 600px) {
    .nav_version {
        display: none;
        padding: 0;
        margin: 0;
    }
    .logo {
        gap: 1vw;
        font-size: 3vw;
    }
    .nav-content {
        justify-content: center;
        justify-content: space-between;
        padding: 0;
        padding: 4vh;
    }
    .card-grid {
        display: flex;
        flex-direction: column;
    }
}
@media (max-height: 800px){
    .nav-content {
        padding-top: 5vh;
        padding-bottom: 5vh;
        margin-top: 5vh;
    }
}
/* From Uiverse.io by mobinkakei */ 
.loader {
  position: relative;
  width: 108px;
  display: flex;
  justify-content: space-between;
}
.loader::after,
.loader::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #fff;
  background-image: radial-gradient(circle 14px, #0d161b 100%, transparent 0);
  background-repeat: no-repeat;
  border-radius: 50%;
  animation: eyeMove 10s infinite, blink 10s infinite;
}
@keyframes eyeMove {
  0%,
  10% {
    background-position: 0px 0px;
  }
  13%,
  40% {
    background-position: -15px 0px;
  }
  43%,
  70% {
    background-position: 15px 0px;
  }
  73%,
  90% {
    background-position: 0px 15px;
  }
  93%,
  100% {
    background-position: 0px 0px;
  }
}
@keyframes blink {
  0%,
  10%,
  12%,
  20%,
  22%,
  40%,
  42%,
  60%,
  62%,
  70%,
  72%,
  90%,
  92%,
  98%,
  100% {
    height: 48px;
  }
  11%,
  21%,
  41%,
  61%,
  71%,
  91%,
  99% {
    height: 18px;
  }
}