/* =========================================================
   ANANTREX TRADING ACADEMY
   COMPLETE RESPONSIVE STYLE
   ========================================================= */

/* =========================
   ROOT VARIABLES
========================= */

:root {
    --bg-main: #070604;
    --bg-dark: #090806;
    --bg-card: #0d0c09;
    --bg-card-2: #11100c;

    --gold: #d8ad45;
    --gold-light: #f4dc86;
    --gold-dark: #8d681d;

    --cyan: #00d9ff;
    --cyan-dark: #008fc4;

    --green: #68ff00;
    --green-dark: #23a900;

    --white: #ffffff;
    --off-white: #f4f0e5;

    --text: #e9e5da;
    --text-muted: #a7a298;
    --border: rgba(216, 173, 69, 0.18);

    --container-width: 1280px;

    --transition: 0.35s cubic-bezier(.22,.61,.36,1);

    --shadow:
        0 20px 60px rgba(0,0,0,.45);

    --gold-shadow:
        0 0 35px rgba(216,173,69,.12);

    --cyan-shadow:
        0 0 40px rgba(0,217,255,.12);
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-main);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;

    /*
       GRID / CHECK BOX BACKGROUND
    */
    background-image:
        linear-gradient(
            rgba(216, 173, 69, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(216, 173, 69, 0.09) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 50% 0%,
            rgba(216,173,69,.08),
            transparent 45%
        ),
        linear-gradient(
            120deg,
            #050403 0%,
            #0a0805 50%,
            #080604 100%
        );

       background-size: 57px 49px, 46px 52px, 50% 100%, 100% 100%;

    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(0,217,255,.035),
            transparent 25%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(104,255,0,.025),
            transparent 25%
        );
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
}

ul {
    list-style: none;
}


/* =========================
   GLOBAL SELECTION
========================= */

::selection {
    background: var(--gold);
    color: #050403;
}


/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050403;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        var(--gold),
        var(--gold-dark)
    );
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}


/* =========================================================
   NAVBAR
========================================================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background:
        linear-gradient(
            180deg,
            rgba(5,4,3,.97),
            rgba(8,7,5,.92)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(216,173,69,.16);

    transition: var(--transition);
}

.main-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            var(--cyan),
            var(--green),
            var(--gold),
            transparent
        );

    opacity: .55;
}

.trading-navbar {
    min-height: 86px;
    padding: 0;
}

.navbar-inner {
    max-width: 1400px;
    min-height: 86px;
    padding-left: 35px;
    padding-right: 35px;
    margin: auto;
    display: flex;
    align-items: center;
}


/* =========================
   LOGO
========================= */

.brand-logo {
    display: flex;
    align-items: center;
    width: 155px;
    transition: var(--transition);
}

.brand-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;

    filter:
        drop-shadow(0 0 10px rgba(216,173,69,.15));

    transition: var(--transition);
}

.brand-logo:hover img {
    transform: scale(1.04);

    filter:
        drop-shadow(0 0 15px rgba(216,173,69,.35))
        drop-shadow(0 0 12px rgba(0,217,255,.15));
}


/* =========================
   NAV MENU
========================= */

.navbar-menu {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 45px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 30px 14px;

    color: #ddd8cb !important;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .7px;
    text-transform: uppercase;

    transition: var(--transition);
}

.nav-link::before {
    content: "";
    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 17px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--cyan)
        );

    transform: scaleX(0);
    transform-origin: center;

    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold-light) !important;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--white) !important;
}


/* =========================
   DESKTOP ACTIONS
========================= */

.desktop-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login,
.btn-signup {
    min-height: 46px;

    padding: 0 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .8px;

    transition: var(--transition);
}

.btn-login {
    color: var(--white);

    border: 1px solid rgba(216,173,69,.35);

    background: rgba(216,173,69,.03);
}

.btn-login:hover {
    color: var(--gold-light);

    border-color: var(--gold);

    background: rgba(216,173,69,.08);

    transform: translateY(-2px);
}

.btn-signup {
    color: #050403;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    border: 1px solid var(--gold);
}

.btn-signup i {
    margin-left: 9px;
    transition: var(--transition);
}

.btn-signup:hover {
    color: #050403;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(216,173,69,.22);
}

.btn-signup:hover i {
    transform: translate(3px,-3px);
}


/* =========================
   MOBILE ACTIONS
========================= */

.mobile-actions {
    display: none;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.mobile-login,
.mobile-signup {
    display: inline-flex;

    min-height: 40px;

    padding: 0 13px;

    align-items: center;
    justify-content: center;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .5px;
    text-transform: uppercase;

    transition: var(--transition);
}

.mobile-login {
    color: var(--white);
    border: 1px solid rgba(216,173,69,.35);
}

.mobile-signup {
    color: #050403;
    background: var(--gold);
}


/* =========================
   CUSTOM TOGGLER
========================= */

.custom-toggler {
    width: 43px;
    height: 40px;

    padding: 8px;

    display: none;

    flex-direction: column;
    justify-content: center;
    gap: 5px;

    background: rgba(216,173,69,.08);

    border: 1px solid rgba(216,173,69,.3);

    cursor: pointer;
}

.custom-toggler span {
    display: block;

    width: 100%;
    height: 2px;

    background: var(--gold-light);

    transition: var(--transition);
}

.custom-toggler.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.custom-toggler.active span:nth-child(2) {
    opacity: 0;
}

.custom-toggler.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 90vh;

    padding-top: 86px;

    display: flex;
    align-items: center;

    overflow: hidden;
}
/* =========================================================
   WHY ANANTREX SECTION
========================================================= */

