* {
    padding: 0;
    margin: 0;
}


html,
body {
    height: auto !important;
    overflow: hidden !important;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Medium.ttf") format("woff2");
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Font Family Variables */
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Inter", sans-serif;


    /* Color Variables */
    --color-primary: #0a0a0a;
    --color-secondary: #ffffff;
    --color-accent: #4e9cff;
    --color-heading: #222222;
    --color-text: #555555;
}

/* header */
.header {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}


.header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 80px;


}

.header nav .left img {
    width: 80px;
    height: 80px;
}

.header nav .right img {
    width: 40px;
    height: auto;
    cursor: pointer;
}

.header-logo {
  transition: opacity 0.3s ease;
}


/* Sidebar (Left Side) */
.sidebar {
    position: fixed;
    top: 0;
    left: 0px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    padding: 100px 40px;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.sidebar ul {
    list-style: none;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    font-size: 2rem;
}

.sidebar ul a li {
    font-size: 80px;
    text-align: left;
    font-weight: 700;
    margin-bottom: 30px;
    cursor: pointer;
    font-family: var(--font-primary);
}

.sidebar ul a {
    text-decoration: none;
    color: black;
}

.close-icon {
    position: absolute;
    top: 30px;
    right: 35px;
    width: 50px;
    cursor: pointer;
}


.data-scroll-container {
    padding-bottom: 150px !important;

}

/* hero-section  */

.hero-sec {
   min-height: 100vh;
    margin-top: 12rem;
    position: relative;
}

.hero-sec .hero-main {
    /* position: relative; */
}

/* Text Gradient CSS */
.text-gradient {
    color: #FFFFFF;
    background-image: linear-gradient(90deg, black 40%, #257CFF 70%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-sec .hero-main .hero-content {
    width: 80%;
    text-align: center;
    margin: auto;
    margin-top: 3rem;
}

.hero-sec .hero-main .hero-content h1 {
    font-size: 72px;
    font-family: var(--font-primary);
    font-weight: 900;
    line-height: 83px;
}

.hero-sec .hero-main .hero-content h1 {
    color: #00a0d3;
}

.hero-sec .hero-main .hero-vid {
    position: absolute;
    right: 0%;
    top: -25%;
    width: 100%;
    z-index: -1;
}

.hero-sec .hero-main .hero-vid video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cookies-box {
    width: 426px;
    height: 180px;
    display: flex;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    right: 1%;
    bottom: 3%;
    box-shadow: 3px 15px 20px #8787871A, 4px 27px 53px #87878717;
    border-radius: 8px;
    z-index: 10;

}

.cookies-box p {
    width: 80%;
    font-size: 16px;
    font-family: var(--font-primary);
    line-height: 1.3;
}

.box-btns {
    margin-right: 0.8rem;
}

.cookies-box .cookies-box-buttons {
    display: flex;
    gap: 2rem;
}

.cookies-box .cookies-box-buttons .btn1 {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}


.cookies-box .cookies-box-buttons .btn2 {

    background-color: white;
    color: #007bff;
    border: solid 1px #007bff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;


}


.cookie-setting {
    display: none;
    position: fixed;
    top: 15%;
    right: 1%;
    width: 40%;
    max-height: 80vh;
    overflow-y: auto;
    background: #fff;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 10px 10px 20px #8787871A, 5px 5px 15px black;
    z-index: 9999;

}



.custom-switch {
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: bg 0.3s ease;
    display: inline-block;
}

.custom-switch.active {
    background: #007bff;
}

.custom-switch .switch-slider {
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.custom-switch.active .switch-slider {
    transform: translateX(24px);
}


.setting-box-title {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.cookie-setting hr {
    width: 99%;
    border: 2px solid gray;
    margin: 20px 0;
}

.cookie-setting p {
    font-size: 18px;
    line-height: 25px;
    margin: 20px 0;
}

.cookie-setting .cookies-box-buttons {
    display: flex;
    gap: 1.5rem;
    margin: 20px 0;
}



.cookie-setting .cookies-box-buttons .btn1 {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-setting .cookies-box-buttons .btn2 {
    background-color: white;
    color: #007bff;
    border: 1px solid #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-setting .setting-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-setting .setting-box hr {
    width: 100%;
    border: 1px solid gray;
    margin: auto;
}

.cookie-setting .setting-box .setting-box-title {
    font-family: "Saira";
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;

}

.cookie-setting .setting-box .setting-box-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;

}

.cookie-setting .setting-box .setting-box-item h4 {
    font-size: 1.5em;
    font-weight: 700;
    font-family: sans-serif;
}

.cookie-setting .setting-box .setting-box-item p {
    font-size: 1.2em;
    font-weight: 500;
    margin: 10px 0;
}

.cookie-setting .setting-box .setting-box-item .custom-switch input {
    width: 22px;
    height: 22px;
    transform: scale(1.3);
    /* size big */
    cursor: pointer;
}




/* section2  */
.sec2-main {
    /* background: red; */
    height: auto;
    margin-top: 5rem;
}

.sec2-main .sec2-heading {
    text-align: center;
}

.sec2-main .sec2-heading p {
    font-size: 24px;
    font-family: var(--font-primary);
}

.sec2-main .sec2-heading h2 {
    font-size: 64px;
}

.sec2-img-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 5rem auto;
}

.sec2-img-content .img img {
    width: 584px;
    height: 580px;
    object-fit: cover;
    border-radius: 10px;
    clip-path: inset(50% 0% 50% 0%);
    /* collapsed center */
}

.sec2-img-content .content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 40%;
}

.sec2-img-content .content p {
    font-family: var(--font-primary);
    font-size: 18px;
}

.sec2-img-content .content .content1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sec2-img-content .content .content2 h2 {
    color: #202020;
}

.sec2-img-content .content .content3 h2 {
    color: #202020;
}

.sec2-img-content .content .content3 p {
    color: #202020;
}

.sec2-img-content .content .content1 button {
    padding: 10px 24px;
    background: #A8CBFF;
    color: blue;
    width: 150px;
    padding: 10px 24px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}

.sec2-img-content .content .content1 .sec2-btn2 {
    background-color: #0a0a0a;
    color: white;
}

.sec2-img-content .content .content1 .sec2-btn3 {
    width: 200px;
    background-color: #3A3A3A;
    color: #A8CBFF;
}



.sec2-img-content .content .content1 hr {
    height: 5px;
    width: 100%;
    background: gray;
    /* default gray */
    border: none;
    transform-origin: left;

}




.sec2-img-content .content .content1 h2 {
    font-size: 36px;
}

.sec2-img-content .content .content1 p {
    font-size: 18px;
    width: 85%;
}

/* faqs section  */
.sec3-faqs {
    /* background-color: antiquewhite; */
    height: auto;
    margin: 12rem auto;

}

.sec3-faqs h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    padding-bottom: 5rem;
    font-family: var(--font-primary);

}

.sec3-faqs .faqs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

}

