  .hero-main-wrapper {
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1729 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-icons-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .animated-icon-element {
            position: absolute;
            font-size: 40px;
            opacity: 0.15;
            animation: floatingMotion 20s infinite ease-in-out;
            color: #4a90e2;
        }

        .animated-icon-element:nth-child(1) {
            top: 10%;
            left: 15%;
            animation-delay: 0s;
            animation-duration: 15s;
        }

        .animated-icon-element:nth-child(2) {
            top: 20%;
            right: 20%;
            animation-delay: 2s;
            animation-duration: 18s;
            color: #50c878;
        }

        .animated-icon-element:nth-child(3) {
            bottom: 15%;
            left: 10%;
            animation-delay: 4s;
            animation-duration: 22s;
            color: #f5a623;
        }

        .animated-icon-element:nth-child(4) {
            top: 60%;
            right: 15%;
            animation-delay: 1s;
            animation-duration: 19s;
            color: #e74c3c;
        }

        .animated-icon-element:nth-child(5) {
            top: 40%;
            left: 8%;
            animation-delay: 3s;
            animation-duration: 16s;
            color: #9b59b6;
        }

        .animated-icon-element:nth-child(6) {
            bottom: 30%;
            right: 25%;
            animation-delay: 5s;
            animation-duration: 21s;
            color: #1abc9c;
        }

        .animated-icon-element:nth-child(7) {
            top: 25%;
            left: 40%;
            animation-delay: 2.5s;
            animation-duration: 17s;
            color: #e67e22;
        }

        .animated-icon-element:nth-child(8) {
            bottom: 40%;
            left: 30%;
            animation-delay: 4.5s;
            animation-duration: 20s;
            color: #3498db;
        }

        @keyframes floatingMotion {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(30px, -30px) rotate(90deg);
            }
            50% {
                transform: translate(-20px, 20px) rotate(180deg);
            }
            75% {
                transform: translate(20px, 30px) rotate(270deg);
            }
        }

        .hero-content-container {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 40px 20px;
        }

        .hero-main-heading {
            font-size: 3.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            animation: fadeInSlideDown 1s ease-out;
        }

        .hero-gradient-text {
            background: linear-gradient(45deg, #4a90e2, #50c878, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle-text {
            font-size: 1.3rem;
            color: #b8c5d6;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            animation: fadeInSlideUp 1s ease-out 0.2s both;
        }

        .hero-cta-button-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInSlideUp 1s ease-out 0.4s both;
        }

        .primary-cta-button {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            background: linear-gradient(45deg, #4a90e2, #357abd);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 25px rgba(74, 144, 226, 0.4);
        }

        .primary-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(74, 144, 226, 0.6);
            background: linear-gradient(45deg, #357abd, #4a90e2);
        }

        .secondary-cta-button {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            background: transparent;
            color: white;
            border: 2px solid #4a90e2;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .secondary-cta-button:hover {
            background: rgba(74, 144, 226, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3);
        }

        .statistics-showcase-wrapper {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 60px;
            flex-wrap: wrap;
            animation: fadeInSlideUp 1s ease-out 0.6s both;
        }

        .stat-individual-item {
            text-align: center;
        }

        .stat-number-display {
            font-size: 2.5rem;
            font-weight: 700;
            color: #4a90e2;
            margin-bottom: 5px;
        }

        .stat-label-description {
            font-size: 1rem;
            color: #b8c5d6;
        }

        @keyframes fadeInSlideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-main-heading {
                font-size: 2.5rem;
            }

            .hero-subtitle-text {
                font-size: 1.1rem;
            }

            .primary-cta-button,
            .secondary-cta-button {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .statistics-showcase-wrapper {
                gap: 40px;
            }

            .stat-number-display {
                font-size: 2rem;
            }

            .animated-icon-element {
                font-size: 30px;
            }
        }

        @media (max-width: 576px) {
            .hero-main-heading {
                font-size: 2rem;
            }

            .hero-subtitle-text {
                font-size: 1rem;
            }

            .hero-cta-button-group {
                flex-direction: column;
                align-items: center;
            }

            .primary-cta-button,
            .secondary-cta-button {
                width: 100%;
                max-width: 300px;
            }

            .statistics-showcase-wrapper {
                gap: 30px;
            }

            .animated-icon-element {
                font-size: 25px;
            }
        }

        /* Courses Section Styles */
        .educational-programs-section {
            background: linear-gradient(135deg, #1a1f3a 0%, #0f1729 100%);
            padding: 100px 0;
            position: relative;
        }

        .courses-content-wrapper {
            max-width: 1200px;
        }

        .section-header-block {
            text-align: center;
            margin-bottom: 60px;
        }

        .courses-primary-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .courses-description-paragraph {
            font-size: 1.1rem;
            color: #b8c5d6;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .trading-cards-grid-layout {
            margin-top: 40px;
        }

        .individual-course-card {
            background: rgba(26, 31, 58, 0.6);
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            border: 2px solid rgba(74, 144, 226, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .individual-course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4a90e2, #357abd);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .individual-course-card:hover {
            transform: translateY(-10px);
            border-color: rgba(74, 144, 226, 0.5);
            box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
        }

        .individual-course-card:hover::before {
            transform: scaleX(1);
        }

        .stock-course-variant:hover {
            border-color: rgba(74, 144, 226, 0.5);
            box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
        }

        .crypto-course-variant::before {
            background: linear-gradient(90deg, #f5a623, #e67e22);
        }

        .crypto-course-variant:hover {
            border-color: rgba(245, 166, 35, 0.5);
            box-shadow: 0 15px 40px rgba(245, 166, 35, 0.3);
        }

        .forex-course-variant::before {
            background: linear-gradient(90deg, #50c878, #1abc9c);
        }

        .forex-course-variant:hover {
            border-color: rgba(80, 200, 120, 0.5);
            box-shadow: 0 15px 40px rgba(80, 200, 120, 0.3);
        }

        .course-icon-container {
            width: 80px;
            height: 80px;
            background: rgba(74, 144, 226, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .individual-course-card:hover .course-icon-container {
            transform: scale(1.1) rotate(5deg);
        }

        .course-main-icon {
            font-size: 2.5rem;
            color: #4a90e2;
        }

        .crypto-course-variant .course-main-icon {
            color: #f5a623;
        }

        .crypto-course-variant .course-icon-container {
            background: rgba(245, 166, 35, 0.15);
        }

        .forex-course-variant .course-main-icon {
            color: #50c878;
        }

        .forex-course-variant .course-icon-container {
            background: rgba(80, 200, 120, 0.15);
        }

        .course-title-heading {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .course-details-text {
            font-size: 1rem;
            color: #b8c5d6;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .course-enrollment-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #4a90e2;
            font-weight: 600;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .crypto-course-variant .course-enrollment-link {
            color: #f5a623;
        }

        .forex-course-variant .course-enrollment-link {
            color: #50c878;
        }

        .course-enrollment-link:hover {
            gap: 15px;
            color: #357abd;
        }

        .crypto-course-variant .course-enrollment-link:hover {
            color: #e67e22;
        }

        .forex-course-variant .course-enrollment-link:hover {
            color: #1abc9c;
        }

        .link-arrow-icon {
            transition: transform 0.3s ease;
        }

        .course-enrollment-link:hover .link-arrow-icon {
            transform: translateX(5px);
        }

        /* Why Traders Choose Us Section */
        .traders-preference-segment {
            background: linear-gradient(135deg, #1a1f3a 0%, #0f1729 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .preference-main-container {
            max-width: 1200px;
        }

        .traders-story-content {
            padding-right: 30px;
        }

        .preference-section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .highlight-accent-phrase {
            background: linear-gradient(90deg, #4a90e2, #50c878);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .preference-narrative-description {
            font-size: 1.1rem;
            color: #b8c5d6;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .benefits-checklist-group {
            list-style: none;
            padding: 0;
            margin: 0 0 40px 0;
        }

        .benefit-item-entry {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            padding: 12px 0;
        }

        .checkmark-indicator {
            font-size: 1.3rem;
            color: #50c878;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .benefit-text-label {
            font-size: 1.05rem;
            color: #e8ecf3;
            font-weight: 500;
        }

        .achievements-metrics-display {
            display: flex;
            gap: 60px;
            margin-top: 40px;
        }

        .metric-data-block {
            text-align: left;
        }

        .metric-numeric-value {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #4a90e2, #50c878);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
            line-height: 1;
        }

        .metric-category-label {
            font-size: 1rem;
            color: #b8c5d6;
            margin: 0;
        }

        /* Trading Visuals Gallery */
        .trading-visuals-gallery {
            position: relative;
            height: 500px;
        }

        .gallery-image-wrapper {
            position: absolute;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            transition: transform 0.4s ease;
        }

        .gallery-image-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(74, 144, 226, 0.4);
        }

        .primary-image-frame {
            width: 400px;
            height: 320px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            z-index: 3;
        }

        .secondary-image-frame {
            width: 200px;
            height: 150px;
            top: 20px;
            right: 0;
            z-index: 2;
        }

        .tertiary-image-frame {
            width: 200px;
            height: 150px;
            bottom: 20px;
            right: 0;
            z-index: 2;
        }

        .mock-trading-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1f3a, #0f1729);
            border: 1px solid rgba(74, 144, 226, 0.3);
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        .screen-header-bar {
            display: flex;
            gap: 6px;
            margin-bottom: 20px;
        }

        .screen-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
        }

        .chart-visualization-area {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .chart-icon-display {
            font-size: 4rem;
            color: #4a90e2;
            margin-bottom: 20px;
            opacity: 0.6;
        }

        .chart-line-graphic {
            width: 100%;
            height: 80px;
            background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.2), transparent);
            position: relative;
            margin-bottom: 20px;
        }

        .chart-line-graphic::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #4a90e2, #50c878, #4a90e2);
            animation: chartPulse 3s ease-in-out infinite;
        }

        @keyframes chartPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .price-ticker-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .ticker-symbol-text {
            font-size: 0.9rem;
            color: #b8c5d6;
            font-weight: 600;
        }

        .ticker-price-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
        }

        .ticker-change-percent {
            font-size: 1rem;
            font-weight: 600;
        }

        .positive-trend {
            color: #50c878;
        }

        /* Compact View for Small Cards */
        .mock-trading-screen.compact-view {
            padding: 15px;
        }

        .mini-chart-area {
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .mini-chart-icon {
            font-size: 2.5rem;
            color: #4a90e2;
            margin-bottom: 15px;
            opacity: 0.7;
        }

        .mini-price-display {
            text-align: center;
        }

        .mini-ticker-text {
            display: block;
            font-size: 0.85rem;
            color: #b8c5d6;
            margin-bottom: 5px;
        }

        .mini-price-value {
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
        }

        /* Floating Badges */
        .floating-badge-element {
            position: absolute;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.9), rgba(80, 200, 120, 0.9));
            padding: 12px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 20px rgba(74, 144, 226, 0.4);
            animation: floatBadge 3s ease-in-out infinite;
        }

        .badge-position-one {
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
        }

        .badge-position-two {
            bottom: 50px;
            left: 30px;
            z-index: 4;
            animation-delay: 1.5s;
        }

        @keyframes floatBadge {
            0%, 100% { transform: translateY(0) translateX(-50%); }
            50% { transform: translateY(-10px) translateX(-50%); }
        }

        .badge-position-two {
            animation-name: floatBadgeTwo;
        }

        @keyframes floatBadgeTwo {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .badge-icon-symbol {
            font-size: 1rem;
            color: #ffffff;
        }

        .badge-text-content {
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
        }

        /* Responsive for Traders Section */
        @media (max-width: 992px) {
            .traders-preference-segment {
                padding: 80px 0;
            }

            .preference-section-title {
                font-size: 2.3rem;
            }

            .traders-story-content {
                padding-right: 0;
                margin-bottom: 50px;
            }

            .trading-visuals-gallery {
                height: 450px;
            }

            .primary-image-frame {
                width: 350px;
                height: 280px;
            }

            .secondary-image-frame,
            .tertiary-image-frame {
                width: 180px;
                height: 130px;
            }
        }

        @media (max-width: 768px) {
            .preference-section-title {
                font-size: 2rem;
            }

            .preference-narrative-description {
                font-size: 1rem;
            }

            .achievements-metrics-display {
                gap: 40px;
            }

            .metric-numeric-value {
                font-size: 2.5rem;
            }

            .trading-visuals-gallery {
                height: 400px;
            }

            .primary-image-frame {
                width: 100%;
                height: 250px;
                position: relative;
                top: 0;
                left: 0;
                transform: none;
            }

            .secondary-image-frame {
                width: 48%;
                height: 120px;
                top: auto;
                bottom: 0;
                right: auto;
                left: 0;
            }

            .tertiary-image-frame {
                width: 48%;
                height: 120px;
                bottom: 0;
                right: 0;
            }

            .badge-position-one,
            .badge-position-two {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .traders-preference-segment {
                padding: 60px 0;
            }

            .preference-section-title {
                font-size: 1.7rem;
            }

            .achievements-metrics-display {
                flex-direction: column;
                gap: 25px;
            }

            .metric-numeric-value {
                font-size: 2.2rem;
            }

            .benefit-text-label {
                font-size: 0.95rem;
            }
        }

        /* Why Choose Us Section Styles */
        .benefits-showcase-area {
            background: linear-gradient(135deg, #0f1729 0%, #1a1f3a 100%);
            padding: 100px 0;
            position: relative;
        }

        .advantages-inner-container {
            max-width: 1200px;
        }

        .reasons-header-wrapper {
            text-align: center;
            margin-bottom: 70px;
        }

        .benefits-main-headline {
            font-size: 3rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .benefits-main-headline::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #4a90e2, #50c878, #f5a623);
            border-radius: 2px;
        }

        .benefits-supporting-text {
            font-size: 1.15rem;
            color: #b8c5d6;
            max-width: 800px;
            margin: 20px auto 0;
            line-height: 1.8;
        }

        .features-display-grid {
            margin-top: 50px;
        }

        .advantage-feature-box {
            background: rgba(26, 31, 58, 0.5);
            border-radius: 15px;
            padding: 35px 25px;
            height: 100%;
            border: 1px solid rgba(74, 144, 226, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .advantage-feature-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .advantage-feature-box:hover::before {
            left: 100%;
        }

        .advantage-feature-box:hover {
            transform: translateY(-8px);
            border-color: rgba(74, 144, 226, 0.4);
            background: rgba(26, 31, 58, 0.8);
            box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
        }

        .feature-visual-badge {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(80, 200, 120, 0.2));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.4s ease;
            position: relative;
        }

        .advantage-feature-box:hover .feature-visual-badge {
            transform: scale(1.1) rotateY(180deg);
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(80, 200, 120, 0.3));
        }

        .badge-central-icon {
            font-size: 2rem;
            background: linear-gradient(135deg, #4a90e2, #50c878);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-name-label {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .feature-explanation-copy {
            font-size: 0.95rem;
            color: #b8c5d6;
            line-height: 1.7;
            margin: 0;
        }

        /* Responsive for Why Choose Us */
        @media (max-width: 992px) {
            .benefits-showcase-area {
                padding: 80px 0;
            }

            .benefits-main-headline {
                font-size: 2.5rem;
            }

            .benefits-supporting-text {
                font-size: 1.05rem;
            }
        }

        @media (max-width: 768px) {
            .benefits-showcase-area {
                padding: 60px 0;
            }

            .benefits-main-headline {
                font-size: 2rem;
            }

            .benefits-supporting-text {
                font-size: 1rem;
            }

            .advantage-feature-box {
                margin-bottom: 20px;
            }

            .reasons-header-wrapper {
                margin-bottom: 50px;
            }
        }

        @media (max-width: 576px) {
            .benefits-main-headline {
                font-size: 1.8rem;
            }

            .advantage-feature-box {
                padding: 30px 20px;
            }

            .feature-visual-badge {
                width: 60px;
                height: 60px;
            }

            .badge-central-icon {
                font-size: 1.7rem;
            }

            .feature-name-label {
                font-size: 1.2rem;
            }
        }

        /* Responsive for Courses Section */
        @media (max-width: 992px) {
            .courses-primary-title {
                font-size: 2.3rem;
            }

            .educational-programs-section {
                padding: 70px 0;
            }
        }

        @media (max-width: 768px) {
            .courses-primary-title {
                font-size: 2rem;
            }

            .courses-description-paragraph {
                font-size: 1rem;
            }

            .individual-course-card {
                margin-bottom: 20px;
            }

            .educational-programs-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            .courses-primary-title {
                font-size: 1.7rem;
            }

            .individual-course-card {
                padding: 30px 20px;
            }

            .course-icon-container {
                width: 70px;
                height: 70px;
            }

            .course-main-icon {
                font-size: 2rem;
            }

            .course-title-heading {
                font-size: 1.5rem;
            }
        }

        /*********************course section*************/
        .main-wraper-sectio{
            background: linear-gradient(135deg, #1a1f3a 0%, #0f1729 100%);
        }
          .main-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            
            color: #ffffff;
            min-height: 100vh;
            padding: 20px;
        }

        .banner-header {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, rgba(45, 53, 97, 0.8) 0%, rgba(26, 31, 58, 0.9) 100%);
            border-radius: 20px;
            margin-bottom: 60px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .banner-header h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .banner-header p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #cbd5e1;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .category-selector {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .selector-item {
            padding: 12px 28px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: #fff;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .selector-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
        }

        .selector-item.selected {
            background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
            border-color: transparent;
            box-shadow: 0 5px 20px rgba(96, 165, 250, 0.4);
        }

        .program-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .program-box {
            background: linear-gradient(135deg, rgba(45, 53, 97, 0.6) 0%, rgba(26, 31, 58, 0.8) 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .program-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(96, 165, 250, 0.3);
            border-color: rgba(96, 165, 250, 0.5);
        }

        .program-thumbnail {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .program-box:hover .program-thumbnail {
            transform: scale(1.1);
        }

        .difficulty-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
            z-index: 1;
        }

        .badge-starter {
            background: rgba(52, 211, 153, 0.9);
            color: #064e3b;
        }

        .badge-middle {
            background: rgba(251, 191, 36, 0.9);
            color: #78350f;
        }

        .badge-expert {
            background: rgba(239, 68, 68, 0.9);
            color: #7f1d1d;
        }

        .program-details {
            padding: 25px;
        }

        .program-heading {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: #fff;
            font-weight: 700;
        }

        .program-summary {
            color: #cbd5e1;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .meta-information {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            flex-wrap: wrap;
            gap: 15px;
        }

        .specification-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .specification-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #94a3b8;
        }

        .spec-symbol {
            width: 18px;
            height: 18px;
            opacity: 0.8;
        }

        .action-button {
            padding: 12px 24px;
            background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .action-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(96, 165, 250, 0.4);
        }

        .action-button::after {
            content: '→';
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .program-showcase {
                grid-template-columns: 1fr;
            }

            .banner-header {
                padding: 40px 20px;
            }

            .meta-information {
                flex-direction: column;
                align-items: flex-start;
            }

            .action-button {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .category-selector {
                gap: 10px;
            }

            .selector-item {
                padding: 10px 20px;
                font-size: 14px;
            }
        }


        /******************video modal******/
                /* Video Modal Styles */
        .video-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease-in-out;
        }

        .video-modal-overlay.active {
            display: flex;
        }

        .video-modal-content {
            position: relative;
            width: 90%;
            max-width: 900px;
            aspect-ratio: 16 / 9;
            background-color: #000;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.3s ease-in-out;
        }

        .modal-video-player {
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }

        .video-modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: #fff;
            font-size: 32px;
            cursor: pointer;
            transition: color 0.2s;
            z-index: 10000;
        }

        .video-modal-close:hover {
            color: #ff6b6b;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .video-modal-content {
                width: 95%;
                max-width: 100%;
            }

            .video-modal-close {
                top: -35px;
                font-size: 24px;
            }
        }


                /* Market Details Section */
        .market-details-section {
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1729 100%);
            min-height: 100vh;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .market-details-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(80, 200, 120, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .market-details-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-title-wrapper {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInSlideDown 1s ease-out;
        }

        .section-main-title {
            font-size: 3rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #4a90e2, #50c878, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #b8c5d6;
            max-width: 800px;
            margin: 0 auto;
        }

        .market-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            animation: fadeInSlideUp 1s ease-out 0.2s both;
        }

        /* Individual Market Card */
        .market-detail-card {
            background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(15, 23, 41, 0.9) 100%);
            border-radius: 25px;
            overflow: hidden;
            border: 2px solid rgba(74, 144, 226, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .market-detail-card:hover {
            transform: translateY(-15px);
            border-color: rgba(74, 144, 226, 0.5);
            box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);
        }

        .market-detail-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4a90e2, #357abd);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            z-index: 1;
        }

        .market-detail-card:hover::before {
            transform: scaleX(1);
        }

        /* Forex specific styling */
        .market-detail-card.forex-card::before {
            background: linear-gradient(90deg, #50c878, #1abc9c);
        }

        .market-detail-card.forex-card:hover {
            border-color: rgba(80, 200, 120, 0.5);
            box-shadow: 0 20px 60px rgba(80, 200, 120, 0.3);
        }

        .market-image-wrapper {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(80, 200, 120, 0.1));
        }

        .market-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .market-detail-card:hover .market-image {
            transform: scale(1.05);
        }

        .market-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.9), rgba(53, 122, 189, 0.9));
            padding: 10px 20px;
            border-radius: 50px;
            color: #ffffff;
            font-weight: 700;
            font-size: 0.9rem;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .market-badge i {
            font-size: 1rem;
        }

        .forex-card .market-badge {
            background: linear-gradient(135deg, rgba(80, 200, 120, 0.9), rgba(26, 188, 156, 0.9));
        }

        .market-content-wrapper {
            padding: 40px;
        }

        .market-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .market-title i {
            font-size: 2rem;
            color: #4a90e2;
        }

        .forex-card .market-title i {
            color: #50c878;
        }

        .market-title::after {
            content: '';
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, #4a90e2, transparent);
            margin-left: 15px;
        }

        .forex-card .market-title::after {
            background: linear-gradient(90deg, #50c878, transparent);
        }

        /* Features List */
        .market-features-list {
            list-style: none;
            margin: 30px 0;
            padding: 0;
        }

        .market-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .market-feature-item:last-child {
            border-bottom: none;
        }

        .feature-icon {
            width: 30px;
            height: 30px;
            background: rgba(74, 144, 226, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 1rem;
            color: #4a90e2;
        }

        .forex-card .feature-icon {
            background: rgba(80, 200, 120, 0.2);
            color: #50c878;
        }

        .feature-text {
            color: #e8ecf3;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.6;
        }

        /* Experience highlight */
        .market-feature-item.highlight-experience .feature-text {
            color: #ef4444;
            font-weight: 700;
            font-size: 1.05rem;
        }

        .market-feature-item.highlight-experience .feature-icon {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        .forex-card .market-feature-item.highlight-experience .feature-icon {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        /* Pricing Section */
        .pricing-section-wrapper {
            background: rgba(74, 144, 226, 0.1);
            padding: 25px;
            border-radius: 15px;
            margin-top: 25px;
            border: 1px solid rgba(74, 144, 226, 0.2);
        }

        .forex-card .pricing-section-wrapper {
            background: rgba(80, 200, 120, 0.1);
            border-color: rgba(80, 200, 120, 0.2);
        }

        .pricing-title {
            font-size: 1rem;
            font-weight: 700;
            color: #b8c5d6;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .pricing-options {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .price-option {
            flex: 1;
            text-align: center;
        }

        .price-label {
            font-size: 0.85rem;
            color: #b8c5d6;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .price-amount {
            font-size: 2rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .price-currency {
            font-size: 1.2rem;
            color: #4a90e2;
        }

        .forex-card .price-currency {
            color: #50c878;
        }

        .price-subtext {
            font-size: 0.8rem;
            color: #b8c5d6;
        }

        /* Call to Action */
        .market-cta-button {
            width: 100%;
            padding: 16px 30px;
            background: linear-gradient(45deg, #4a90e2, #357abd);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3);
        }

        .forex-card .market-cta-button {
            background: linear-gradient(45deg, #50c878, #1abc9c);
            box-shadow: 0 5px 20px rgba(80, 200, 120, 0.3);
        }

        .market-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(74, 144, 226, 0.5);
        }

        .forex-card .market-cta-button:hover {
            box-shadow: 0 8px 30px rgba(80, 200, 120, 0.5);
        }

        /* Animations */
        @keyframes fadeInSlideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-main-title {
                font-size: 2.2rem;
            }

            .market-cards-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .market-content-wrapper {
                padding: 30px;
            }

            .market-title {
                font-size: 1.8rem;
            }

            .pricing-options {
                flex-direction: column;
            }

            .market-detail-card {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .market-details-section {
                padding: 60px 15px;
            }

            .section-main-title {
                font-size: 1.8rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .market-content-wrapper {
                padding: 20px;
            }

            .market-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .market-image-wrapper {
                height: 220px;
            }

            .price-amount {
                font-size: 1.8rem;
            }

            .market-feature-item {
                margin-bottom: 14px;
            }

            .feature-icon {
                width: 25px;
                height: 25px;
                font-size: 0.9rem;
            }

            .feature-text {
                font-size: 0.95rem;
            }
        }