.why-section {
    position: relative;
    padding: 45px 0;
    overflow: hidden;

    

    background-size: 86px 86px;
}


/* Ambient glow */

.why-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: -350px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(244, 201, 93, 0.07);

    filter: blur(130px);

    pointer-events: none;
}


.why-section::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -280px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(0, 217, 255, 0.06);

    filter: blur(120px);

    pointer-events: none;
}


.why-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.why-visual {
    position: relative;

    padding-right: 35px;
}


.why-image {
    position: relative;

    width: 100%;   
    overflow: hidden;

    border: 1px solid rgba(244, 201, 93, 0.22);

    background: #090909;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45);
}


.why-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1),
        filter 0.5s ease;
}


.why-image:hover img {
    transform: scale(1.06);

    filter:
        brightness(1.08)
        saturate(1.08);
}


/* Image overlay */

.why-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.12) 0%,
            rgba(0,0,0,.05) 35%,
            rgba(0,0,0,.82) 100%
        );

    pointer-events: none;
}


/* =========================================================
   IMAGE TOP
========================================================= */

.why-image-top {
    position: absolute;

    top: 25px;
    left: 28px;
    right: 28px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    z-index: 3;
}


.why-image-top span {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;

    color: #ffffff;
}


.why-image-top strong {
    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #f4c95d;
}


/* =========================================================
   IMAGE BOTTOM
========================================================= */

.why-image-bottom {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 14px;
}


.why-live-dot {
    width: 9px;
    height: 9px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #00d9ff;

    box-shadow:
        0 0 0 5px rgba(0,217,255,.12),
        0 0 18px rgba(0,217,255,.7);

    animation: livePulse 2s infinite;
}


@keyframes livePulse {

    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .45;
    }

}


.why-image-bottom small {
    display: block;

    margin-bottom: 5px;

    font-size: 9px;

    letter-spacing: 3px;

    font-weight: 700;

    color: rgba(255,255,255,.5);
}


.why-image-bottom strong {
    display: block;

    font-size: 16px;

    font-weight: 600;

    color: #ffffff;
}


/* =========================================================
   FLOATING CARD
========================================================= */

.why-floating-card {
    position: absolute;

    right: -5px;
    bottom: 55px;

    z-index: 5;

    min-width: 245px;

    padding: 18px 20px;

    display: flex;

    align-items: center;

    gap: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(25,25,25,.96),
            rgba(10,10,10,.96)
        );

    border: 1px solid rgba(244,201,93,.35);

    box-shadow:
        0 20px 50px rgba(0,0,0,.55);

    backdrop-filter: blur(15px);

    animation: floatingCard 4s ease-in-out infinite;
}


@keyframes floatingCard {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


.why-floating-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #050505;

    background: #f4c95d;

    font-size: 19px;
}


.why-floating-card small {
    display: block;

    margin-bottom: 4px;

    font-size: 8px;

    letter-spacing: 2px;

    color: rgba(255,255,255,.4);
}


.why-floating-card strong {
    display: block;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;
}


/* =========================================================
   CONTENT
========================================================= */

.why-content {
    padding-left: 20px;
}


.why-content h2 {
    margin: 20px 0;

    max-width: 600px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 67px);

    line-height: 1.03;

    letter-spacing: -2px;

    font-weight: 700;
}


.why-content h2 span {
    display: block;

    color: #f4c95d;

    font-style: italic;
}


.why-intro {
    max-width: 600px;

    margin-bottom: 38px;

    color: rgba(255,255,255,.55);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.feature-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.feature-item {
    position: relative;

    min-height: 92px;

    display: grid;

    grid-template-columns: 35px 48px 1fr 35px;

    align-items: center;

    gap: 15px;

    padding: 17px 18px;

    border: 1px solid rgba(255,255,255,.08);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        );

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;

    overflow: hidden;
}


.feature-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 0;

    background:
        linear-gradient(
            to bottom,
            #f4c95d,
            #00d9ff
        );

    transition: height .4s ease;
}


.feature-item:hover {
    transform: translateX(7px);

    border-color: rgba(244,201,93,.35);

    background:
        linear-gradient(
            145deg,
            rgba(244,201,93,.075),
            rgba(255,255,255,.018)
        );
}


.feature-item:hover::before {
    height: 100%;
}


/* Number */

.feature-number {
    color: #f4c95d;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* Icon */

.feature-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #f4c95d;

    border: 1px solid rgba(244,201,93,.2);

    background: rgba(244,201,93,.045);

    font-size: 17px;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}


.feature-item:hover .feature-icon {
    color: #050505;

    background: #f4c95d;

    transform: rotate(5deg);
}


/* Text */

.feature-text h4 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;
}


.feature-text p {
    margin: 0;

    color: rgba(255,255,255,.43);

    font-size: 12px;

    line-height: 1.6;
}


/* Arrow */

