@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); :root {
    --primary-color: #7760d6;
    --primary-color-l: #f5f3ff;
    --secondary-color: #0e1013;
    --text-color: #FFFFFF;
    --text-color-d: #ebebeb;
}

* {
    box-sizing: border-box
}

*,*:focus,*:hover,*:active,*:before,*:after {
    outline: 0
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #424242;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

html {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

body {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: montserrat,sans-serif!important;
    -webkit-font-smoothing: antialiased;
    background: linear-gradient(261deg, #000000 0%, #141414 100%);
    color: #ffffff;
}

body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://cdn.glitch.global/6de36fee-d307-4596-bb0f-b650378a97ae/noise_filter.png?v=1732835472962);
    background-size: 600px;
    opacity: 0.4;
    pointer-events: none;
}

a {
    text-decoration: none!important;
    color: var(--text-color);
    border: 0;
    cursor: pointer;
    transition: 120ms ease 0s;
    user-select: none;
}

p,h1,h2,h3,h4,h5 {
    margin: 0
}

nav,header,.section-main,footer {
    min-width: 100%;
    position: relative;
    display: block
}

.navbar-in,.header-in,.section-in,.footer-in {
    width: 100%;
    padding-left: 40px;
    height: 100%;
    margin-left: auto;
    max-width: 1600px;
    position: relative;
    padding-right: 40px;
    margin-right: auto
}

.section-main.space {
    padding-top: 120px;
    padding-bottom: 120px;
}

.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9 {
    display: grid;
    grid-gap: 40px;
}

.grid-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
    grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
    grid-template-columns: repeat(8, 1fr);
}

p {
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    color: var(--text-color-d);
}

p a {
    color: var(--primary-color);
}

.flex-row {
    display: flex;
    align-items: center;
    grid-gap: 16px;
}

/* OWL */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* OWL */
nav {
    height: 100px;
    border-bottom: 1px solid #2525257a;
    position: absolute;
    z-index: 10;
    /* backdrop-filter: blur(20px); */
    /* background: #00000000; */
}

.navbar-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-m {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: fit-content;
    margin: 0 auto;
}

.navbar-logo {
    position: relative;
    display: flex;
    border: 1px solid #2525257a;
    background: #0c0a10;
    border-top: 0;
    padding: 55px 25px 25px 25px;
    border-radius: 0 0 8px 8px;
    z-index: 1;
}

.navbar-logo img {
    height: 50px;
    transition: 120ms ease-out 0s;
}

.navbar-logo:hover img {
    transform: scale(1.1);
}

.navbar-l, .navbar-r {
    display: flex;
    align-items: center;
    grid-gap: 30px;
}

.navbar-icon {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: dashed #ffffff36 2px;
    border-radius: 6px;
    font-size: 15px;
    transition: 150ms ease 0s;
}

.navbar-link {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar-link:hover {
    color: var(--primary-color);
}

header {
    height: 100vh;
    width: 100vw;
}

.header-background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 0, 100% 0%, 0% 4%, 0% 0, 100% 0%, 100% 100%, 75% 100%, 70% 96%, 25% 96%, 20% 100%, 0% 100%, 0% 0%);
}

.header-background:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    --bg-x: #000000c2;
    --m-c: #7f65e01a;
    background: radial-gradient(circle at 50% 40%, var(--m-c), var(--bg-x) 50%) no-repeat, radial-gradient(circle at 5% 20%, var(--m-c), var(--bg-x) 30%) no-repeat, radial-gradient(circle at 100% 90%, var(--m-c), var(--bg-x) 30%) no-repeat, url(https://i.imgur.com/OSWB7Gt.png) repeat;
    top: 0;
    left: 0;
}

