@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    font-family: 'SF Pro Display';
}

:root {
    --img-path: '/web/assets/images';
}

.btn,
a,
button {
    transition: all .3s;
}

body {
    background-color: #0B0B0B;
    transition: all .3s;

}

h2 {
    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #969696 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 48px;
    text-align: center;
    animation: textclip 2s linear infinite;
    background-size: 200% auto;
}

@keyframes textclip {
    100% {
        background-position: 200% center;
    }

}

.grid_box {
    display: grid;
}

.cstm_container {
    max-width: 1232px;
    padding: 0 16px;
    margin: auto;
    width: 100%;
}

.my_container {
    max-width: 1360px;
    margin: auto;
    padding: 0 16px;
    width: 100%;
}

header {
    position: sticky;
    top: 24px;
    left: 0;
    right: 0;
    padding: 0 16px;
    z-index: 99;
}

header .set {
    padding: 12px 20px;
    max-width: 1200px;
    margin: auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.6);
}

header .flex_box {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

header .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

header .menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

header .logo img {
    height: 36px;
}

header .button .btn {
    color: #fff !important;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 2px 30px;
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(8, 50, 186, 1) 0%, rgba(0, 29, 105, 1) 86%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    border: none;
}

header .button .dropdown-menu {
    border: none;
    opacity: 0;
    transform: translate3d(22px, 4px, 0);
    animation: animdropdown 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    transition: opacity 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.05);
    background: #000000db;
    border: 1px solid #0052FF33;
    border-radius: 5px;
    right: 22px !important;
    left: inherit !important;
    top: 30px !important;
    padding: 0;
    min-width: 200px;
}

header .button .dropdown-menu li+li {
    border-top: 1px solid #ffffff70;
}

header .button .dropdown-menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    padding: 12px;
    letter-spacing: 1px;
    display: block;
}

header .button .dropdown-menu li a:hover {
    background: #ffffff45;
}

header .button .btn:hover {

    transform: translateY(-1px);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        0 22px 45px rgba(0, 0, 0, 0.75);
}

header .menu ul li a:hover {
    color: #1455FF;
}

header .menu ul li a.active {
    color: #1455FF;
}

header .responsive .cross {
    font-size: 18px;
    display: none;
    -webkit-text-stroke: .2px;
    line-height: 0;
}

header.main .responsive .cross {
    display: block;
}

header.main .responsive .menu {
    display: none;
}

header .responsive span {
    background: linear-gradient(90deg, rgba(8, 50, 186, 1) 0%, rgba(0, 29, 105, 1) 86%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    color: #fff;
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    cursor: pointer;
}

header .responsive span i {
    color: #fff;
    font-size: 22px;
}

header .responsive {
    display: none;
}

header .button {
    display: flex;
    align-items: center;
    gap: 10px;
}


footer .set {
    max-width: 1200px;
    margin: auto;
    position: relative;
    padding-top: 40px;
}

footer .set:before {
    position: absolute;
    content: "";
    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #0C0C0C 100%);
    height: 2px;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    max-width: 1200px;
}

footer h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 14px;
}

footer .grid_box {
    grid-template-columns: 1fr .6fr .6fr 1fr;
    gap: 60px;
}

footer .logo_sec .logo {
    height: 52px;
}

footer .logo_sec p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin: 5px 0 16px;
}

footer .logo_sec ul.socail {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .logo_sec ul.socail li img {
    height: 40px;
    width: 40px;
    border-radius: 100px;
    box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.6), inset -1px -2px 1px rgba(255, 255, 255, 0.15), 0px 15px 40px rgba(0, 0, 0, 0.4);
    padding: 1px;
    transition: all .3s;
}

footer .logo_sec ul.socail li img:hover {
    transform: scale(1.1);
}

footer {
    padding: 40px 0 20px;
}

footer .menu ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

footer .menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: .5s;
}


footer .menu ul li a:hover {
    color: #1455FF;
    letter-spacing: 1px;

}

footer .email .gen h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

footer .email .gen h4 a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

footer .email .gen h4 a:hover {
    color: #1455FF;
}

footer .email .gen {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.Disclaimer p {
    color: #fff;
    font-weight: 400;
    font-style: italic;
    margin: 0;
    font-size: 16px;
}

.copyright p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.copyright {
    padding-top: 40px;
}



.animation_text {
    background: radial-gradient(50% 50% at 50% 50%, #14B1FF 0%, #1455FF 100%);
    background-clip: border-box;
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
}

.prepare_banner h1 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 14px;
}

.prepare_banner .break {
    display: inline-block;
    font-size: 72px;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    line-height: 80px;
    padding: 0 15px;
    font-weight: 500;
}

.prepare_banner {
    padding: 100px 0 20px;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 75%;
    min-height: 93vh;
}

.prepare_banner h3 {
    color: #DBEAFECC;
    font-family: inter;
    font-weight: 400;
    font-size: 24px;
    margin-top: 20px;
    letter-spacing: .7px;
}

.prepare_banner h3 span {
    color: #fff;
    font-family: inter;
    font-weight: 600;
    margin: 0;
    letter-spacing: .7px;
    margin-top: 8px;
    display: block;
}

.prepare_banner .button a.btn.glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.05));
}

.prepare_banner .button .btn {
    color: #fff;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 5px 30px;
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(8, 50, 186, 1) 0%, rgba(0, 29, 105, 1) 86%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
}

.prepare_banner .button {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0 0;
}