.feature-arrow {
    color: rgba(255,255,255,.25);

    font-size: 15px;

    transition:
        color .3s ease,
        transform .3s ease;
}


.feature-item:hover .feature-arrow {
    color: #f4c95d;

    transform: translate(3px,-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .why-section {
        padding: 95px 0;
    }

    .why-visual {
        padding-right: 25px;
    }

    .why-image {
        height: 500px;
    }

    .why-content {
        padding-left: 0;
    }

    .why-content h2 {
        font-size: 52px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .why-section {
        padding: 75px 0;

        background-size: 55px 55px;
    }

    .why-visual {
        padding-right: 15px;
    }

    .why-image {
        height: 420px;
    }

    .why-floating-card {
        right: -5px;
        bottom: 30px;

        min-width: 210px;

        padding: 14px;
    }

    .why-floating-icon {
        width: 40px;
        height: 40px;
    }

    .why-content h2 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .why-intro {
        font-size: 14px;

        margin-bottom: 30px;
    }

    .feature-item {
        grid-template-columns:
            28px
            43px
            1fr
            25px;

        gap: 10px;

        padding: 15px;
    }

    .feature-icon {
        width: 43px;
        height: 43px;
    }

    .feature-text h4 {
        font-size: 14px;
    }

    .feature-text p {
        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .why-image {
        height: 350px;
    }

    .why-image-top {
        left: 18px;
        right: 18px;
        top: 18px;
    }

    .why-image-bottom {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .why-content h2 {
        font-size: 36px;
    }

    .feature-item {
        grid-template-columns: 40px 1fr 25px;
    }

    .feature-number {
        display: none;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-text p {
        line-height: 1.5;
    }

}

/* =========================
   HERO GRID
========================= */

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(216,173,69,.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(216,173,69,.09) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    opacity: .55;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            rgba(0,0,0,.8),
            transparent
        );

    animation: gridMove 18s linear infinite;
}

@keyframes gridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 65px 65px;
    }
}


/* =========================
   HERO LIGHTS
========================= */

.glow {
    position: absolute;

    width: 480px;
    height: 480px;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(90px);

    opacity: .12;
}

.glow-one {
    top: 5%;
    left: -180px;

    background: var(--gold);
}

.glow-two {
    right: -170px;
    bottom: -100px;

    background: var(--cyan);
}


/* =========================
   HERO CONTAINER
========================= */

.hero-container {
    position: relative;
    z-index: 2;

    padding-top: 30px;
    padding-bottom: 40px;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    max-width: 720px;
}

.hero-label,
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.hero-label span,
.section-label span {
    width: 38px;
    height: 1px;

    display: block;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--cyan)
        );
}

.hero-content h1 {
    margin-top: 25px;
    margin-bottom: 25px;

    color: var(--white);

    font-size: clamp(
        52px,
        6vw,
        68px
    );

    line-height: .98;

  

    letter-spacing: -4px;
}

