    
        :root {
            /* Primary Colors - African Theme */
            --primary-color: #0A6E3F; /* African green */
            --primary-dark: #05522D;
            --primary-light: #2A9D5F;
            --secondary-color: #F9A826; /* African sun */
            --secondary-dark: #D4890E;
            --accent-color: #2C5282; /* African sky blue */
            --success-color: #10B981;
            --danger-color: #EF4444;
            --warning-color: #F59E0B;
            --info-color: #3B82F6;
            --dark-color: #111827;
            --darker-color: #0A0F1C;
            --light-color: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-400: #9CA3AF;
            --gray-600: #4B5563;
            --gray-800: #1F2937;
            
            /* Glass Effect Variables */
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-bg-light: rgba(255, 255, 255, 0.05);
            --glass-bg-dark: rgba(0, 0, 0, 0.3);
            --glass-border: rgba(255, 255, 255, 0.15);
            --glass-border-light: rgba(255, 255, 255, 0.08);
            --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
            --glass-blur: blur(12px);
            --glass-blur-light: blur(8px);
            
            /* Spacing */
            --spacing-xs: 0.25rem;
            --spacing-sm: 0.5rem;
            --spacing-md: 1rem;
            --spacing-lg: 1.5rem;
            --spacing-xl: 2rem;
            --spacing-xxl: 3rem;
            
            /* Border Radius */
            --radius-sm: 0.5rem;
            --radius-md: 1rem;
            --radius-lg: 1.5rem;
            --radius-xl: 2rem;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0A0F1C 0%, #111827 100%);
            color: var(--light-color);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        /* Glass Morphism Components */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            box-shadow: var(--glass-shadow);
            border-radius: var(--radius-lg);
        }
        
        .glass-container {
            background: var(--glass-bg-light);
            backdrop-filter: var(--glass-blur-light);
            -webkit-backdrop-filter: var(--glass-blur-light);
            border: 1px solid var(--glass-border-light);
            border-radius: var(--radius-md);
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(10, 14, 28, 0.95) 0%, rgba(17, 24, 39, 0.95) 100%), 
                        url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
        }
        
        /* Animated Trading Coins */
        .trading-coins-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
        
        .trading-coin {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            opacity: 0.9;
            animation: float 20s infinite linear;
        }
        
        .coin-btc {
            background: linear-gradient(135deg, #F7931A, #FFC107);
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .coin-eth {
            background: linear-gradient(135deg, #627EEA, #8A96FF);
            top: 25%;
            right: 15%;
            animation-delay: -2s;
        }
        
        .coin-xrp {
            background: linear-gradient(135deg, #00A8E0, #2DD4FF);
            top: 60%;
            left: 20%;
            animation-delay: -4s;
        }
        
        .coin-bnb {
            background: linear-gradient(135deg, #F0B90B, #FFD700);
            top: 40%;
            right: 5%;
            animation-delay: -6s;
        }
        
        .coin-ada {
            background: linear-gradient(135deg, #0033AD, #1E5EFF);
            top: 70%;
            right: 25%;
            animation-delay: -8s;
        }
        
        .coin-sol {
            background: linear-gradient(135deg, #00FFA3, #66FFC2);
            top: 20%;
            left: 70%;
            animation-delay: -10s;
        }
        
        .coin-doge {
            background: linear-gradient(135deg, #C2A633, #E6C95C);
            top: 75%;
            left: 75%;
            animation-delay: -12s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(90deg);
            }
            50% {
                transform: translateY(-40px) rotate(180deg);
            }
            75% {
                transform: translateY(-20px) rotate(270deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }
        
        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-headline {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        @media (max-width: 768px) {
            .hero-headline {
                font-size: 2.5rem;
            }
        }
        
        .hero-subheadline {
            font-size: 1.25rem;
            color: var(--gray-200);
            margin-bottom: 2.5rem;
            max-width: 700px;
        }
        
        /* CTA Buttons */
        .cta-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(10, 110, 63, 0.3);
        }
        
        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(10, 110, 63, 0.4);
            color: white;
        }
        
        .cta-secondary {
            background: transparent;
            border: 2px solid var(--secondary-color);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            color: var(--secondary-color);
            transition: all 0.3s ease;
        }
        
        .cta-secondary:hover {
            background: rgba(249, 168, 38, 0.1);
            color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* Trust Signals */
        .trust-signals {
            background: var(--glass-bg-dark);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin-top: 4rem;
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem;
            border-radius: var(--radius-md);
            background: var(--glass-bg-light);
            transition: all 0.3s ease;
        }
        
        .trust-badge:hover {
            transform: translateY(-5px);
            background: var(--glass-bg);
        }
        
        /* Security Badges */
        .security-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            background: rgba(16, 185, 129, 0.1);
            color: var(--success-color);
            font-weight: 500;
            margin: 0.25rem;
        }
        
        /* How It Works */
        .step-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .step-card:hover {
            transform: translateY(-10px);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin: 0 auto 1.5rem;
        }
        
        /* Why Choose Us */
        .feature-card {
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        /* Live Stats */
        .stats-card {
            padding: 1.5rem;
            text-align: center;
            border-radius: var(--radius-md);
            position: relative;
            overflow: hidden;
        }
        
        .stats-value {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--secondary-color), #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }
        
        /* Testimonials */
        .testimonial-card {
            padding: 2rem;
            height: 100%;
            position: relative;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 3px solid var(--primary-color);
        }
        
        .country-flag {
            width: 30px;
            height: 20px;
            object-fit: cover;
            border-radius: 3px;
            margin-right: 0.5rem;
        }
        
        /* Footer & Contact */
        .footer-section {
            background: linear-gradient(135deg, var(--darker-color) 0%, #0A0F1C 100%);
            border-top: 1px solid var(--glass-border);
        }
        
        .contact-form .form-control {
            background: var(--glass-bg-light);
            border: 1px solid var(--glass-border);
            color: var(--light-color);
            padding: 0.75rem 1rem;
            border-radius: var(--radius-md);
        }
        
        .contact-form .form-control:focus {
            background: var(--glass-bg);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(10, 110, 63, 0.25);
            color: var(--light-color);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        /* Section Spacing */
        section {
            padding: 5rem 0;
        }
        
        @media (max-width: 768px) {
            section {
                padding: 3rem 0;
            }
        }
        
        /* Navigation */
        .navbar {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border-bottom: 1px solid var(--glass-border);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Investment Tiers */
        .tier-card {
            padding: 2.5rem 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .tier-card.popular {
            border: 2px solid var(--secondary-color);
            transform: scale(1.05);
        }
        
        .tier-card:hover {
            transform: translateY(-10px);
        }
        
        .tier-card.popular:hover {
            transform: translateY(-10px) scale(1.05);
        }
        
        .tier-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, var(--secondary-color), #FFD700);
            color: var(--dark-color);
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        
        /* Performance Analytics */
        .analytics-card {
            padding: 2rem;
            height: 100%;
        }
        
        .chart-container {
            height: 300px;
            position: relative;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .tier-card.popular {
                transform: scale(1);
            }
            
            .tier-card.popular:hover {
                transform: translateY(-10px) scale(1);
            }
        }
    











        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
            color: var(--light-color);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        /* Glass Morphism Components */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            box-shadow: var(--glass-shadow);
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
        }
        
        .glass-container {
            background: var(--glass-bg-light);
            backdrop-filter: var(--glass-blur-light);
            -webkit-backdrop-filter: var(--glass-blur-light);
            border: 1px solid var(--glass-border-light);
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
        }
        
        /* Navigation */
        .navbar {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border-bottom: 1px solid var(--glass-border);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(10, 15, 23, 0.95) 0%, rgba(18, 26, 38, 0.95) 100%), 
                        url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        /* Animated Trading Elements */
        .trading-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
        
        .trading-element {
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            opacity: 0.7;
            animation: float 25s infinite linear;
        }
        
        .element-1 {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .element-2 {
            background: linear-gradient(135deg, var(--secondary-color), #FF8B5A);
            top: 25%;
            right: 15%;
            animation-delay: -5s;
        }
        
        .element-3 {
            background: linear-gradient(135deg, var(--accent-color), #4CAF78);
            top: 60%;
            left: 20%;
            animation-delay: -10s;
        }
        
        .element-4 {
            background: linear-gradient(135deg, #6F42C1, #8A63D2);
            top: 40%;
            right: 5%;
            animation-delay: -15s;
        }
        
        .element-5 {
            background: linear-gradient(135deg, #17A2B8, #39C6D9);
            top: 70%;
            right: 25%;
            animation-delay: -20s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(90deg);
            }
            50% {
                transform: translateY(-40px) rotate(180deg);
            }
            75% {
                transform: translateY(-20px) rotate(270deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }
        
        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-headline {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        @media (max-width: 768px) {
            .hero-headline {
                font-size: 2.5rem;
            }
        }
        
        .hero-subheadline {
            font-size: 1.25rem;
            color: var(--gray-200);
            margin-bottom: 2.5rem;
            max-width: 700px;
        }
        
        /* Buttons */
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(10, 75, 140, 0.3);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(10, 75, 140, 0.4);
            color: white;
        }
        
        .btn-secondary-custom {
            background: transparent;
            border: 2px solid var(--secondary-color);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            color: var(--secondary-color);
            transition: all 0.3s ease;
        }
        
        .btn-secondary-custom:hover {
            background: rgba(255, 107, 53, 0.1);
            color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* About Section */
        .about-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }
        
        .feature-icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: white;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        /* Services Section */
        .services-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(10, 15, 23, 0.8) 0%, rgba(18, 26, 38, 0.8) 100%);
        }
        
        .service-card {
            height: 100%;
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        /* Features Section */
        .features-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
        }
        
        .feature-card {
            padding: 2.5rem 2rem;
            height: 100%;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon-wrapper {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: white;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon-wrapper {
            transform: rotate(10deg) scale(1.1);
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(10, 15, 23, 0.8) 0%, rgba(18, 26, 38, 0.8) 100%);
        }
        
        .testimonial-card {
            padding: 2.5rem;
            height: 100%;
            position: relative;
        }
        
        .testimonial-quote {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.3;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 3px solid var(--primary-color);
        }
        
        .country-flag {
            width: 30px;
            height: 20px;
            object-fit: cover;
            border-radius: 3px;
            margin-right: 0.5rem;
        }
        
        .star-rating {
            color: var(--warning-color);
        }
        
        /* Trust Badges */
        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: 30px;
            background: rgba(10, 75, 140, 0.1);
            color: var(--primary-color);
            font-weight: 500;
            margin: 0.25rem;
            transition: all 0.3s ease;
        }
        
        .trust-badge:hover {
            background: rgba(10, 75, 140, 0.2);
            transform: translateY(-2px);
        }
        
        /* Stats */
        .stats-card {
            padding: 1.5rem;
            text-align: center;
            border-radius: var(--radius-md);
            position: relative;
            overflow: hidden;
        }
        
        .stats-value {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--secondary-color), #FF8B5A);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .feature-icon-box {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin-right: 1rem;
            }
            
            .hero-headline {
                font-size: 2.5rem;
            }
        }
        
    