*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #f7f7f7;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ff608b;
    border-radius: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #020712;
    color: #fff;
}

a{
    text-decoration: none;
    color: inherit;
}

button, input, select{
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: #fff;
    outline-style: none;
}

header {
    position: fixed;
    width: 100%;
    height: 70px;
/*    background: #000000;*/
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
    animation: slideInDown;
    animation-duration: 2s;
}

header nav{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

header .logo {
    position: relative;
    width: 200px;
    height: 60px;
    margin: 10px;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
}

header ul {
    position: relative;
    width: fit-content;
    padding: 29px;
    display: flex;
    list-style-type: none;
    animation: 0.3s;
}

header ul li {
    position: relative;
    width: 100%;
    margin: 0 15px;
    transition: 0.5s;
    font-size: 14px;
}

header ul li a {
    color: inherit;
    text-decoration: none;
}

header ul li:hover {
    color: #ff608b;
}

header .action{
    position: relative;
    width: fit-content;
    height: auto;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}

header .login-btn {
    position: relative;
    height: 45px;
    border-radius: 25px;
    background-color: #de003c;
    color: #fff;
    border: none;
    padding: 0px 20px;
    margin: 20px;
    cursor: pointer;
    font-weight: 600;
    display: block;
}

header select{
    position: relative;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border: 1.9px solid #fff;
    font-size: 12px;
    -webkit-appearance: none;
  -moz-appearance: none;
    text-indent: 1px;
    padding-left: 5px;
    margin: 27px 0;
    border-radius: 5px;
    display: block;
}

header select option{
    color: #000;
}

header .menu{
    position: relative;
    width: 60px;
    margin: 0 10px;
    padding: 30px 0px;
    display: none;
}

header .menu i{
    position: absolute;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 23px;
}

header .menu i:last-child{
    display: none;
}

/*///////////////////////////////////*/
/*///////////////////////////////////*/

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
/*    padding: 100px 40px;*/
    background: linear-gradient(135deg, #0d0d0d 40%, #161616 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    height: 400px;
    margin-top: 150px;
    max-width: 600px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

.hero-content .action{
    width: fit-content;
    height: auto;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 5px;
}

.discover-btn {
    height: 49px;
    width: fit-content;
    background-color: #de003c;
    color: white;
    padding: 10px 60px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin: 0 auto;
    display: block;
    border-radius: 30px;
}

.discover-btn:last-child{
    padding: 10px 20px;
}

.hero-image{
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(../img/hovevid.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    opacity: 0.6;
}

.hero .quick-nav{
    position: absolute;
    top: 50%;
    left: 84%;
    transform: translate(-50%, -50%);
    width: 190px;
    height: auto;
    z-index: 1;
    animation: slideInRight;
    animation-duration: 2s;
}

.hero .quick-nav hr{
    position: absolute;
    right: 14px;
    top: 0;
    width: 0.6px;
    height: 100%;
    display: none;
}

.hero .quick-nav .page{
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 10px 15px;
    margin-bottom: 30px;
    overflow: hidden;
    cursor: pointer;
}

.hero .quick-nav .page:hover hr{
    left: 0px;
    opacity: 1;
    background: #efefef;
}

.hero .quick-nav .page:hover span{
    left: 0px;
    opacity: 1;
}

.hero .quick-nav .page:hover .circle{
    border: 2px solid #fff;
}

.hero .quick-nav .page hr{
    position: relative;
    left: 100px;
    opacity: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 1px;
    transition: 0.4s;
    display: block;
}

.hero .quick-nav span{
    position: relative;
    left: 100px;
    opacity: 0;
    bottom: 5px;
    width: auto;
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
    transition: 0.1s;
}

.hero .quick-nav .page .circle{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 23px;
    height: 23px;
    background: rgba(255, 255, 255, 0.24);
    border-radius: 10px;
}

.hero .quick-nav figure{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background: red;
    margin: 7px 7px;
    z-index: 1;
    display: block;
}

.stats {
    width: 100%;
    height: auto;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
}

.stats p{
    color: rgba(239, 239, 239, 0.81);
    font-size: 14px;
}

.stats span{
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}

/*//////////////////////////////////////*/
/*//////////////////////////////////////*/

.overlay-spinner{
    position: absolute;
    top: 15%;
    left: 25%;
    width: 100px;
    height: 100px;
}

.overlay-spinner img{
    width: 100%;
    animation: rotateIn;
    animation-duration: 7s;
    animation-iteration-count: infinite;
}

.advantages {
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px 40px 0px 40px;
    text-align: center;
    background: #03010f;
    overflow: hidden;
}

.advantages .partners{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    gap: 60px;
    margin-bottom: 120px;
    white-space: nowrap;
    /* Prevent line breaks */
    animation: scroll 20s linear infinite;
    /* Animation for scrolling */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
        /* Move to the left fully */
    }
}

.advantages .partners img{
    width: 110px;
    object-position: center;
    object-fit: contain;
}

.basic-h2 {
    position: relative;
    font-size: 38px;
    margin-bottom: 40px;
    letter-spacing: 0.9px;
    font-family: "Space Grotesk", serif;
    margin-bottom: 40px;
    font-weight: 700;
}

.basic-h2 span{
    background: -webkit-linear-gradient(45deg, #ff608b, #765dea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.advantages .container{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
}

.advantages .container img{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    object-fit: cover;
}

.advantages-grid {
    position: relative;
    height: auto;
    width: 50%;
    max-width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    z-index: 1;
}

.advantage-item {
    position: relative;
    width: 350px;
    min-width: 350px;
    height: 250px;
    background-color: rgba(2, 7, 18, 0.81);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: 40px 30px 0 30px;
    border-radius: 20px;
}

.advantage-item figure{
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background-image: linear-gradient(45deg, #ea577e, #a492f5);
    margin-bottom: 10px;
    animation: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.advantage-item h2{
    position: absolute;
    top: 25px;
    font-size: 34px;
}

.advantage-item:nth-child(even){
    top: 40px;
}

.advantage-item h3{
    font-family: "Space Grotesk", serif;
    text-align: left;
    margin-bottom: 10px;
}

.advantage-item p{
    text-align: left;
    color: #7b7b7b;
    font-size: 14px;
}

/*//////////////////////////////////////*/
/*//////////////////////////////////////*/

.business-model {
    position: sticky;
    width: 100%;
    height: 100vh;
    padding: 120px 40px;
    background-color: #03010f;
    text-align: center;
    display: flex;
    justify-content: flex-end;
}

.business-model img{
    width: 100%;
    height: 100%;
    position: absolute;
    object-position: left;
    object-fit: cover;
    top: 0;
    left: 0;
}

.business-model .write-up{
    position: relative;
    width: 50%;
    z-index: 1;
}

.business-model .write-up h2{
    text-align: left!important;
    font-family: "Space Grotesk", serif;
}

.business-model .write-up p{
    text-align: left;
    font-family: "Space Grotesk", serif;
    line-height: 35px;
    font-size: 20px;
    margin-bottom: 20px;
}

.business-model .write-up button{
    position: relative;
    width: 50%;
    height: 50px;
    background: #5636ed;
    display: block;
    border-radius: 10px;
    background: -webkit-linear-gradient(45deg, #ff608b, #765dea);
    cursor: pointer;
}

/*//////////////////////////////////////*/
/*//////////////////////////////////////*/

.concept{
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 80px;
    background: #020712;
    display: flex;
    justify-content: flex-end;
}

.concept .bg{
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
}

.concept .write-up{
    position: relative;
    width: 50%;
    height: auto;
    margin: 60px 0;
}

.concept .write-up p{
    text-align: left;
    font-family: "Space Grotesk", serif;
    line-height: 35px;
    font-size: 20px;
    margin-bottom: 20px;
}

.concept .write-up button{
    position: relative;
    width: 50%;
    height: 50px;
    background: #5636ed;
    display: block;
    border-radius: 10px;
    background: -webkit-linear-gradient(45deg, #ff608b, #765dea);
    cursor: pointer;
}
/*//////////////////////////////////////*/
/*//////////////////////////////////////*/

.register {
    position: relative;
    width: 100%;
    height: 400px;
    padding: 80px;
    text-align: center;
    background-color: #020712;
}

.register .container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: -webkit-linear-gradient(45deg, #ff608b, #765dea);
    width: 75%;
    height: 250px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding: 70px;
}

.register .container h2{
    position: relative;
    width: 75%;
    text-align: left;
    color: #020712;
    font-size: 35px;
    line-height: 40px;
}

.register .container h2 span{
    position: relative;
    width: fit-content;
    padding: 0 20px 0 10px;
    margin-top: 10px;
    display: block;
    font-size: 15px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.24);
}

.register .container button{
    position: relative;
    width: fit-content; 
    height: 45px;
    z-index: 1;
    padding: 0 20px;
    font-size: 14px;
    border-radius: 10px;
    background: #020712;
    margin-top: 29px;
    transition: 0.4s;
        font-family: "Space Grotesk", serif;
}

.register .container button:hover{
    background: -webkit-linear-gradient(45deg, #ff608b, #765dea);
    color: #020712;
    font-weight: bold;
}

.register .container .spiral{
    position: absolute;
    width: 25%;
    height: 100%;
    background-image: url(../img/spiral.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    top: 0;
    right: 0;
}

.start-now-btn {
    background-color: #5636ed;
    color: white;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

/*//////////////////////////////////////*/
/*//////////////////////////////////////*/

.testimonials {
    position: relative;
    width: 100%;
    height: auto;
    padding: 80px 40px;
    background-color: #020712;
    text-align: center;
}

.testimonials .bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.2;
}

.testimonial-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    position: relative;
    background-color: #2A3039;
    padding: 30px;
    border-radius: 19px;
    font-size: 18px;
}

.testimonial-item .rating{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.testimonial-item p{
    color: #969696;
    font-size: 17px;
    text-align: left;
    margin-bottom: 30px;
}

.testimonial-item span{
    display: block;
    width: 200px;
    font-size: 19px;
    letter-spacing: 0.5px;
    text-align: left;
}

.testimonial-item .rating span{
    color: #ffc400;
    text-align: left;
    width: fit-content;
    margin-bottom: 20px;
    font-size: 30px;
}

.test-img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55px;
    height: 55px;
    background: #000;
    border-radius: 30px;
    margin: 20px 30px;
    overflow: hidden;
}

.test-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/*//////////////////////////////////////*/
/*//////////////////////////////////////*/
.widget{
    position: relative;
    width: 100%;
    height: auto;
    background: #020712;
    padding-top: 70px;
}

.widget .container1{
    position: relative;
    width: 100%;
    height: 280px;
    margin-top: 70px;
    overflow: hidden;
}

.widget .container2{
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.widget .container3{
    position: relative;
    width: 80%;
    height: auto;
    overflow: hidden;
    margin:0px auto;
    padding: 60px 30px;
}
/*//////////////////////////////////////*/
/*//////////////////////////////////////*/

footer {
    position: relative;
    width: 100%;
    height: 400px;
    padding: 50px 40px;
    background-color: #020712;
    
}

.footer-content{
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
}

.footer-content .info{
    position: relative;
    width: 30%;
    min-width: 30%;
    margin: 0 auto;
}

.footer-content .info:nth-child(2){
    padding-left: 50px;
}

.footer-content .info .logo{
    position: relative;
    width: 200px;
    height: 65px;
    background-image: url(../img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}

.footer-content .info p{
    position: relative;
    font-size: 13px;
    color: #aaaaaa;
    line-height: 23px;
    letter-spacing: 0.6px;
    cursor: pointer;
}

.footer-content .info:nth-child(2) p:hover{
    color: #ff608b;
}

.footer-content .info h3 {
    position: relative;
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 20px;
    border-left: 3px solid #5636ed;
    padding-left: 10px;
}

footer .subscribe{
    position: relative;
    width: 100%;
}

footer .subscribe h3{
    position: relative;
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 20px;
    border-left: 3px solid #5636ed;
    padding-left: 10px;
    letter-spacing: 0.6px;
}

footer .subscribe form {
    display: flex;
}

footer input {
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
    margin-right: 10px;
    color: #000;
    padding-left: 20px;
    flex: 1;
    background: #efefef;
}

footer button {
    position: relative;
    right: 40px;
    padding: 10px 20px;
    background-color: #5636ed;
    border-radius: 20px;
    color: #fff;
    border: none;
}

footer .rights{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 65px;
    text-align: center;
    font-size: 13px;
    color: #606060;
    padding-top: 20px;
    border-top: 1.5px solid #606060;
}

/*//////////////////////////////////////*/
/*//////////////////////////////////////*/

.documentation{
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 130px 70px;
}

.documentation h2{
    text-align: center;
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.documentation p{
    position: relative;
    width: 100%;
    height: auto;
    text-align: left;
}