.hero-content h1 span {
    color: var(--gold-light);

    background:
        linear-gradient(
            90deg,
            #fff4b1,
            var(--gold),
            #9d741f
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-content h1 strong {
    color: var(--cyan);



    text-shadow:
        0 0 35px rgba(0,217,255,.12);
}

.hero-content > p {
    max-width: 610px;

    margin-bottom: 32px;

    color: var(--text-muted);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 50px;
}

.primary-btn,
.secondary-btn {
    min-height: 54px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition: var(--transition);
}

.primary-btn {
    color: #050403;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    border: 1px solid var(--gold);
}

.primary-btn:hover {
    color: #050403;

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(216,173,69,.22);
}

.primary-btn i {
    transition: var(--transition);
}

.primary-btn:hover i {
    transform: translateX(5px);
}

.secondary-btn {
    color: var(--white);

    border: 1px solid rgba(216,173,69,.3);

    background: rgba(255,255,255,.025);
}

.secondary-btn:hover {
    color: var(--gold-light);

    border-color: var(--gold);

    background: rgba(216,173,69,.06);

    transform: translateY(-4px);
}


/* =========================
   HERO STATS
========================= */

.hero-stats {
    display: flex;
    align-items: stretch;

    max-width: 600px;

    border-top: 1px solid rgba(216,173,69,.18);
    border-bottom: 1px solid rgba(216,173,69,.18);
}

.stat-box {
    flex: 1;

    padding: 20px 22px;

    position: relative;
}

.stat-box + .stat-box::before {
    content: "";

    position: absolute;

    top: 18px;
    bottom: 18px;
    left: 0;

    width: 1px;

    background: rgba(216,173,69,.15);
}

.stat-box strong {
    display: block;

    color: var(--gold-light);

    font-size: 27px;
    line-height: 1;

    margin-bottom: 7px;
}

.stat-box span {
    display: block;

    color: var(--text-muted);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   TRADING VISUAL
========================================================= */

.trading-visual {
    position: relative;

    min-height: 540px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================
   VISUAL CIRCLE
========================= */

.visual-circle {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    border:
        1px solid rgba(216,173,69,.12);

    box-shadow:
        0 0 80px rgba(216,173,69,.05),
        inset 0 0 80px rgba(0,217,255,.03);

    animation:
        visualRotate 18s linear infinite;
}

.visual-circle::before,
.visual-circle::after {
    content: "";

    position: absolute;

    inset: 35px;

    border-radius: 50%;

    border: 1px dashed rgba(0,217,255,.14);
}

.visual-circle::after {
    inset: 75px;

    border-color: rgba(104,255,0,.11);
}

@keyframes visualRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================
   CHART CARD
========================= */

.chart-card {
    position: relative;
    z-index: 3;

    width: min(100%, 470px);

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(19,17,12,.97),
            rgba(8,8,6,.97)
        );

    border:
        1px solid rgba(216,173,69,.28);

    box-shadow:
        0 30px 80px rgba(0,0,0,.65),
        0 0 50px rgba(216,173,69,.06);

    backdrop-filter: blur(12px);

    animation: chartFloat 5s ease-in-out infinite;
}

@keyframes chartFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.chart-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom:
        1px solid rgba(216,173,69,.12);
}

.chart-header small {
    display: block;

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.chart-header h4 {
    margin: 6px 0 0;

    color: var(--white);

    font-size: 18px;

    font-weight: 700;
}

.positive {
    color: var(--green);

    font-size: 13px;

    font-weight: 800;

    padding: 7px 10px;

    background: rgba(104,255,0,.06);

    border:
        1px solid rgba(104,255,0,.15);
}


/* =========================
   CHART
========================= */

.chart-area {
    height: 230px;

    padding-top: 20px;
}

.chart-area svg {
    width: 100%;
    height: 100%;

    overflow: visible;
}

.chart-fill {
    fill: url(#chartGradient);

    opacity: .9;
}

.chart-line {
    fill: none;

    stroke: var(--cyan);

    stroke-width: 3;

    filter:
        drop-shadow(
            0 0 6px
            rgba(0,217,255,.55)
        );

    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;

    animation:
        drawChart 3s ease forwards;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}


/* =========================
   CHART FOOTER
========================= */

.chart-footer {
    display: flex;

    justify-content: space-between;

    padding-top: 18px;

    border-top:
        1px solid rgba(216,173,69,.12);
}

.chart-footer small {
    display: block;

    color: var(--text-muted);

    font-size: 10px;

    margin-bottom: 4px;
}

.chart-footer strong {
    color: var(--white);

    font-size: 18px;
}

.green-text {
    color: var(--green) !important;
}


/* =========================
   FLOATING CARDS
========================= */

.floating-card {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 17px;

    background:
        rgba(10,9,7,.92);

    border:
        1px solid rgba(216,173,69,.25);

    box-shadow:
        0 15px 40px rgba(0,0,0,.4);

    backdrop-filter: blur(10px);

    animation:
        floatingCard 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--gold);

    font-size: 20px;
}

.floating-card small {
    display: block;

    color: var(--text-muted);

    font-size: 9px;
}

.floating-card strong {
    display: block;

    color: var(--white);

    font-size: 13px;
}

.floating-one {
    left: 0;
    top: 100px;
}

.floating-two {
    right: -10px;
    bottom: 90px;

    animation-delay: 1.5s;
}

.floating-two i {
    color: var(--green);
}

@keyframes floatingCard {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =========================================================
   MARKET TICKER
========================================================= */

.market-ticker {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    overflow: hidden;

    border-top:
        1px solid rgba(216,173,69,.15);

    border-bottom:
        1px solid rgba(216,173,69,.12);

    background:
        rgba(5,4,3,.72);

    backdrop-filter: blur(10px);

    z-index: 10;
}

.ticker-track {
    min-height: 58px;

    width: max-content;

    display: flex;
    align-items: center;

    gap: 30px;

    padding: 0 25px;

    animation:
        tickerMove 28s linear infinite;
}

.ticker-track span {
    color: var(--text-muted);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

    white-space: nowrap;
}

.ticker-track b {
    color: var(--gold);
}

.ticker-track i {
    color: var(--cyan);

    font-size: 7px;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-30%);
    }
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.content-section {
    position: relative;

    padding: 60px 0;

   
    border-top:
        1px solid rgba(216,173,69,.08);
}

.content-section::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(216,173,69,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(216,173,69,.035) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    opacity: .6;
}

.content-section .container {
    position: relative;
    z-index: 2;
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    max-width: 760px;

    margin-bottom: 65px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading.centered .section-label {
    justify-content: center;
}

.section-heading h2,
.why-section h2,
.contact-section h2,
.cta-section h2 {
    margin-top: 20px;
    margin-bottom: 20px;

    color: var(--white);

    font-size: clamp(
        40px,
        5vw,
        68px
    );

    line-height: 1.05;

    

    letter-spacing: -2px;
}

.section-heading h2 span,
.why-section h2 span,
.contact-section h2 span,
.cta-section h2 span,
.small-section h2 span {
    color: var(--gold-light);

    font-style: italic;
}

.section-heading p,
.why-section > .container p,
.contact-section > .container p {
    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   INFO CARDS
========================================================= */

.info-card {
    height: 100%;

    position: relative;

    padding: 38px 32px;

    background:
        linear-gradient(
            145deg,
            rgba(19,17,12,.85),
            rgba(9,8,6,.9)
        );

    border:
        1px solid rgba(216,173,69,.14);

    transition: var(--transition);

    overflow: hidden;
}

.info-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--cyan),
            var(--green)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(216,173,69,.35);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35),
        var(--gold-shadow);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    font-size: 22px;

    border: 1px solid;
}

.card-icon.gold {
    color: var(--gold);

    background: rgba(216,173,69,.08);

    border-color: rgba(216,173,69,.2);
}

.card-icon.blue {
    color: var(--cyan);

    background: rgba(0,217,255,.07);

    border-color: rgba(0,217,255,.2);
}

.card-icon.green {
    color: var(--green);

    background: rgba(104,255,0,.06);

    border-color: rgba(104,255,0,.18);
}

.info-card h3 {
    margin-bottom: 12px;

    color: var(--white);

    font-size: 22px;

    font-weight: 700;
}

.info-card p {
    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   COURSES
========================================================= */


.course-card {
    position: relative;

    height: 100%;

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            rgba(18,16,11,.95),
            rgba(7,6,5,.95)
        );

    border:
        1px solid rgba(216,173,69,.15);

    transition: var(--transition);

    overflow: hidden;
}

.course-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    background: var(--gold);

    filter: blur(70px);

    opacity: .04;

    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(216,173,69,.4);

    box-shadow:
        0 30px 70px rgba(0,0,0,.45);
}

.course-card:hover::after {
    opacity: .12;
}

.course-card.featured {
    border-color:
        rgba(0,217,255,.3);

    background:
        linear-gradient(
            145deg,
            rgba(7,22,24,.95),
            rgba(7,9,8,.96)
        );
}

.course-card.featured::before {
    content: "POPULAR";

    position: absolute;

    top: 0;
    right: 0;

    padding: 7px 14px;

    color: #050403;

    background: var(--cyan);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.course-number {
    color: rgba(216,173,69,.45);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.course-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    color: var(--gold);

    font-size: 23px;

    border:
        1px solid rgba(216,173,69,.2);

    background:
        rgba(216,173,69,.06);
}

.featured .course-icon {
    color: var(--cyan);

    border-color:
        rgba(0,217,255,.2);

    background:
        rgba(0,217,255,.06);
}

.course-card h3 {
    margin-bottom: 13px;

    color: var(--white);

    font-size: 24px;
}

.course-card p {
    min-height: 85px;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.course-card a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: var(--transition);
}

.course-card a:hover {
    color: var(--cyan);
}

.course-card a i {
    transition: var(--transition);
}

.course-card a:hover i {
    transform: translate(4px,-3px);
}



.feature-list {
    border-top:
        1px solid rgba(216,173,69,.15);
}

.feature-item {
    display: flex;

    gap: 25px;

    padding: 24px 0;

    border-bottom:
        1px solid rgba(216,173,69,.12);

    transition: var(--transition);
}

.feature-item > span {
    min-width: 40px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.feature-item h4 {
    margin-bottom: 5px;

    color: var(--white);

    font-size: 18px;
}

.feature-item p {
    margin: 0;

    color: var(--text-muted);

    font-size: 13px;
}

.feature-item:hover {
    padding-left: 10px;
}

.feature-item:hover > span {
    color: var(--cyan);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    position: relative;

    padding: 100px 0;

  
}

.cta-box {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 60px;

    border:
        1px solid rgba(216,173,69,.25);

    background:
        linear-gradient(
            135deg,
            rgba(216,173,69,.06),
            rgba(0,217,255,.025)
        );

    overflow: hidden;
}

.cta-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -150px;

    border-radius: 50%;

    background: var(--gold);

    filter: blur(100px);

    opacity: .07;
}

.cta-box > * {
    position: relative;
    z-index: 2;
}

.cta-box p {
    max-width: 650px;

    color: var(--text-muted);
}


/* =========================================================
   LOGIN
========================================================= */

.small-section {
    position: relative;

    padding: 100px 0;

    text-align: center;

    border-top:
        1px solid rgba(216,173,69,.1);

    border-bottom:
        1px solid rgba(216,173,69,.1);
}

.small-section h2 {
    color: var(--white);

    font-size: clamp(
        35px,
        5vw,
        60px
    );

    font-weight: 800;
}

.small-section p {
    color: var(--text-muted);
}


.contact-form {
    display: flex;

    flex-direction: column;

    gap: 15px;

    padding: 35px;

    border:
        1px solid rgba(216,173,69,.15);

    background:
        rgba(10,9,7,.65);

    box-shadow:
        0 25px 70px rgba(0,0,0,.3);
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 15px 17px;

    color: var(--white);

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(216,173,69,.15);

    outline: none;

    resize: vertical;

    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #777269;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);

    background:
        rgba(216,173,69,.04);

    box-shadow:
        0 0 0 3px rgba(216,173,69,.04);
}

.contact-form .primary-btn {
    align-self: flex-start;

    cursor: pointer;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 35px 0;

    background: #040302;

    border-top:
        1px solid rgba(216,173,69,.16);
}

.footer-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.footer-inner > img {
    width: 120px;

    max-height: 65px;

    object-fit: contain;
}

.footer p {
    margin: 0;

    color: #77736a;

    font-size: 12px;
}

.social-links {
    display: flex;

    align-items: center;

    gap: 8px;
}

.social-links a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--text-muted);

    border:
        1px solid rgba(216,173,69,.15);

    background:
        rgba(216,173,69,.025);

    transition: var(--transition);
}

