*{
    box-sizing: border-box;
}
.header_top{
    min-height: 800px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    display: flex;
    align-items: center;
    padding-left: 10%;
    padding-right: 10%;
    position: relative;
    overflow: hidden;
}

/* Ajout d'un effet de particules subtiles en arrière-plan */
.header_top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(10, 10, 132, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.header_top .contain_element{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.header_top .contain_element .header_left{
    width: 51vw;
    height: 750px;
    background: linear-gradient(135deg, #0a0a84 0%, #1a1aa4 50%, #0a0a84 100%);
    padding-right: 230px;
    display: flex;
    align-items: center;
    border-radius: 20px 0 0 20px;
    box-shadow:
        0 20px 60px rgba(10, 10, 132, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

/* Effet de brillance subtile */
.header_top .contain_element .header_left::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.header_top .contain_element .header_left .contain_text_01 {
    padding-left: 55px;
    position: relative;
    z-index: 2;
}

.header_top .contain_element .header_left .contain_text_01 h1{
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(135deg,
        #ffffff 0%,
        #00D9FF 25%,
        #FFB84D 50%,
        #ffffff 75%,
        #00D9FF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border-left: 5px solid #FFB84D;
    padding-left: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 2px 20px rgba(0, 217, 255, 0.4));
    position: relative;
    animation: titleGradient 6s ease infinite, titleSlideIn 1s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Animation du gradient */
@keyframes titleGradient {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Animation d'entrée */
@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Style pour le curseur clignotant */
.header_top .contain_element .header_left .contain_text_01 h1.typing::after{
    content: '|';
    color: #FFB84D;
    animation: blink 0.8s infinite;
    margin-left: 5px;
    -webkit-text-fill-color: #FFB84D;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.header_top .contain_element .header_left .contain_text_01  p.text_01{
    font-size: 24px;
    font-weight: 600;
    color: #00D9FF;
    margin-top: 45px;
    line-height: 1.4;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 10px rgba(0, 217, 255, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.5s forwards;
}

.header_top .contain_element .header_left .contain_text_01  p.text_02{
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    margin-bottom: 45px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2s forwards;
}

.header_top .contain_element .header_left .contain_lien{
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2.5s forwards;
}

/* Animation fade in avec montée */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header_top .contain_element .header_left .contain_lien a{
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #FFA215 0%, #B06509 100%);
    padding: 18px 45px;
    position: relative;
    display: inline-flex;
    border-radius: 50px;
    border: none;
    box-shadow:
        0 10px 30px rgba(255, 184, 77, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.header_top .contain_element .header_left .contain_lien a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header_top .contain_element .header_left .contain_lien a:hover {
    transform: translateY(-2px);
    box-shadow:
        0 15px 40px rgba(255, 184, 77, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.header_top .contain_element .header_left .contain_lien a:hover::before {
    opacity: 1;
}

.header_top .contain_element .header_left .contain_lien a:active {
    transform: translateY(0);
}

.header_top .contain_element .header_right{
    background-color: transparent;
    min-height: 450px;
    max-width: 43vw;
    width: 100%;
    margin-left: -150px;
    position: relative;
}

.header_top .contain_element .header_right .contain_top_right{
    min-height: 470px;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 20px;
}

.header_top .contain_element .header_right .contain_top_right .contain_00{
    height: 200px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

/* Animation d'apparition avec scale pour les images */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Délais d'animation pour chaque image */
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_01 {
    animation-delay: 1.2s;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_02 {
    animation-delay: 1.35s;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_03 {
    animation-delay: 1.5s;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_04 {
    animation-delay: 1.65s;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_05 {
    animation-delay: 1.8s;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_06 {
    animation-delay: 1.95s;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_07 {
    animation-delay: 2.1s;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_08 {
    animation-delay: 2.25s;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_09 {
    animation-delay: 2.4s;
}

.header_top .contain_element .header_right .contain_top_right .contain_00::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 132, 0.7) 0%, rgba(10, 10, 132, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    z-index: 1;
}

.header_top .contain_element .header_right .contain_top_right .contain_00:hover::after {
    opacity: 1;
}

.header_top .contain_element .header_right .contain_top_right .contain_00 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header_top .contain_element .header_right .contain_top_right .contain_00:hover img{
    transform: scale(1.08);
}

.header_top .contain_element .header_right .contain_top_right .contain_00 .contain_text_00{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10, 10, 132, 0.85) 0%, rgba(26, 26, 164, 0.75) 100%);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.header_top .contain_element .header_right .contain_top_right .contain_00:hover .contain_text_00{
    opacity: 1;
}

.header_top .contain_element .header_right .contain_top_right .contain_00:hover{
    transform: translateY(-5px);
    box-shadow:
        0 15px 40px rgba(10, 10, 132, 0.2),
        0 0 0 1px rgba(255, 255, 255, 1);
}

.header_top .contain_element .header_right .contain_top_right .contain_00 .contain_text_00 p{
    color: white;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header_top .contain_element .header_right .contain_top_right .contain_00:hover .contain_text_00 p{
    transform: translateY(0);
}

.header_top .contain_element .header_right .contain_top_right .contain_00.contain_01 {
    animation: fadeInScale 0.6s ease-out 0.2s forwards, anime_01 2s ease-in-out 3s infinite;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_03 {
    animation: fadeInScale 0.6s ease-out 0.5s forwards, anime_03 2s ease-in-out 3s infinite;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_05 {
    animation: fadeInScale 0.6s ease-out 0.8s forwards, anime_05 2s ease-in-out 3s infinite;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_07 {
    animation: fadeInScale 0.6s ease-out 0.1s forwards, anime_07 2s ease-in-out 3s infinite;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_09 {
    animation: fadeInScale 0.6s ease-out 0.4s forwards, anime_09 2s ease-in-out 3s infinite;
}
.header_top .contain_element .header_right .contain_top_right .contain_00.contain_05 img{
    object-fit: contain;
    background-color: white;
}
  
  @keyframes anime_01 {
    0%, 100% {
      transform: translate(0, 0);
    }
    50% {
        transform: translate(-15px, -15px);
    }
  }

  @keyframes anime_03 {
    0%, 100% {
      transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, -15px);
    }
  }

  @keyframes anime_05 {
    0%, 100% {
      transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
  }

  @keyframes anime_07 {
    0%, 100% {
      transform: translate(0, 0);
    }
    50% {
        transform: translate(-15px, 15px);
    }
  }

  @keyframes anime_09 {
    0%, 100% {
      transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, 15px);
    }
  }



.header_top .contain_element .header_right .contain_lien{
    padding-left: 120px;
}
.header_top .contain_element .header_right .contain_lien a{
    font-size: 16px;
    color: #0a0a84;
    text-decoration: none;
    border: 1px solid #0a0a84;
    padding: 20px 40px 20px 40px;
    position: relative;
    display: inline-flex;
    margin-top: 25px;
    border-radius: 30px;
}


/* ZONE AFFICHAGE DE BLOC */
.contain_bloc_nombre{
    width: ;
    height: 250px;
    background-color: ;
    padding: 25px;
    display: flex;
    gap: 5px;
    font-family: "Qualy";
}
.contain_bloc_nombre .contain_span {
    display: flex;
    gap: 10px;
    padding-top: 10px;

}
.contain_bloc_nombre .contain_span .span_00{
    display: inline-block;
    height: 15px;
    width: 15px;
    background-color: rgba(191, 191, 255, 0.619);
}
.contain_bloc_nombre .text_nombre{
    position: relative;
    font-family: "Qualy" !important;
    display: flex;
    gap: 15px;
}
.contain_bloc_nombre .text_nombre .nomvbre_show p{
    font-size: 152px;
    line-height: 112px;
    font-weight: 600;
    color: #0000ff36;
    font-family: "Qualy" !important;
}
.contain_bloc_nombre .text_nombre .contain_text{
    width: 700px;
    position: relative;
    height: 130px;
    overflow: hidden;
}
.contain_bloc_nombre .text_nombre .contain_text p{
    font-size: 72px;
    line-height: 62px;
    font-weight: 600;
    color: #0000ff74;
    font-family: "Qualy" !important;
}

.contain_bloc_nombre .text_nombre .contain_text .line_point_00{
    display: none;
    position: absolute;
    background-color: white;
    height: 130px;
    align-items: center;
    z-index: 1;
}
.contain_bloc_nombre .text_nombre .contain_text .line_point_00.active{
    display: flex;
    z-index: 2;
}
.contain_bloc_nombre .text_nombre .contain_text .line_point_00.effect{
    animation: anim_show 0.5s normal ease-in-out;
}

@keyframes anim_show {
    0%{
        top: -130px;
        opacity: .3;
    }
    100%{
        top: 0px;
        opacity: 1;
    }
}