body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color: #000;
    margin: 0;
    color: #fff;
    position: relative;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    background-color: #051b36; 
    color: white;
    position: relative;
    scroll-behavior: smooth;
}

@keyframes subtleMoveStar {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(10px, 10px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: subtleMoveStar 20s infinite ease-in-out;
    opacity: 0.7;
}

@keyframes realisticShootingStar {
    0% {
        opacity: 0;
        transform: translate(0, 0) scaleX(1);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--translate-x), var(--translate-y)) scaleX(0.5);
    }
}

.shooting-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    box-shadow: 0px 0px 10px 2px white, 0px 0px 20px 10px rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0;
    animation: realisticShootingStar 4s ease-out infinite;
    transform-origin: left center;
}





.star-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.5rem;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
}

.text-container-main {
    position: relative;
    font-size: 6rem;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(90deg, #ffffff, #68c2e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}









.text-container-sub {
    position: relative;
    font-size: 1.5rem;
    color: #999;
    text-align: center;
    font-family: "Inter", sans-serif;
}

.rough-annotation {
    position: absolute;
    overflow: visible;
    pointer-events: none;
}

.rough-annotation-main {
    top: -18px;
    left: -30px;
    width: 150%;
    height: 150%;
}

.rough-annotation-sub {
    bottom: 20px;
    left: 475px;
    width: 150%;
    height: 100%;
}

.rough-annotation2 {
    position: absolute;
    overflow: visible;
    pointer-events: none;
}

.rough-annotation-sub2 {
    bottom: 20px;
    left: 350px;
    width: 150%;
    height: 100%;
}

@keyframes rough-notation-dash {
    to {
        stroke-dashoffset: 0;
    }
}

.rough-annotation-main path {
    stroke-dasharray: 828.735px;
    stroke-dashoffset: 828.735px;
    animation: rough-notation-dash 1s ease-out forwards;
}

.rough-annotation-sub path {
    stroke-dasharray: 61.1245px;
    stroke-dashoffset: 61.1245px;
    animation: rough-notation-dash 1s ease-out forwards;
}

.rough-annotation-sub path:nth-child(2) {
    stroke-dasharray: 59.6349px;
    stroke-dashoffset: 59.6349px;
    animation-delay: 0.5s;
}

.rough-annotation-sub2 path {
    stroke-dasharray: 61.1245px;
    stroke-dashoffset: 61.1245px;
    animation: rough-notation-dash 1s ease-out forwards;
}

.rough-annotation-sub2 path:nth-child(2) {
    stroke-dasharray: 59.6349px;
    stroke-dashoffset: 59.6349px;
    animation-delay: 0.5s;
}

.first{
    margin-top: 130px;
    margin-bottom: 30px;
}


.button-second{
    display: flex;
    margin-left: 40%;
    margin-top: 30px;
    padding: 7px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    border: 5px solid #363636d0;
    border-radius: 12px;
    transition: 0.3s ease;
    cursor: pointer;
    font-weight: 550;
}


.button-second:hover{
    background-color: rgb(180, 180, 180);
}

.button-second2{
    text-decoration: none;
}

        .carousel {
            display: flex;
            width: 80%;
            overflow: hidden;
            position: relative;
            margin-bottom: 30px; 
        }

        .carousel-track {
            display: flex;
            width: max-content;
            animation: scroll-left 20s linear infinite;
        }

        .carousel-track-reverse {
            display: flex;
            width: max-content;
            animation: scroll-right 20s linear infinite reverse;
            margin-bottom: 10px;
        }

        .carousel-item {
            min-width: 300px;
            margin: 0 10px;
            background-color: rgba(249,250,251,.1);
            padding: 1rem;
            padding-bottom: 20px;
            border-radius: 10px;
            text-align: center;
            font-family: "Inter", sans-serif;
            border: 1px solid #e5e7eb;
            border-color: rgba(249,250,251,.1);
            cursor: pointer;
            z-index: 1;
        }


        .carousel-item:hover {

            background-color: rgba(249, 250, 251, 0.144);
        }

        .carousel::before,
        .carousel::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
        }

        .carousel::before {
            left: 0;
            background: linear-gradient(to right, #051b36, transparent);
        }

        .carousel::after {
            right: 0;
            background: linear-gradient(to left, #051b36, transparent);
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes scroll-right {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

.carrousel-img{
    display: flex;
}

.prsn-caroussel{
    font-size: 13px;
    font-weight: 500;
    display: flex;
    margin-left: 43px;
    margin-top: -32px;
}

.desc-caroussel{
    font-size: 13px;
    font-weight: 200;
    display: flex;
    margin-left: 43px;
    margin-top: -15px;
    color: hsla(0,0%,100%,.4);
}

.carousse-txt{
    text-align: left;
    font-size: 14px;
}

.date-caroussel{
    text-align: left;
    font-size: 10px;
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity));
}

.title-avis{
    margin-top: 100px;
    text-align: center;
    font-family: "Inter", sans-serif;
    background: linear-gradient(90deg, #ffffff, #68c2e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
}

.title-avis2{
    margin-top: 100px;
    text-align: center;
    font-family: "Inter", sans-serif;
    background: linear-gradient(90deg, #ffffff, #68c2e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
}

.desc-avis{
    text-align: center;
    margin-top: -10px;
    --tw-text-opacity: 1;
    color: rgb(163 163 163/var(--tw-text-opacity));
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

.card{
    background-color: rgba(249,250,251,.1);
    border: 1px solid #e5e7eb;
    border-color: rgba(249,250,251,.1);
    padding: 1rem;
    border-radius: 13px;
    margin-top: 100px;
    margin-left: 6.9%;
    width: 23%;
    height: 475px;
}

.card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;  
    height: 500px;
    background: rgba(43, 128, 226, 0.288); 
    border-radius: 50%;
    filter: blur(900000000px); 
    transform: translate(-132%, 40%);
    z-index: 1; 
}

.card-title{
    font-family: "Inter", sans-serif;
    background: linear-gradient(90deg, #ffffff, #68c2e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    font-size: 20px;
    margin-top: -10px;
    z-index: 2;
}

.card-desc{
    font-family: "Inter", sans-serif;
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity));
    text-align: left;
    font-size: 14px;
    margin-top: -10px;
}

.eur-card{
    font-family: "Inter", sans-serif;
    font-size: 35px;
}

.eur-card-mini{
    font-family: "Inter", sans-serif;
    font-size: 14px;
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity));
}

.card-eur{
    text-align: left;
    z-index: 2;
}

.button {
    position: relative;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: rgba(249,250,251,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: 500;
    border: 1px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    z-index: 2;
  }
  
  .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
  }
  
  .button:hover {
    border-color: #fff9;
  }
  
  .button:hover .icon {
    transform: translate(4px);
  }
  
  .button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }
  
  .iconnn{
    margin-left: -10px;
    margin-right: 5px;
    margin-bottom: -6px;
    color: rgb(112, 199, 112);
}

.tarifs-offer{
    font-family: "Inter", sans-serif;
    color: white;
    margin-left: 40px;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 500;
}

.card2{
    background-color: rgba(249,250,251,.1);
    border: 3px solid #ffffff;
    border-color: rgb(255, 255, 255);
    padding: 1rem;
    border-radius: 13px;
    margin-left: 34%;
    margin-top: -547px;
    width: 29%;
    height: 550px;
    z-index: 1;
}

.card2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px; 
    height: 500px;
    background: rgba(142, 193, 250, 0.288); 
    border-radius: 50%;
    filter: blur(90000px); 
    transform: translate(-50%, 40%);
    z-index: -0.9; 
    box-shadow: 1px 1px;
}