.social-links a:hover {
    color: #050403;

    background: var(--gold);

    border-color: var(--gold);

    transform: translateY(-4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .navbar-inner {
        padding-left: 25px;
        padding-right: 25px;
    }

    .navbar-menu {
        gap: 20px;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding-left: 9px;
        padding-right: 9px;

        font-size: 11px;
    }

    .desktop-actions {
        gap: 7px;
    }

    .btn-login,
    .btn-signup {
        padding: 0 14px;
    }

    .hero-content h1 {
        font-size: 68px;
    }

    .visual-circle {
        width: 390px;
        height: 390px;
    }

    .floating-one {
        left: -15px;
    }

    .floating-two {
        right: -15px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .trading-navbar,
    .navbar-inner {
        min-height: 75px;
    }

    .main-header {
        background:
            rgba(5,4,3,.97);
    }

    .brand-logo {
        width: 125px;
    }

    .desktop-actions {
        display: none;
    }

    .mobile-actions {
        display: flex;
    }

    .custom-toggler {
        display: flex;
    }

    .navbar-menu {
        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        margin: 0;

        padding: 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 10px;

        background:
            rgba(7,6,4,.98);

        border-bottom:
            1px solid rgba(216,173,69,.2);

        box-shadow:
            0 25px 50px rgba(0,0,0,.5);

        animation:
            mobileMenu .35s ease;
    }

    .navbar-menu.show {
        display: flex;
    }

    @keyframes mobileMenu {
        from {
            opacity: 0;
            transform: translateY(-15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar-nav {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;

        padding: 15px 10px;

        border-bottom:
            1px solid rgba(216,173,69,.07);
    }

    .nav-link::before {
        left: 10px;
        right: auto;

        bottom: 8px;

        width: 35px;
    }

    .hero-section {
        min-height: auto;

        padding-top: 75px;
    }

    .hero-container {
        padding-top: 2%;
        padding-bottom: 50px;
    }

    .hero-content {
        max-width: 850px;

        text-align: center;

        margin: auto;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .trading-visual {
        margin-top: 70px;

        min-height: 500px;
    }

    .floating-one {
        left: 5%;
    }

    .floating-two {
        right: 5%;
    }

    .cta-box {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-inner {
        flex-direction: column;

        text-align: center;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    body {
        background-size:
            55px 55px,
            55px 55px,
            100% 100%,
            100% 100%;
    }

    .navbar-inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .brand-logo {
        width: 110px;
    }

    .mobile-actions {
        gap: 5px;
    }

    .mobile-login,
    .mobile-signup {
        min-height: 37px;

        padding: 0 10px;

        font-size: 9px;
    }

    .custom-toggler {
        width: 39px;
        height: 37px;
    }

    .hero-container {
        padding-left: 15px;
        padding-right: 15px;

        padding-top: 25px;
        padding-bottom: 4px;
    }

    .hero-content h1 {
        margin-top: 20px;

        font-size:
            clamp(43px, 13vw, 65px);

        letter-spacing: -2.5px;
    }

    .hero-content > p {
        font-size: 14px;

        line-height: 1.75;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        margin-bottom: 35px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;

        min-height: 52px;
    }

    .hero-stats {
        width: 100%;
    }

    .stat-box {
        padding: 15px 10px;
    }

    .stat-box strong {
        font-size: 20px;
    }

    .stat-box span {
        font-size: 8px;

        letter-spacing: .5px;
    }

    .trading-visual {
        min-height: 430px;

        margin-top: 35px;
    }

    .visual-circle {
        width: 320px;
        height: 320px;
    }

    .chart-card {
        width: 100%;

        padding: 18px;
    }

    .chart-header h4 {
        font-size: 15px;
    }

    .chart-area {
        height: 180px;
    }

    .floating-card {
        padding: 10px 12px;
    }

    .floating-card i {
        font-size: 16px;
    }

    .floating-card small {
        font-size: 7px;
    }

    .floating-card strong {
        font-size: 10px;
    }

    .floating-one {
        top: 55px;
        left: -5px;
    }

    .floating-two {
        bottom: 45px;
        right: -5px;
    }

    .market-ticker {
        position: absolute;
    }

    .ticker-track {
        min-height: 50px;

        gap: 20px;
    }

    .ticker-track span {
        font-size: 9px;
    }

    .content-section {
        padding: 85px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .why-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .section-heading p,
    .why-section > .container p,
    .contact-section > .container p {
        font-size: 14px;
    }

    .info-card {
        padding: 30px 25px;
    }

    .course-card {
        padding: 28px 24px;
    }

    .course-card p {
        min-height: auto;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .cta-box .primary-btn {
        width: 100%;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .footer {
        padding: 30px 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .mobile-login,
    .mobile-signup {
        display: none;
    }

    .brand-logo {
        width: 105px;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-label,
    .section-label {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .hero-label span,
    .section-label span {
        width: 25px;
    }

    .hero-stats {
        flex-direction: column;
    }

    .stat-box {
        display: flex;

        align-items: center;
        justify-content: space-between;

        gap: 15px;

        padding: 14px 10px;
    }

    .stat-box + .stat-box::before {
        display: none;
    }

    .stat-box + .stat-box {
        border-top:
            1px solid rgba(216,173,69,.1);
    }

    .stat-box strong {
        margin: 0;
    }

    .trading-visual {
        min-height: 390px;
    }

    .visual-circle {
        width: 275px;
        height: 275px;
    }

    .chart-card {
        padding: 15px;
    }

    .chart-area {
        height: 145px;
    }

    .chart-footer strong {
        font-size: 15px;
    }

    .floating-one {
        left: -8px;
    }

    .floating-two {
        right: -8px;
    }

    .section-heading h2,
    .why-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 36px;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-item h4 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 12px;
    }

    .footer-inner > img {
        width: 100px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }
}

/* =========================================================
   MISSION & VISION
========================================================= */

.mission-vision-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;

 

    background-size: 86px 86px;
}


/* Background glow */

.mission-vision-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: -320px;
    top: -250px;

    background: radial-gradient(
        circle,
        rgba(224, 184, 78, 0.10),
        transparent 68%
    );

    pointer-events: none;
}


.mission-vision-section::after {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -320px;
    bottom: -300px;

    background: radial-gradient(
        circle,
        rgba(0, 207, 255, 0.09),
        transparent 68%
    );

    pointer-events: none;
}


.mission-vision-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADING
========================================================= */

.mission-vision-section .section-heading {
    max-width: 850px;
    margin: 0 auto 65px;
}

.mission-vision-section .section-heading p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   CARD
========================================================= */

.mission-card {
    position: relative;

    height: 100%;

    padding: 0;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.012)
        );

    border: 1px solid rgba(255,255,255,0.10);

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;

    backdrop-filter: blur(8px);
}


.mission-card:hover {
    transform: translateY(-10px);
}


/* Gold */

.mission-card-gold {
    border-color: rgba(224,184,78,.25);
}


.mission-card-gold:hover {
    border-color: rgba(224,184,78,.70);

    box-shadow:
        0 30px 80px rgba(224,184,78,.12);
}


/* Blue */

.mission-card-blue {
    border-color: rgba(0,207,255,.22);
}


.mission-card-blue:hover {
    border-color: rgba(0,207,255,.70);

    box-shadow:
        0 30px 80px rgba(0,207,255,.12);
}


/* =========================================================
   IMAGE
========================================================= */

.mission-image {
    position: relative;

    width: 100%;

    height: 300px;

    overflow: hidden;

    background: #0b0b0b;
}


.mission-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1),
        filter .6s ease;
}


.mission-card:hover .mission-image img {
    transform: scale(1.07);

    filter:
        brightness(1.05)
        saturate(1.05);
}


/* Image dark gradient */

.image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.15) 0%,
            rgba(0,0,0,.05) 35%,
            rgba(0,0,0,.82) 100%
        );

    pointer-events: none;
}


/* =========================================================
   IMAGE NUMBER
========================================================= */

.mission-image .mission-number {
    position: absolute;

    top: 22px;
    right: 25px;

    z-index: 3;

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 700;

    color: #ffffff;

    opacity: .75;
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.image-label {
    position: absolute;

    left: 25px;
    bottom: 22px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #ffffff;
}


.image-label i {
    font-size: 16px;
}


/* Gold label */

.mission-card-gold .image-label i {
    color: #e0b84e;
}


/* Blue label */

.mission-card-blue .image-label i {
    color: #00d9ff;
}


/* =========================================================
   CONTENT
========================================================= */

.mission-content {
    padding: 35px 40px 30px;
}


.mission-tag {
    display: block;

    margin-bottom: 15px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: rgba(255,255,255,.38);
}


.mission-content h3 {
    margin: 0 0 20px;

    font-size: clamp(32px, 4vw, 34px);

    line-height: 1.04;

    letter-spacing: -1.5px;


    color: #ffffff;
}


.mission-card-gold h3 span {
    color: #e0b84e;

    font-style: italic;
}


.mission-card-blue h3 span {
    color: #00d9ff;

    font-style: italic;
}


.mission-content p {
    margin: 0;

    font-size: 14px;

    line-height: 1.85;

    color: rgba(255,255,255,.55);
}


/* =========================================================
   CARD FOOTER
========================================================= */

.mission-bottom {
    margin: 0 40px;

    padding: 22px 0 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top: 1px solid rgba(255,255,255,.09);
}


.mission-bottom span {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 4px;

    color: rgba(255,255,255,.35);
}


.mission-bottom i {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.13);

    color: #ffffff;

    transition:
        .35s ease;
}


.mission-card:hover .mission-bottom i {
    transform: rotate(45deg);
}


/* Gold */

.mission-card-gold:hover .mission-bottom i {
    color: #050505;

    background: #e0b84e;

    border-color: #e0b84e;
}


/* Blue */

.mission-card-blue:hover .mission-bottom i {
    color: #050505;

    background: #00d9ff;

    border-color: #00d9ff;
}


/* =========================================================
   PURPOSE STRIP
========================================================= */

.purpose-strip {
    margin-top: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;
}


.purpose-line {
    width: 90px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(224,184,78,.7)
        );
}


.purpose-line:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(224,184,78,.7),
            transparent
        );
}


.purpose-strip p {
    margin: 0;

    text-align: center;

    font-size: 13px;

    color: rgba(255,255,255,.42);
}


.purpose-strip strong {
    color: #e0b84e;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .mission-vision-section {
        padding: 90px 0;
    }

    .mission-image {
        height: 280px;
    }

    .mission-content {
        padding: 30px;
    }

    .mission-bottom {
        margin-left: 30px;
        margin-right: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .mission-vision-section {
        padding: 75px 0;

        background-size: 55px 55px;
    }

    .mission-vision-section .section-heading {
        margin-bottom: 40px;
    }

    .mission-image {
        height: 240px;
    }

    .mission-content {
        padding: 28px 24px;
    }

    .mission-content h3 {
        font-size: 32px;
    }

    .mission-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .mission-bottom {
        margin: 0 24px;

        padding: 20px 0 24px;
    }

    .purpose-strip {
        margin-top: 40px;

        gap: 12px;
    }

    .purpose-line {
        width: 35px;
    }

    .purpose-strip p {
        font-size: 11px;

        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .mission-image {
        height: 210px;
    }

    .mission-content h3 {
        font-size: 29px;
    }

    .image-label {
        left: 20px;
        bottom: 18px;

        font-size: 9px;
    }

    .mission-image .mission-number {
        right: 20px;
        top: 18px;
    }

    .purpose-line {
        display: none;
    }

}

/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;


    background-size: 86px 86px;
}


/* Soft ambient glow */

.faq-section::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    left: -200px;

    background: rgba(255, 194, 50, 0.07);

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;
}


