:root {
    --bg-color: #001236;
    --primary-gold: #E2B755;
    --text-dark: #000330;
    --white: #ffffff;
    --gradient-gold: linear-gradient(-90deg, #D6A94C 17%, #f7ECAD 53%, #CE9F46 98%);
    --overlay-blue: rgba(0, 18, 54, 0.85);
    /* Blue shadow color */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    /* This is the nuclear option to kill the horizontal scroll */
    position: relative;
}

* {
    max-width: 100%;
    /* Ensures no specific width pushes the container */
}

body {
    background-color: var(--bg-color);
    color: var(--white);
    overflow-x: hidden;
}

/* --- FIXED TICKER --- */
.tradingview-widget-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    background: var(--bg-color);
}



.btn-enroll {
    background: var(--gradient-gold);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border-radius: 8px;
}

.btn-join {
    padding: 10px 25px;
}

/* --- HERO SECTION --- */
.course-hero {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5%;
}

.hero-border-container {
    width: 100%;
    max-width: 1300px;
    border: 3px solid rgba(226, 183, 85, 0.4);
    /* */
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(226, 183, 85, 0.05), transparent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-content {
    max-width: 100%
}

.hero-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 100%;
}

.hero-desc {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 80%;
    line-height: 1.5;
}

/* ENROLL BUTTON STYLE */
.btn-enroll {
    padding: 15px 45px;
    border-radius: 12px;
    display: inline-block;
    font-size: 1.1rem;
}

.btn-enroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(226, 183, 85, 0.4);
}

.mentor-card {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 45px;
    border-radius: 25px;
    max-width: 350px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
   

    .hero-border-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

    .hero-content {
        max-width: 100%;
    }

    
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
        text-align: left;
    }

    .hero-border-container {
        border-radius: 30px;
    }

    .mentor-card {
        margin-top: 3rem;
    }



    .btn-enroll {
        width: 100%;
    }

    .hero-desc {
        text-align: left;
        min-width: 100%;
    }

}


/*==================================================
What Learn
===================================================*/
/* --- WHAT YOU WILL LEARN SECTION --- */
.learn-section {
    padding: 80px 8%;
    background-color: var(--bg-color);
    text-align: center;
}

.learn-header {
    margin-bottom: 60px;
}

.learn-main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.learn-subtitle {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* --- GRID LAYOUT --- */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- CARD BASE STYLING (Normal State) --- */
.learn-card {
    background-color: #051a42;
    /* Slightly lighter navy for depth */
    border: 2px solid rgba(226, 183, 85, 0.2);
    /* Default subtle gold border */
    border-radius: 25px;
    padding: 50px 35px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Smooth pop effect */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

/* Specific Blue Border for the 3rd Card */
.card-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    /* Apply Gradient to Text */
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* --- THE FIXED HOVER EFFECT --- */
.learn-card:hover {
    background: var(--gradient-gold);
    border-color: transparent;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

/* Fix: Resetting the text-fill-color on hover */
.learn-card:hover .card-title {
    color: var(--text-dark);
    /* #000330 */
    -webkit-text-fill-color: var(--text-dark);
    /* This overrides the transparency */
    background: none;
    /* Removes the background gradient behind the text */
}

.learn-card:hover .card-text {
    color: var(--text-dark);
    opacity: 1;
}



/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1100px) {
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
    }
}

@media (max-width: 768px) {
    .learn-section {
        padding: 60px 5%;
    }

    .learn-grid {
        grid-template-columns: 1fr;
        /* Vertical stack for mobile */
        gap: 20px;
    }

    .learn-main-title {
        font-size: 2.1rem;
        text-align: left;
    }

    .learn-subtitle {
        text-align: left;
    }

    .learn-card {
        padding: 40px 25px;
    }
}



/*==================================================
Theory section
===================================================*/


.course-structure-header {
    padding: 80px 5% 40px;
    /* Adjust padding to fit your section flow */
    text-align: center;
}

.structure-container {
    max-width: 1200px;
    margin: 0 auto;
}

.structure-title {
    font-size: 44px;
    /* Responsive sizing for mobile/desktop */
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;

    /* Applying your core gradient to the text */
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.structure-subtitle {
    font-size: 20px;
    color: var(--white);
    opacity: 0.9;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .course-structure-header {
        padding: 50px 5% 30px;
        text-align: left;
    }

    .structure-title {
        line-height: 1.2;
        font-size: 30px;
    }

    .structure-subtitle {
        font-size: 20px;
    }
}



.theory-section {
    padding: 80px 8%;
    background-color: var(--white);
    color: var(--bg-color);
}

.theory-container {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Interactive Image Card --- */
.theory-card {
    flex: 1;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.theory-base-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay Styling */
.theory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--overlay-blue), transparent);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    /* Hidden by default on desktop */
    transition: opacity 0.4s ease;
}

.overlay-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.overlay-content p {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Hover Effects for Desktop */
.theory-card:hover .theory-overlay {
    opacity: 1;
}

.theory-card:hover .theory-base-img {
    transform: scale(1.05);
}

/* --- Right Side Content --- */
.theory-content {
    flex: 1.2;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.main-title span {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #444;
}

/* --- FEATURES GRID STYLING --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    background: rgba(217, 217, 217, 0.28);
    ;
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    background: #f0f2f5;
}

/* --- THE GOLDEN CHECKBOX --- */
.gold-check {
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    /* Using your 3-tone gold gradient */
    border-radius: 6px;
    /* Slightly rounded corners for a modern look */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevents the box from squeezing on smaller screens */
    box-shadow: 0 2px 6px rgba(226, 183, 85, 0.3);
}

.gold-check i {
    color: var(--text-dark);
    /* Deep navy checkmark for contrast */
    font-size: 12px;
    font-weight: 900;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        /* Single column for better mobile reading */
    }

    .feature-item {
        padding: 15px;
    }

    .theory-content h2,
    .theory-content p {
        text-align: left;
    }
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 1100px) {
    .theory-container {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 768px) {
    .theory-section {
        padding: 50px 5%;
    }

    /* FIX: Show text and blue shadow by default on mobile */
    .theory-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 18, 54, 0.9), transparent 70%);
        padding: 20px;
    }

    .overlay-content h3 {
        font-size: 1.5rem;
        text-align: left;
    }

    .overlay-content p {
        text-align: left;
    }

    .theory-card {
        height: 350px;
        width: 100%;
    }



    .main-title {
        font-size: 2rem;
    }
}