.card3{
    background-color: rgba(249,250,251,.1);
    border: 1px solid #e5e7eb;
    border-color: rgba(249,250,251,.1);
    padding: 1rem;
    border-radius: 13px;
    margin-left: 67%;
    margin-top: -541px;
    width: 23%;
    height: 475px;
}

.card3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;  
    height: 500px;
    background: rgba(43, 128, 226, 0.288); 
    border-radius: 50%;
    filter: blur(900000000px); 
    transform: translate(30%, 40%);
    z-index: 1; 
}


.button2 {
    position: relative;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: rgba(249,250,251,.1);
    border-radius: 10px;
    display: flex;
    text-align: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: 500;
    border: 1px solid #faf7f74d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    z-index: 2;
  }
  
  .button3 {
    position: relative;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: rgba(249,250,251,.1);
    border-radius: 10px;
    display: flex;
    text-align: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: 500;
    border: 1px solid #faf7f74d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
    width: 25%;
    margin-left: 39%;
    margin-top: 10px;
    z-index: 2;
  }
  
  .button3:hover {
    border-color: #fff9;
  }
  
  .button3:hover .icon {
    transform: translate(4px);
  }
  
  .button3:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .button3::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }


  .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
  }
  
  .button2:hover {
    border-color: #fff9;
  }
  
  .button2:hover .icon {
    transform: translate(4px);
  }
  
  .button2:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .button2::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }


  .faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 15px;
    text-align: left;
    background: none;
    color: #ffffff;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, padding 0.3s ease;
    position: relative;
    font-size: 18px;
    font-family: "Inter", sans-serif;
}

.faq-question:hover {
    padding-left: 20px;
    text-decoration: underline;
}