.faq-box {
    border: 1px solid #ddd;
    width: 80%;
    padding: 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    transition: 0.3s;
      position: relative;

}

.faq-box h3 {
    font-size: 24px;
    font-weight: 450;
    font-family: var(--font-primary);
    width: 100%;
}

.faq-content {
    display: none;
    font-size: 16px;
    line-height: 25px;
    margin-top: 10px;
   font-family: var(--font-primary);
    width: 90%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.faq-box.active .faq-content {
    display: block;
    opacity: 1;
}

.faq-toggle {
    transition: transform 0.3s;
      width: 32px;
    height: 32px;
    transform-origin: center;
    transition: transform 0.3s ease;


}

.faq-box.active .faq-toggle {
    transform: rotate(45deg);
    /* plus → x */
}

/* section4  */
.sec4.border-blur {
    position: relative;
    /* required for the pseudo-element */
    overflow: visible;
    background-color: #257cff;
}

/* blurred bottom "border" */
.sec4.border-blur::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    height: 40px;
    /* thickness of the blurred border */
    background: #257cff;
    /* tint color */
    pointer-events: none;
    filter: blur(8px);
    backdrop-filter: blur(6px);

}


.sec4-main {
    position: relative;
}

.sec4-main .coinimg {
    position: absolute;
    top: 25px;
    left: 25px;

}

.sec4-main .coinimg img {
    width: 366px;
    height: 366px;
}

.sec4-content {
    /* background: antiquewhite; */
    width: 768px;
    margin: auto;
    text-align: center;
    padding: 80px 0;

}

.sec4-content h2 {
    font-size: 112px;
    font-weight: 700;
    font-family: var(--font-primary);

}

.sec4-content h4 {
    width: 100%;
    padding: 8rem 0;
    font-size: 28px;
    font-family: var(--font-primary);
    font-weight: 450;
    line-height: 36px;
    color: #E6E6E6;


}

