/* style.css - Professional Dark FinTech Theme */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

* {
    /* margin: 0px;
    padding: 0px; */
    box-sizing: border-box;
    font-family: 'Red Hat Display';
    
}

:root {
  --primary-bg: #000000;
    --secondary-bg: #0a0a0a;
    --card-bg: #0f0f0f;
    --border-color: #1f1f1f;
    --primary-accent: #75f8bc;
    --secondary-accent:#01ba9a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-tertiary: #888888;
    --success: #00cc99;
    --warning: #ffaa00;
    --error: #ff3366;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
    --background-black: #0d0d0d;
    --icon-bg: #0A192F; 
 
    --cyan-primary: #75f8bc; /* Main Cyan */
    --cyan-light: #01ba9a;
    --stat-card-bg: rgba(255, 255, 255, 0.05); /* Soft background for cards */
    --card-text: #f0f0f0;
    --card-shadow: rgba(0, 0, 0, 0.5);
    --scroll-speed: 40s; /* Control scroll speed here */

     /* --background-black: #000000; */
    --text-light: #ffffff;
    --text-faded: #e0e0e0; /* Slightly brighter faded text */
    --primary-cyan: #75f8bc; 
    --dark-cyan-faded: rgba(0, 188, 212, 0.2); 

    /* --- Increased Font Sizes --- */
    --base-font-size: 1rem;       /* Default text (was 0.9rem) */
    --heading-font-size: 1.25rem; /* Column Headings (was 1.1rem) */
    --link-font-size: 1rem;       /* Navigation Links (was 0.9rem) */
    --logo-font-size: 1.5rem;     /* Logo (was 1.3rem) */

    --bg-black: #000000;
    --bg-dark: #111111;
    --accent-cyan: #75f8bc;
    --accent-cyan-light: #01ba9a;
    /* --text-light: #f0f0f0; */
    --text-muted: #888888;
    --border-dark: #222222;

    --hero-bg-black: #000000;
    --hero-cyan-primary: #75f8bc;
    --hero-cyan-secondary: #01ba9a;
    --hero-cyan-glow: rgba(0, 255, 255, 0.4);
    --hero-text-white: #FFFFFF;
    --hero-text-gray: #CCCCCC;
    --hero-dark-gray: #1A1A1A;
    --dark-bg: #0A0A0A; /* Main dark background */
    --cyan-primary: #75f8bc; /* Primary Cyan */
    --cyan-secondary: #01ba9a; /* Secondary Cyan */
    --cyan-glow: rgba(0, 255, 179, 0.319); /* Cyan glow effect */
    --text-color: #E0E0E0;
    --secondary-text: #B0B0B0; /* Lighter secondary text */
    --card-bg-light: rgba(0, 255, 255, 0.05); /* Transparent cyan for cards */
    --card-bg-hover: rgba(0, 255, 255, 0.1); /* Hover state */
    --border-color: rgba(0, 255, 255, 0.2); /* Border for glass effect */
}



 html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
     background-color: var(--primary-bg);
    color: var(--text-primary);
    
    line-height: 1.6;
    max-width: 100%;
    outline: 1px solid rgb(255, 0, 0);
    scroll-behavior: smooth;
  }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
 
