/* Custom Pricing Table Styles */
        .pricing-section {
            padding: 80px 0;
            background: url('assets/images/background/9.jpg') center/cover;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            
            
            opacity: 0.1;
            z-index: 1;
        }
        
        .pricing-section .container {
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 48px;
            font-weight: 400;
            color: #fff;
            margin-bottom: 15px;
            position: relative;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }
        
        .pricing-card {
            background: #fff;
            border-radius: 20px;
            padding: 0;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }
        
        /* Plan Type Styling */
        .plan-header {
            padding: 30px 30px 20px;
            text-align: center;
            position: relative;
        }
        
        .plan-type {
            font-size: 24px;
            font-weight: 700;
            color: #ff6b35;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .plan-price-range {
            font-size: 18px;
            color: #666;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .plan-duration {
            display: inline-block;
            background: #ff6b35;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .plan-return {
            font-size: 48px;
            font-weight: 700;
            color: #ff6b35;
            margin-bottom: 10px;
        }
        
        .return-label {
            font-size: 16px;
            color: #888;
            font-weight: 500;
        }
        
        /* Features List */
        .plan-features {
            padding: 0 30px 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .feature-item:last-child {
            border-bottom: none;
        }
        
        .feature-icon {
            width: 20px;
            height: 20px;
            background: #ff6b35;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
            position: relative;
        }
        
        .feature-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
        }
        
        .feature-text {
            color: #666;
            font-size: 16px;
            font-weight: 500;
        }
        
        /* Popular Badge */
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: #28a745;
            color: white;
            padding: 8px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        /* Intermediate Plan (Most Popular) */
        .pricing-card.popular {
            border-color: #ff6b35;
            transform: scale(1.05);
        }
        
        .pricing-card.popular .plan-type {
            color: #ff6b35;
        }
        
        .pricing-card.popular .plan-duration {
            background: #ff6b35;
        }
        
        .pricing-card.popular .feature-icon {
            background: #ff6b35;
        }
        
        /* Professional Plan Styling */
        .pricing-card.professional .plan-type {
            color: #6f42c1;
        }
        
        .pricing-card.professional .plan-duration {
            background: #6f42c1;
        }
        
        .pricing-card.professional .plan-return {
            color: #6f42c1;
        }
        
        .pricing-card.professional .feature-icon {
            background: #6f42c1;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .pricing-card.popular {
                transform: none;
                margin-top: 20px;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
            
            .plan-return {
                font-size: 36px !important;
            }
        }
        
        /* Animation */
        .pricing-card {
            animation: fadeInUp 0.6s ease-out;
        }
        
        .pricing-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .pricing-card:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

 /* HOW TO INVEST */
        
  
        .get-started-section {
            padding: 100px 0;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
.get-started-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to right, rgba(31, 30, 42, 0.95), rgba(16, 30, 57, 0.95)),
        radial-gradient(circle at 30% 20%, rgba(255, 193, 7, 0.2) 0%, transparent 80%),
        radial-gradient(circle at 70% 80%, rgba(0, 123, 255, 0.2) 0%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 60px;
            text-align: left;
            background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .step-item {
            margin-bottom: 50px;
            display: flex;
            align-items: flex-start;
            opacity: 1;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }
        .step-item.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 30px;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
            position: relative;
        }
        
        .step-icon::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffc107, #ff9800);
            z-index: -1;
            filter: blur(8px);
            opacity: 0.7;
        }
        
        .step-icon i {
            font-size: 2rem;
            color: #1a1a2e;
        }
        
        .step-content h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
        }
        
        .step-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #b0b0b0;
            margin: 0;
        }
        
        .mobile-mockup {
            text-align: center;
            position: relative;
        }
        
        .mobile-mockup img {
            max-width: 50%;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
            transition: transform 0.3s ease;
        }
        
        .mobile-mockup:hover img {
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.02);
        }
        
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }
        
        .floating-crypto {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-crypto:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-crypto:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: 2s;
        }
        
        .floating-crypto:nth-child(3) {
            bottom: 30%;
            left: 5%;
            animation-delay: 4s;
        }
        
        .floating-crypto:nth-child(4) {
            bottom: 10%;
            right: 10%;
            animation-delay: 1s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
                text-align: center;
                margin-bottom: 40px;
            }
            
            .step-item {
                flex-direction: column;
                text-align: center;
                margin-bottom: 40px;
            }
            
            .step-icon {
                margin-right: 0;
                margin-bottom: 20px;
                align-self: center;
            }
            
            .mobile-mockup img {
                transform: none;
                margin-top: 40px;
            }
            
            .mobile-mockup:hover img {
                transform: scale(1.02);
            }
        }
    
    
    
   #risk-disclosure h2, 
#risk-disclosure h4 {
  color: #333;
  font-weight: 600;
}

#risk-disclosure p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

#risk-disclosure ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}

#risk-disclosure ul li {
  margin-bottom: 0.5rem;
}