.prepare_banner .btn:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        0 22px 45px rgba(0, 0, 0, 0.75);
}

.prepare_banner .button a.btn.glass:hover {
    background: linear-gradient(90deg, rgba(8, 50, 186, 1) 0%, rgba(0, 29, 105, 1) 86%);
}

.prepare_banner .img img {
    width: 100%;
}

.prepare_banner .grid_box {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 30px;
}

.prepare_banner .img {
    display: none;
}

.prepare_banner .box {
    margin-top: 60px;
}


.global_ready .set {
    padding: 40px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    text-align: center;
    border-radius: 20px;
    filter: drop-shadow(0 2px 10px #8eaaff24);
    box-shadow: 0px 4px 20px 0px #8EAAFF40;
    background-color: #0b0b0b;
}

.global_ready h2 {
    background: linear-gradient(90deg, #51A2FF 0%, #C27AFF 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    background-size: 200% auto;
}

.global_ready p {
    color: #fff;
    font-size: 20px;
    margin: 15px 0 0;
    font-weight: 400;
}

.global_ready .img {
    position: relative;
    padding-bottom: 38%;
    max-width: 640px;
    margin: 40px auto 0;
    border-radius: 20px;
    overflow: hidden;
}

.global_ready .img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.global_ready .img video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.how_work {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.how_work::before {
    position: absolute;
    content: "";
    background-image: url(/assets/images/how-after.png);
    width: 926px;
    height: 910px;
    left: 0;
    right: 0;
    margin: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    z-index: -1;
}

.how_work .grid_box {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.how_work .box {
    filter: drop-shadow(0 4px 20px #8EAAFF40);
    box-shadow: inset 0px 0px 2px rgba(255, 255, 255, 0.6), inset 0 0px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgb(255 255 255 / 10%));
    /* padding: 20px; */
    padding: 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    /* gap: 18px; */
    gap: 14px;
    position: relative;
}

.how_work .cont h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
}

.how_work .cont p {
    color: #fff;
}

.how_work .cont p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.how_work .cont h4 {
    font-size: 16px;
    color: #8EC5FFCC;
    font-weight: 400;
    margin: 10px 0 0;
}

.how_work .box .img img {
    height: 56px;
}

.how_work .box .count {
    color: #51A2FF4D;
    font-size: 50px;
    line-height: 50px;
    font-style: italic;
    font-weight: 400;
    position: absolute;
    right: 20px;
    top: 10px;
}

.build_sec {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.build_sec .set img {
    height: 75px;
}

.build_sec .set h3 {
    font-size: 16px;
    margin: 16px 0 0;
}

.build_sec .set {
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, #1f5aa8 0%, #0a1630 45%, #05070d 100%);
    padding: 20px 15px;
    border-radius: 20px;
    transition: all .3s;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 0px 3px #8EAAFF40;
}

.build_sec .set:hover {
    transform: translate(0px, -10px);
}

.production_sec .set .box h3 {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: .5px;
    max-width: 90px;
    margin: 0;
}

.production_sec .set .box {
    position: relative;
    align-items: center;
    display: inline-flex;
    gap: 12px;
    background-image: url(/assets/images/arrow-img.svg);
    padding: 10px 20px;
    background-size: cover;
    height: 80px;
    width: 100%;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: 50% 30%;
    margin-left: -75px;
}

.production_sec .set .box span {
    background: linear-gradient(90deg, #155DFC 0%, #0092B8 100%);
    color: #fff;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 50px;
    height: 20px;
    position: absolute;
    top: -6px;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    max-width: 65px;
}

.production_sec .set .box:nth-child(1) {
    background-image: url(/assets/images/arrow-img-first.svg);
    margin: 0;
}

.production_sec .set .box:last-child {
    background-image: url(/assets/images/arrow-img-last.svg);
}

.production_sec .set .box img {
    height: 27px;
}

.production_sec .set {
    display: flex;
    margin-top: 40px;
}

.price_sec {
    padding-top: 80px;
}

.price_sec .grid_box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    align-items: baseline;
}

.price_sec .price_box {
    border-radius: 24px;
    background: linear-gradient(180deg, rgb(255 255 255 / 16%), rgb(255 255 255 / 16%));
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 35px 24px 24px;
    box-shadow: 0px 4px 20px 0px #8EAAFF40;
    position: relative;
}

.price_sec .price_box h3 {
    color: #fff;
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 12px;
}

.price_sec .price_box h4 {
    color: #fff;
    font-size: 42px;
    text-align: center;
}

.price_sec .price_box ul {
    color: #DBEAFE;
    font-size: 16px;
    font-weight: 400;
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.price_sec .price_box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price_sec .price_box ul li img {
    height: 25px;
}

.price_sec .price_box .btn {
    color: #fff;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 5px 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s;
    filter: drop-shadow(0 4px 20px #8EAAFF40);
    box-shadow: inset 0px 0px 2px rgb(255 255 255 / 60%), inset 0 0px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgb(255 255 255 / 18%), rgb(255 255 255 / 26%));
}

.price_box.active .btn {
    background: linear-gradient(90deg, rgba(8, 50, 186, 1) 0%, rgb(5 45 148) 86%);
}

.price_sec .price_box .btn:hover {
    background: linear-gradient(90deg, rgba(8, 50, 186, 1) 0%, rgba(0, 29, 105, 1) 86%);
    transform: translateY(-1px);
}

.price_sec .price_box .label {
    background: linear-gradient(135deg, #1455FF 0%, #00C6FF 100%);
    height: 36px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    max-width: 142px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .5px;
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    margin: auto;
}


.price_sec .price_box.active {
    background: linear-gradient(180deg, #204779 0%, #151923 60%, #151923 100%);
    /* min-height: 420px; */
}

.price_sec .Add-on {
    text-align: center;
    margin-top: 24px;
    position: relative;
    padding: 15px 0;
}

.price_sec .Add-on h3 {
    color: #fff;
    font-size: 16px;
}

.price_sec .Add-on h4 {
    color: #BEDBFF;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .5px;
}

.price_sec .Add-on h4 b {
    font-size: 24px;
    font-weight: 600;
}

.price_sec .Add-on p {
    color: #BEDBFF99;
    margin: 0;
    font-size: 14px;
    letter-spacing: .5px;
}

.price_sec .Add-on:before {
    position: absolute;
    content: "";
    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #0C0C0C 100%);
    height: 2px;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    max-width: 1200px;
}

.price_sec .Add-on::after {
    position: absolute;
    content: "";
    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #0C0C0C 100%);
    height: 2px;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 1200px;
}

.production_sec {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.production_sec::before {
    position: absolute;
    content: "";
    background-image: url(/assets/images/Subtract.png);
    width: 100%;
    height: 100%;
    top: -140px;
    left: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    margin: auto;
}

.Trust_sec {
    margin-top: 80px;
}

.Trust_sec .grid_box {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.Trust_sec .box {
    padding: 30px 34px;
    border-radius: 24px;
    background: linear-gradient(180deg, #1f5aa8 0%, #0a1630 45%, #05070d 100%);
    text-align: center;
    color: #fff;
    position: relative;
    transition: all .3s;
}

.Trust_sec .box:hover {
    transform: translate(0px, -10px);
}

.Trust_sec .box h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 16px 0 14px;
}

.Trust_sec .box p {
    font-size: 16px;
    color: #969696;
    margin: 0 auto;
    max-width: 274px;
}

.Trust_sec .box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    filter: drop-shadow(0 4px 20px #8EAAFF40);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 7px 20px #8EAAFF40;
    pointer-events: none;
}

.Trust_sec .box img {
    height: 150px;
}

.Referral_program {
    margin-top: 120px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-bottom: 80px;
}

.Referral_program::before {
    position: absolute;
    content: "";
    background-image: url(/assets/images/form_after.png);
    width: 100%;
    height: 500px;
    bottom: -200px;
    left: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    margin: auto;
}

.Referral_program .grid_box {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.Referral_program h2 {
    text-align: left;
}

.Referral_program .box p {
    color: #fff;
    font-size: 20px;
    margin: 20px 0 30px;
}

.Referral_program .box .set {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgb(255 255 255 / 10%));
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 2px 10px #8EAAFF40;
    border-radius: 24px;
    padding: 20px;
    width: 100%;
    filter: drop-shadow(0 4px 20px #8EAAFF40);
    backdrop-filter: blur(18px);
    transition: all .3s;
    margin-top: 24px;
}

.Referral_program .title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.Referral_program .title img {
    height: 48px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.05));
}

.Referral_program .box .set h4 {
    color: #DBEAFEE5;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    font-family: inter;
}

.Referral_program .box .set h4 b {
    color: #51A2FF;
    font-weight: 700;
    font-size: 24px;
}

.Referral_program .box .set ul {
    color: #DBEAFEE5;
    font-size: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    gap: 12px;
}

.Referral_program .box .set ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.Referral_program .box .set ul li i {
    color: #05DF72;
    font-size: 20px;
    line-height: 0;
}

.Referral_program .form_box {
    border: 1px solid #51A2FF80;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(160deg, #204779 0%, #151923 80%, #151923 100%);
}

.Referral_program .form-group {
    margin-bottom: 20px;
}

.Referral_program .form-group label {
    color: #DBEAFEE5;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .5px;
    margin-bottom: 7px;
}

.Referral_program .form-group label span {
    color: #DBEAFE80;
}

.Referral_program .form-group .form-control {
    border: 1px solid #FFFFFF1A;
    height: 50px;
    background-color: #FFFFFF0D;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 16px;
    color: #fff;
    letter-spacing: .5px;
    box-shadow: none;
    transition: all .3s;
}

.Referral_program .form-group .form-control:focus {
    border-color: #fff;
}

.Referral_program .form-group .form-control::placeholder {
    color: #DBEAFE66;
}

.Referral_program .form_box button {
    color: #fff;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 5px 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s;
    filter: drop-shadow(0 4px 20px #8EAAFF40);
    box-shadow: inset 0px 0px 2px rgb(255 255 255 / 60%), inset 0 0px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(90deg, rgba(8, 50, 186, 1) 0%, rgb(5 45 148) 86%);
    width: 100%;
    margin-top: 30px;
}

.Referral_program .form_box button:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        0 22px 45px rgba(0, 0, 0, 0.75);
}

.Prepare_content h2 {
    background: linear-gradient(90deg, #51A2FF 0%, #C27AFF 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    background-size: 200% auto;
}

.Prepare_content {
    padding: 50px 0 30px;
}

.Prepare_content .set {
    padding: 40px 40px 0;
    text-align: center;
    border-radius: 20px;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    filter: drop-shadow(0 4px 20px #8EAAFF40);
    box-shadow: inset 0px 0px 2px rgba(255, 255, 255, 0.6), inset 0 0px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    background-color: #0b0b0b;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.Prepare_content h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 16px auto 24px;
    max-width: 538px;
    line-height: 30px;
}

.Prepare_content .btn {
    color: #fff;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 5px 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s;
    filter: drop-shadow(0 4px 20px #8EAAFF40);
    box-shadow: inset 0px 0px 2px rgb(255 255 255 / 60%), inset 0 0px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(90deg, rgba(8, 50, 186, 1) 0%, rgb(5 45 148) 86%);
    width: 100%;
    max-width: 512px;
    margin: auto;
}

.Prepare_content .btn:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4), inset 0 -3px 6px rgba(0, 0, 0, 0.4), 0 22px 45px rgba(0, 0, 0, 0.75);
}


.Prepare_content .img img {
    height: 400px;
}

.contact_us {
    padding: 80px 0 30px;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.contact_us .box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 10px 20px #8EAAFF40;
    padding: 40px;
    max-width: 800px;
    margin: auto;
    border-radius: 20px;
}

.contact_us .form-group label {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 7px;
    letter-spacing: 1px;
    color: #d6d6d6;
}

.contact_us .form-group .form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    color: #fff;
    outline: none;
    transition: border 0.3s;
    box-shadow: none;
    font-size: 16px;
}

.contact_us .form-group {
    margin-bottom: 20px;
}

.contact_us h2 {
    margin-bottom: 40px;
}

.contact_us .contact-btn {
    color: #fff;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 5px 22px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    border: none;
    background: linear-gradient(90deg, rgba(8, 50, 186, 1) 0%, rgba(0, 29, 105, 1) 86%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact_us .contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4), inset 0 -3px 6px rgba(0, 0, 0, 0.4), 0 22px 45px rgba(0, 0, 0, 0.75);
}

#Works {
    scroll-margin-top: 80px;
}

#Pricing {
    scroll-margin-top: 80px;
}

.Referral_program .form_box .strip {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff30;
    box-shadow: 0px 25px 50px -12px #00000040;
    border: 1px solid #FFFFFF0D;
    padding: 15px;
    border-radius: 15px;
    margin-top: 20px;
    justify-content: space-evenly;
    cursor: pointer;
}

.Referral_program .form_box .strip img {
    height: 30px;
}

.Referral_program .form_box .strip .img {
    height: 44px;
}

header .button .btn span i {
    font-size: 28px;
    line-height: 0;
    display: none;
}

.work_sec {
    padding: 10px 0 30px;
    position: relative;
}

.work_sec .publish {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    color: #969696;
    font-style: italic;
    letter-spacing: .5px;
    padding-bottom: 20px;
}

.work_sec .common_lines {
    position: relative;

}

.work_sec .common_lines:before {
    position: absolute;
    content: "";
    background: radial-gradient(70% 70% at 50% 70%, rgb(76 115 243) 0%, #0C0C0C 100%);
    height: 2px;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 1200px;
}

.work_sec .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 50px;
    gap: 20px;
}

.work_sec .box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0px 0px 2px rgba(255, 255, 255, 0.6), inset 0 0px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    border-radius: 14px;
    padding: 20px;
    width: 100%;
    filter: drop-shadow(0 4px 20px #8EAAFF40);
    backdrop-filter: blur(18px);
    transition: all .3s;
    display: flex;
    gap: 14px;
    align-items: center;
}

.work_sec .box img {
    height: 55px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.05));
}

.work_sec .box h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    line-height: 28px;
}

.work_sec .own {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    letter-spacing: .5px;
    padding-bottom: 20px;
    margin-top: 40px;
}

.work_sec .own b {
    color: #1455FF;
    font-weight: 600;
}

.work_sec .continue h3 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    letter-spacing: .5px;
    margin-top: 40px;
    padding-bottom: 6px;
}

.work_sec .continue p {
    color: #969696;
    font-size: 18px;
    margin: 0;
}

.work_sec .continue p a {
    text-decoration: none;
    color: #1455FF;
    font-weight: 600;
}

.work_sec .auto h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #51A2FF 0%, #C27AFF 100%), linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
}

.work_sec .auto {
    margin-top: 30px;
}

.work_sec .auto .grid {
    grid-template-columns: .8fr 1fr;
    margin-top: 30px;
}

.work_sec .auto ul li {
    color: #969696;
    font-size: 18px;
}

.work_sec .auto .common_lines:before {
    background: radial-gradient(70% 50% at 40% 50%, rgb(76 115 243) 0%, #0C0C0C 100%);
}

.work_sec .auto ul {
    padding-left: 20px;
    padding-bottom: 24px;
    margin: 0 0 24px;
}

.work_sec .auto ul li+li {
    margin-top: 8px;
}

.work_sec .auto .glob {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0px 0px 2px rgba(255, 255, 255, 0.6), inset 0 0px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    border-radius: 14px;
    padding: 20px;
    width: 100%;
    filter: drop-shadow(0 4px 20px #8EAAFF40);
    backdrop-filter: blur(18px);
    transition: all .3s;
}

.work_sec .auto .glob h5 {
    color: #fff;
    font-size: 28px;
}

.work_sec .auto .glob p {
    color: #969696;
    font-size: 20px;
    margin-bottom: 20px;
}

.work_sec .auto .glob .btn {
    color: #fff;
    height: 55px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(8, 50, 186, 1) 0%, rgba(0, 29, 105, 1) 86%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    max-width: 280px;
    width: 100%;
    letter-spacing: 1px;
}

.work_sec .auto h4 {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.work_sec .auto p {
    color: #969696;
    font-size: 18px;
    margin: 0;
}

.work_sec .support .btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.05));
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 100%;
    max-width: 250px;
    letter-spacing: 1px;
}

.work_sec .support {
    text-align: center;
    margin-top: 60px;
}

.work_sec .hw-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .5px;
    color: #969696;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.work_sec .hw-footer p {
    margin: 0;
}

