
/* =========================
   GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter',sans-serif;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    background: #000;
    position: relative;
    z-index: 1000;
}

.nav-wrapper {
    width: 92%;
    max-width: 1500px;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 78px;
    width: auto;
    display: block;
}

/* =========================
   MENU
========================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 55px;
    list-style: none;
}

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        text-decoration: none;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        position: relative;
        transition: .3s;
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: #A6FF12;
        }

            .nav-links a.active::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: -12px;
                width: 100%;
                height: 2px;
                background: #A6FF12;
            }

/* =========================
   BUTTONS
========================= */

.nav-buttons {
    display: flex;
    gap: 18px;
}

.btn-login {
    min-width: 160px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #A6FF12;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: .3s;
}

    .btn-login:hover {
        background: #A6FF12;
        color: #000;
    }

.btn-register {
    min-width: 170px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #A6FF12;
    border-radius: 10px;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

    .btn-register:hover {
        transform: translateY(-2px);
    }

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-btn {
    display: none;
    color: #A6FF12;
    font-size: 28px;
    cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .menu-btn {
        display: block;
        z-index: 9999;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: #050505;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
        transition: .4s;
        z-index: 999;
    }

        .nav-links.show {
            left: 0;
        }

    .nav-buttons {
        display: none;
    }

    .logo img {
        height: 60px;
    }
}

.hero-section {
    background: #000;
}

.hero-badge {
    display: inline-block;
    border: 1px solid #A6FF12;
    color: #A6FF12;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 10px;
}

.hero-title {
    font-size: 96px;
    line-height: 95px;
    font-weight: 900;
    color:white;
}

    .hero-title span {
        color: #A6FF12;
    }

.hero-text {
    color: #cfcfcf;
    font-size: 22px;
    line-height: 38px;
}

.btn-success {
    background: #A6FF12 !important;
    border: none !important;
    color: #000 !important;
    font-weight: 700;
}

.stat-card {
    background: #090909;
    border: 1px solid rgba(166,255,18,.15);
    border-radius: 20px;
    text-align: center;
    padding: 25px 10px;
    height: 140px;
}

    .stat-card h2 {
        color: #A6FF12;
        font-size: 42px;
        font-weight: 800;
    }

    .stat-card span {
        color: #ccc;
    }

.hero-img {
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #A6FF12;
    color: #A6FF12;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

    .hero-badge i {
        font-size: 12px;
        color: #A6FF12;
    }

/* Tablet */

@media(max-width:991px) {

    .hero-title {
        font-size: 60px;
        line-height: 65px;
    }



    .hero-badge {
        display: block;
    }
}

/* Mobile */

@media(max-width:576px) {

    .hero-title {
        font-size: 42px;
        line-height: 48px;
    }

    .hero-text {
        font-size: 16px;
        line-height: 28px;
    }

    .stat-card h2 {
        font-size: 28px;
    }
}

.stat-icon {
    font-size: 48px;
    color: #A6FF12;
    margin-bottom: 15px;
}

.stat-card {
    background: #050505;
    border: 1px solid rgba(166,255,18,.12);
    border-radius: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scroll-explore {
    width: 100%;
    text-align: center;
    padding: 40px 0 30px;
}

.mouse-icon {
    width: 42px;
    height: 68px;
    margin: 0 auto;
    border: 2px solid #A6FF12;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 0 10px rgba(166,255,18,.4), 0 0 20px rgba(166,255,18,.2);
}

.mouse-wheel {
    width: 6px;
    height: 12px;
    background: #A6FF12;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    animation: wheelMove 1.6s infinite;
}

@keyframes wheelMove {
    0% {
        opacity: 1;
        top: 12px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

.scroll-explore p {
    margin: 18px 0 10px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 6px;
    font-weight: 500;
}

.scroll-arrow {
    color: #A6FF12;
    font-size: 18px;
    animation: bounceArrow 1.5s infinite;
}

@keyframes bounceArrow {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Tablet */

@media(max-width:991px) {

    .scroll-explore {
        padding: 30px 0;
    }

        .scroll-explore p {
            font-size: 12px;
            letter-spacing: 4px;
        }

    .mouse-icon {
        width: 38px;
        height: 62px;
    }
}

/* Mobile */

@media(max-width:576px) {

    .scroll-explore {
        padding: 25px 0;
    }

        .scroll-explore p {
            font-size: 11px;
            letter-spacing: 3px;
        }

    .mouse-icon {
        width: 34px;
        height: 56px;
    }

    .scroll-arrow {
        font-size: 16px;
    }
}


/*contact*/
.contact-page {
    background: #000;
    color: #fff;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #A6FF12;
    border: 1px solid #A6FF12;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 12px;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 85px;
    color: #fff;
}

    .contact-title span {
        color: #A6FF12;
    }

.contact-text {
    color: #bdbdbd;
    font-size: 22px;
    line-height: 38px;
    margin-top: 20px;
}

.contact-card {
    background: #050505;
    border: 1px solid rgba(166,255,18,.20);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
}

    .contact-card h3 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 25px;
    }

.contact-info-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(166,255,18,.15);
    border-radius: 16px;
}

    .contact-info-box i {
        color: #A6FF12;
        font-size: 28px;
    }

    .contact-info-box h5 {
        color: #fff;
    }

    .contact-info-box p {
        color: #fff;
        margin-bottom: 5px;
    }

    .contact-info-box span {
        color: #A6FF12;
        font-size: 14px;
    }

.contact-input {
    background: #050505 !important;
    border: 1px solid rgba(166,255,18,.15) !important;
    color: #fff !important;
    height: 58px;
}

    .contact-input::placeholder {
        color: #888;
    }

textarea.contact-input {
    height: auto;
}

.contact-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 12px;
    background: #A6FF12;
    color: #000;
    font-weight: 700;
    font-size: 18px;
}

    .contact-btn:hover {
        opacity: .9;
    }

.contact-hero-img {
    max-width: 100%;
}



.support-banner {
    border: 1px solid rgba(166,255,18,.2);
    background: #050505;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

    .support-left i {
        color: #A6FF12;
        font-size: 50px;
    }

    .support-left h4 {
        color: #fff;
        font-weight: 700;
    }

    .support-left p {
        color: #ccc;
        margin: 0;
    }

.live-chat-btn {
    border: 1px solid #A6FF12;
    color: #A6FF12;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
}

    .live-chat-btn:hover {
        background: #A6FF12;
        color: #000;
    }

@media(max-width:768px) {

    .support-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .support-left {
        flex-direction: column;
    }
}


/* ==========================
   FOOTER
========================== */

.footer-section {
    background: #000;
    border-top: 1px solid rgba(166,255,18,.25);
    padding: 70px 0 25px;
}

.footer-logo {
    max-width: 280px;
    margin-bottom: 25px;
}

.footer-desc {
    color: #d1d1d1;
    line-height: 2;
    font-size: 18px;
    max-width: 380px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

    .footer-social a {
        width: 55px;
        height: 55px;
        border: 1px solid rgba(166,255,18,.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #A6FF12;
            color: #000;
        }

.footer-heading {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -12px;
        width: 55px;
        height: 3px;
        background: #A6FF12;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

    .footer-links li {
        margin-bottom: 20px;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
        font-size: 22px;
        display: flex;
        justify-content: space-between;
        transition: .3s;
    }

        .footer-links a:hover {
            color: #A6FF12;
        }

    .footer-links i {
        color: #A6FF12;
    }

.footer-news-text {
    color: #d1d1d1;
    line-height: 2;
    font-size: 20px;
    margin-top: 25px;
}

.footer-subscribe {
    display: flex;
    margin-top: 35px;
    border: 1px solid rgba(166,255,18,.15);
    border-radius: 12px;
    overflow: hidden;
}

    .footer-subscribe input {
        flex: 1;
        height: 70px;
        background: #050505;
        border: none;
        outline: none;
        color: #fff;
        padding: 0 25px;
    }

    .footer-subscribe button {
        width: 90px;
        background: #A6FF12;
        border: none;
        color: #000;
        font-size: 24px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 60px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d1d1d1;
}

.footer-policy {
    display: flex;
    gap: 20px;
}

    .footer-policy a {
        color: #d1d1d1;
        text-decoration: none;
    }

        .footer-policy a:hover {
            color: #A6FF12;
        }

@media(max-width:991px) {

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-heading {
        margin-top: 25px;
    }
}

.login-page {
    min-height: 100vh;
    background: black;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
}
.login-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 100%;
    max-width: 700px;
    background: #050505;
    border: 1px solid rgba(166,255,18,.4);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 0 25px rgba(166,255,18,.25), 0 0 70px rgba(166,255,18,.15);
}

.login-logo {
    width: 320px;
    display: block;
    margin: auto;
}

.login-card h1 {
    text-align: center;
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    margin-top: 25px;
}

    .login-card h1 span {
        color: #A6FF12;
    }

.login-card p {
    text-align: center;
    color: #cfcfcf;
    font-size: 22px;
    margin-bottom: 40px;
}

.login-card label {
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.input-box {
    height: 65px;
    border: 1px solid rgba(166,255,18,.4);
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: #000;
}

    .input-box input {
        flex: 1;
        background: none;
        border: none;
        color: #fff;
        outline: none;
    }

    .input-box i {
        color: #A6FF12;
        font-size: 22px;
    }

.eye {
    cursor: pointer;
}

.forgot-wrap {
    text-align: right;
    margin-bottom: 25px;
}

    .forgot-wrap a {
        color: #A6FF12;
        text-decoration: none;
    }

.login-btn {
    width: 100%;
    height: 70px;
    border: none;
    border-radius: 18px;
    background: #A6FF12;
    color: #000;
    font-size: 30px;
    font-weight: 700;
}

.or-divider {
    text-align: center;
    margin: 30px 0;
    color: #fff;
}

.google-btn {
    width: 100%;
    height: 70px;
    border: 1px solid rgba(166,255,18,.3);
    background: #000;
    color: #fff;
    border-radius: 18px;
    font-size: 22px;
}

.register-text {
    text-align: center;
    margin-top: 30px;
    color: #fff;
}

    .register-text a {
        color: #A6FF12;
        text-decoration: none;
        font-weight: 700;
    }

.register-page {
    min-height: 100vh;
    background: black;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
}

.register-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-card {
    width: 100%;
    max-width: 780px;
    background: #050505;
    border: 1px solid rgba(166,255,18,.4);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 0 25px rgba(166,255,18,.25), 0 0 70px rgba(166,255,18,.15);
}

.register-btn {
    width: 100%;
    height: 70px;
    border: none;
    border-radius: 18px;
    background: #A6FF12;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
    cursor: pointer;
}
.terms-wrap {
    margin-top: 15px;
    color: #fff;
    font-size: 16px;
}

    .terms-wrap a {
        color: #A6FF12;
        text-decoration: none;
    }
.input-box select {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
}

.input-box option {
    background: #000;
}
.register-card h1 {
    text-align: center;
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    margin-top: 25px;
}

    .register-card h1 span {
        color: #A6FF12;
    }

.register-card p {
    text-align: center;
    color: #cfcfcf;
    font-size: 22px;
    margin-bottom: 40px;
}


.login-text {
    text-align: center;
    margin-top: 25px;
    color: #cfcfcf;
    font-size: 18px;
    font-weight: 500;
}

    .login-text a {
        color: #A6FF12;
        text-decoration: none;
        font-weight: 700;
        transition: .3s;
    }

        .login-text a:hover {
            color: #c8ff45;
        }


.about-page {
    background: #000;
}

.about-badge {
    display: inline-block;
    color: #A6FF12;
    border: 1px solid #A6FF12;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 12px;
    margin-bottom: 25px;
}

.about-title {
    font-size: 70px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
}

    .about-title span {
        color: #A6FF12;
    }

.about-page p {
    color: #d1d1d1;
    font-size: 20px;
    line-height: 1.9;
}

.about-img {
    max-width: 100%;
}

.about-card {
    background: #050505;
    border: 1px solid rgba(166,255,18,.25);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
}

    .about-card i {
        font-size: 50px;
        color: #A6FF12;
        margin-bottom: 20px;
    }

    .about-card h3 {
        color: #fff;
        margin-bottom: 15px;
    }

.about-feature-card {
    background: #050505;
    border: 1px solid rgba(166,255,18,.35);
    border-radius: 20px;
    padding: 35px;
    height: 220px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: .3s;
}

    .about-feature-card:hover {
        border-color: #A6FF12;
        box-shadow: 0 0 20px rgba(166,255,18,.15);
    }

.feature-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border: 2px solid #A6FF12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A6FF12;
    font-size: 40px;
}

.feature-content h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-line {
    width: 60px;
    height: 3px;
    background: #A6FF12;
    margin-bottom: 20px;
}

.feature-content p {
    color: #d1d1d1;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.stats-section {
    padding: 40px 0 90px;
    background: #000;
}

.stats-row {
    border: 1px solid rgba(166,255,18,.25);
    border-radius: 20px;
    overflow: hidden;
    background: #050505;
}

.stats-box {
    text-align: center;
    padding: 55px 25px;
    height: 100%;
    position: relative;
}

    .stats-box::after {
        content: '';
        position: absolute;
        top: 20%;
        right: 0;
        width: 1px;
        height: 60%;
        background: rgba(166,255,18,.15);
    }

.stats-row .col-lg-3:last-child .stats-box::after {
    display: none;
}

.stats-box i {
    font-size: 55px;
    color: #A6FF12;
    margin-bottom: 25px;
}

.stats-box h2 {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stats-box h4 {
    color: #A6FF12;
    font-size: 26px;
    margin-bottom: 18px;
}

.stats-box p {
    color: #d1d1d1;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

@media(max-width:991px) {

    .stats-box::after {
        display: none;
    }

    .stats-box {
        border-bottom: 1px solid rgba(166,255,18,.15);
    }
}

.trading-page {
    background: #000;
}

.trading-badge {
    display: inline-block;
    color: #A6FF12;
    border: 1px solid #A6FF12;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 25px;
}

.trading-title {
    color: #fff;
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
}

    .trading-title span {
        color: #A6FF12;
    }

.trading-text {
    color: #d1d1d1;
    font-size: 22px;
    line-height: 1.8;
    margin-top: 25px;
}

.trading-img {
    max-width: 100%;
}

.trading-mini-stats {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

    .trading-mini-stats div {
        text-align: center;
        border: 1px solid rgba(166,255,18,.25);
        padding: 20px;
        border-radius: 15px;
    }

    .trading-mini-stats h3 {
        color: #fff;
        font-weight: 800;
    }

    .trading-mini-stats span {
        color: #A6FF12;
        font-size: 14px;
    }

.trade-card {
    background: #050505;
    border: 1px solid rgba(166,255,18,.25);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
}

    .trade-card i {
        color: #A6FF12;
        font-size: 55px;
        margin-bottom: 25px;
    }

    .trade-card h3 {
        color: #fff;
        margin-bottom: 20px;
    }

    .trade-card p {
        color: #d1d1d1;
        line-height: 1.8;
    }

.how-page {
    background: #050505;
    color: #fff;
}

.how-badge {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #b7ff00;
    border-radius: 40px;
    color: #b7ff00;
    font-size: 14px;
    margin-bottom: 25px;
}

.how-title {
    font-size: 70px;
    font-weight: 800;
    line-height: 1.1;
}

    .how-title span {
        color: #b7ff00;
    }

.how-text {
    color: #bdbdbd;
    max-width: 500px;
    margin-top: 20px;
}

.how-mini-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    margin-top: 35px;
}

    .how-mini-stats div {
        border: 1px solid rgba(183,255,0,.25);
        border-radius: 18px;
        padding: 20px;
        text-align: center;
    }

    .how-mini-stats h3 {
        color: #b7ff00;
    }

.how-card {
    background: #090909;
    border: 1px solid rgba(183,255,0,.25);
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    transition: .3s;
}

    .how-card:hover {
        transform: translateY(-5px);
        border-color: #b7ff00;
    }

    .how-card i {
        font-size: 55px;
        color: #b7ff00;
        margin-bottom: 25px;
    }

    .how-card h3 {
        margin-bottom: 15px;
    }

    .how-card p {
        color: #cfcfcf;
    }

.how-cta {
    border: 1px solid rgba(183,255,0,.25);
    border-radius: 25px;
    padding: 40px;
    background: #090909;
}

    .how-cta h2 {
        font-size: 42px;
        font-weight: 700;
    }

    .how-cta span {
        color: #b7ff00;
    }

.btn-start {
    background: #b7ff00;
    color: #000;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin-right: 10px;
}

.btn-learn {
    border: 1px solid #b7ff00;
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
}


.howworks-page {
    background: #050505;
    padding: 80px 0;
    color: #fff;
}

.how-header {
    margin-bottom: 70px;
}

.how-badge {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #b7ff00;
    border-radius: 30px;
    color: #b7ff00;
    font-size: 14px;
    margin-bottom: 25px;
}

.how-header h1 {
    font-size: 72px;
    font-weight: 800;
}

    .how-header h1 span {
        color: #b7ff00;
    }

.how-header p {
    color: #cfcfcf;
    font-size: 18px;
}

.timeline-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.timeline-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #b7ff00;
    top: 50%;
    z-index: 1;
}

.timeline-step {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0b0b0b;
    border: 2px solid #b7ff00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #b7ff00;
    z-index: 2;
    box-shadow: 0 0 20px #b7ff00;
}

.step-card {
    background: #080808;
    border: 1px solid rgba(183,255,0,.25);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
}

.step-icon {
    width: 120px;
    height: 120px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid rgba(183,255,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #b7ff00;
    margin-bottom: 30px;
}

.step-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.step-card p {
    color: #d5d5d5;
}

.journey-box {
    margin-top: 60px;
    padding: 35px;
    border-radius: 25px;
    background: #090909;
    border: 1px solid rgba(183,255,0,.25);
}

.journey-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .journey-left i {
        font-size: 60px;
        color: #b7ff00;
    }

    .journey-left h2 span {
        color: #b7ff00;
    }

.journey-btn {
    background: #b7ff00;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    margin-right: 10px;
}

.learn-btn {
    padding: 16px 35px;
    border: 1px solid #b7ff00;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
}