/* === ENHANCED NAVBAR STYLES === */
        .navbar {
            background: var(--secondary-bg);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            height: 100px;
            top: 0;
            z-index: 1000;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color-nav);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateY(0);
        }

        /* Navbar hidden state when scrolling down */
        .navbar.hidden {
            transform: translateY(-100%);
        }

        /* Navbar visible state when scrolling up */
        .navbar.visible {
            transform: translateY(0);
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 255, 255, 0.3);
        }

        /* Compact navbar when scrolled */
        .navbar.scrolled {
            height:100px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            transition: all 0.3s ease;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 700;
            width: 200px;
            font-size: 1.75rem;
            transition: var(--transition);
            padding: 0.5rem 0;
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .logo img {
            margin-right: 0.75rem;
            width: 200px;
            height: 90px;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        /* Logo size adjustment for scrolled state */
        .navbar.scrolled .logo img {
            width: 160px;
            height: 70px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.3rem 0.9rem;
            border-radius: 10px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-link:hover {
            background-color: rgba(0, 255, 255, 0.1);
            color: var(--primary-accent);
            transform: translateY(-2px);
        }

        .nav-link.active {
            background-color: var(--primary-accent);
            color: var(--primary-bg);
            box-shadow: 0 4px 8px rgba(0, 255, 255, 0.3);
        }

        .nav-link i {
            font-size: 0.9rem;
        }

        /* Get Started Button */
        .nav-cta {
            margin-left: 1rem;
        }

        .btn-get-started {
            background: linear-gradient(to right, var(--primary-accent), var(--secondary-accent));
            color: var(--primary-bg);
            border: none;
            padding: 0.6rem 0.9rem;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .btn-get-started:hover {
            box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
            background: linear-gradient(to right, var(--secondary-accent), var(--primary-accent));
        }

        .btn-get-started i {
            font-size: 1.1rem;
        }

        /* Enhanced Toggle Button Styles */
        .hamburger {
            display: none;
            cursor: pointer;
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid var(--border-color-nav);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            position: relative;
            transition: var(--transition);
        }

        .hamburger:hover {
            background: rgba(0, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 60%;
            background: var(--primary-accent);
            border-radius: 3px;
            opacity: 1;
            left: 20%;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }

        .hamburger span:nth-child(1) {
            top: 16px;
        }

        .hamburger span:nth-child(2) {
            top: 24px;
        }

        .hamburger span:nth-child(3) {
            top: 32px;
        }

        .hamburger.open {
            background: var(--primary-accent);
        }

        .hamburger.open span {
            background: var(--primary-bg);
        }

        .hamburger.open span:nth-child(1) {
            top: 24px;
            transform: rotate(135deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .hamburger.open span:nth-child(3) {
            top: 24px;
            transform: rotate(-135deg);
        }

        /* === MAIN CONTENT STYLES === */
        .main-content {
            margin-top: 80px;
            padding: 2rem;
            min-height: 200vh;
        }

        .section {
            padding: 4rem 0;
            border-bottom: 1px solid var(--border-color-nav);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--primary-accent);
        }

        .content-box {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color-nav);
            margin-bottom: 2rem;
        }

        /* === RESPONSIVE STYLES === */
        @media screen and (max-width: 1100px) {
            .nav-menu {
                gap: 0.8rem;
            }
            
            .nav-link {
                padding: 0.6rem 0.8rem;
                font-size: 1rem;
            }
            
            .btn-get-started {
                padding: 0.7rem 1.2rem;
                font-size: 0.95rem;
            }
        }

        @media screen and (max-width: 992px) {
            .nav-menu {
                gap: 0.6rem;
            }
            
            .nav-link {
                padding: 0.5rem 0.7rem;
                font-size: 0.95rem;
            }
            
            .btn-get-started {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
        }

        @media screen and (max-width: 900px) {
            .nav-menu {
                gap: 0.5rem;
            }
            
            .nav-link {
                padding: 0.5rem 0.6rem;
                font-size: 0.9rem;
            }
            
            .btn-get-started {
                padding: 0.5rem 0.8rem;
                font-size: 0.85rem;
            }
        }

        @media screen and (max-width: 850px) {
            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background: rgba(10, 10, 10, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.4s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
                padding: 2rem 0;
                gap: 0;
                z-index: 999;
                border-top: 1px solid var(--border-color-nav);
                backdrop-filter: blur(10px);
            }

            .navbar.scrolled .nav-menu {
                top: 70px;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 0.75rem 0;
                width: 100%;
            }

            .nav-link {
                padding: 1rem 2rem;
                justify-content: center;
                border-radius: 0;
                font-size: 1.2rem;
            }

            .nav-cta {
                margin: 1.5rem 0 0;
                width: 100%;
            }

            .btn-get-started {
                width: 80%;
                margin: 0 auto;
                justify-content: center;
                padding: 1rem 2rem;
                font-size: 1.1rem;
            }
        }

        @media screen and (max-width: 576px) {
            .logo {
                font-size: 2.5rem;
            }
            
            .logo i {
                font-size: 1.7rem;
            }
        }


/* back to top button */

/* === QUANTUM SCROLL BUTTON === */
.quantum-scroll-btn {
    position: fixed;
    bottom: 100px;
    right: 40px;
    background: linear-gradient(135deg, var(--primary-accent),var(--secondary-accent));
    color: #0A0A0A;
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 25px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 25px rgba(0, 255, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.quantum-scroll-btn.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.quantum-scroll-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 255, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
}

.quantum-scroll-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.quantum-scroll-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.quantum-scroll-btn:hover i {
    transform: translateY(-2px);
}

.quantum-scroll-btn span {

    letter-spacing: 0.5px;
}

/* Pulse animation */
@keyframes quantum-pulse {
    0% {
        box-shadow: 0 6px 25px rgba(0, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 6px 30px rgba(0, 255, 255, 0.6);
    }
    100% {
        box-shadow: 0 6px 25px rgba(0, 255, 255, 0.3);
    }
}

.quantum-scroll-btn.pulse {
    animation: quantum-pulse 2s infinite;
}

/* Responsive design for quantum button */
@media (max-width: 1024px) {
    .quantum-scroll-btn {
        bottom: 35px;
        right: 35px;
        padding: 14px 22px;
    }
}

@media (max-width: 768px) {
    .quantum-scroll-btn {
        bottom: 25px;
        right: 25px;
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 22px;
    }
    
    .quantum-scroll-btn span {
        display: none;
    }
    
    .quantum-scroll-btn i {
        font-size: 1.4rem;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .quantum-scroll-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    
    .quantum-scroll-btn i {
        font-size: 1.2rem;
        margin: 0;
    }
}

/* Hero Section */

 .hero-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 150px 8%;
            min-height: 100vh;
            gap: 60px;
            background: var(--hero-bg-black);
            position: relative;
        }

        /* Glow Effects */
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--hero-cyan-glow) 0%, transparent 70%);
            opacity: 0.3;
            z-index: 0;
        }

        .hero-content {
            flex: 1;
            max-width: 55%;
            position: relative;
            z-index: 1;
        }

        .hero-main-headline {
            font-size: 3.6rem;
            line-height: 1.1;
            margin-bottom: 25px;
            font-weight: 700;
            color: var(--hero-text-white);
        }

        .hero-cyan-text {
            color: var(--hero-cyan-primary);
            text-shadow: 0 0 20px var(--hero-cyan-glow);
        }

        .hero-sub-headline {
            font-size: 1.3rem;
            color: var(--hero-text-gray);
            margin-bottom: 45px;
            font-weight: 400;
            line-height: 1.6;
        }

        /* === ANIMATED TEXT === */
        .hero-animated-text {
            /* color: var(--hero-cyan-primary); */
             background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
            display: inline-block;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            /* text-shadow: 0 0 20px var(--hero-cyan-glow); */
            font-weight: 700;
        }

        /* === CTA BUTTONS === */
        .hero-cta-container {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .hero-cta-button {
            padding: 16px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .hero-primary-btn {
             background: linear-gradient(to right, var(--primary-accent), var(--secondary-accent));
            color: var(--hero-bg-black);
            box-shadow: 0 4px 20px var(--hero-cyan-glow);
        }

        .hero-primary-btn:hover {
            transform: translateY(-3px);
              background: linear-gradient(to right, var(--secondary-accent) , var(--primary-accent));
            box-shadow: 0 8px 30px var(--hero-cyan-glow);
        }

        .hero-secondary-btn {
            background: transparent;
            color: var(--hero-cyan-primary);
            border: 2px solid var(--hero-cyan-primary);
            box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
        }

        .hero-secondary-btn:hover {
            background: rgba(0, 255, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 255, 255, 0.3);
        }

        /* === TRUST SIGNALS WITH COUNT ANIMATION === */
        .hero-trust-signals {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .hero-trust-item {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
        }

        .hero-count-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--hero-cyan-primary);
            text-shadow: 0 0 15px var(--hero-cyan-glow);
            line-height: 1;
        }

        .hero-count-suffix {
            font-size: 1.5rem;
            color: var(--hero-cyan-primary);
        }

        .hero-count-label {
            font-size: 0.9rem;
            color: var(--hero-text-gray);
            font-weight: 500;
        }

        /* === HERO VISUAL === */
        .hero-visual {
            flex: 1;
            max-width: 45%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px; /* Fixed height */
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            /* border: 1px solid rgba(0, 255, 255, 0.2); */
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures images maintain aspect ratio */
            display: block;
            transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
            opacity: 1;
            transform: scale(1);
        }

        .hero-image-glow {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 15px;
            /* box-shadow: inset 0 0 50px rgba(0, 255, 255, 0.1); */
            pointer-events: none;
        }

        /* === RESPONSIVE DESIGN === */
        @media (max-width: 1200px) {
            .hero-section {
                padding: 80px 5%;
            }
            
            .hero-main-headline {
                font-size: 3.2rem;
            }
            
            .hero-trust-signals {
                gap: 30px;
            }
            
            .hero-image-container {
                height: 350px;
                max-width: 450px;
            }
        }

        @media (max-width: 992px) {
            .hero-main-headline {
                font-size: 2.8rem;
            }
            
            .hero-sub-headline {
                font-size: 1.1rem;
            }
            
            .hero-count-number {
                font-size: 2.2rem;
            }
            
            .hero-image-container {
                height: 320px;
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                flex-direction: column-reverse;
                text-align: center;
                padding-top: 150px;
                padding-left: 5%;
                padding-right: 5%;
                padding-bottom: 40px;
                gap: 40px;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-main-headline {
                font-size: 2.5rem;
            }

            .hero-sub-headline {
                font-size: 1rem;
                margin-bottom: 35px;
            }

            .hero-visual {
                max-width: 90%;
            }

            .hero-cta-container {
                justify-content: center;
            }
            
            .hero-trust-signals {
                justify-content: center;
                gap: 25px;
            }
            
            .hero-trust-item {
                align-items: center;
            }
            
            .hero-image-container {
                height: 300px;
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
             .hero-section {
                  flex-direction: column-reverse;
                   padding-top: 150px;
                /* padding: 140px 5%; */
                padding-left: 5%;
                padding-right: 5%;
                padding-bottom: 40px;
            }
            .hero-main-headline {
                font-size: 2rem;
            }

            .hero-cta-container {
                flex-direction: column;
                align-items: center;
            }

            .hero-cta-button {
                width: 100%;
                max-width: 280px;
            }
            
            .hero-trust-signals {
                flex-direction: column;
                gap: 20px;
            }
            
            .hero-count-number {
                font-size: 2rem;
            }
            
            .hero-image-container {
                height: 250px;
            }
        }


/* Welcome Bonus Section */
.welcome-bonus-section {
    background: linear-gradient(135deg, var(--secondary-bg), var(--card-bg));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px; /* Instead of fixed height */
    margin: 40px 0; /* This will now work */
}

.welcome-bonus-container {
    display: flex;
    flex-wrap: wrap; /* Make it responsive on smaller screens */
    max-width: 1200px;
    width: 100%;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.welcome-bonus-content {
    flex: 1 1 500px;
    padding: 50px;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-bonus-badge {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
            color: var(--hero-bg-black);
            box-shadow: 0 4px 20px var(--hero-cyan-glow);
    color: var(--primary-bg);
    max-width: 220px;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.welcome-bonus-title {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    /* color: var(--text-primary); */
     background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.welcome-bonus-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.welcome-bonus-terms {
    font-size: 14px;
    margin-top: 10px;
    color: var(--text-tertiary);
}

.welcome-bonus-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
   background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
            color: var(--hero-bg-black);
            box-shadow: 0 4px 20px var(--hero-cyan-glow);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;

    transition: all 0.3s ease;
    text-align: center;
    max-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
    gap: 10px;
}

.welcome-bonus-button:hover {
    transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
    background: linear-gradient(to right, var(--secondary-accent), var(--primary-accent));
}

.welcome-bonus-image-container {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.welcome-bonus-image {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.5s ease;
    /* border: 1px solid var(--border-color); */
}

.welcome-bonus-image:hover {
    transform: scale(1.03);
}

.welcome-bonus-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.welcome-bonus-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    font-size: 14px;
    color: var(--text-secondary);
    /* flex: 1 1 45%; */
}

.welcome-bonus-feature i {
    color: var(--primary-accent);
    font-size: 18px;
}

/* Tablet Styles */
@media (max-width: 992px) {
    .welcome-bonus-content {
        padding: 40px;
    }

    .welcome-bonus-title {
        font-size: 36px;
    }

    .welcome-bonus-features {
         
        gap: 15px;
    }
}

/* Mobile Styles */
@media (max-width: 576px) {
    .welcome-bonus-content {
        padding: 30px 25px;
    }

    .welcome-bonus-title {
        font-size: 28px;
    }

    .welcome-bonus-description {
        font-size: 16px;
    }

    .welcome-bonus-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100%;
    }

    .welcome-bonus-image-container {
        padding: 20px;
    }
}

/* compare section */
 .vs-body-wrapper {
            background-color: #000000;
            color: #CCCCCC;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 80vh;
            padding: 40px 20px;
        }

        /* --- Main Infographic Container --- */
        .vs-infographic-container {
            max-width: 1000px;
            width: 100%;
            background-color: transparent;
            border-radius: 10px;
            padding: 50px;
        }

        /* --- Header --- */
        .vs-infographic-container h1 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 600;
            color: #F0F9FF;
            margin-bottom: 5px;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
        }
        .vs-infographic-container{
            text-align: center;
        }
        /* --- Subtitle --- */
        .vs-infographic-subtitle {
            text-align: center;
            font-size: 1rem;
            font-weight: 400;
            color:#CCCCCC;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }


        /* --- Product Layout (Flex container) --- */
        .vs-product-layout {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }
        
        /* --- Product Column --- */
        .vs-product-column {
            flex: 1;
            min-width: 0;
        }

        /* --- VS Separator Styling (The VS text) --- */
        /* Original class was '.vs-separator', now it is '.vs-vs-separator' */
        .vs-vs-separator {
            color: var(--primary-accent);
            font-size: 3.5rem; 
            font-weight: 900;
            display: flex; 
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 5px; 
            flex-shrink: 0; 
            flex-basis: auto;
            align-self: center; 
            margin-top: 50px; 
            text-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
        }

        /* --- Hexagonal Title Bar --- */
        .vs-hex-title {
            position: relative;
            background: var(--primary-accent);
            color: var(--primary-bg);
            font-size: 1.2rem;
            font-weight: 700;
            padding: 15px 25px;
            text-align: center;
            z-index: 10;
            margin-bottom: 20px;
            clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
            border: 1px solid #03a380;
        }
        
        .vs-hex-title i {
            font-size: 1.5rem;
        }

        /* Product 2 title bar styling (RED) */
        .vs-product-column:last-of-type .vs-hex-title {
			background: #4949b2;
			box-shadow: 0 0 15px rgb(81 68 255 / 60%);
			border: 1px solid #4949b2;
        }

        /* --- Feature Items --- */
        .vs-feature-item-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .vs-feature-item {
            display: flex; 
            align-items: flex-start;
            gap: 20px;
            /* background-color: #4A4A4A; */
            border-radius: 8px;
            padding: 15px;
            border: 1px solid #444444;
            transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
        }

        /* DEFAULT HOVER: Left Section (Product 1) */
        .vs-product-column:first-of-type .vs-feature-item:hover {
            box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
            transform: translateY(-2px);
            border-color: #01ac84;
        }

        /* RED HOVER: Right Section (Product 2) */
        .vs-product-column:last-of-type .vs-feature-item:hover {
			box-shadow: 0 0 15px rgba(81 68 255, 0.6);
			transform: translateY(-2px);
			border-color: #4949b2;
        }

        .vs-item-text {
            flex-grow: 1;
            font-size: 0.9rem;
            line-height: 1.5;
            color: #CCCCCC;
        }

        /* --- Check/Cross Icon Styling --- */
        .vs-status-icon {
            width: 20px; 
            height: 50px;
            min-width: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            font-weight: 900; 
            border-radius: 50%; 
            transition: transform 0.3s;
            margin-top: 3px;
        }

        /* Cyan for Product 1 (Checkmark) */
        .vs-product-column:first-of-type .vs-status-icon {
            color: var(--primary-accentw);
            text-shadow: 0 0 8px rgba(0, 188, 212, 0.6); 
        }

        /* Red for Product 2 (Crossmark) */
        .vs-product-column:last-of-type .vs-status-icon {
			color: #4949b2;
			text-shadow: 0 0 8px rgba(81 68 255, 0.6);
        }

        .vs-feature-item:hover .vs-status-icon {
            transform: scale(1.1);
        }
        
        /* --- Bottom Separator (Page number) --- */
        /* Original class was '.separator', now it is '.vs-separator' */
        .vs-separator {
            margin-top: 50px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 10px;
        }
        
        .vs-separator hr {
            width: 80px;
            height: 1px;
            background-color: #444444;
            border: none;
        }
        
        .vs-separator span {
            font-size: 1.1rem;
            color: #888888;
            font-weight: 500;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 850px) {
            

.vs-infographic-container h1 {
                font-size: 1.5rem;
            }   
            .vs-product-layout {
                flex-direction: column;
                gap: 0;
            }
            .vs-infographic-container {
                padding: 30px 20px;
            }
            .vs-hex-title {
                font-size: 1.4rem;
                padding: 20px 25px;
            }
            
            /* Show VS on small screens, center it, and add vertical spacing */
            .vs-vs-separator {
                display: flex; 
                width: 100%;
                text-align: center;
                margin: 20px 0; 
                padding: 0;
            }

            .vs-feature-item {
                flex-direction: row;
                text-align: left;
            }
        }
        
        @media (max-width: 500px) {
            .vs-infographic-container {
                padding: 20px 10px;
            }
        }

        @media (min-width: 851px) {
            .vs-vs-separator {
                display: flex; 
            }
        }

/* Crypto Insights Section */
.crypto-insights-section {
    background: linear-gradient(135deg, var(--secondary-bg), var(--primary-bg));
    color: var(--text-primary);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.crypto-main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
}

.crypto-text-content {
    flex: 1 1 400px;
    max-width: 550px;
}

.crypto-main-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.crypto-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.crypto-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.crypto-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
}

.crypto-feature-icon {
    color: var(--primary-accent);
    font-size: 1.1rem;
}

.crypto-tilt-card {
    flex: 1 1 350px;
    max-width: 500px;
    perspective: 1200px;
    width: 100%;
}

.crypto-tilt-inner {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* background: var(--card-bg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
                0 0 0 1px var(--border-color); */
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    /* border: 1px solid var(--border-color); */
}

.crypto-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    pointer-events: none;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.crypto-card-caption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateZ(50px);
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-bg);
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 30px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.crypto-tilt-inner.crypto-hovered .crypto-card-caption {
    opacity: 1;
}

.crypto-tilt-inner.crypto-hovered .crypto-card-image {
    filter: brightness(1) contrast(1.2);
}

/* Mobile animation */
.crypto-mobile-animate {
    animation: cryptoFloat 6s ease-in-out infinite alternate;
}

@keyframes cryptoFloat {
    0% {
        transform: rotateX(5deg) rotateY(-5deg) scale(1.03);
    }
    100% {
        transform: rotateX(-5deg) rotateY(5deg) scale(1.03);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .crypto-main-container {
        gap: 2.5rem;
    }
    
    .crypto-main-title {
        font-size: 2.4rem;
    }
    
    .crypto-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .crypto-main-container {
        /* flex-direction: column; */
        text-align: center;
        gap: 1rem;
    }

    .crypto-text-content {
        max-width: 100%;
    }

    .crypto-main-title {
        font-size: 2.2rem;
    }

    .crypto-features-list {
        align-items: center;
    }

    .crypto-tilt-card {
        max-width: 90%;
    }

    .crypto-card-image {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 480px) {
    .crypto-insights-section {
        padding: 1rem;
    }
    
    .crypto-main-title {
        font-size: 1.8rem;
    }
    
    .crypto-description {
        font-size: 1rem;
    }
    
    .crypto-card-caption {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .crypto-feature-item {
        font-size: 0.9rem;
    }
}


/* === ABOUT SECTION CONTAINER === */
        .about-section {
            padding: 100px 20px;
            background-color: var(--primary-bg);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 90%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 10%, rgba(0, 255, 255, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        /* === LEFT COLUMN: IMAGE AREA (Responsive Focus) === */
        .about-image-area {
            flex: 0 0 45%; 
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 550px; 
            height: 600px; /* Fixed height for desktop */
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--border-color);
            transition: all 0.5s ease;
            cursor: pointer;
            background: #0a0a0a; /* Fallback background */
        }

        .about-image-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 255, 255, 0.4);
        }

        .about-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            display: block;
            filter: brightness(0.9);
            transition: all 0.5s ease;
        }

        .about-image-wrapper:hover img {
            filter: brightness(1.1);
            transform: scale(1.05);
        }

        /* Hover Text Overlay */
        .about-hover-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            display: flex;
            align-items: flex-end; 
            padding: 30px 20px 20px;
            transform: translateY(100%); 
            transition: transform 0.5s ease;
            z-index: 10;
        }
        
        .about-image-wrapper:hover .about-hover-overlay {
            transform: translateY(0%); 
        }

        .about-overlay-content {
            color: var(--accent-color);
            text-align: left;
            width: 100%;
        }

        .about-overlay-content h4 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            font-weight: 700;
            text-align: center;
        }
        
        .about-overlay-content p {
            font-size: 0.9rem;
            color: var(--text-faded);
            line-height: 1.5;
        }

        /* Floating Elements */
        .about-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .about-floating-element {
            position: absolute;
            width: 8px;
            height: 8px;
        background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent)); 
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .about-floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .about-floating-element:nth-child(2) {
            top: 60%;
            left: 85%;
            animation-delay: 3s;
            width: 6px;
            height: 6px;
        }

        .about-floating-element:nth-child(3) {
            top: 80%;
            left: 15%;
            animation-delay: 6s;
            width: 10px;
            height: 10px;
        }

        @keyframes float {
            0% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-20px) translateX(10px); }
            50% { transform: translateY(-10px) translateX(20px); }
            75% { transform: translateY(-30px) translateX(10px); }
            100% { transform: translateY(0) translateX(0); }
        }

        /* === RIGHT COLUMN: TEXT CONTENT === */
        .about-content-area {
            flex: 1;
            max-width: 55%;
        }

        .about-section-subtitle {
            font-size: 0.9rem;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent)); 
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .about-section-title {
            font-size: 3.2rem;
            color: var(--text-primary);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .about-section-title span {
            background:  linear-gradient(90deg,var(--primary-accent),var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent
        }

        .about-intro-text {
            font-size: 1rem;
            color: var(--text-faded);
            margin-bottom: 40px;
            line-height: 1.7;

        }
        
        .about-intro-text strong {
           background: linear-gradient(90deg,var(--primary-accent),var());
            font-weight: 700;
        }

        .about-sub-title {
            font-size: 1.3rem;
            background:linear-gradient(90deg,var(--primary-accent),var(--secondary-accent));
            -webkit-background-clip:text;
            background-clip:text;
            color: transparent;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .about-sub-description {
            font-size: 0.95rem;
            color: var(--text-faded);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .about-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px 30px;
        }

        .about-feature-item {
            display: flex;
            align-items: flex-start;
            font-size: 1rem;
            color: var(--text-faded);
            padding: 8px 0;
            transition: all 0.3s ease;
        }

        .about-feature-item:hover {
            transform: translateX(10px);
            color: var(--primary-accent);
        }

        .about-feature-item i {
           background: linear-gradient(90deg,var(--primary-accent),var(--secondary-accent));
           background-clip: text;
           -webkit-background-clip: text    ;
           color: transparent;
            margin-right: 10px;
            font-size: 1.1rem;
            margin-top: 2px;
            transition: transform 0.2s ease;
        }

        .about-feature-item:hover i {
            transform: scale(1.15);
        }


        /* Screen size: Max 1024px (Tablets in portrait/smaller Laptops) */
        @media(max-width: 1024px){
            .about-container {
                flex-direction: row;
                gap: 50px;
            }
            .about-image-area {
                flex: 0 0 45%;
            }
            .about-content-area {
                max-width: 55%;
            }
            .about-features-grid {
                grid-template-columns: 1fr;
                gap: 0px;
            }
            .about-image-wrapper {
                max-width: 100%;
                height: 500px;
            }
            .about-feature-item {
                max-width: 400px;
                text-align: left;
            }
        }

        /* Screen size: Max 768px (Tablets) */
        @media(max-width: 768px){
            .about-section {
                padding: 80px 20px;
            }
            .about-container {
                flex-direction: column;
                gap: 50px;
            }
            .about-image-area {
                flex: 0 0 100%;
                max-width: 100%;
                order: -1;
            }
            .about-content-area {
                max-width: 100%;
                text-align: center;
            }
            .about-image-wrapper {
                height: 450px;
                max-width: 100%;
            }
            .about-section-title {
                font-size: 2.8rem;
            }
            .about-features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .about-feature-item {
                max-width: 100%;
                text-align: left;
                justify-content: center;
            }
        }

        /* Screen size: Max 600px (Mobile Phones) */
        @media(max-width: 600px){
            .about-section {
                padding: 60px 15px;
            }
            .about-container {
                flex-direction: column;
                gap: 40px;
            }
            .about-image-area {
                flex: 0 0 100%;
                max-width: 100%;
                order: -1;
            }
            .about-content-area {
                max-width: 100%;
                text-align: center;
            }
            .about-section-title {
                font-size: 2.2rem;
            }
            .about-sub-title {
                font-size: 1.1rem;
            }
            .about-intro-text, .about-sub-description, .about-feature-item {
                font-size: 0.9rem;
            }
            .about-overlay-content h4 {
                font-size: 1.2rem;
            }
            .about-overlay-content p {
                font-size: 0.8rem;
            }
            .about-image-wrapper {
                width: 100%;
                max-width: 100%;
                height: 400px;
                border-radius: 10px;
            }
            .about-features-grid {
                gap: 15px;
            }
        }

        /* Screen size: Max 400px (Small Phones) */
        @media(max-width: 400px){
            .about-image-wrapper {
                height: 300px;
            }
            .about-section-title {
                font-size: 1.8rem;
            }
            .about-hover-overlay {
                padding: 20px 15px 15px;
            }
        }

        /* Ensure image always displays */
        .about-image-wrapper img {
            display: block !important;
            visibility: visible !important;
        }
        
/*scroll section styling */
.scroll-section {
      position: relative;
      background-color: #0a0a0a;
      padding: 2rem 1rem;
      overflow: hidden;
    }

    .intro {
      text-align: center;
      color: #ffffff;
      margin-bottom: 2rem;
    }

    .intro h2 {
      font-size: 2.8rem;
      margin-bottom: 0.5rem;
       background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
      /* color: #00ffd5; */
    }

    .intro p {
      font-size: 1rem;
      color: #cccccc;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.5;
    }

    .scroller-section {
      overflow: hidden;
      white-space: nowrap;
      width: 100%;
      padding: 1.5rem 0;
      position: relative;
    }

    .scroller-section::before,
    .scroller-section::after {
      content: '';
      position: absolute;
      top: 0;
      width: 60px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    .scroller-section::before {
      left: 0;
      background: linear-gradient(to right, #0a0a0a, transparent);
    }

    .scroller-section::after {
      right: 0;
      background: linear-gradient(to left, #0a0a0a, transparent);
    }

    .scroller-track {
      display: inline-flex;
      gap: 1rem;
      position: relative;
      z-index: 1;
    }

    .card {
      width: 160px;
      height: 50px;
      background: #2b2727;
      border-radius: 12px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s;
    }

    .card:hover {
      transform: scale(1.1);
    }

    .card img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .card:hover img {
      transform: scale(1.1);
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @keyframes scroll-right {
      0% {
        transform: translateX(-50%);
      }
      100% {
        transform: translateX(0%);
      }
    }

    .scroll-left {
      animation: scroll-left 25s linear infinite;
    }

    .scroll-right {
      animation: scroll-right 25s linear infinite;
    }

    .scroller-section:hover .scroll-left,
    .scroller-section:hover .scroll-right {
      animation-play-state: paused;
    }

    @media (max-width: 600px) {
      .card {
        width: 100px;
        height: 40px;
      }

      .intro h2 {
        font-size: 1.5rem;
      }

      .intro p {
        font-size: 0.9rem;
      }
    }


     /* Card Swap Section */
.card-swap-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--primary-bg);
  padding: 60px 20px;
  position: relative;
}

/* New Heading Styles */
.section-heading-container {
  text-align: center;
  margin-bottom: 5rem;
  width: 100%;
}

.section-heading {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  padding: 0 20px;
}

.card-swap-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 4rem;
}

.card-swap-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.card-swap-text h1 {
  font-size: 3rem;
  line-height: 3.5rem;
  background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
  -webkit-background-clip: text;
  color: transparent;
  margin: 0 0 15px;
}

.card-swap-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-swap-container {
  position: relative;
  width: 450px;
  height: 340px;
  perspective: 1000px;
  perspective-origin: center 40%;
  cursor: pointer;
}

.swap-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 260px;
  background: linear-gradient(145deg, var(--card-bg), var(--secondary-bg));
  border: 1px solid var(--border-color);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform-origin: center center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.swap-card i {
  font-size: 3rem;
  color: var(--primary-accent);
  margin-bottom: 10px;
}

.swap-card h3 {
  font-size: 1.5rem;
  margin: 5px 0;
}

.swap-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  width: 80%;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
  .section-heading {
    font-size: 2.2rem;
  }
  
  .card-swap-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .card-swap-text {
    max-width: 100%;
  }
  
  .card-swap-text h1 {
    font-size: 2.2rem;
  }
  
  .card-swap-container {
    width: 90vw;
    height: 320px;
  }
  
  .swap-card {
    width: 300px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 1.6rem;
    padding: 0 10px;
  }
  
  .card-swap-container {
    height: 280px;
  }
  
  .swap-card {
    width: 260px;
    height: 190px;
  }
  
  .swap-card i {
    font-size: 2.2rem;
  }
  
  .swap-card h3 {
    font-size: 1.2rem;
  }
  
  .swap-card p {
    font-size: 0.9rem;
  }
}



/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    padding: 4rem 1.5rem;
    width: 100%;
}

.faq-container {
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    
    
}

.section-subtitle {
    color:  var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-heading {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
     background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-accent);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 255, 0.1);
}

.faq-icon {
    color: var(--primary-accent);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.show-more-btn {
    display: block;
    margin: 2.5rem auto 0;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
    color: var(--primary-bg);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.5);
}

.hidden-faqs {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.hidden-faqs.show {
    max-height: 2000px;
}

.highlight {
    color: var(--primary-accent);
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.25rem;
    }
}

.spotlight-section {
            padding: 4rem 0; /* Changed L/R padding to 0 for full width container */
            background: var(--primary-bg);
            color: var(--text-primary);
            text-align: center;
        }

        .spotlight-heading {
            padding: 0 2rem; /* Added padding to heading for smaller screens */
        }

        .spotlight-heading h2 {
            font-size: 2.8rem; 
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700; 
        }

        .spotlight-heading p {
            font-size: 1.1rem; 
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto 3rem auto;
            line-height: 1.6;
        }
        
        /* --- SCROLL CONTAINER SETUP WITH OVERLAY --- */
        .spotlight-cards-container {
            /* यह कंटेनर अब केवल ओवरले और मार्जिन को संभालेगा */
            max-width: 1200px;
            margin: 0 auto;
            width: 100%; 
            position: relative; 
            padding: 3rem 0; /* Top/Bottom Padding */
            display: flex; /* Flex is still good for centering the wrapper */
        }

        /* --- FIX: New Scroll Wrapper for Horizontal Scroll and Overflow --- */
        .scroll-wrapper {
            width: 100%;
            /* यह एलिमेंट स्क्रॉलिंग और ओवरफ्लो को हैंडल करता है */
            overflow-x: scroll; 
            /* ओवरले के नीचे कार्ड्स को दिखने के लिए L/R पैडिंग यहाँ लगाएँ */
            padding: 0 40px; 
            /* Webkit (Chrome, Safari) स्क्रॉल बार छुपाएँ */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }
        .scroll-wrapper::-webkit-scrollbar {
            display: none; 
        }

        /* LEFT SIDE OVERLAY (Remains on the container) */
        .spotlight-cards-container::before {
            content: '';
            position: absolute;
            top: 0; 
            left: 0; /* Ensure it starts at the container's edge */
            bottom: 0; 
            background: linear-gradient(to right, var(--primary-bg) 0%, transparent 100%);
            width: 80px; 
            z-index: 10; 
            pointer-events: none; 
        }

        /* RIGHT SIDE OVERLAY (Remains on the container) */
        .spotlight-cards-container::after {
            content: '';
            position: absolute;
            top: 0; 
            right: 0; /* Ensure it ends at the container's edge */
            bottom: 0; 
            background: linear-gradient(to left, var(--primary-bg) 0%, transparent 100%);
            width: 80px; 
            z-index: 10;
            pointer-events: none;
        }

        .spotlight-cards-scroll-track {
            display: flex;
            gap: 2rem;
            /* एनीमेशन को track पर रखें */
            animation: scroll-cards 30s linear infinite; 
            width: fit-content; /* Ensure it's wide enough for animation */
        }

        /* PAUSE ON HOVER */
        .spotlight-cards-scroll-track:hover {
            animation-play-state: paused;
        }

        /* --- SCROLL ANIMATION KEYFRAMES --- */
        @keyframes scroll-cards {
            0% {
                transform: translateX(0%);
            }
            100% {
                transform: translateX(-50%); 
            }
        }


        /* --- Card Styling --- */
        .spotlight-card {
            position: relative;
            border-radius: 1.25rem;
            border: 1px solid var(--border-color); 
            background-color: var(--card-bg); 
            padding: 2rem;
            width: 300px; 
            cursor: pointer;
            overflow: hidden;
            --mouse-x: 50%;
            --mouse-y: 50%;
            --spotlight-color: rgba(0, 191, 255, 0.15);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease; 
            user-select: none;
            outline: none;
            flex-shrink: 0; 
            text-align: center; 
        }

        .spotlight-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(
                circle at var(--mouse-x) var(--mouse-y),
                var(--spotlight-color),
                transparent 80%
            );
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            border-radius: 1.25rem;
            z-index: 0;
        }

        .spotlight-card:hover::before,
        .spotlight-card:focus-visible::before {
            opacity: 0.8;
        }

        .spotlight-card:hover {
            box-shadow: 0 0 25px var(--card-hover-shadow), 0 0 50px var(--card-hover-shadow); 
            transform: translateY(-8px); 
            border-color: var(--primary-accent); 
        }

        .spotlight-card-content {
            position: relative;
            z-index: 1;
        }

        .spotlight-card-content h3 {
            font-size: 1.6rem; 
            margin-top: 1rem;
            margin-bottom: 0.7rem; 
            color: var(--text-primary); 
            font-weight: 600;
        }

        .spotlight-card-content p {
            font-size: 0.95rem; 
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        .spotlight-icon {
            font-size: 3rem; 
            color: var(--primary-accent); 
            display: block;
            margin: 0 auto 1.2rem auto; 
        }

        /* --- CTA Button --- */
        .cta-button {
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            border: none;
            padding: 1.1rem 2.8rem; 
            border-radius: 50px;
            color: var(--primary-bg); 
            font-size: 1.15rem;
            font-weight: bold;
            cursor: pointer;
            margin-top: 4rem; 
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none; 
            display: inline-block; 
            box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4); 
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.03); 
            box-shadow: 0 10px 25px rgba(0, 191, 255, 0.6); 
        }
        
        /* --- Responsive Tweaks --- */
        @media (max-width: 900px) {
            .spotlight-heading h2 { font-size: 2.2rem; }
            .spotlight-heading p { font-size: 1rem; }
            .spotlight-card { padding: 1.5rem; width: 280px; }
            .spotlight-icon { font-size: 2.5rem; margin: 0 auto 1rem auto; }
            .spotlight-card-content h3 { font-size: 1.4rem; }
        }

        @media (max-width: 600px) {
            .spotlight-heading h2 { font-size: 1.8rem; }
            .spotlight-heading p { font-size: 0.9rem; }
            .spotlight-card { width: 260px; padding: 1.2rem; }
            .spotlight-icon { font-size: 2.2rem; margin: 0 auto 0.8rem auto; }
            .spotlight-card-content h3 { font-size: 1.2rem; }
            
            /* Smaller overlay width on mobile */
            .scroll-wrapper { padding: 0 20px; }
            .spotlight-cards-container::before,
            .spotlight-cards-container::after { width: 40px; }
        }


/* cta button */
.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 12px 30px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    color: var(--primary-bg);
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

/* rewarding-section */
  .rewarding-section{
             
                background: var(--primary-bg);
                 display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem;
             /* height: 100vh; */
        }

        .rewarding-container {
            display: flex;
            flex-direction: column;
            max-width: 1200px;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.5);
            background: transparent;
        }

        @media (min-width: 768px) {
            .rewarding-container {
                flex-direction: row;
            }
        }

        /* Left Section Styling - IMPROVED */
        .rewarding-left-section {
            flex: 1.5;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            background-color: transparent;
            /* color: #fff; */
            
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .rewarding-left-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .rewarding-left-section > * {
            position: relative;
            z-index: 1;
        }

        .rewarding-left-section h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 32px;
            letter-spacing: -1px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
            line-height: 1.2;
            width: 100%;
            text-align: left;
             background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
        }

        @media (min-width: 640px) {
            .rewarding-left-section h1 {
                font-size: 3rem;
                
            }
            .rewarding-stats p{
            font-size: 0.5rem;
        }
        }

        @media (min-width: 1024px) {
            .rewarding-left-section h1 {
                font-size: 3.5rem;
                max-width: 90%;
            }
        }

        .rewarding-stats p{
            font-size: 1.2rem;
        }

        /* Right Section Styling */
        .rewarding-right-section {
            flex: 1;
            padding: 40px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        @media (max-width: 768px) {
            .rewarding-right-section {
                padding: 20px 40px 40px;
            }
        }

        .rewarding-estimator-title {
            font-size: 2rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
        }

        .rewarding-estimator-title::before {
            content: "1";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #2563eb;
            border-radius: 50%;
            margin-right: 12px;
            font-size: 1rem;
        }

        .rewarding-scroller {
            position: relative;
            height: 500px;
            overflow: hidden;
            border-radius: 16px;
           
        }

        @media (max-width: 767px) {
            .rewarding-scroller {
                height: 600px;
            }

            
        }

        .rewarding-blur-top, .rewarding-blur-bottom {
            position: absolute;
            left: 0;
            width: 100%;
            pointer-events: none;
            z-index: 10;
        }

        .rewarding-blur-top {
            top: 0;
            height: 60px;
            background: linear-gradient(180deg, rgba(19,26,41,0.9) 0%, transparent);
        }

        .rewarding-blur-bottom {
            bottom: 0;
            height: 60px;
            background: linear-gradient(0deg, rgba(19,26,41,0.9) 0%, transparent);
        }

        .rewarding-scrolling-content {
            position: absolute;
            width: 100%;
            font-size: 200px;
            animation: scroll 30s linear infinite;
            padding: 20px;
        }

        .rewarding-scrolling-content:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .rewarding-trader-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .rewarding-trader-card {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            padding: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.05);
        }

        .rewarding-trader-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        }

        .rewarding-trader-info {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .rewarding-trader-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }

        .rewarding-trader-price-info {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-align: right;
        }

        .rewarding-trader-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #4ade80;
            margin-bottom: 4px;
        }

        .rewarding-trader-hours {
            font-size: 0.9rem;
            color: #94a3b8;
        }

        .rewarding-trader-icon {
            font-size: 1.5rem;
            margin-left: 15px;
            color: #196da9;
        }
        @media( max-width:768px ){
            .rewarding-scrolling-content {
            padding: 5px;
        }
        .rewarding-trader-name {
            font-size: 1rem;
           
        }
.rewarding-trader-price {
            font-size: 1rem;
        }
        }



        /* testemonials-section  */
        /* --- Testimonials Grid Container --- */
        .testimonials-section {
            padding: 20px;
            overflow: hidden;
            /* max-width: 1200px; */
            height: 800px;
            /* margin: 0 auto; */
            position: relative;
        }
        .testimonial-header{
            text-align: center;
            margin-bottom: 50px;
            font-weight: 700;
            font-size: 2.5rem;
        }
        .testimonial-header h2{
             background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
        }
        .testimonials-grid {
            display: grid;
            overflow: visible;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
        }

        /* Scroll Column Styling */
        .scroll-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: 600px;
            position: relative;
            overflow: hidden;
        }

        .scroll-content {
            position: absolute;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* --- Overlay Gradients --- */
        .test-overlay-top {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, var(--background-black) 0%, transparent 100%);
            z-index: 2;
            pointer-events: none;
        }

        .test-overlay-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, var(--background-black) 0%, transparent 100%);
            z-index: 2;
            pointer-events: none;
        }

        /* --- Testimonial Card Styling --- */
        .testimonial-card {
            background-color: var(--stat-card-bg);
            padding: 20px;
            margin-top: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 10px var(--card-shadow);
            border: 1px solid rgba(0, 188, 212, 0.2); /* Subtle cyan border */
            height: fit-content;
            flex-shrink: 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
            border-color: var(--cyan-primary);
        }
        
        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .client-name {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--cyan-light);
            margin-bottom: 3px;
        }

        .client-role {
            font-size: 0.85rem;
            opacity: 0.7;
            display: block;
        }

        /* --- CSS Animations for Infinite Scroll --- */

        /* Upward scrolling animation */
        @keyframes scroll-up {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }

        /* Downward scrolling animation */
        @keyframes scroll-down {
            0% {
                transform: translateY(-50%);
            }
            100% {
                transform: translateY(0);
            }
        }

        /* Apply animations to columns */
        .scroll-column-1 .test-scroll-content,
        .scroll-column-3 .test-scroll-content {
            animation: scroll-up var(--scroll-speed) linear infinite;
        }

        .scroll-column-2 .test-scroll-content,
        .scroll-column-4 .test-scroll-content {
            animation: scroll-down var(--scroll-speed) linear infinite;
        }
        
        /* Pause animation on hover */
        .scroll-column:hover .test-scroll-content {
            animation-play-state: paused;
        }

        /* --- Mobile (1 Column) - FIXED --- */
        @media (max-width: 599px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            /* Hide columns 2, 3, and 4 on mobile */
            .scroll-column-2,
            .scroll-column-3,
            .scroll-column-4 {
                display: none !important;
            }
            
            .scroll-column-1 {
                display: flex;
                height: 500px;
            }
        }

        /* --- Responsiveness: Tablet (2 Columns) --- */
        @media (min-width: 600px) and (max-width: 1023px) {
            .testimonials-grid {
                /* Tablet: 2 Columns */
                grid-template-columns: repeat(2, 1fr);
            }
            
            .scroll-column {
                height: 700px;
            }
            
            /* Hide the 3rd and 4th column on tablet */
            .scroll-column-3, .scroll-column-4 {
                display: none;
            }
            
            /* Show only first 2 columns */
            .scroll-column-1, .scroll-column-2 {
                display: flex;
            }
        }
        
        /* --- Responsiveness: Desktop (4 Columns) --- */
        @media (min-width: 1024px) {
            .testimonials-grid {
                /* Desktop: 4 Columns */
                grid-template-columns: repeat(4, 1fr);
            }
            
            .scroll-column {
                height: 800px;
            }
            
            /* Show all 4 columns on desktop */
            .scroll-column-1, .scroll-column-2, 
            .scroll-column-3, .scroll-column-4 {
                display: flex;
            }
        }

        /* Add some floating elements for visual interest */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            background: rgba(0, 188, 212, 0.1);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }

        .element-1 {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .element-2 {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 70%;
            animation-delay: -5s;
        }

        .element-3 {
            width: 60px;
            height: 60px;
            top: 30%;
            left: 80%;
            animation-delay: -10s;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(20px, 20px) rotate(90deg);
            }
            50% {
                transform: translate(0, 40px) rotate(180deg);
            }
            75% {
                transform: translate(-20px, 20px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }





        /* Section overlay for the entire testimonials section */
        .section-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                var(--background-black) 0%,
                transparent 10%,
                transparent 90%,
                var(--background-black) 100%
            );
            pointer-events: none;
            z-index: 3;
        }
        .section-overlay-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                var(--background-black) 0%,
                transparent 10%,
                transparent 90%,
                var(--background-black) 100%
            );
            pointer-events: none;
            z-index: 3;
        }
        .section-overlay-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                var(--background-black) 0%,
                transparent 10%,
                transparent 90%,
                var(--background-black) 100%
            );
            pointer-events: none;
            z-index: 3;
        }

        /* cta section */
         .cta-section {
            background-image: url('assets/images/cta-bg.png'); 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            text-align: center;
            padding: 80px 20px;
            position: relative; 
            overflow: hidden; 
            color: var(--text-light); 
            z-index: 1; 
        }

        .cta-section::before {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%; z-index: -1; 
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), var(--dark-cyan-faded));
        }

    .cta-section h2 {
      font-size: 2.8rem;
      margin-bottom: 20px;
      background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    }

    .cta-section p {
      font-size: 1.2rem;
      color: var(--text-faded);
      max-width: 700px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-button-primary {
       background: linear-gradient(to right, var(--primary-accent), var(--secondary-accent));
    color: var(--primary-bg);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    }

    .cta-button-primary:hover {
      transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
    background: linear-gradient(to right, var(--secondary-accent), var(--primary-accent));
    }

    .cta-button-secondary {
      background-color: transparent;
      color: var(--primary-cyan);
      border: 2px solid var(--primary-cyan);
      padding: 12px 32px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1rem;
      text-decoration: none;
      transition: background-color 0.3s, color 0.3s;
    }

    .cta-button-secondary:hover {
     box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
    background: linear-gradient(to right, var(--secondary-accent), var(--primary-accent));
      color: var(--background-black);
    }

    @media (max-width: 768px) {
      .cta-section h2 {
        font-size: 2rem;
      }

      .cta-section p {
        font-size: 1rem;
      }

      .cta-button-primary,
      .cta-button-secondary {
        width: 90%;
        text-align: center;
      }
    }


    /* showcase-section  */

    .showcase-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }
  .container-showcase {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .header-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .header-showcase h1 {
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.8em;
    text-align: center;
    margin: 0 20px 0 0;
  }
  .header-showcase .p {
    background-color: var(--primary-accent);
    color: black;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1em;
    margin: 1rem 0;
    max-width: 800px;
  }
  .section-title-showcase {
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
  }
  .stats-showcase {
    margin-bottom: 40px;
  }
  .stats-showcase-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 15px;
    flex-wrap: wrap;
  }
  .stat-showcase {
    background-color: #333;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 calc(33% - 10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    min-width: 220px;
  }
  .stat-showcase.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .stat-showcase p {
    margin: 0 0 10px;
    font-size: 0.9em;
  }
  .stat-showcase span {
    color: var(--primary-accent);
    font-size: 1.5em;
    font-weight: bold;
  }
  .charts-showcase {
    margin-bottom: 40px;
  }
  .charts-showcase-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  
  /* Chart Block - Desktop Row Layout */
  .chart-block {
    display: flex   ;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    gap: 30px;
    flex-wrap: nowrap; /* Desktop pe row mai rahega */
    align-items: stretch;
  }
  
  /* Redesigned Chart Explanation Section */
  .chart-explanation {
    flex: 1;
    min-width: 280px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-accent);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .chart-explanation.right-side {
    border-left: none;
    border-right: 4px solid var(--primary-accent);
  }
  
  .chart-explanation h3 {
    color: var(--primary-accent);
    font-size: 1.4em;
    margin: 0 0 15px 0;
    font-weight: 600;
    line-height: 1.3;
  }
  .chart-explanation p {
    color: var(--text-secondary);
    font-size: 1em;
    margin: 0 0 20px 0;
    line-height: 1.6;
  }
  .chart-explanation .key-points {
    background: rgba(0, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-accent);
  }
  .chart-explanation .key-points h4 {
    color: var(--primary-accent);
    margin: 0 0 10px 0;
    font-size: 1.1em;
  }
  .chart-explanation .key-points ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-secondary);
  }
  .chart-explanation .key-points li {
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .chart-explanation .key-points li:last-child {
    margin-bottom: 0;
  }
  .chart-explanation .performance-metric {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 6px;
  }
  .chart-explanation .performance-metric .icon {
    color: var(--primary-accent);
    font-weight: bold;
    font-size: 1.2em;
  }
  .chart-explanation .performance-metric .text {
    color: var(--text-secondary);
    font-size: 0.9em;
  }
  
  .chart-container-showcase {
    flex: 1;
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 12px;
    height: 400px;
    position: relative;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .chart-container-showcase.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Fix for chart canvas sizing */
  .chart-wrapper {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .chart-container-showcase canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
  }
  .chart-container-showcase h2 {
    font-size: 1.3em;
    margin: 0 0 15px;
    text-align: center;
    padding: 0 10px;
    color: #333;
    font-weight: 600;
  }
  .legend-showcase {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    font-size: 0.85em;
    flex-wrap: wrap;
    gap: 15px;
  }
  .legend-showcase span {
    margin: 0 5px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .green-box-showcase {
    color: var(--primary-accents);
    font-weight: 600;
  }
  .red-box-showcase {
    color: #ff4444;
    font-weight: 600;
  }

  .disclaimer-showcase {
    margin-top: 80px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  .disclaimer-showcase.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .disclaimer-text-showcase {
    font-size: 0.8em;
    text-align: center;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
  }

  /* Mobile Layout - Column format */
  @media (max-width: 1024px) {
    .stats-showcase-inner {
      flex-wrap: wrap;
    }
    .stat-showcase {
      flex-basis: calc(50% - 10px);
    }
    .charts-showcase-inner {
      flex-direction: column;
    }
    
    /* Mobile - Switch to column layout */
    .chart-block {
      flex-direction: column;
      gap: 25px;
      flex-wrap: wrap;
    }
    .chart-explanation,
    .chart-container-showcase {
      flex: 1 1 100%;
      min-width: auto;
    }
    .chart-container-showcase {
      height: 350px;
    }
    
    /* Reset border for mobile */
    .chart-explanation.right-side {
      border-right: none;
      border-left: 4px solid var(--primary-accent);
    }
  }
  
  /* Small screen fixes */
  @media (max-width: 768px) {
    .header-showcase h1 {
      font-size: 1.7em;
    }
    
    .stat-showcase {
      flex-basis: 100%;
      padding: 12px;
    }
    
    .stat-showcase p {
      font-size: 0.85em;
    }
    
    .stat-showcase span {
      font-size: 1.3em;
    }
    
    .chart-container-showcase {
      height: 320px;
      padding: 15px;
    }
    
    .chart-container-showcase h2 {
      font-size: 1.1em;
    }
    
    .legend-showcase {
      font-size: 0.75em;
    }
    
    .chart-explanation {
      padding: 20px;
    }
    
    .chart-explanation h3 {
      font-size: 1.2em;
    }
  }
  
  @media (max-width: 600px) {
    .showcase-section {
      padding: 15px;
    }
    
    .header-showcase {
      flex-direction: column;
      text-align: center;
    }
    
    .header-showcase h1 {
      margin: 0 0 15px;
      font-size: 1.5em;
    }
    
    .header-showcase p {
      max-width: 100%;
      font-size: 0.9em;
      padding: 8px 15px;
    }
    
    .section-title-showcase {
      font-size: 1.3em;
    }
    
    .stat-showcase {
      padding: 10px;
    }
    
    .stat-showcase p {
      font-size: 0.8em;
    }
    
    .stat-showcase span {
      font-size: 1.2em;
    }
    
    .chart-container-showcase {
      height: 280px;
      padding: 12px;
    }
    
    .chart-container-showcase h2 {
      font-size: 1em;
      margin-bottom: 10px;
    }
    
    .chart-explanation {
      padding: 15px;
    }
    
    .chart-explanation h3 {
      font-size: 1.1em;
    }
    
    .chart-explanation p {
      font-size: 0.9em;
    }
    
    .legend-showcase {
      font-size: 0.7em;
      gap: 8px;
    }
    
    .disclaimer-showcase {
      margin-top: 50px;
      padding: 15px;
    }
    
    .disclaimer-text-showcase {
      font-size: 0.75em;
    }
  }


    /* flag styling */
         .flag-placeholder {
          
            display: flex;
            align-items: center;
            justify-content: start;
        }
           .flag-placeholder img {
            width: 20px; /* Flag size as requested */
            height: auto;
            /* border: 1px solid #ccc; */
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
            border-radius: 2px;
        }





        /* Footer Styles */
        .combined-footer {
            background-color: var(--primary-bg);
            color: var(--text-faded);
            padding: 60px 20px 30px;
          /* margin: 0 auto; */
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        /* Main Footer Content */
        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr  1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-brand h3 {
            font-size: 3rem;
            color: var(--primary-cyan);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .footer-brand p {
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .footer-cta {
            background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
            color: var(--background-black);
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s;
        }
        
        .footer-cta:hover {
            background: linear-gradient(135deg, var(--secondary-accent) 0% , var(--primary-accent) 100%);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px var(--cyan-glow);
        }
        
        .footer-links h4, .footer-contact h4, .footer-support h4 {
            color: var(--text-light);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-faded);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--primary-cyan);
        }
        
        .footer-links i {
            color: var(--primary-cyan);
            width: 16px;
            font-size: 0.9rem;
        }
        
        .footer-contact p, .footer-support p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-contact i, .footer-support i {
            color: var(--primary-cyan);
            width: 20px;
        }
        
        .footer-support a {
            color: var(--text-faded);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-support a:hover {
            color: var(--primary-cyan);
        }
        
        /* Footer Bottom */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid #333;
        }
        
        .footer-disclaimer {
            font-size: 0.8rem;
            color: #777;
            max-width: 600px;
        }
        
        .footer-disclaimer strong {
            color: var(--text-faded);
        }
        
        .footer-legal {
            display: flex;
            gap: 20px;
        }
        
        .footer-legal a {
            color: var(--text-faded);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .footer-legal a:hover {
            color: var(--primary-cyan);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background-color: #222;
            color: var(--text-faded);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            font-size: 1.2rem;
        }
        
        .footer-social a:hover {
            background-color: var(--primary-cyan);
            color: var(--background-black);
            transform: translateY(-3px);
        }
        
        /* Responsive Styles */
        /* Tablet - 2 columns */
        @media (max-width: 992px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        
        /* Mobile - 1 column */
        @media (max-width: 768px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-brand, .footer-links, .footer-contact, .footer-support {
                text-align: left;
            }
            
            .footer-links a, .footer-contact p, .footer-support p {
                justify-content: left;
            }
        }
        
        /* Small Mobile */
        @media (max-width: 480px) {
            .combined-footer {
                padding: 40px 15px 20px;
            }
            
            .footer-main {
                gap: 25px;
            }
            
            .footer-social a {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }


        .animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  will-change: transform, opacity, filter;
}

/* When in viewport */
.animate.show {
  opacity: 1;
  transform: none;
  filter: none;
}

/* === Basic Transitions === */
.fade-in        { transform: translateY(30px); }
.fade-in-up     { transform: translateY(60px); }
.fade-in-down   { transform: translateY(-60px); }
.fade-in-left   { transform: translateX(-60px); }
.fade-in-right  { transform: translateX(60px); }

/* === Scale / Zoom === */
.zoom-in        { transform: scale(0.6); }
.zoom-in-up     { transform: scale(0.6) translateY(60px); }
.scale-up       { transform: scale(0.4); }
.scale-pop      { transform: scale(0); }

/* === Slide Effects === */
.slide-left     { transform: translateX(-100px); }
.slide-right    { transform: translateX(100px); }
.slide-up       { transform: translateY(100px); }
.slide-down     { transform: translateY(-100px); }

/* === Blur / Focus === */
.blur-in        { filter: blur(10px); }
.blur-in.show   { filter: blur(0); }

/* === Skew Effects === */
.skew-left      { transform: skewX(-20deg); }
.skew-right     { transform: skewX(20deg); }
.skew-up        { transform: skewY(-20deg); }
.skew-down      { transform: skewY(20deg); }

/* === Combined / Creative === */
.rotate-zoom-in { transform: rotate(-180deg) scale(0.2); }
.fade-scale     { transform: scale(0.3) translateY(60px); opacity: 0; }
.slide-blur     { transform: translateY(80px); filter: blur(8px); }

.slide-blur.show { filter: blur(0); }

.shadow-in {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.shadow-in.show {
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* === Delay Utility Classes (Optional) === */
.delay-100  { transition-delay: 0.1s; }
.delay-200  { transition-delay: 0.2s; }
.delay-300  { transition-delay: 0.3s; }
.delay-400  { transition-delay: 0.4s; }
.delay-500  { transition-delay: 0.5s; }


/* split text animation */
.split-char {
      display: inline-block;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.5s ease-out;
    }

    .split-text.visible .split-char {
      opacity: 1;
      transform: translateY(0);
    }

    /* Optional Stagger Delay via JS */
    .split-char.delay-0  { transition-delay: 0s; }
    .split-char.delay-1  { transition-delay: 0.05s; }
    .split-char.delay-2  { transition-delay: 0.1s; }
    .split-char.delay-3  { transition-delay: 0.15s; }
    .split-char.delay-4  { transition-delay: 0.2s; }
    .split-char.delay-5  { transition-delay: 0.25s; }
    .split-char.delay-6  { transition-delay: 0.3s; }
    .split-char.delay-7  { transition-delay: 0.35s; }
    .split-char.delay-8  { transition-delay: 0.4s; }
    .split-char.delay-9  { transition-delay: 0.45s; }
    .split-char.delay-10 { transition-delay: 0.5s; }
    .split-char.delay-11 { transition-delay: 0.55s; }
    .split-char.delay-12 { transition-delay: 0.6s; }
    .split-char.delay-13 { transition-delay: 0.65s; }
    .split-char.delay-14 { transition-delay: 0.7s; }
    .split-char.delay-15 { transition-delay: 0.75s; }





    /* steps */

    /* === Section Container === */
        .trading-section {
            padding: 80px 8%;
            background: #0A0A0A; /* Pure black background */
            border-radius: 20px; /* Rounded corners for the whole section */
            margin: 50px auto; /* Centered with some margin */
            max-width: 1200px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            overflow: hidden; /* To contain inner elements */
            position: relative; /* For the subtle patterns */
            border: 1px solid rgba(0, 255, 255, 0.1);
        }

        /* Subtle background pattern */
        .trading-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
            z-index: 0;
        }

        /* Cyan accent glow */
        .trading-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
            z-index: 0;
            border-radius: 50%;
        }

        /* Header Styling */
        .trading-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1; /* Bring text above pattern */
        }

        .section-headline {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 700;
             background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        }

        .section-headline strong {
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--secondary-text);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* === Steps Grid === */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .step-card {
            background-color: var(--card-bg-light);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px 30px;
            backdrop-filter: blur(12px); /* Glassmorphism effect */
            -webkit-backdrop-filter: blur(12px);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-height: 280px;
            height: 100%;
        }

        /* Hover effect for all cards */
        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px var(--cyan-glow);
            border-color: rgba(0, 255, 255, 0.4);
            background-color: var(--card-bg-hover);
        }

        /* Number Overlay for cards - Desktop */
        .step-card::after {
            content: attr(data-step); /* Get step number from data-step attribute */
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            font-size: 8.5rem; /* Large number for desktop */
            font-weight: 900;
            color: rgba(0, 255, 255, 0.07); /* Very light cyan */
            z-index: 0;
            pointer-events: none;
            transition: all 0.4s ease;
            line-height: 1;
            opacity: 0.9;
        }

        .step-card:hover::after {
            color: rgba(0, 255, 255, 0.12);
            transform: translateY(-50%) scale(1.08);
            text-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
        }

        .step-content {
            position: relative;
            z-index: 2;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--cyan-primary);
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
        }

        .step-description {
            font-size: 1rem;
            color: var(--secondary-text);
            line-height: 1.7;
        }

        /* === Responsive Design === */
        @media (max-width: 1024px) {
            .steps-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
                gap: 25px;
            }
            
            .step-card {
                min-height: 260px;
                padding: 35px 25px;
            }
            
            .step-card::after {
                font-size: 7.5rem;
                right: 15px;
            }
        }

        @media (max-width: 768px) {
            .trading-section {
                padding: 60px 5%;
                margin: 30px auto;
            }
            
            .section-headline {
                font-size: 2.2rem;
            }
            
            .section-description {
                font-size: 1rem;
            }
            
            .steps-grid {
                grid-template-columns: 1fr; /* 1 column for mobile */
                gap: 20px;
            }
            
            .step-card {
                padding: 30px 25px;
                min-height: 220px;
            }
            
            /* Larger background numbers for mobile */
            .step-card::after {
                font-size: 9.5rem;
                right: 15px;
            }
            
            .step-title {
                font-size: 1.3rem;
            }
            
            .step-description {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .trading-section {
                padding: 50px 5%;
                margin: 20px auto;
            }
            
            .section-headline {
                font-size: 1.8rem;
            }
            
            .step-card {
                padding: 25px 20px;
                min-height: 200px;
            }
            
            /* Even larger background numbers for small mobile */
            .step-card::after {
                font-size: 10.5rem;
                right: 10px;
            }
        }

        /* Extra small devices */
        @media (max-width: 360px) {
            .step-card::after {
                font-size: 8.5rem;
                right: 5px;
            }
            
            .step-title {
                font-size: 1.2rem;
            }
        }

        /* algo return section */
.algo-return-container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    position: relative;
    min-height: 600px; 
    margin: 0 auto; /* Center the container */
}

/* LEFT SECTION: Teal Capsule */
.algo-return-left-section {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); 
    width: 100%; 
    height: 55%;
    
    /* background-color: #00AABF; */
    background: linear-gradient(135deg, var(--secondary-accent) 0% , var(--primary-accent) 100%);
    color: white;
    border-radius: 0 120px 120px 0;
    
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 100px; /* Push text right for margin */
    z-index: 1;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.algo-return-left-section h1 {
    font-size: 3.5em; 
    margin: 0;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* RIGHT SECTION: White Card */
.algo-return-right-section {
    position: relative;
    margin-left: 50%; 
    width:40%; /* Slightly more than half the container width */
    height: 550px;
    /* height: 100%; */
    
    background-color: #fff;
    border-radius: 25px; /* Slightly larger rounded corners */
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25); 
}

.algo-return-image-container {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.algo-return-chart-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Use cover to ensure no white space inside the card */
    border-radius: 10px;
}

/* --- Responsive Adjustments --- */

/* Desktop/Tablet Transition (1024px) */
@media (max-width: 1024px) {
    .algo-return-container {
        min-height: 550px;
        padding: 0 20px; /* Add side padding */
    }
    
    .algo-return-left-section {
        width: 65%;
        height: 70%;
        padding-left: 60px;
        border-radius: 0 100px 100px 0;
    }
    
    .algo-return-left-section h1 {
        font-size: 3em;
    }
    
    .algo-return-right-section {
        width: 60%;
        min-height: 450px;
    }
}

/* Mobile View (768px): Stacked layout */
@media (max-width: 768px) {
    .algo-return-container {
        min-height: auto;
        flex-direction: column; 
        padding: 0 45px; /* Add side padding for mobile */
    }

    .algo-return-left-section, .algo-return-right-section {
        position: static;
        width: 100%;
        transform: none;
        margin-left: 0;
        height: auto;
        min-height: auto;
    }

    .algo-return-left-section {
        border-radius: 20px 20px 0 0;
        justify-content: center;
        text-align: center;
        padding: 30px 20px;
        margin-bottom: 0; /* Remove any bottom margin */
    }
    
    .algo-return-left-section h1 {
        font-size: 2.2em;
    }

    .algo-return-right-section {
        border-radius: 0 0 20px 20px;
        padding: 25px;
        margin-top: 0; /* Remove any top margin */
    }
    
    .algo-return-chart-image {
        min-height: 250px;
        object-fit: contain;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .algo-return-container {
        padding: 0 10px; /* Less padding on very small screens */
    }
    
    .algo-return-left-section h1 {
        font-size: 1.8em;
    }
    
    .algo-return-left-section {
        padding: 25px 15px;
    }
    
    .algo-return-right-section {
        padding: 20px 15px;
    }
}

/* stat section replace */
 .perpetual-section {
            display: flex;
            flex-direction: column; 
             max-width: 1400px;
            width: 100%;
            margin: 2rem auto ;
            gap: 40px;
            /* background-color: var(--card-bg); */
            border-radius: 25px; 
            padding: 50px; 
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6); 
        }
        .perpetual-main-content {
            flex: 1;
        }
        
        /* 3. Typography and Headings */
        .perpetual-section-heading {
            font-size: 2.8rem; 
            font-weight: 900;
            text-align: center;
            margin-bottom: 20px; /* Adjusted margin to match original layout flow */
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent)); 
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-transform: capitalize;
            letter-spacing: 1.5px;
        }

        .perpetual-description {
            font-size: 1.1rem; 
            line-height: 1.7;
            margin-bottom: 40px;
            color: var(--light-text);
            max-width: 900px;
            display: none; /* Hide if not used */
        }
        
        /* 4. Features Grid */
        .perpetual-features-grid {
            display: grid;
            gap: 25px; 
            margin-bottom: 0; /* Remove extra margin at the bottom */
        }
        
        .perpetual-feature-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05); 
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            /* transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease; */
        }
        
        .perpetual-feature-item:hover {
            /* Enhanced Hover Effect: Light up with accent border/shadow */
            transform: translateY(-8px); 
            background: rgba(0, 188, 212, 0.1); 
            box-shadow: 0 10px 30px var(--secondary-accent); 
            border-color: var(--secondary-accent);
        }
        
        /* 5. Feature Icon Styling */
        .perpetual-feature-icon {
            width: 50px; 
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent)); 
            border-radius: 12px;
            font-size: 1.4rem; 
            color: var(--dark-bg); 
            min-width: 50px; 
            /* transition: transform 0.4s ease, box-shadow 0.4s ease; */
        }

        .perpetual-feature-item:hover .perpetual-feature-icon {
            /* Icon slightly jumps/pulsates on hover */
            transform: scale(1.1) rotate(-5deg); 
            box-shadow: 0 0 15px var(--primary-accent);
        }
        
        .perpetual-feature-content {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .perpetual-feature-main-text {
            font-size: 1.2rem; 
            font-weight: 700;
            margin-bottom: 3px;
            color: var(--text-color);
        }
        
        .perpetual-feature-sub-text {
            font-size: 1rem; 
            color: var(--light-text);
            line-height: 1.5;
        }
        
        .perpetual-feature-item:hover .perpetual-feature-sub-text {
            /* Sub-text brightens on hover */
            color: var(--text-color);
        }

        /* 6. Media Queries for Responsiveness */
        @media (min-width: 1200px) {
            .perpetual-features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (min-width: 768px) and (max-width: 1199px) {
            .perpetual-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .perpetual-section {
                padding: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .perpetual-section {
                padding: 30px 20px;
            }
            .perpetual-section-heading {
                font-size: 2.5rem;
            }
            .perpetual-features-grid {
                grid-template-columns: 1fr;
            }
            .perpetual-feature-icon {
                width: 45px;
                height: 45px;
                min-width: 45px;
                font-size: 1.2rem;
            }
            .perpetual-feature-main-text {
                font-size: 1.1rem;
            }
            .perpetual-feature-sub-text {
                font-size: 0.9rem;
            }
        }

    