.header-in {
    padding-top: 100px;
    padding-bottom: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-container {
    max-width: 1160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 20px;
}

.review-line {
    display: flex;
    grid-gap: 8px;
    align-items: center;
    background: #000000b8;
    padding: 6px 17px;
    border: 1px solid #252525;
    border-radius: 6px;
}

.review-line .stars, .review-header .stars {
    color: var(--primary-color);
    font-size: 13px;
}

.review-line p {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    line-height: unset;
}

.review-line img, .review-header img {
    height: 16px;
}

.header-container h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 72px;
    text-transform: uppercase;
}

.header-container h1 span {
    color: var(--primary-color);
}

.btn-primary, .btn-secondary {
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.btn-secondary {
    border-color: white;
}

.btn-primary span, .btn-secondary span {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    background: var(--primary-color);
    border-radius: 4px;
    padding: 12px 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 60ms ease 0s;
    position: relative;
    height: 42px;
}

.btn-primary:hover span, .btn-secondary:hover span {
    transform: translate(-6px, -6px);
    border-radius: 6px;
}

.btn-secondary span {
    background: white;
    color: var(--primary-color);
}

#features, #reviews, #steps, #detail {
    margin-bottom: 120px;
}

.features-block {
    margin-top: -140px;
}

.features-block h2 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.features-block h2 i {
    color: var(--primary-color);
}