.email-container {
    background: #3A3A3A;
    border: 0.5px solid #8D8D8D;
    width: 534px;
    height: 88px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 50px;
}

.email-container input {
    width: 200px;
    height: 40px;
    border-radius: 10px;
    padding: 1px 12px;
    font-size: 16px;
    background: transparent;
    border: none;
    color: white;
}



.email-container p {
    color: white;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    padding-left: 1.5rem;

}

.sub-btn {
    display: flex;
    align-items: center;
    padding-right: 1.5rem;
}

.sub-btn button {
    padding: 16px 24px;
    border-radius: 50px;
    background: white;
    font-size: 16px;
    color: #257CFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 160px;
    height: 56px;
}


.helper-text{
    color: whitesmoke;
    margin-top: 1rem;
    font-family: var(--font-primary);
    font-weight: 400;
}


.sub-btn img {
    width: 24px;
}

.clients {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;

}


.clients .text p {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
}

.clients .client-img {
    display: flex;
}

.clients .client-img img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.sec4-main .ship-img {
    position: absolute;
    bottom: 140px;
    right: 0;

}

.sec4-main .ship-img img {
    width: 420px;
    height: 440px;
}



/* Footer */
footer {
    margin: 0rem 0;
    padding-top: 10rem;
    margin-bottom: 0;
    /* border-bottom: 1px solid #257CFF; */
    /* A semi-transparent border */

}

.logo-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.logo-content img {
    width: 280px;
    height: 280px;
}

.logo-content p {
    width: 27%;
    font-size: 12px;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 16px;
}

.all-rights {
    display: flex;
    justify-content: space-between;
    padding: 50px 160px;
}

.all-rights .copy-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 12px;
}

.all-rights .term-text {
    display: flex;
    gap: 20px;
    align-items: end;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 12px;
}

.all-rights .term-text a {
    text-decoration: none;
    color: black;
}

.all-rights .term-text a:hover {
    text-decoration: underline;
    color: #007bff;

}

.contact-text{
    display: flex;
    align-items: end;

}

.contact-text a{
    color: black;
    font-family: var(--font-primary);
    text-decoration: none;

}




/* policy and terms css */



/* TermsCondiitons css */

.term-sec1 {
    margin: 8rem 0;
    margin-top: 10rem;
    margin-bottom: 5rem;
}

.term-sec1 .title {
    /* background: red; */
    width: 584px;
    margin: auto;
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.term-sec1 .title h1 {
    font-size: 60px;
}

.term-sec1 .title p {
    width: 72%;
    font-size: 16px;
    font-weight: 400;
}

.term-img {
    text-align: center;
}

.term-img img {
    width: 950px;
    height: 337px;
    object-fit: cover;
}

.term-sec2 {
    width: 100%;
    margin: auto;
}

.term-sec2 .term-main-content {
    width: 1049px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.term-sec2 .term-main-content p {
    font-size: 20px;
    width: 100%;

}

.term-sec2 .term-main-content .term-content1 {
    display: flex;
    flex-direction: column;
    gap: 30px;

}

.term-sec2 .term-main-content .term-content1 h2 {
    font-size: 36px;
    font-weight: 500;

}


/* Privacy Policy css */

.policy-sec1 {
    margin: 8rem 0;
    margin-bottom: 5rem;
}

.policy-sec1 .title {
    /* background: red; */
    width: 584px;
    margin: auto;
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.policy-sec1 .title h1 {
    font-size: 60px;
}

.policy-sec1 .title p {
    width: 72%;
    font-size: 16px;
    font-weight: 400;
}

.policy-img {
    text-align: center;
}

.policy-img img {
    width: 950px;
    height: 337px;
    object-fit: cover;
}

.policy-sec2 {
    width: 100%;
    margin: auto;
}

.policy-sec2 .policy-main-content {
    width: 1049px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.policy-sec2 .policy-main-content p {
    font-size: 20px;
    width: 100%;

}

.policy-sec2 .policy-main-content .policy-content1 {
    display: flex;
    flex-direction: column;
    gap: 30px;

}

.policy-sec2 .policy-main-content .policy-content1 h2 {
    font-size: 36px;
    font-weight: 500;

}

.policy-sec2 .policy-points {

    display: grid;
    justify-content: center;
    gap: 2rem;
}

.policy-sec2 .policy-points p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.policy-sec2 .policy-points span {
    font-weight: bold;
}