/*==================================================
Practical section
===================================================*/

.practical-practice-section {
    padding: 80px 8%;
    background-color: var(--bg-color);
}

.practical-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Content Styling --- */
.practical-content {
    flex: 1.2;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 40px;
}

/* --- Golden Checkboxes --- */
.practice-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.practice-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.gold-checkbox {
    width: 26px;
    height: 26px;
    background: var(--gradient-gold);
    /* Solid gold background */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gold-checkbox i {
    color: var(--text-dark);
    /* Dark checkmark for contrast */
    font-size: 13px;
    font-weight: 900;
}

/* --- Interactive Image Card --- */
.practice-image-card {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 520px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.base-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.golden-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Golden shadow gradient from bottom */
    background: linear-gradient(to top, rgba(214, 169, 76, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    /* Hidden by default for desktop */
    transition: opacity 0.4s ease;
}

.overlay-text h3 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.overlay-text p {
    color: var(--text-dark);
    font-weight: 600;
    opacity: 0.9;
}

/* Desktop Hover Interaction */
.practice-image-card:hover .golden-hover-overlay {
    opacity: 1;
}

.practice-image-card:hover .base-image {
    transform: scale(1.08);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1200px) {
    .practical-container {
        flex-direction: column;
        text-align: center;
        /* Ensure the container behaves as a flex column for ordering */
        display: flex;
    }

    .practical-content {
        order: 2;
        width: 100%;
    }

    /* Target the image card to appear FIRST */
    .practice-image-card {
        order: 1;
        width: 100%;
        height: 400px;
        /* Adjusted for mobile height */
        margin-bottom: 30px;
        /* Adds space between image and text below it */
    }

    .practice-features-grid {
        text-align: left;
    }

}

@media (max-width: 768px) {
    .practice-features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .practical-content {
        text-align: left;
    }

    .practice-image-card {
        text-align: left;
    }

    /* MOBILE: Force Golden Shadow and Text to be visible */
    .golden-hover-overlay {
        opacity: 1;
        padding: 25px;
        background: linear-gradient(to top, rgba(214, 169, 76, 0.95), transparent 75%);
    }

    .overlay-text h3 {
        font-size: 1.5rem;
        line-height: 115%;
    }

    .overlay-text p {
        text-align: left;
        width: 100%;
    }
}

/*==================================================
Stock  section
===================================================*/


.stock-genius-section {
    padding: 80px 8%;
    background-color: var(--white);
    color: var(--bg-color);
}

.genius-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Interactive Image Card --- */
.genius-image-card {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.genius-base-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Blue Shadow Hover Overlay */
.genius-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--overlay-blue), transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    /* Hidden on desktop by default */
    transition: opacity 0.4s ease;
}

.overlay-inner h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin: 5px 0;
}

.overlay-inner p {
    color: var(--white);
    opacity: 0.9;
}

.count-tag {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Desktop Hover Interaction */
.genius-image-card:hover .genius-overlay {
    opacity: 1;
}

.genius-image-card:hover .genius-base-img {
    transform: scale(1.05);
}

/* --- Content Side --- */
.genius-content {
    flex: 1.2;
}

.genius-main-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.genius-sub-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.genius-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

/* Button with Golden Text Effect */
.btn-stock-genius {
    display: inline-block;
    background-color: #000330;
    padding: 15px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.3s ease;

    /* Golden Text Effect */

    border: 2px solid transparent;
}

.btn-stock-genius span {
    background-image: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.btn-stock-genius:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 3, 48, 0.2);
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 1100px) {
    .genius-container {
        flex-direction: column;
        text-align: center;
    }

    .genius-image-card {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .stock-genius-section {
        padding: 50px 5%;
    }

    /* MOBILE: Force overlay visibility (No Hover Needed) */
    .genius-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 18, 54, 0.9), transparent 80%);
        padding: 25px;
    }

    .overlay-inner h3 {
        font-size: 1.5rem;
    }

    .genius-main-title {
        font-size: 1.5rem;
    }

    .genius-sub-title {
        font-size: 1.4rem;
    }

    .btn-stock-genius {
        width: 100%;
        text-align: center;
    }

    .genius-container h2,
    .genius-container h3,
    .genius-container p {
        text-align: left;
    }
}