.features-card {
    --x: -1000px;
    --y: -1000px;
    background: radial-gradient(250px circle at var(--x) var(--y), rgb(24 21 38) 0%, #080808 80%);
    padding: 40px;
    border-radius: 8px;
    border: 2px dashed #141414;
}

.features-card:nth-child(even) {
    border-color: #1c182d;
}

.features-title {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.features-title i, .features-card > i {
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.features-card > i {
    margin-bottom: 20px;
}

.features-card.b {
    border-color: #211d31;
}

.title-set {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.title-set h2 {
    max-width: 50%;
    font-size: 2.9rem;
    font-weight: 800;
    text-transform: uppercase;
}

.title-set h2 span {
    color: var(--primary-color);
}

.title-set p {
    width: 35%;
}

.review-card {
    padding: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0e0e0e, #060606, #000000);
    border: 1px solid #141414;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-card h3 {
    margin-top: 20px;
    font-size: 20px;
}

.review-footer {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.review-client-image {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.review-card > p {
    margin-top: 10px;
    margin-bottom: 20px;
}

.review-client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-client-body {
    display: flex;
    flex-direction: column;
}

.review-client-body h4 {
    font-weight: 700;
    font-size: 16px;
}

.review-client-body span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #7b7b7b;
}

.section-main.bg-x {
    padding: 120px 0;
    --bg-x: #00000091;
    --m-c: #7760d614;
    background: radial-gradient(circle at 50% 40%, var(--m-c), var(--bg-x) 50%) no-repeat, radial-gradient(circle at 5% 20%, var(--m-c), var(--bg-x) 30%) no-repeat, radial-gradient(circle at 100% 90%, var(--m-c), var(--bg-x) 30%) no-repeat, url(https://i.imgur.com/OSWB7Gt.png) repeat;
    border-top: 1px solid #ffffff00;
    border-bottom: 1px solid #ffffff00;
}

.steps-block {
    display: grid;
    position: relative;
    align-items: center;
    grid-template-columns: repeat(28, minmax(0, 1fr));
}

.steps-l {
    grid-column: span 12;
    grid-row: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-r {
    grid-column-start: 15;
    grid-column-end: 29;
    position: relative;
    display: flex;
    flex-direction: column;
    grid-gap: 25px;
}

.steps-l img {
    width: 100%;
    height: 400px;
    min-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.step-card {
    display: flex;
    align-items: center;
    grid-gap: 30px;
    position: relative;
}

.step-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    color: #dddbe5;
    border: 2px solid var(--primary-color);
    background: #0b0a12;
    font-size: 22px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.step-info {
    flex-direction: column;
    display: flex;
}

.step-info h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.step-info h3 span {
    color: var(--primary-color);
}

.step-info p {
    font-size: 15px;
}

.step-card:before {
    height: 100%;
    width: 2px;
    border-left: 2px dashed var(--primary-color);
    content: "";
    position: absolute;
    left: 29px;
    z-index: revert-layer;
    top: 50%;
}

.step-card:last-child:before {
    display: none;
}

.steps-r > h2 {
    font-size: 16px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    grid-gap: 5px;
}

.steps-r > h2 i {
    color: var(--primary-color);
}

.pre-footer {
    background: linear-gradient(7deg, #261c4f, var(--primary-color), #43357f);
    padding: 50px;
    border-radius: 8px;
}

.pre-footer-l {
    display: flex;
    flex-direction: column;
    max-width: 50%;
}

.title-set.x {
    flex-direction: column;
    margin: 0;
}

.title-set.x h2 span {
    color: #110d1e;
}

.title-set.x h2, .title-set.x p {
    width: 100%;
    max-width: unset;
}

.pre-footer-in, .footer-body-b {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-body-b {
    padding: 20px 50px;
}

.cpr {
    font-weight: 500;
    text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
    header {
        height: auto;
    }

    .navbar-l, .navbar-r {
        display: none;
    }

    .navbar-logo {
        padding: 25px 20px 20px 20px;
    }

    .navbar-logo img {
        height: 40px;
    }

    nav {
        height: 70px;
    }

    .header-in {
        padding-top: 90px;
    }

    .header-container h1 {
        font-size: 24px;
        line-height: normal;
        text-transform: math-auto;
    }

    .review-line .stars {
        display: none;
    }

    .btn-primary span, .btn-secondary span, .btn-primary, .btn-secondary {
        width: 100%;
    }

    .header-container {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9 {
        grid-template-columns: repeat(1, 1fr);
    }

    .title-set {
        flex-direction: column;
    }

    .title-set h2 {
        font-size: 22px;
    }

    .title-set h2, .title-set p {
        max-width: 100%;
        width: 100%;
    }

    .pre-footer-in, .footer-body-b {
        flex-direction: column;
        grid-gap: 20px;
    }

    .pre-footer {
        padding: 35px;
    }

    .review-card, .features-card {
        padding: 30px;
    }

    .pre-footer-l {
        max-width: 100%;
        width: 100%;
    }

    .footer-body-b {
        padding: 20px 0;
        text-align: center;
        grid-gap: 10px;
    }

    .cpr {
        font-size: 14px;
    }

    .steps-block {
        display: flex;
        flex-direction: column;
        grid-gap: 40px;
    }

    .steps-r > h2 {
        flex-wrap: wrap;
    }

    .step-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-card:before {
        display: none;
    }

    .flex-row {
        flex-wrap: wrap;
    }
}

    
    .mobile-signup-btn {
  background: var(--primary-color);
  color: white;
  padding: 12px !important;
  text-align: center;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 10px;
  display: block;
  text-transform: uppercase;
}

.mobile-signup-btn:hover {
  background: #5f49c9;
}

.mobile-social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 15px;
}

.mobile-social-icons a {
  font-size: 20px;
  color: var(--text-color);
  transition: color 0.2s ease;
}

.mobile-social-icons a:hover {
  color: var(--primary-color);
}

    
    html {
    overflow-x: hidden;
    /* overflow-y: hidden; */
}
    .mobile-menu,
.mobile-menu-toggle {
  display: none;
}

@media screen and (max-width: 1024px) {
  .navbar-l,
  .navbar-r {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    z-index: 101;
  }

  .mobile-menu {
    display: none; /* Still hidden by default */
    flex-direction: column;
    background: #0e1013;
    position: absolute;
    top: 100px; /* Adjust based on your nav height */
    left: 0;
    right: 0;
    padding: 20px;
    border-top: 1px solid #2525257a;
    z-index: 100;
  }

  .mobile-menu.show {
    display: flex;
  }

  .mobile-menu a {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-color);
    border-bottom: 1px solid #2525257a;
    text-align: left;
  }
}

