:root {

    --primary-color: ;

    --secondary-color: ;
    --tertiary-color: ;
    --accent-color: ;
    --font-1: ;
    --font-2: ;
    --font-2-b: ;

    --heading-size: ;
    --para-size: ;

    --padding: ;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url(../img/lines.png);
    background-size: cover;
    position: relative;
    /* overflow: hidden; */
}

@media (max-width:1300px) {
    .hero {
        overflow: hidden !important;
    }
}

.hero .circle {
    position: absolute;
    width: 100%;
    top: 33%;
    z-index: 1;
    pointer-events: none;
    z-index: 1;
}

.hero .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    position: relative;
    bottom: 70px;

    z-index: 5;
}

.hero p {
    width: min(700px, 100%);
    margin: 0 auto;
}

.hero .tag {
    background: linear-gradient(to top, #2E2E2E, #060606);
    border: 1px solid #535353;
    border-radius: 100px;
    padding: 13px 30px;

    width: fit-content;
    margin: 0 auto;
    font-size: 16px;
}

.hero .btns {
    display: flex;
    gap: 15px;
    margin: 0 auto;
    margin-top: 5px;

    z-index: 3;

}

.hero .btns a {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .btns> :nth-child(2) {
    display: flex;
    gap: 5px;
    border: 1px solid #ababab;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 16px;
    /* text-transform: uppercase; */

}

.hero .btns i {
    rotate: -135deg;
}


.hero .bottom-text {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: min(1000px, 100%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 0px 25px;
    gap: 10px;
}

.hero .bottom-text h2 {
    font-family: var(--font-2);
    font-size: clamp(25px, 5vw, 35px);
    font-weight: 500;
    color: rgb(242, 242, 242);
}

.hero .bottom-text p {
    font-size: clamp(11px, 2.5vw, 14px);
    line-height: 17px;
    letter-spacing: .7px;
}



@media (max-width:760px) {
    .hero {
        margin-bottom: 20px;
        overflow: unset !important;
    }

    .hero .bottom-text {
        bottom: 5px;
        padding: 0px 40px;
    }

    .hero .bottom-text h2 {
        padding: 0px 0px;
    }

    .hero .bottom-text p {
        display: none;
    }

}

@media (max-width:480px) {
    .hero .bottom-text {
        bottom: 20px;
        padding: 0px 40px;
    }
}



/* section-1 */
.section-1 {
    display: flex;
    flex-direction: column;
    gap: 60px;
    z-index: 4;
    min-height: 70vh;
    /* background: var(--secondary-color); */
}

.section-1 * {
    z-index: 2;
}

.section-1 .text {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.section-1 p {
    width: min(700px, 100%);
    margin: 0 auto;
}

.section-1 .steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0px 30px;
}

.section-1 .steps .step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
    box-shadow: 2.5px 2.5px 4px 3px #095F74;
    border-radius: 5px;

    background: linear-gradient(to bottom, #2E2E2E, #060606);

}

.section-1 .step h3 {
    font-weight: 600;
    font-size: 35px;
    background: linear-gradient(to bottom, #FAFFFF 30%, #A2A4A4 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-1 .step p {
    font-size: 14px;
    line-height: 20px;
}

/* section-2 */

.section-2 {
    display: flex;
    justify-content: space-between;
    min-height: 45vh;
    background: var(--secondary-color) !important;
    z-index: 4;
    align-items: center;
    gap: 50px;
}

.section-2 .left {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.section-2 h6 {
    font-weight: 500;
    font-size: 21px;
}

.section-2 .btn i {
    rotate: -135deg;
}


.section-2 .right {
    font-size: 35px;
    width: min(700px, 100%);
    letter-spacing: 1px;
}

.section-2 .right h6 {
    display: none;
}

.section-2 .right span {
    color: #A1A1A1;
}

/* Section-3 */

.section-3 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    min-height: 100vh;
    background: linear-gradient(to top, #080C0F, #042831e5 95%);
    display: flex;
    flex-direction: column;
    gap: 50px;
    overflow: hidden;
    position: relative;
    z-index: 4;
}

.section-3 .circle {
    border-radius: 50%;
}

.section-3 .grad2 {
    position: absolute;
    bottom: 0px;
    z-index: 4;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
    user-select: none;
    pointer-events: none;
}

.section-3 .bottom-line {
    height: 1.1px;
    background: rgba(238, 238, 238, 0.334);
    margin: 0 auto;
    width: min(1100px, 100%);
    position: absolute;
    bottom: .5px;
    left: 50%;
    transform: translate(-50%, 0px);
}


.section-3 .text h1 {
    width: min(700px, 100%);
    margin: 0 auto;
}

.section-3 .btns-div {
    display: flex;
    flex-direction: column;
    gap: 50px;

}

.section-3 .btns-div .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.section-3 .btns-div .row .heading {
    color: #B4E3FF;
    display: flex;
    gap: 9px;
    width: min(450px, 100%);
    align-items: center;
    white-space: nowrap;
    font-family: var(--font-1);
}

.section-3 .btns-div .row .heading h6 {
    font-weight: 300;

}

.section-3 .btns-div .row .heading .line {
    width: 100%;
    height: 1px;
    background: var(--primary-color);
}

.section-3 .btns-div .btns {
    display: flex;
    margin: 0 auto;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 15px;
}

.section-3 .btns-div .row button {
    border: 1px solid #535353;

    font-size: 17px;
    font-weight: normal;
    background: linear-gradient(to top, rgb(46, 46, 46, 0.6), rgb(10, 10, 10, 0.6));
    /* background: #0A829F; */
    outline: none;
    width: fit-content;
    /* border: unset; */
    /* border: 1px solid rgba(255, 255, 255, 0.125); */
    /* box-shadow: inset .5px 2.9px 3.3px 0px #9ad9e8d8; */
    border-radius: 200px;
    padding: 13px 35px;
    font-weight: 400;
    color: #727272;


    &:hover {
        cursor: pointer;
    }

}

.section-3 .btns-div .account_size button {
    min-width: fit-content;
    width: clamp(165px, 17vw, 185px);
}

.section-3 .table {
    min-height: 30vh;
    width: 100%;
    border-radius: 15px;
    background: linear-gradient(to bottom, rgb(57, 180, 237, 0.15) 40%, #131313);
    box-shadow: inset 1.5px 2px 3px 0px rgb(191, 218, 224, 0.45);
    border: 1px solid #3e3c3c;
    padding: 40px 55px;
    padding-bottom: 43px;
    display: flex;
    flex-direction: column;
    width: min(990px, 100%);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-3 .table .grad {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 75%;
    background: unset !important;
    height: 180px;

    /* display: none; */
}

.section-3 .table>:nth-child(even) {
    background: rgb(255, 255, 255, 0.1);
}

.section-3 .table .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 19px 13px;
    border-radius: 5px;
}

.section-3 .table .row h6 {
    font-weight: 500;
    color: #F8F8F8;
    letter-spacing: .9px;
    font-size: 16px;
}

.section-3 .table .heading-row {
    font-weight: bold;
    color: #CECECE;
}

.section-3 .table .heading-row h5 {
    font-size: 20px;
    font-weight: 600;
}

.section-3 .table .row> :nth-child(2) {
    color: #CECECE;
}

.section-3 .table .no {
    /* color: #ED3030 !important; */
}


.section-3 .price-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 5;
}

.section-3 .price-container .price {
    display: flex;

    display: flex;
    gap: 13px;
    width: min(400px, 100%);
    font-size: 40px;
    align-items: center;
    white-space: nowrap;
    font-family: var(--font-2-b);
    margin: 0 auto;
}

.section-3 .price-container .price .line {
    width: 100%;
    height: 1px;
    background: var(--primary-color);
}

.section-3 .price-container a {
    margin: 0 auto;
}



/*  */
.section-3 .platform-selector {
    text-align: center;
}

.section-3 .platform-selector .heading {
    color: #B4E3FF;
    display: flex;
    gap: 9px;
    width: min(450px, 100%);
    align-items: center;
    white-space: nowrap;
    font-family: var(--font-1);
    margin: 0 auto;
}

.section-3 .platform-selector .heading h6 {
    font-weight: 300;
}

.section-3 .platform-selector .heading .line {
    width: 100%;
    height: 1px;
    background: var(--primary-color);
}

.section-3 .platform-selector .platform-subtitle {
    color: #727272;
    font-size: 14px;
    margin-top: 8px;
}

.section-3 .platform-options {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 23px;
    font-size: 19px;
    flex-wrap: wrap;
}

.section-3 .platform-option {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Hide the default checkbox */
.section-3 .platform-option input[type="checkbox"] {
    display: none;
}

/* The card label */
.section-3 .platform-option label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 185px;
    padding: 22px 16px 18px;
    border-radius: 14px;
    border: 1.5px solid #2e2e2e;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.25s ease, opacity 0.25s ease;
    position: relative;
    transform: scale(1);
    opacity: 1;
}

/* Platform logo placeholder */
.section-3 .platform-option label .platform-logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-3 .platform-option label .platform-logo img {
    /* max-height: 36px; */
    max-width: 110px;
    padding: 0px 4px;
    object-fit: contain;
}

/* Platform name */
.section-3 .platform-option label .platform-name {
    font-size: 15px;
    font-weight: 600;
    color: #d0d0d0;
    letter-spacing: 0.3px;
    display: none;
}


/* Platform tagline */
.section-3 .platform-option label .platform-tagline {
    font-size: 12.5px;
    color: #868686;
    text-align: center;
    line-height: 1.4;
}

/* Feature list */
.section-3 .platform-option label .platform-features {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.section-3 .platform-option label .platform-features li {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-3 .platform-option label .platform-features li::before {
    content: '✔';
    color: #0A829F;
    font-size: 10px;
    flex-shrink: 0;
}

/* "Most Used" badge */
.section-3 .platform-option label .platform-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #0A829F, #0d5c72);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 1.5;
    text-align: center;


    display: none;
}

/* Checkmark icon top-right */
.section-3 .platform-option label .platform-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0A829F;
    display: none;
    align-items: center;
    justify-content: center;
}

.section-3 .platform-option label .platform-check::after {
    content: '✔';
    font-size: 11px;
    color: #fff;
}

/* Selected state - scale UP */
.section-3 .platform-option input[type="checkbox"]:checked+label {
    border-color: #0A829F;
    box-shadow: 0 0 0 1px #0A829F55, 0 0 18px 2px rgba(10, 130, 159, 0.18), inset 1px 1px 2px rgba(154, 217, 232, 0.15);
    background: linear-gradient(160deg, rgba(10, 130, 159, 0.10) 0%, rgba(0, 0, 0, 0.3) 100%);
    transform: scale(1.06);
    opacity: 1;
}

.section-3 .platform-option input[type="checkbox"]:checked+label .platform-check {
    display: flex;
}

.section-3 .platform-option input[type="checkbox"]:checked+label .platform-name,
.section-3 .platform-option input[type="checkbox"]:checked+label .platform-features li {
    color: #d0efff;
}

/* Unselected state when another is checked - scale DOWN + dim */
.section-3 .platform-options:has(input[type="checkbox"]:checked) .platform-option input[type="checkbox"]:not(:checked)+label {
    transform: scale(0.94);
    opacity: 0.55;
    border-color: #222;
}

/* Hover state (only on unselected) */
.section-3 .platform-option input[type="checkbox"]:not(:checked)+label:hover {
    border-color: #3a7a8c;
    background: linear-gradient(160deg, rgba(10, 130, 159, 0.06) 0%, rgba(0, 0, 0, 0.3) 100%);
    transform: scale(0.97);
    opacity: 0.8;
}

@media (max-width: 640px) {
    .section-3 .platform-options {
        gap: 12px;
    }

    .section-3 .platform-option label {
        /* width: 140px; */
        padding: 18px 12px 14px;
        border-radius: 10px;
    }

    .section-3 .platform-option label .platform-logo img {
        width: 100%;
    }

    .section-3 .platform-option label .platform-tagline {
        font-size: 11px;
    }

    .section-3 .platform-option label .platform-features li {
        font-size: 11px;
        text-align: left;
    }


}

@media (max-width: 500px) {
    .section-3 .platform-option input[type="checkbox"]:checked+label {
        transform: scale(1.01);
    }


    .section-3 .platform-options {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        display: flex;

        margin: 0 auto;
        margin-top: 24px;
        width: min(400px, 100%);
    }

    .section-3 .platform-option label {
        width: 100%;
        padding: 14px 10px 12px;
    }

    .section-3 .platform-option label .platform-name {
        font-size: 13px;
    }

    .section-3 .platform-option {
        width: 100%;
    }
}

@media (max-width:400px) {
    .section-3 .platform-options {
        display: flex;
    }
}





/* section-4 */

.section-4 {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.section-4 .boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 26px;
}

.section-4 .boxes .box {
    border-radius: 15px;
    border: 1px solid #5E5E5E;
    background: linear-gradient(to bottom, #080C0F, #22272b);
    padding: 33px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;

    transition: all .4s ease;

    &:hover {
        transform: translateY(-4px);
    }
}

.section-4 .box .icon {
    width: 54px;
    height: 54px;
}

.section-4 .box h6 {
    font-size: 24px;
    width: 250px;
    font-weight: 400 !important;
    /* height: 7vh; */
}

.section-4 .box p {
    font-weight: 200;
    color: #F0F0F0;
    font-size: 14px;
    padding-bottom: 10px;
    /* line-height: 25px; */
}


/* section-5 */

.section-5 {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.section-5 .text {
    width: min(800px, 100%);
    margin: 0 auto;
}

.section-5 .left img,
.section-5 .right img {

    height: 100px;
    height: calc(45px + 3vw);
}

.section-5 .content {
    display: flex;
    gap: 75px;
    gap: calc(26px + 3vw);
    text-align: center;
    margin: 0 auto;
    width: min(1200px, 100%);
    justify-content: space-between;
}

.section-5 .content p {
    letter-spacing: 1.2px;
    line-height: 29px;
    font-size: clamp(12px, 2vw, 19px);
    width: min(750px, 100%);
}

.section-5 .trading-platform {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.section-5 .trading-platform img {
    border-radius: 15px;
    width: 100%;
}


/* section-6 */

.section-6 {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: unset !important;


}

.ticker-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.ticker-row {
    display: flex;
    width: fit-content;
    animation: scroll-left 40s linear infinite;
    margin-bottom: 40px;
}

.ticker-row:nth-child(2) {
    animation: scroll-left 45s linear infinite;
    animation-direction: reverse;
}

.ticker-item {
    flex-shrink: 0;
    width: 450px;
    height: 300px;
    margin: 0 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.ticker-item:hover {
    transform: scale(1.05);
}

.ticker-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-row:hover {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .ticker-item {
        width: 320px;
        height: 220px;
        margin: 0 15px;
    }

    .ticker-title {
        font-size: 32px;
    }

    .ticker-subtitle {
        font-size: 14px;
    }
}

@media (max-width:500px) {
    .ticker-item {
        width: 320px;
        height: 220px;
        margin: 0 11px;
    }
}

/* section-7 */

.section-7 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}



.category-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.category-btn {
    border: 1px solid #535353;
    font-size: 17px;
    font-weight: normal;
    background: linear-gradient(to top, rgba(46, 46, 46, 0.6), rgba(10, 10, 10, 0.6));
    outline: none;
    width: fit-content;
    border-radius: 200px;
    padding: 13px 35px;
    font-weight: 400;
    color: #727272;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover {
    cursor: pointer;
    border-color: #666;
}

/* Active button style - add your .btn class styles here */
.category-btn.btn {
    background: linear-gradient(135deg, #0A829F 0%, #0c9bb8 100%);
    border: 1px solid rgba(255, 255, 255, 0.125);
    box-shadow: inset 0.5px 2.9px 3.3px 0px rgba(154, 217, 232, 0.85);
    color: #fff;
    font-weight: 500;
}

.faq-list {
    position: relative;
    width: min(1100px, 100%);
}

.faq-category {
    position: absolute;
    width: 100%;
    opacity: 0 !important;
    display: none;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-category.active {
    position: relative;
    display: block;
    opacity: 1 !important;
    transform: translateY(0);
    pointer-events: all;
}

.faq-item {
    /* background: rgba(30, 30, 30, 0.5); */
    border: 1px solid #434343;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;

    transition: all 0.3s ease;

    background: #181818;
    background: linear-gradient(to right, rgb(46, 46, 46), rgb(19, 19, 19));
}

.faq-item:hover {
    border-color: #444;
    background: rgb(62, 62, 62);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-family: var(--font-2);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    flex: 1;
    font-family: var(--font-1);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: #fff;
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-toggle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.open .faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-answer b {
    color: white;
}

.faq-answer * {
    color: #aaa !important;
    line-height: 1.6 !important;
    font-size: clamp(12px, 2vw, 15px) !important;
    font-weight: 300 !important;
    position: relative;
    left: 1px;
    font-family: var(--font-2);
}

.faq-answer ul li {
    position: relative;
    left: 20px;
    width: 93%;
}

.faq-answer li {
    list-style-type: disc;
}

.faq-item.open .faq-answer {
    max-height: 1500px;
    padding: 0 30px 24px 30px;
}

.faq-answer p {
    color: #aaa;
    line-height: 1.6;
    font-size: 15px;
}

/* Smooth fade animation for category switch */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-category.active .faq-item {
    animation: fadeInUp 0.4s ease forwards;
}

.faq-category.active .faq-item:nth-child(1) {
    animation-delay: 0.05s;
}

.faq-category.active .faq-item:nth-child(2) {
    animation-delay: 0.1s;
}

.faq-category.active .faq-item:nth-child(3) {
    animation-delay: 0.15s;
}

.faq-category.active .faq-item:nth-child(4) {
    animation-delay: 0.2s;
}

.faq-category.active .faq-item:nth-child(5) {
    animation-delay: 0.25s;
}

.faq-category.active .faq-item:nth-child(6) {
    animation-delay: 0.3s;
}

@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 36px;
    }

    .category-btn {
        font-size: 15px;
        padding: 11px 28px;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 20px 20px;
    }
}





/* section-8 */

.section-8 {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: 60px;
}


.section-8 .socials {
    display: flex;
    gap: 17px;
    margin: 0 auto;
    margin-top: 5px;
}

.section-8 img {
    width: 32px;
}

.section-8 form {
    background-color: rgb(23, 51, 71, .2);
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 40px 40px;
    border-radius: 25px;
    box-shadow: 0px 0px 4px .5px rgb(201, 201, 201, .7);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-8 .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 55px;
}

.section-8 .input {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.section-8 label {
    letter-spacing: 1px;
    font-weight: 400;
}

.section-8 :is(input, textarea) {
    width: 100%;
    padding: 10px 14px;
    border-radius: 5px;
    outline: none;
    border: none;
    background: linear-gradient(to right, rgb(156, 156, 156, .21), rgb(107, 107, 107, .21));
    height: 5vh;
    color: white !important;
    font-size: 16px;
    font-family: var(--font-2);
}

.section-8 textarea {
    min-height: 34vh;
}

.section-8 form button {
    border: none;
    color: var(--primary-color);
    font-family: var(--font-2);
    padding: 13px 55px;
    font-weight: 500 !important;
}

.section-8 form>p {
    color: rgba(200, 200, 200, 0.8) !important;
    width: 90%;
    letter-spacing: .9px !important;
    font-weight: 400;
    font-size: 12.5px;
}

.section-8 label {
    font-size: 24px;
}




.section-8 .contact-tags {
    width: min(500px, 100%);
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.section-8 .contact-tags .tag {
    width: 100%;
    padding: 16.5px 17px;
    background: linear-gradient(to right, rgb(156, 156, 156, .21), rgb(107, 107, 107, .21));
    background: rgba(23, 51, 71, 0.282);
    border-radius: 10px;
    display: flex;
    gap: 12px;

    box-shadow: inset 1.3px 1.3px 3px rgb(87, 87, 87);
    box-shadow: inset 0px 0px 2px 0px grey;
}

.section-8 .contact-tags .tag .icon{
    /* box-shadow:inset 0px 0px 1.8px 0px rgb(206, 206, 206); */
    padding:  8px;
    width: fit-content;
    display: flex;
    align-items: center;
    border-radius: 3px;
    
}


.section-8 .tag-text{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 6px;
}

.section-8 .tag-text h4{
    font-weight: 400;
    font-size: 16px;
}

.section-8 .tag-text a{
    font-size: 12px;
    color: #cacaca;
    letter-spacing: .7px;
}

.section-8 address{
    font-style: unset;
}



@media (max-width:1000px) {
    .section-8 form {
        padding: 35px 30px;
    }
}

@media (max-width:900px) {
    .section-8 .text {
        margin-top: 94px;
    }
}

@media (max-width:760px) {
    .section-8 {
        min-height: 48vh !important;
    }

    .section-8 .socials img {
        width: 28px;
    }

    .section-8 .text {
        margin-top: 70px;
    }

    .section-8 form .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-8 label {
        font-size: 21.5px;
    }

    .section-8 form {
        padding: 25px 20px;
        border-radius: 20px;
    }
}

@media (max-width: 500px) {
    .section-8 form {
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0px 0px 3px .3px rgb(201, 201, 201, .7);
    }

    .section-8 .socials img {
        width: 23px;
    }

    .section-8 label {
        font-size: 17px;
    }

    .section-8 :is(input, textarea) {
        padding: 10px 12px;
    }

    .section-8 form>p {
        font-size: 12px;
        letter-spacing: .8px !important;
    }
}


@media (max-width:450px) {
    .section-8 .contact-tags .tag .icon{
        box-shadow: unset;
    }
    .section-8 .contact-tags .tag{
        padding: 14px 12px;
    }
    .section-8 .tag-text a{
        font-size: 11px;
        line-height: 16px;
    }
}






/*  */

@media (max-width:1200px) {
    .section-1 .steps {
        gap: 25px;
    }

    .section-2 .right {
        font-size: 32px;
    }

    .section-3 .btns-div .row button {
        font-size: 16px;
    }

    .section-3 .btns-div .btns {
        /* flex-direction: column; */
    }

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

@media (max-width:1000px) {
    .hero {
        /* min-height: 90vh; */
    }

    .hero .circle {
        top: 45%;
        width: 110%;
    }

    .section-1 .steps {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0px 20px;
    }

    .section-1 .steps .step {
        box-shadow: 1.5px 1.5px 4px 2px #095F74;
    }

    .section-2 {
        flex-direction: column-reverse;
        align-items: unset;
    }

    .section-2 .left h6 {
        display: none;
    }

    .section-2 .right {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        font-size: clamp(22px, 4vw, 32px);
    }

    .section-2 .right h6 {
        display: block;
    }

    .section-3 .table {
        padding: 35px 45px;
    }

    .section-3 .table .row h6 {
        font-size: clamp(12px, 2.4vw, 16px);
    }

    .section-5 .left img,
    .section-5 .right img {
        height: 45px;
    }



}

@media (max-width:760px) {
    .hero {
        min-height: 95vh;
    }

    .hero .tag {
        padding: 12px 25px;
        font-size: 14px;
    }

    .hero .text {
        bottom: 45px;
    }

    .hero .circle {
        top: 65%;
        width: 105%;
    }

    .hero .btns {
        flex-direction: column;
    }

    .hero .btns> :nth-child(2) {
        width: 100%;
    }

    .section-1 {
        background-color: var(--secondary-color);
    }

    .section-1 .steps {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0px;
    }

    .section-3 .btns-div .row button {
        padding: 12px 35px;
    }

    .section-3 .table {
        padding: 25px 25px;
    }

    .section-3 .table .row {
        gap: 10px;
        padding: 17px 11px;
    }

    .section-3 .table .heading-row h5 {
        font-size: 16px;
    }

    .section-4 .boxes {
        grid-template-columns: 1fr;
    }

    .section-4 .boxes .box {
        padding: 30px 21px;
    }

    .section-4 .box p {
        font-size: 13px;
    }

    .section-5 {
        gap: 55px;
    }

    .section-5 .content {
        gap: unset;
    }

    .section-5 .left img,
    .section-5 .right img {
        display: none;
    }

    .section-5 .content p {
        line-height: 25px;
        letter-spacing: 1.1px;
    }


    .section-5 .trading-platform {
        grid-template-columns: 1fr;
    }

    .section-6 {
        padding: 50px 0px !important;
    }

    .section-6 .text {
        padding: 0px 20px;
    }



}

@media (max-width:500px) {
    .hero .tag {
        padding: 10.5px 23px;
        font-size: 12px;
    }

    .section-1 .steps .step {
        padding: 20px 17px;
        gap: 16px;
    }

    .section-1 .step h3 {
        font-size: 30px;
    }

    .section-3 .table {
        padding: 15px 15px;
    }

    .section-3 .table .heading-row h5 {
        font-size: 14px;
    }

    .section-3 .price-container .price {
        font-size: 33px;
    }


    .section-4 .boxes .box {
        padding: 25px 18px;
        padding-bottom: 22px;
    }

    .section-5 {
        gap: 30px;
    }

    .section-5 .content p {
        line-height: 20px;
        letter-spacing: .9px;
    }


    .category-buttons {
        flex-wrap: unset;
        flex-direction: column;
    }

    .category-btn {
        width: 100%;
    }

    .category-btn.btn {
        white-space: unset !important;
    }

    .faq-toggle {
        width: 20px;
        height: 20px;
    }

    .faq-question {
        padding: 17px 13px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .category-btn.btn {
        width: 100% !important;
    }

    .ticker-container> :nth-child(2) {
        margin-bottom: 0px;
    }

    .section-3 .btns-div .account_size button {
        width: 138px;
    }

    .section-3 .btns-div .row button {
        padding: 10px 33px;
    }
}