/*==================================================
Support section 
===================================================*/

/* --- VARIABLES --- */


/* --- SECTION LAYOUT --- */
.support-screener-section {
    padding: 80px 8%;
    background-color: #001236;
    display: flex;
    justify-content: center;
}

.gold-banner-container {
    width: 100%;
    max-width: 1200px;
    background: var(--gradient-gold);
    border-radius: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 80px 40px;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    /* Anchor for badges */
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    /* This ensures badge stays in the LEFT CORNER of THIS card */
}

/* --- THE UNNIKKUTTAN BADGE --- */
.unnikkuttan {
    position: absolute;
    top: -40px !important;
    left: 0;
    /* Pinned to the very left */
    background: var(--text-dark);
    padding: 10px 20px;
    border-radius: 25px;
    /* Rounded only on the bottom-right for a "corner" look */
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
    border: solid 1px var(--white);

}

/* Desktop Logic: Hide badge on the 2nd card */
.feature-card:last-child .unnikkuttan {
    display: none;
}

.premium-icon {
    width: 18px;
    height: 18px;
    fill: var(--primary-gold);
}

.unnikkuttan span {
    background-image: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* --- CONTENT STYLING --- */
.icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: #001236;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 30px;
    /* Space for the corner badge */
}

.svg-icon {
    width: 60px;
    height: 60px;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000330;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #000330;
    font-weight: 500;
}

/* --- RESPONSIVE (MOBILE) --- */
@media (max-width: 992px) {
    .gold-banner-container {
        grid-template-columns: 1fr;
        padding: 0;
        background: transparent;
        box-shadow: none;
        gap: 30px;
    }

    .feature-card {
        background: var(--gradient-gold);
        border-radius: 40px;
        padding: 80px 30px 40px 30px;
        /* Top padding increased for badge */
        overflow: hidden;
        /* Clips the badge to the border radius */
    }

    /* Reveal badge on second card for mobile */
    .feature-card:last-child .unnikkuttan {
        display: flex;
    }

    .unnikkuttan {
        border-radius: 20
            /* Keeps corner look on mobile */
    }

    .unnikkuttan {
        left: 20px;
        top: 20px !important;
    }
}

/*==================================================
Expert Section
===================================================*/


.expert-section {
    padding: 60px 8%;
    background-color: var(--bg-color);
}