.faq-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -220px;
    bottom: -220px;

    background: rgba(0, 174, 255, 0.055);

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.faq-heading {
    position: relative;
    z-index: 2;

    max-width: 820px;

    margin: 0 auto 70px;

    text-align: center;
}


.faq-heading .section-label {
    justify-content: center;
}


.faq-heading h2 {
    margin: 20px 0;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -2px;
}


.faq-heading h2 span {
    display: inline-block;

    color: #f4c95d;

    font-style: italic;
}


.faq-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.58);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 14px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.09);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}


.faq-item:hover {
    border-color: rgba(244, 201, 93, 0.35);

    transform: translateY(-2px);
}


/* Active */

.faq-item.active {
    border-color: rgba(244, 201, 93, 0.5);

    background:
        linear-gradient(
            145deg,
            rgba(244, 201, 93, 0.09),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   QUESTION
========================================================= */

.faq-question {
    width: 100%;

    border: 0;

    outline: none;

    background: transparent;

    color: #ffffff;

    padding: 25px 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    text-align: left;

    cursor: pointer;

    font-family: inherit;
}


.faq-question > span {
    display: flex;

    align-items: center;

    gap: 18px;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.5;
}


/* Number */

.faq-question small {
    min-width: 34px;

    color: #f4c95d;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* Plus button */

.faq-question i {
    width: 36px;

    height: 36px;

    min-width: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(244, 201, 93, 0.3);

    border-radius: 50%;

    color: #f4c95d;

    font-size: 18px;

    transition:
        transform 0.4s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.faq-item.active .faq-question i {
    transform: rotate(45deg);

    background: #f4c95d;

    color: #050505;

    border-color: #f4c95d;
}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.45s cubic-bezier(.4, 0, .2, 1);
}


.faq-answer p {
    min-height: 0;

    overflow: hidden;

    margin: 0;

    padding: 0 28px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 14px;

    line-height: 1.8;

    opacity: 0;

    transform: translateY(-8px);

    transition:
        opacity 0.3s ease,
        transform 0.35s ease,
        padding 0.4s ease;
}


/* Active answer */

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}


.faq-item.active .faq-answer p {
    padding:
        0 28px
        26px
        28px;

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   GOLD ACCENT LINE
========================================================= */

.faq-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;

    height: 0;

    background: linear-gradient(
        to bottom,
        #f4c95d,
        #00d9ff
    );

    transition: height 0.4s ease;
}


.faq-item.active::before {
    height: 100%;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .faq-section {
        padding: 100px 0;
    }

    .faq-heading {
        margin-bottom: 50px;
    }

}


@media (max-width: 767px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-heading {
        text-align: left;

        margin-bottom: 40px;
    }

    .faq-heading .section-label {
        justify-content: flex-start;
    }

    .faq-heading h2 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .faq-heading p {
        margin: 0;

        font-size: 14px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question > span {
        gap: 12px;

        font-size: 14px;
    }

    .faq-question small {
        min-width: 27px;

        font-size: 9px;
    }

    .faq-question i {
        width: 32px;
        height: 32px;
        min-width: 32px;

        font-size: 16px;
    }

    .faq-item.active .faq-answer p {
        padding:
            0 20px
            22px
            20px;
    }

}


@media (max-width: 480px) {

    .faq-section {
        padding: 65px 0;
    }

    .faq-heading h2 {
        font-size: 35px;
    }

    .faq-heading p {
        font-size: 13px;
    }

    .faq-question {
        padding: 17px 16px;
    }

    .faq-question > span {
        font-size: 13px;
    }

    .faq-question small {
        display: none;
    }

    .faq-question i {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

}