.Terms_conditions .set {
    max-width: 1200px;
    margin: auto;
}

.Terms_conditions h1,
h2,
h3,
h4 {
    color: #fff;
}

.Terms_conditions p {
    color: #969696;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 14px;
    line-height: 30px;
}

.Terms_conditions {
    padding: 20px 0 30px;
}

.Terms_conditions h1 {
    font-size: 72px;
    font-weight: 500;
}

.Terms_conditions h3 {
    font-size: 32px;
    font-weight: 500;
    margin: 30px 0 8px;
}

.Terms_conditions p a {
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .7px;
    color: #0052FF;
}

.Referral_program .form_box .form-group {
    position: relative;
}

.Referral_program .form_box .form-group .eye {
    position: absolute;
    right: 15px;
    top: 42px;
    cursor: pointer;
    z-index: 10;
}

/* rahul */
.problem_solving {
    padding-bottom: 80px;
}

.problem_solving .grid_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    align-items: center;
    gap: 40px;
}

.problem_solving .grid_box .box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgb(255 255 255 / 10%));
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15), 0 2px 10px #8EAAFF40;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    filter: drop-shadow(0 4px 20px #8EAAFF40);
    backdrop-filter: blur(18px);
    transition: all .3s;
    height: 100%;

}

.problem_solving .grid_box .box p {
    color: #DBEAFEE5;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    font-family: inter;
}