.faq-question .arrow {
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
    font-size: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border-left: 2px solid #68c2e6;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.6;
}


.faq-item.active .faq-answer {
    max-height: 500px; 
    padding-top: 15px;
}

.faq-item.active .faq-question .arrow {
    transform: rotate(90deg);
}

.poffaq{
    font-family: "Inter", sans-serif;
}

.note-box {
    background-color: #f3e8ff;
    padding: 15px;
    border-radius: 8px;
    color: #e73b3b;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
}

.note-box svg {
    flex-shrink: 0;
    margin-right: 10px;
}

.note-title {
    font-weight: bold;
    margin-right: 5px;
}

.footer{

}

.foot-link{
    padding-bottom: 30px;
    margin-left: 1500px;
}

.none-dec{
    text-decoration: none;
}

.rrrrr{

}

.skills-section {
    width: 80%; 
    text-align: center;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    text-align: center;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
    align-items: start; 
}


.skill {
    background: rgba(249,250,251,.1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(249,250,251,.1);
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.skill2 {
    background: rgba(249,250,251,.1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(249,250,251,.1);
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    
}

.aaaezeeze{
    margin-bottom: 40%;
}

.skill-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;
}

.skill-info img {
    width: 24px;
    height: 24px;
}

.skill-bar {
    --tw-text-opacity: 1;
    background-color: rgb(156 163 175/var(--tw-text-opacity));
    border-radius: 5px;
    height: 10px;
    overflow: hidden;
    position: relative;
}

.skill-level {
    background: #68c2e6;
    height: 100%;
    border-radius: 5px;
}

.lll{
    font-family: "Inter", sans-serif;
    font-weight: 5000;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}


.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer{
    background-color: rgba(249,250,251,.1);
    width: 1919px;
    padding: 3%;
}

.footer-content{
    display: flex;
    font-family: "Inter", sans-serif;
    margin-bottom: 5px;
    text-decoration: none;
    text-align: center;
    color: #999;
    font-size: 1rem;
}

.title-footer{
    color: white;
    font-size: 1.2rem;
    display: flex;
    margin-top: -1%;
}

.footer-content2{
    display: flex;
    font-family: "Inter", sans-serif;
    margin-bottom: 5px;
    text-decoration: none;
    text-align: center;
    color: #999;
    font-size: 1rem;
    margin-left: 7%;
}

.title-footer2{
    color: white;
    margin-left: 7%;
    font-size: 1.2rem;
    display: flex;
    margin-top: -5.8%;
}

.note-box2{
    display: none;
}

@media only screen and (max-width: 900px) {
    .text-container-main {
        position: relative;
        font-size: 300%;
        font-weight: bold;
        text-align: center;
        background: linear-gradient(90deg, #ffffff, #68c2e6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
        font-family: "Inter", sans-serif;
    }

    .icon {
        display: none;
      }

    .note-box{
        display: none;
    }

      .note-box2 {
        margin-right: 3%;
        margin-left: 3%;
        background-color: #f3e8ff;
        padding: 15px;
        border-radius: 8px;
        color: #e73b3b;
        font-family: "Inter", sans-serif;
        display: flex;
        align-items: center;
    }

    .card{
        display: none;
    }

    .card2{
        display: none;
    }

    .card3{
        display: none;
    }

    .faq-question {
        width: 50%;
        padding: 15px;
        text-align: left;
        background: none;
        color: #ffffff;
        border: none;
        cursor: pointer;
        outline: none;
        transition: background-color 0.3s ease, padding 0.3s ease;
        position: relative;
        font-size: 18px;
        font-family: "Inter", sans-serif;
        margin-left: 26%;
    }

    .faq-answer {
        width: 50%;
        max-height: 0;
        margin-left: 26%;
        overflow: hidden;
        padding: 0 20px;
        border-left: 2px solid #68c2e6;
        transition: max-height 0.5s ease, padding 0.3s ease;
    }

    .desc-avis{
        text-align: center;
        margin-top: -10px;
        --tw-text-opacity: 1;
        color: rgb(163 163 163/var(--tw-text-opacity));
        font-family: "Inter", sans-serif;
        font-size: 18px;
        margin-left: 3%;
        margin-right: 3%;
    }

    .skills-container{
        display: normal;
        grid-template-columns: repeat(1, 2fr); 
        gap: 20px; 
        max-width: 1200px; 
        margin: 0 auto; 
        align-items: start; 
    }

    .title-avis2{
        margin-top: 100px;
        text-align: center;
        font-family: "Inter", sans-serif;
        background: linear-gradient(90deg, #ffffff, #68c2e6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 200%;
    }

    .footer{
        display: none;
    }
} 

.footer-txt{
    margin-left: 5%;
}