.expert-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Course Overview Card (White) --- */
.overview-card {
    background-color: var(--white);
    padding: 50px;
    border-radius: 20px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overview-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.overview-list {
    list-style: none;
}

.overview-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.overview-list i {
    color: var(--text-dark);
    font-size: 1.3rem;
}

/* --- Expert Mentor Card (Gold Gradient) --- */
.expert-mentor-card {
    background: var(--gradient-gold);
    padding: 50px;
    border-radius: 20px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mentor-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.mentor-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 500;
}

.mentor-name h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.mentor-name p {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.8;
}

/* --- Enroll Button with Golden Text Effect --- */
.btn-enroll-final {
    display: block;
    background-color: var(--text-dark);
    /* Dark Navy Background */
    margin-top: 30px;
    padding: 18px;
    text-align: center;
    border-radius: 50px;
    /* Pill shape as per design */
    text-decoration: none;
    transition: 0.3s ease;
}

.gold-text {
    font-size: 1.2rem;
    font-weight: 800;
    /* Golden Text Effect */
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-enroll-final:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .expert-container {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile/tablet */
    }

    .overview-card,
    .expert-mentor-card {
        padding: 40px 30px;
    }

    .overview-title,
    .mentor-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .expert-section {
        padding: 40px 5%;
    }

    .overview-list li {
        font-size: 1rem;
    }

    .btn-enroll-final {
        padding: 15px;
    }
}


/*==================================================
Footer
===================================================*/




/* Footer Section Base with Split Background */
.main-footer {
    /* Top 50% is Navy, Bottom 50% is Gold */
    background: linear-gradient(to bottom, #001236 50%, #E2B755 50%);
    padding: 0 5% 20px;
    width: 100%;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* The Navy Inner Card */
.footer-inner-card {
    background-color: #001236;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    /* Ensure it sits nicely in the middle of the split */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Brand Section */
.footer-brand {
    flex: 1;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
    
}

.social-icons a {
    background: var(--gradient-gold);
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 25px;
    opacity: 0.8;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 1;
    color: #E2B755;
}

/* Links Columns */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

/* Newsletter */
.footer-newsletter {
    flex: 1.2;
    max-width: 350px;
}

.footer-newsletter p {
    color: #ffffff;
   font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.subscribe-field {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 2px;
}

.subscribe-field input {
    background: transparent;
    border: none;
    padding: 12px;
    color: #ffffff;
    width: 100%;
    outline: none;
}

.subscribe-field button {
    background: transparent;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Copyright Text on Gold Background */
.footer-bottom-text {
    padding-top: 30px;
    color: #000330;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    text-align: left;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .footer-inner-card {
        padding: 40px;
        flex-wrap: wrap;
    }

    .footer-newsletter {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-footer {
        /* On mobile, usually a 50/50 split looks better shifted */
        background: linear-gradient(to bottom, #001236 30%, #E2B755 30%);
    }

    .footer-inner-card {
        flex-direction: column;
        gap: 40px;
        border-radius: 30px;
        text-align: center;
    }

    .footer-brand,
    .social-icons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-icons {
        flex-direction: row;
    }

    .footer-links {
        width: 100%;
    }

    .subscribe-field {
        max-width: 100%;
    }
}


/* --- SCROLL REVEAL CORE --- */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

/* Fade Up (for headings and text) */
.reveal-up {
    transform: translateY(40px);
}

/* Fade Left (for left side images/cards) */
.reveal-left {
    transform: translateX(-50px);
}

/* Fade Right (for right side images/cards) */
.reveal-right {
    transform: translateX(50px);
}

/* Modern Scale (for centered containers or banners) */
.reveal-scale {
    transform: scale(0.92);
}

/* Active State */
.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Staggered Delays for Grid items */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}












/* --- STEP BADGE STYLING --- */
.step-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--text-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    border: 1px solid var(--primary-gold);
}

.step-badge span {
    background-image: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Optional: Slight animation on hover of the parent card */
.theory-card:hover .step-badge,
.practice-image-card:hover .step-badge,
.genius-image-card:hover .step-badge {
    transform: scale(1.1);
    transition: 0.3s ease;
}




/* --- ULTIMATE FIXED BOTTOM TICKER --- */
.tradingview-widget-wrapper {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    top: auto !important;
    /* This kills the 37rem issue */
    width: 100% !important;
    height: 46px !important;
    z-index: 99999 !important;
    /* Higher than everything else */
    background-color: #001236 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
    /* Removes weird spacing */
}

/* Ensure the widget inside is visible */
.tradingview-widget-container {
    width: 100% !important;
    height: 46px !important;
}

/* Fix for Mobile: ensuring it doesn't jump */
@media (max-width: 768px) {
    .tradingview-widget-wrapper {
        bottom: 1.5rem !important;
        position: fixed !important;
    }
}

/* Floating Icon */
#wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: white;
    cursor: pointer;
    z-index: 999999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

#wa-float a {
    text-decoration: none;
    color: white;
    display: flex;
}






.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-gold);
}

.btn-join {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 2px;
}

/* ==========================================
Responsive Breakpoints
=========================================== */

/* Tablet Adjustment */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 4%;
    }

}

/* Mobile Menu (768px and down) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-desktop-btn {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        height: 100vh;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
        /* Slides in */
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.5rem;
        display: block;
        width: auto;
    }

    .mobile-only {
        display: inline-block !important;
        margin-top: 20px;
    }

    /* Hamburger Animation */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* 1. Desktop Button: Show by default, hide on mobile */
.nav-desktop-btn {
    display: inline-block; /* Show on desktop */
}

/* 2. Mobile-only elements: ALWAYS hide by default (Desktop) */
.mobile-only {
    display: none !important;
}

/* 3. Media Query for Mobile (768px and below) */
@media (max-width: 768px) {
    /* Hide the desktop version of the button */
    .nav-desktop-btn {
        display: none !important;
    }

    /* Show the mobile version of the button inside the menu */
    .nav-links .mobile-only {
        display: inline-block !important;
        width: auto;
        margin-top: 25px;
        text-align: center;
        color: #001236;
    }
}