.elementor-1853 .elementor-element.elementor-element-26420c4{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1853 .elementor-element.elementor-element-cc79830 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-1853 .elementor-element.elementor-element-e2ea288 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-1853 .elementor-element.elementor-element-6f4ffd0 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-1853 .elementor-element.elementor-element-e1724ed > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-1853 .elementor-element.elementor-element-b236c9f > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-1853 .elementor-element.elementor-element-0c69fe2 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}body.elementor-page-1853:not(.elementor-motion-effects-element-type-background), body.elementor-page-1853 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-secondary );}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f97ddd0 */:root {
            --gradient-blue-pink: linear-gradient(135deg, var(--primary), #f375f5);
            --subtle-purple: #f375f5;
            --gradient-subtle-purple: linear-gradient(135deg, var(--primary), #f375f5);
        }

/* GenAI Infrastructure Challenge Section */
        .genai-challenge {
            padding: 80px 0;
            background: rgba(117, 125, 245, 0.05);
        }
        .challenge-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }
        .stat-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-accent);
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        .stat-icon {
            font-size: 3.5rem;
            margin-bottom: 15px;
            background: var(--gradient-subtle-purple);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-number {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-text {
            color: #b8c5d6;
            font-size: 1.1rem;
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-47ad3b3 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Chart Legend Styles */
.legend-text {
    font-size: 0.9rem;
    color: #b8c5d6;
}

/* Additional Mobile Optimization */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    header {
        padding: 10px 0;
    }
}

 /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-headline {
                font-size: 2.5rem;
            }
            
            .hero-subheadline {
                font-size: 1.4rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1.2rem;
            }
            
            .journey-inner-wrapper {
                flex-direction: column;
            }
            
            .cta h2 {
                font-size: 2.2rem;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            /* End-to-End Solution Section Mobile Fixes */
            .flow-steps {
                flex-direction: column;
                gap: 30px;
            }
            
            .flow-step {
                min-width: 100%;
                max-width: 100%;
                margin-bottom: 10px;
            }
            
            .flow-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin-bottom: 15px;
            }
            
            .flow-title {
                font-size: 1rem;
                line-height: 1.3;
                max-width: 100%;
            }
            
            .flow-arrow {
                transform: rotate(90deg);
                margin: 10px 0;
                font-size: 2.5rem;
            }
            
            .solution-flow {
                padding: 20px;
            }
        }
        
        @media (max-width: 992px) {
            .journey-inner-wrapper {
                flex-direction: column;
            }
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c916854 *//* LLM Training with RAG+PEFT Section */
        .llm-training {
            padding: 80px 0;
            background: rgba(117, 125, 245, 0.05);
        }
        .llm-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .llm-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .llm-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-blue-pink);
        }
        .llm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        .llm-card .icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--gradient-blue-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        .llm-card .icon i {
            color: black;
        }
        .llm-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            background: var(--gradient-blue-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .llm-card p {
            color: #b8c5d6;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        .llm-card .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 15px;
        }
        .llm-card .tag {
            background: var(-gradient-blue-green);
            color: black;
        }
        .llm-card .tag-divider {
            width: 100%;
            height: 1px;
            background: var(-gradient-blue-green);
            margin: 15px 0;
            opacity: 0.5;
        }
        
        /* Steps for LLM Cards */
        .steps-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .step-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .step-number {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--gradient-blue-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
            font-size: 1.1rem;
            color: black; /* Changed from white to black */
            box-shadow: 0 4px 10px rgba(243, 117, 245, 0.3);
        }
        .step-content {
            color: #b8c5d6;
            font-size: 0.95rem;
        }
        
        .llm-diagram {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            margin-top: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }
        .llm-diagram::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-blue-pink);
            border-radius: 15px 15px 0 0;
        }
        .diagram-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
            background: var(--gradient-blue-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .diagram-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .diagram-step {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            flex: 1;
            min-width: 200px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .diagram-step:not(:last-child)::after {
            content: "→";
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            background: var(--gradient-blue-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .diagram-step .icon-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gradient-blue-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: black;
            box-shadow: 0 6px 15px rgba(243, 117, 245, 0.4);
        }
        .diagram-step h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--accent);
        }
        .diagram-step p {
            color: #b8c5d6;
            font-size: 0.9rem;
        }
        
        /* XePlatform LLMOps Section */
        .xeplatform-llmops {
            padding: 80px 0;
            background: rgba(0, 102, 255, 0.05);
        }
        .llmops-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .llmops-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .llmops-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-blue-pink);
        }
        .llmops-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        .llmops-card .icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--gradient-blue-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        .llmops-card .icon i {
            color: black;
        }
        .llmops-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            background: var(--gradient-blue-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .llmops-card p {
            color: #b8c5d6;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        .llmops-card .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 15px;
        }
        .llmops-card .tag {
            background: var(--gradient-blue-green);
            color: black;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .llmops-diagram {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            margin-top: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }
        .llmops-diagram::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-blue-green);
            border-radius: 15px 15px 0 0;
        }
        .llmops-diagram .diagram-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
            background: var(--gradient-blue-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .llmops-diagram .diagram-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .llmops-diagram .diagram-step {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            flex: 1;
            min-width: 200px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .llmops-diagram .diagram-step:not(:last-child)::after {
            content: "→";
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            background: var(--gradient-blue-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .llmops-diagram .diagram-step .icon-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gradient-blue-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: black;
            box-shadow: 0 6px 15px rgba(243, 117, 245, 0.4);
        }
        .llmops-diagram .diagram-step h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--accent);
        }
        .llmops-diagram .diagram-step p {
            color: #b8c5d6;
            font-size: 0.9rem;
        }
        /* Replace this section in your CSS */
@media (max-width: 768px) {
    /* ... existing styles ... */
    
    /* LLM Training Section Mobile Fixes */
    .llm-diagram .diagram-step:not(:last-child)::after {
        content: "↓";
        position: static;
        right: auto;
        top: auto;
        transform: none;
        margin: 15px 0;
        display: block;
        text-align: center;
        font-size: 2.5rem;
        background: var(--gradient-blue-green);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    /* ... existing styles ... */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cd33537 *//* Enterprise Use Cases Section - NEW SECTION -------------------------------------> */ 
        .enterprise-use-cases {
            padding: 80px 0;
            background: rgba(117, 125, 245, 0.05);
        }
        .enterprise-cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .enterprise-case-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .enterprise-case-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-blue-pink);
        }
        .enterprise-case-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
        }
        .enterprise-icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 15px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            background: var(--gradient-blue-green);
        }
        .enterprise-icon-circle i {
            color: black;
        }
        .enterprise-case-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: var(--accent);
        }
        .enterprise-case-card p {
            color: #b8c5d6;
            margin-bottom: 15px;
            flex-grow: 1;
            font-size: 0.95rem;
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0c69fe2 */.genai-market {
            padding: 80px 0;
            background: rgba(117, 125, 245, 0.05);
        }
        .market-chart-container {
            max-width: 800px;
            margin: 50px auto 0;
            height: 400px;
        }/* End custom CSS */