* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'IBM Plex Sans', sans-serif;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul {
    padding-left: 0;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #1F75FE;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #02000B;
}
body {
    background: #000;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    overflow: hidden;
    z-index: 99999;
}
.preloader svg {
    position: absolute;
    top: 0;
    height: 110vh;
    width: 100vw;
    fill: #212121;
}
.preloader .loading {
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 8px;
    z-index: 99;
}
.loading span {
    position: relative;
    color: rgba(0, 0, 0, 0.2);
}
.loading span::after {
    position: absolute;
    top: 0;
    left: 0;
    content: attr(data-text);
    color: #FFFFFF;
    opacity: 0;
    transform: rotateY(-90deg);
    animation: loading 3s infinite;
}
.loading span::after {
    animation: loading 1.5s infinite;
}
.loading span:nth-child(2)::after {
    animation-delay: 0.1s;
}
.loading span:nth-child(3)::after {
    animation-delay: 0.2s;
}
.loading span:nth-child(4)::after {
    animation-delay: 0.3s;
}
.loading span:nth-child(5)::after {
    animation-delay: 0.35s;
}
.loading span:nth-child(6)::after {
    animation-delay: 0.5s;
}
.loading span:nth-child(7)::after {
    animation-delay: 0.6s;
}
@keyframes loading {
    0%,
    75%,
    100% {
        transform: rotateY(-90deg);
        opacity: 0;
    }
    25%,
    50% {
        transform: rotateY(0);
        opacity: 1;
    }
}
/*-----------------------[ 5.Background Lines CSS ]------------------------*/
.grid-lines {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: -1;
    height: 100%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1040px;
    margin: 0px auto;
}
.grid-line-5,
.grid-line-4,
.grid-line-3,
.grid-line-2,
.grid-line-1 {
    position: relative;
    height: 100%;
}
.grid-line-5::before,
.grid-line-4::before,
.grid-line-3::before,
.grid-line-2::before,
.grid-line-1::before {
    content: "";
    position: absolute;
    top: 0px;
    height: 100%;
    right: -1px;
    width: 1px;
    background: #212121;
}
.grid-line-5::after,
.grid-line-4::after,
.grid-line-3::after,
.grid-line-2::after,
.grid-line-1::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -1px;
    opacity: 0.5;
    width: 2px;
    height: 60px;
    border-radius: 1px;
    background: linear-gradient(180deg, #212121 0%, #FFF 100%);
}
.grid-lines .grid-line-1:after {
    animation: gridline 8s linear infinite;
}
.grid-lines .grid-line-2:after {
    animation: gridline 9s linear infinite;
    animation-delay: 3s;
}
.grid-lines .grid-line-3:after {
    animation: gridline 7s linear infinite;
    animation-delay: 6s;
}
.grid-lines .grid-line-4:after {
    animation: gridline 10s linear infinite;
    animation-delay: 4s;
}
.grid-lines .grid-line-5:after {
    animation: gridline 8s linear infinite;
    animation-delay: 8s;
}
@keyframes gridline {
    0% {
        top: -50px;
    }
    100% {
        top: 100%;
    }
}
/*-----------------------[ 3.Buttons CSS ]------------------------*/
.purchaseNow {
    border-radius: 32px;
    background: var(--3, #1F75FE);
    color: var(--1, #FFF);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    padding: 15px 30px;
    position: relative;
}
/*-----------------------[ 4.Header CSS ]------------------------*/
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 500;
    padding: 20px 12px;
}
.top-navbar.fixed {
    background: rgb(23 27 34 / 7%);
    backdrop-filter: blur(12.5px);
    -webkit-backdrop-filter: blur(12.5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.nav-links a {
    color: var(--12, #6F6F6F);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #1F75FE;
}
.purchase-btn {
    background: #1F75FE;
    padding: 10px 22px;
    border-radius: 50px;
    color: var(--1, #FFF) !important;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    display: block;
    transition: background 0.3s;
    border: 1px solid transparent;
}
.purchase-btn:hover {
    background: #000;
    border: 1px solid #FFF;
}
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}
.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}
.hamburger-inner {
    width: 100%;
    height: 3px;
    background: #FFF;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s;
}
.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #FFF;
    position: absolute;
    left: 0;
    transition: transform 0.3s;
}
.hamburger-inner::before {
    top: -8px;
}
.hamburger-inner::after {
    top: 8px;
}
.nav-menu {
    transition: all 0.4s ease;
}
.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-list a {
    transition: color 0.3s;
    color: var(--12, #FFF);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.logo-jon {
    color: var(--1, #1F75FE);
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    line-height: 32px;
}
/*-----------------------[ 5.Section One CSS  ]------------------------*/
.elevate {
    color: #FFF;
    text-align: center;
    font-size: 80px;
    font-weight: 600;
    line-height: 100px;
    padding-top: 30px;
}
.bestAI {
    color: #1F75FE;
    text-align: center;
    font-size: 80px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.varien-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 50px;
}
.varien {
    color: var(--3, #000);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    padding: 10px 25px;
    background: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.prv-row {
    margin-top: 40px;
    justify-content: center;
}
.btns-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.maaqiwn {
    border: 1px solid #212121;
    padding: 20px;
    margin-top: 100px;
    background: #000;
}
.text-lside-conta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.text-lside {
    display: flex;
    align-items: center;
    gap: 10px;
}
.text-lside svg {
    width: 16px;
    fill: #FFF;
}
.text-lside p {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}
/*-----------------------[ 6.Section three CSS  ]------------------------*/
.ausimn {
    max-width: 800px;
    margin: 0 auto;
}
.design-preview {
    width: 100%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.effect-text {
    text-align: center;
    color: #FFF;
    padding-top: 20px;
    font-size: 24px;
}
.demos-row {
    gap: 30px 0;
    margin-top: 50px;
}
.col-main {
    padding: 15px;
    background: linear-gradient(340deg, #000000, #ffffff9e);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s ease;
}
.design-preview {
    position: relative;
    overflow: hidden;
}
.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d6efd3d;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}
.view-button {
    padding: 10px 40px;
    background: #1F75FE;
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.design-preview:hover .preview-overlay {
    opacity: 1;
}
.design-preview:hover .view-button {
    transform: scale(1);
}
/*-----------------------[ 6.Section Two CSS  ]------------------------*/
.section-two {
    padding: 100px 0;
}
.xplore {
    color: #FFF;
    text-align: center;
    font-size: 64px;
    font-weight: 600;
    line-height: normal;
}
.feature-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.boost-name {
    color: var(--2, #FFF);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    padding-bottom: 5px;
}
.relat-containe {
    color: var(--2, #FFF);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}
.fetur-box {
    border: 1px solid #212121;
    padding: 30px;
    background: #000;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}
/*-----------------------[ 6.Section Footer CSS  ]------------------------*/
.genStartd-min {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}
.genStartd {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    padding: 15px 30px;
    border-radius: 40px;
    background: var(--3, #1F75FE);
    border: 2px solid transparent;
    transition: all 0.4s ease-in-out;
}
.genStartd:hover {
    background: #FFF;
    color: #1F75FE;
    border: 2px solid #FFF;
}
.footer-section {
    padding-top: 100px;
}
.copyright-text,
.copyright-text a {
    color: var(--12, #6F6F6F);
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    padding-bottom: 30px;
}
.copyright-text a:hover {
    color: #1F75FE;
}
.stunnig {
    max-width: 1000px;
    margin: 0 auto;
}
.ripple {
    width: 100%;
    background: url('../images/home-page/hero.jpg') no-repeat center;
    background-size: cover;
    padding-bottom: 100px;
}