.problem_solving .grid_box .box h3 {
    font-size: 24px;
    color: #51A2FF;
}

.feature {
    padding-bottom: 80px;
}

.feature .grid_box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
    align-items: center;
    gap: 40px;
}

.feature .grid_box .box {
    border-radius: 24px;
    background: linear-gradient(180deg, #2454954f 0%, #142b5c7a 45%, #1a233e69 100%);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 21px 18px 18px;
    box-shadow: 0px 4px 20px 0px #8EAAFF40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature .grid_box .box p {
    color: #DBEAFEE5;
    font-size: 21px;
    font-weight: 400;
    margin: 0;
    margin-top: 15px;
    font-family: inter;

}

.feature .grid_box .items img {
    height: 40px;
    width: 40px;
    
}
#feature {
    scroll-margin-top: 100px;
}

@media (max-width: 1399.98px) {
    .Terms_conditions p {
        font-size: 18px;
        line-height: 28px;
    }

    .Terms_conditions h3 {
        font-size: 26px;
    }

    .Terms_conditions h1 {
        font-size: 58px;
    }
}

@media (max-width: 1199.98px) {

    .Terms_conditions h3 {
        font-size: 24px;
        margin: 24px 0 8px;
    }

    .Terms_conditions h1 {
        font-size: 44px;
    }

    .work_sec .support {
        margin-top: 40px;
    }


    .work_sec .own {
        margin-top: 30px;
    }

    .work_sec .grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .Referral_program .form-group .form-control {
        padding: 0 12px;
        font-size: 15px;
    }

    .Referral_program .box .set h4 b {
        font-size: 22px;
    }

    .Referral_program .box .set h4 {
        font-size: 16px;
    }

    .Referral_program .form_box button {
        margin-top: 20px;
    }

    .Referral_program .form-group label {
        font-size: 15px;
    }

    .Referral_program .form-group {
        margin-bottom: 16px;
    }

    .Referral_program .box .set ul li i {
        font-size: 17px;
    }

    .Referral_program .box .set ul {
        font-size: 16px;
        gap: 10px;
    }

    .Referral_program .title img {
        height: 44px;
    }

    .Referral_program .title {
        font-size: 20px;
        gap: 10px;
        margin-bottom: 14px;
    }

    .Referral_program .box p {
        font-size: 16px;
        margin: 12px 0 20px;
    }

    .Referral_program {
        margin-top: 70px;
        padding-bottom: 60px;

    }

    .Trust_sec {
        margin-top: 50px;
    }

    .Trust_sec .box h3 {
        font-size: 18px;
    }

    .Trust_sec .box img {
        height: 120px;
    }

    .Trust_sec .box {
        padding: 24px 20px;
    }

    .Trust_sec .grid_box {
        gap: 20px;
    }

    .price_sec {
        padding-top: 50px;
    }

    .price_sec .price_box ul li img {
        height: 22px;
    }

    .price_sec .price_box ul {
        font-size: 15px;
    }

    .price_sec .price_box {
        padding: 35px 15px 20px;
    }

    .price_sec .price_box h3 {
        font-size: 18px;
    }

    .price_sec .price_box h4 {
        font-size: 32px;
    }

    .production_sec .set .box img {
        height: 24px;
    }

    .production_sec .set .box {
        margin-left: -58px;
        gap: 8px;
    }

    .build_sec .set h3 {
        font-size: 14px;
    }

    .build_sec .set img {
        height: 50px;
    }

    .build_sec {
        gap: 16px;
        margin-top: 24px;
    }

    .how_work .box {
        padding: 15px;
        gap: 15px;
    }

    .how_work {
        padding: 50px 0;
    }

    .how_work .grid_box {
        gap: 16px;
        margin-top: 24px;
        margin-bottom: 40px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .global_ready .img {
        padding-bottom: 40%;
        margin: 24px auto 0;
    }

    .global_ready p {
        font-size: 18px;
        line-height: 30px;
    }

    h2 {
        font-size: 38px;
    }

    .prepare_banner {
        padding: 90px 0 20px;
        background-size: 85%;
        min-height: 82vh;
    }

    .prepare_banner .box {
        margin-top: 20px;
    }

    .prepare_banner .button {
        gap: 10px;
        margin: 30px 0 0;
    }

    .prepare_banner h3 {
        font-size: 18px;
    }

    .prepare_banner .break {
        font-size: 52px;
        line-height: 60px;
    }

    .prepare_banner h1 {
        font-size: 42px;
    }

    .copyright {
        padding-top: 30px;
    }

    footer .logo_sec ul.socail {
        gap: 10px;
    }

    .copyright {
        padding-top: 30px;
    }

    footer .menu ul {
        gap: 10px;
    }

    footer h3 {
        font-size: 20px;
        margin: 0 0 12px;
    }

    footer .logo_sec .logo {
        height: 48px;
    }

    footer .set {
        padding-top: 30px;
    }

    footer .grid_box {
        gap: 20px;
    }

    footer {
        padding: 20px 0;
    }

    header {
        top: 16px;
    }

    header .set {
        padding: 10px 12px;
    }

    header .menu ul {
        gap: 24px;
    }

    header .button .btn {
        font-size: 14px;
    }

    header .menu ul li a {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .feature .grid_box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
         margin-top: 24px;
    }

    .feature .grid_box .box p {
        color: #DBEAFEE5;
        font-size: 18px;
    }

    .problem_solving .grid_box {
        gap: 18px;
        margin-top: 24px;
    }
  
    

    .problem_solving .grid_box .box h3 {
        font-size: 16px;
    }

    .Terms_conditions p {
        font-size: 16px;
        line-height: 26px;
    }

    .Terms_conditions h3 {
        font-size: 18px;
    }

    .Terms_conditions h1 {
        font-size: 32px;
    }

    .work_sec .hw-footer {
        margin-top: 20px;
        font-size: 15px;
    }

    .work_sec .support {
        margin-top: 30px;
    }

    .work_sec .support .btn {
        font-size: 14px;
        max-width: 210px;
    }

    .work_sec .auto .glob .btn {
        height: 50px;
        font-size: 14px;
        max-width: 210px;
    }

    .work_sec .auto .glob p {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .work_sec .auto .glob {
        padding: 20px 15px;
    }

    .work_sec .auto .glob h5 {
        font-size: 22px;
    }

    .work_sec .auto ul {
        padding-bottom: 18px;
        margin: 0 0 18px;
    }

    .work_sec .auto p {
        font-size: 16px;
    }

    .work_sec .auto h4 {
        font-size: 18px;
    }

    .work_sec .auto ul li+li {
        margin-top: 6px;
    }

    .work_sec .auto ul li {
        font-size: 16px;
    }

    .work_sec .auto {
        margin-top: 20px;
    }

    .work_sec .auto h3 {
        font-size: 18px;
    }

    .work_sec .continue p {
        font-size: 16px;
    }

    .work_sec .continue h3 {
        margin-top: 24px;
        padding: 0;
    }

    .work_sec .own {
        margin-top: 24px;
        font-size: 16px;
    }

    .work_sec .publish {
        font-size: 18px;
    }

    .work_sec .grid {
        grid-template-columns: 1fr 1fr;
    }

    .work_sec .box img {
        height: 50px;
    }

    .work_sec .box h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .work_sec .box {
        padding: 15px;
    }

    .Prepare_content {
        padding: 30px 0 20px;
    }

    .Prepare_content h3 {
        font-size: 18px;
        margin: 12px auto 18px;
        line-height: 27px;
    }

    .Prepare_content .btn {
        padding: 5px 15px;
        font-size: 15px;
        max-width: 390px;
    }

    .Prepare_content .img img {
        height: 280px;
    }

    .Referral_program .form_box button {
        padding: 5px 20px;
        font-size: 15px;
    }

    .price_sec .price_box .btn {
        height: 46px;
        padding: 5px 20px;
        font-size: 15px;
    }

    .Referral_program {
        margin-top: 50px;
        padding-bottom: 50px;
    }

    .Referral_program .grid_box {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .Trust_sec .grid_box {
        gap: 16px;
        grid-template-columns: 1fr 1fr;
    }

    .price_sec {
        padding-top: 40px;
    }

    .price_sec .price_box.active {
        min-height: inherit;
    }

    .price_sec .grid_box {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: stretch;
    }

    .production_sec .set .box {
        margin-left: 0;
        gap: 10px;
        padding: 10px 10px;
    }

    .production_sec .set {
        display: grid;
        margin-top: 24px;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px 0px;
    }

    .build_sec .set h3 {
        font-size: 15px;
    }

    .build_sec {
        grid-template-columns: repeat(4, 1fr);
    }

    .how_work .grid_box {
        grid-template-columns: 1fr 1fr;
    }

    .global_ready p {
        font-size: 16px;
        line-height: 27px;
        margin: 10px 0 0;
    }

    .global_ready .set {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .global_ready .img {
        padding-bottom: 45%;
        max-width: 500px;
    }

    h2 {
        font-size: 36px;
    }

    .prepare_banner .button .btn {
        height: 46px;
        padding: 5px 25px;
        font-size: 15px;
    }

    .prepare_banner {
        padding: 60px 0 50px;
        min-height: inherit;
        background-position: 100% -100%;
    }

    .prepare_banner h3 {
        font-size: 16px;
    }

    .prepare_banner .break {
        font-size: 38px;
        line-height: 44px;
    }

    .prepare_banner h1 {
        font-size: 32px;
    }

    footer .Disclaimer {
        grid-column: 1 / -1;
    }

    footer .grid_box {
        grid-template-columns: 1fr .7fr .7fr;
    }

    header {
        top: 15px;
    }

    header .set {
        padding: 10px 16px;
    }

    header .menu ul li a {
        font-size: 16px;
    }

    header.main .menu ul {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
    }

    header .menu ul {
        gap: 24px;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 77px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(18px);
        width: 100%;
        border-radius: 28px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 10px 30px rgba(0, 0, 0, 0.6);
        padding: 20px;
        background-color: #000000e0;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease-in-out;
        transform: scaleY(0);
    }

    header .responsive {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .problem_solving {
        padding-bottom: 40px;
         padding-top: 10px;
    }
    .feature {
        padding-bottom: 40px;
    }

    .work_sec .box {
        gap: 10px;
    }

    .work_sec .box img {
        height: 45px;
    }

    .work_sec .auto .grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact_us .contact-btn {
        font-size: 15px;
    }

    .contact_us .form-group label {
        font-size: 15px;
    }

    .contact_us .form-group .form-control {
        font-size: 15px;
    }

    .contact_us {
        padding: 40px 0 20px;
    }

    .contact_us .form-group {
        margin-bottom: 16px;
    }

    .contact_us .box {
        padding: 20px;
    }

    .Prepare_content .img img {
        height: 250px;
    }

    .Prepare_content .set {
        padding: 30px 20px 0;
    }

    .Referral_program {
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .Referral_program .box .set {
        margin-top: 20px;
    }

    .Referral_program .form_box {
        padding: 25px 20px;
    }

    .Trust_sec {
        margin-top: 40px;
    }

    .Trust_sec .grid_box {
        margin-top: 24px;
    }

    .Trust_sec .box img {
        height: 90px;
    }

    .production_sec .set {
        grid-template-columns: 1fr 1fr;
    }

    .build_sec {
        grid-template-columns: repeat(3, 1fr);
    }

    .how_work .cont h3 {
        font-size: 20px;
    }

    .how_work .box .count {
        font-size: 34px;
        line-height: 34px;
    }

    .global_ready .img {
        padding-bottom: 60%;
    }

    .global_ready .set {
        padding: 30px 16px;
        margin-top: 10px;
    }

    h2 {
        font-size: 32px;
    }

    .prepare_banner {
        padding: 40px 0 30px;
    }

    .prepare_banner .box {
        margin-top: 0;
    }

    .prepare_banner h3 {
        font-size: 18px;
    }

    .prepare_banner .break {
        font-size: 48px;
        line-height: 56px;
    }

    .prepare_banner h1 {
        font-size: 38px;
    }

    .prepare_banner .img {
        display: block;
    }

    .prepare_banner .grid_box {
        grid-template-columns: 1fr;
    }

    .copyright p {
        text-align: center;
    }

    footer .Disclaimer {
        text-align: center;
    }

    footer .logo_sec {
        grid-column: 1 / -1;
    }

    footer .grid_box {
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
    }

}

@media (max-width: 575.98px) {
    .feature .grid_box .box p {
        color: #DBEAFEE5;
        font-size: 16px;
    }

    .feature .grid_box .box {
        padding: 14px 18px 18px;
            box-shadow: 0px 4px 8px 0px #8EAAFF40;
    }

    .feature .grid_box {
        display: grid;
        grid-template-columns: 1fr;
    }

    .problem_solving .grid_box {
        grid-template-columns: 1fr;
    }

    .Terms_conditions h3 {
        font-size: 17px;
        margin: 18px 0 6px;
    }

    .Terms_conditions p {
        font-size: 15px;
        line-height: 24px;
        margin: 0 0 10px;
    }

    .work_sec .support {
        margin-top: 20px;
    }

    .work_sec .auto .glob h5 {
        font-size: 20px;
    }

    .work_sec .publish {
        font-size: 16px;
    }

    .work_sec .box img {
        height: 50px;
    }

    .work_sec .box h3 {
        font-size: 17px;
        line-height: 26px;
    }

    .work_sec .grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }

    header .button .btn span i {
        display: block;
    }

    header .button .btn {
        font-size: 0;
        padding: 0;
        height: 48px;
        width: 48px;
    }

    .Prepare_content .img img {
        height: 230px;
    }

    .Prepare_content h3 {
        font-size: 16px;
        line-height: 25px;
    }

    .Referral_program::before {
        height: 390px;
    }

    .price_sec .Add-on h4 b {
        font-size: 20px;
    }

    .Trust_sec .box h3 {
        font-size: 20px;
    }

    .Trust_sec .grid_box {
        grid-template-columns: 1fr;
    }

    .price_sec .price_box:nth-child(1) {
        order: 2;
    }

    .price_sec .grid_box {
        grid-template-columns: 1fr;
    }

    .how_work {
        padding: 30px 0;
    }

    .build_sec {
        grid-template-columns: repeat(2, 1fr);
    }

    .how_work .box {
        align-items: normal;
    }

    .how_work .cont h3 {
        font-size: 22px;
    }

    .how_work .grid_box {
        grid-template-columns: 1fr;
    }

    .prepare_banner h3 {
        line-height: 26px;
    }

    .prepare_banner h3 span {
        display: inline;
        padding-left: 6px;
    }

    .prepare_banner .break {
        font-size: 42px;
        line-height: 48px;
    }

    .prepare_banner h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {

    .Terms_conditions h1 {
        font-size: 26px;
    }

    header .button {
        gap: 7px;
    }

    .Prepare_content .img img {
        height: 160px;
    }

    .production_sec .set {
        grid-template-columns: 1fr;
    }

    .build_sec .set img {
        height: 55px;
    }

    .build_sec .set h3 {
        font-size: 16px;
    }

    .build_sec {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 26px;
    }

    .prepare_banner .grid_box {
        gap: 20px;
    }

    .prepare_banner h3 {
        line-height: 24px;
        font-size: 16px;
    }

    .prepare_banner .break {
        font-size: 38px;
        line-height: 44px;
    }

    .prepare_banner h1 {
        font-size: 28px;
    }

    .prepare_banner .button .btn {
        height: 50px;
        padding: 5px 14px;
        width: 100%;
    }

    .prepare_banner .button {
        margin: 24px 0 0;
        flex-direction: column;
    }

    .copyright {
        padding-top: 20px;
    }

    footer .set {
        padding-top: 20px;
    }

    footer .logo_sec p {
        font-size: 15px;
    }

    footer .email .gen h4 a {
        font-size: 15px;
    }

    footer .email .gen h4 {
        font-size: 15px;
    }

    footer .menu ul {
        gap: 7px;
    }

    footer .menu ul li a {
        font-size: 15px;
    }

    .copyright {
        padding-top: 20px;
    }

    footer .logo_sec .logo {
        height: 40px;
    }
}



/*css*/

/* Waveform Container */
.waveform-container {
    position: relative;
    height: 80px;
    margin-top: 20px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

/* Waveform Bars */
.waveform-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 100%;
    padding: 0 5px;
}

.waveform-bar {
    flex: 1;
    background: linear-gradient(180deg, #4a90e2 0%, #357abd 100%);
    border-radius: 2px;
    transition: height 0.2s;
    min-width: 2px;
}

/* Selection Overlay */
.selection-overlay {
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(45, 108, 255, 0.25);
    border: 2px solid #2d6cff;
    border-radius: 6px;
    cursor: pointer;
    box-sizing: border-box;
    pointer-events: none;
}

/* Handles */
.handle {
    position: absolute;
    width: 12px;
    height: 100%;
    background: #2d6cff;
    cursor: ew-resize;
    top: 0;
    pointer-events: auto;
    transition: background 0.2s;
}

.handle:hover {
    background: #1a4fcc;
    transform: scaleX(1.2);
}

.handle-left {
    left: -6px;
    border-radius: 4px 0 0 4px;
}

.handle-right {
    right: -6px;
    border-radius: 0 4px 4px 0;
}

/* Time Indicators */
.time-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

/* Audio Preview Box */
.audio_preview_box {
    border-radius: 12px;
    padding: 20px;
    background: #ffffff14;
    border: 1px dashed #0D99FF;
    box-shadow: 0px 20px 40px -10px #00000066;
}

.audio_top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.play_btn {
    width: 40px;
    height: 40px;
    background: #2d6cff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.2s;
}

.play_btn:hover {
    transform: scale(1.05);
    background: #1a4fcc;
}

.audio_info {
    flex: 1;
}

.audio_info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.audio_info p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.close_btn {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.close_btn:hover {
    background: #e0e0e0;
}

/* Make sure the container has proper positioning */
.audio_file {
    margin-top: 20px;
}

.audio_file label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}



/* Wrapper */
.video_wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

/* Video */
.video_player {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: contain;
}

.video_duration_badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    /* 👈 change yahan hai */

    background: rgba(0, 0, 0, 0.7) !important;
    color: #fff;

    font-size: 12px;
    font-weight: 600;

    padding: 4px 8px;
    border-radius: 6px;

    z-index: 2;
}






/*video*/

/* Video Preview Styles */
.video_preview {
    margin: 20px 0;
    position: relative;
    padding-bottom: 60%;
}

.video_preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
}

/* Trim Slider Styles */


.timeline {
    position: relative;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 4px;
    cursor: pointer;
}

.timeline:hover {
    background-color: #e8e8e8;
}

/* Custom drag handles */
.timeline div[onMouseDown] {
    transition: background-color 0.2s;
    z-index: 10;
}

.timeline div[onMouseDown]:hover {
    background-color: #1976D2;
    width: 6px !important;
    transform: translateX(-3px) !important;
}

/* Drop box enhancements */
.drop_box {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drop_box:hover {
    background-color: #f8f8f8;
    border-color: #4CAF50;
}

.drop_box input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline {
        height: 30px;
    }

    .video_preview video {
        max-height: 300px;
    }
}

.music_platforms_row {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.music_platform_icon {
    transition: transform 0.3s ease;
}

.music_platform_icon:hover {
    transform: scale(1.15);
}

.music_platform_icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}