/* ============================================
   GENAI PROCESS SECTION - Premium Timeline Flow
   ============================================ */

.genai-process-flow {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.genai-process-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
}

.genai-process-flow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.genai-section-badge {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #667eea;
    letter-spacing: 2px;
    margin-bottom: 25px;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.genai-process-title {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #393285 0%, #667eea 40%, #764ba2 70%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.1));
}

.genai-process-subtitle {
    font-size: 1.25rem;
    color: #393285;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
    font-weight: 500;
}

.genai-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 80px;
    position: relative;
}

.genai-process-grid::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    z-index: 0;
    animation: flowLine 4s linear infinite;
}

@keyframes flowLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.genai-process-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    padding: 45px 32px 42px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.06), 0 1px 8px rgba(118, 75, 162, 0.04);
    overflow: hidden;
}

.genai-process-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: transparent;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.genai-process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: transparent;
    transition: height 0.4s ease;
}

/* Decorative corner elements */
.genai-process-card .card-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    z-index: 0;
}

.genai-process-card .card-corner-top-left {
    top: 18px;
    left: 18px;
    border-top-color: rgba(102, 126, 234, 0.15);
    border-left-color: rgba(102, 126, 234, 0.15);
    border-radius: 6px 0 0 0;
}

.genai-process-card .card-corner-top-right {
    top: 18px;
    right: 18px;
    border-top-color: rgba(102, 126, 234, 0.15);
    border-right-color: rgba(102, 126, 234, 0.15);
    border-radius: 0 6px 0 0;
}

.genai-process-card .card-corner-bottom-left {
    bottom: 18px;
    left: 18px;
    border-bottom-color: rgba(102, 126, 234, 0.15);
    border-left-color: rgba(102, 126, 234, 0.15);
    border-radius: 0 0 0 6px;
}

.genai-process-card .card-corner-bottom-right {
    bottom: 18px;
    right: 18px;
    border-bottom-color: rgba(102, 126, 234, 0.15);
    border-right-color: rgba(102, 126, 234, 0.15);
    border-radius: 0 0 6px 0;
}

.genai-process-card:hover .card-corner {
    width: 60px;
    height: 60px;
    border-color: rgba(102, 126, 234, 0.25);
}

/* Inner glow effect */
.genai-process-card .card-inner-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.genai-process-card:hover .card-inner-glow {
    opacity: 1;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.genai-process-card:hover::before {
    opacity: 1;
}

.genai-process-card:hover::after {
    height: 100%;
}

.genai-process-card:hover {
    transform: translateY(-12px);
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2), 0 8px 20px rgba(118, 75, 162, 0.12);
    border-color: rgba(102, 126, 234, 0.4);
}

/* Add gradient bar at bottom on hover */
.genai-process-card .card-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.genai-process-card:hover .card-bottom-bar {
    transform: scaleX(1);
}

/* Animated progress dots */
.genai-process-card .card-progress-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.genai-process-card:hover .card-progress-dots {
    opacity: 1;
}

.genai-process-card .progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.15);
    animation: dotPulse 1.5s ease-in-out infinite;
}

.genai-process-card .progress-dot:nth-child(1) { animation-delay: 0s; }
.genai-process-card .progress-dot:nth-child(2) { animation-delay: 0.2s; }
.genai-process-card .progress-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% {
        background: rgba(102, 126, 234, 0.15);
        transform: scale(1);
    }
    50% {
        background: rgba(102, 126, 234, 0.3);
        transform: scale(1.2);
    }
}

.genai-step-number {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4), 0 3px 10px rgba(118, 75, 162, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    margin: 0 auto 25px;
}

.genai-process-card:hover .genai-step-number {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6), 0 5px 15px rgba(118, 75, 162, 0.3);
}

.genai-process-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    margin-top: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.4));
}

.genai-process-card:hover .genai-process-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 12px 28px rgba(102, 126, 234, 0.5));
}

.genai-process-card-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #393285;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}

.genai-process-card-desc {
    color: #393285;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 28px;
    text-align: center;
    font-weight: 500;
    opacity: 0.85;
}

.genai-process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.genai-process-list li {
    color: #393285;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    border-radius: 8px;
    background: transparent;
    margin-bottom: 4px;
}

.genai-process-list li:hover {
    background: rgba(102, 126, 234, 0.06);
    padding-left: 20px;
    border-bottom-color: rgba(102, 126, 234, 0.2);
}

.genai-process-list li:last-child {
    border-bottom: none;
}

.genai-process-list li i {
    color: #667eea;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.genai-process-card:hover .genai-process-list li i {
    color: #667eea;
    transform: scale(1.2);
}

.genai-process-arrow {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.8rem;
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    filter: drop-shadow(0 2px 6px rgba(102, 126, 234, 0.4));
}

.genai-process-card:hover .genai-process-arrow {
    opacity: 1;
    right: -28px;
    filter: drop-shadow(0 3px 8px rgba(102, 126, 234, 0.5));
    transform: translateY(-50%) scale(1.1);
}

.genai-process-card:last-child .genai-process-arrow {
    display: none;
}

/* Connection arrows between cards */
.genai-process-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #667eea;
    opacity: 0.5;
}

/* ============================================
   GENAI IMAGE GENERATION DEMO
   ============================================ */

.genai-image-demo {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1f4d, #0a0e27);
    position: relative;
}

.genai-demo-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   GENAI IMAGE GENERATION DEMO - Premium Showcase
   ============================================ */

.genai-image-demo {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.genai-image-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 300% 100%;
    animation: gradientSlide 4s ease infinite;
}

@keyframes gradientSlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.genai-image-demo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 1400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.02) 30%, transparent 60%);
    pointer-events: none;
}

.genai-demo-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.genai-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #667eea;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    animation: badgeGlow 3s ease-in-out infinite;
}

.genai-section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    }
    50% {
        box-shadow: 0 12px 40px rgba(102, 126, 234, 0.25), 0 0 20px rgba(118, 75, 162, 0.15);
    }
}

.genai-demo-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #393285 0%, #667eea 30%, #764ba2 60%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.5px;
}

.genai-demo-subtitle {
    font-size: 1.25rem;
    color: #393285;
    opacity: 0.8;
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.9;
    text-align: center;
    font-weight: 500;
}

.genai-demo-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.genai-demo-tab {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    padding: 18px 36px;
    color: #393285;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.08);
}

.genai-demo-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.genai-demo-tab i,
.genai-demo-tab span {
    position: relative;
    z-index: 1;
}

.genai-demo-tab.active::before,
.genai-demo-tab:hover::before {
    opacity: 1;
}

.genai-demo-tab.active,
.genai-demo-tab:hover {
    border-color: transparent;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.35), 0 0 30px rgba(118, 75, 162, 0.25);
    color: white;
}

.genai-demo-tab i {
    font-size: 1.4rem;
    transition: transform 0.4s ease;
}

.genai-demo-tab:hover i {
    transform: scale(1.25) rotate(5deg);
}

.genai-demo-tab.active i {
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.25) rotate(5deg); }
    50% { transform: scale(1.35) rotate(-5deg); }
}

.genai-demo-content {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.genai-demo-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.genai-demo-prompt-box {
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
    border: 2px solid rgba(102, 126, 234, 0.25);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.12);
    transition: all 0.4s ease;
}

.genai-demo-prompt-box:hover {
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.18);
    border-color: rgba(102, 126, 234, 0.35);
}

.genai-demo-prompt-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.genai-demo-prompt-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.genai-demo-prompt-box .prompt-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.genai-demo-prompt-box .prompt-label i {
    font-size: 1.1rem;
    animation: terminalPulse 2s ease-in-out infinite;
}

@keyframes terminalPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.genai-demo-prompt-box .prompt-text {
    color: #393285;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    padding-left: 20px;
    border-left: 3px solid #667eea;
    font-weight: 500;
    opacity: 0.9;
}

.genai-generate-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.genai-generate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.genai-generate-btn:hover::before {
    left: 100%;
}

.genai-generate-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5), 0 0 30px rgba(118, 75, 162, 0.3);
}

.genai-generate-btn i {
    transition: transform 0.4s ease;
}

.genai-generate-btn:hover i {
    transform: scale(1.2) rotate(10deg);
}

.genai-output-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.genai-output-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12), 0 2px 8px rgba(118, 75, 162, 0.08);
    border: 2px solid rgba(102, 126, 234, 0.15);
    background: #ffffff;
}

.genai-output-image:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25), 0 0 40px rgba(118, 75, 162, 0.15);
    border-color: rgba(102, 126, 234, 0.35);
}

.image-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.genai-output-image:hover .image-placeholder::before {
    opacity: 1;
}

.image-placeholder i {
    font-size: 3.5rem;
    color: #667eea;
    transition: all 0.4s ease;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.genai-output-image:hover .image-placeholder i {
    transform: scale(1.25);
    color: #764ba2;
    filter: drop-shadow(0 8px 16px rgba(118, 75, 162, 0.5));
}

.image-placeholder span {
    color: #393285;
    font-weight: 700;
    font-size: 1rem;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Gradient classes removed - using white background with theme color borders instead */

.image-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 60%, transparent 100%);
    padding: 25px 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #393285;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.image-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.image-meta i {
    color: #667eea;
    font-size: 0.9rem;
}

/* ============================================
   GENAI CHATBOT DEMO - Premium Interactive
   ============================================ */

.genai-chatbot-demo {
    padding: 140px 0;
    background: linear-gradient(180deg, #1a1f4d 0%, #0a0e27 50%, #0f1438 100%);
    position: relative;
    overflow: hidden;
}

.genai-chatbot-demo .genai-demo-header {
    margin-bottom: 60px;
}

.genai-chatbot-demo::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.genai-chatbot-window {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(102, 126, 234, 0.2);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.genai-chatbot-window:hover {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.4);
}

.genai-chat-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25));
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
}

.genai-chat-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
}

.genai-chat-header-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.genai-bot-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    position: relative;
}

.genai-bot-avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.genai-bot-name {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.genai-bot-status {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #27c93f;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.6);
}

.genai-chat-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 10px 20px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.genai-chat-messages {
    padding: 35px;
    min-height: 450px;
    max-height: 550px;
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.3), rgba(15, 20, 56, 0.5));
}

.genai-chat-messages::-webkit-scrollbar {
    width: 8px;
}

.genai-chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.genai-chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
}

.genai-message-bubble {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.5s ease;
}

.genai-message-bubble.user {
    flex-direction: row-reverse;
}

.genai-message-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.genai-message-bubble.bot .genai-message-avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.genai-message-bubble.user .genai-message-avatar {
    background: rgba(255, 255, 255, 0.1);
    color: #667eea;
}

.genai-message-content {
    max-width: 75%;
}

.genai-message-text {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 8px;
    font-weight: 500;
}

.genai-message-list {
    background: rgba(102, 126, 234, 0.15);
    border-left: 3px solid #667eea;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 12px 0;
}

.genai-message-list .list-item {
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.genai-message-list .list-item i {
    color: #667eea;
}

.genai-message-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 5px;
}

.genai-chat-input {
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-top: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
}

.genai-chat-input::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
}

.genai-chat-input-field {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.25);
    border-radius: 60px;
    padding: 8px 8px 8px 25px;
    transition: all 0.4s ease;
}

.genai-chat-input-field:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.genai-chat-input-field i:first-child {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

.genai-chat-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    outline: none;
}

.genai-chat-input input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.genai-send-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.genai-send-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

.genai-chat-suggestions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.genai-suggestion-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.genai-suggestion-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* ============================================
   GENAI CONTENT CREATION DEMO - Premium Examples
   ============================================ */

.genai-content-demo {
    padding: 140px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    position: relative;
    overflow: hidden;
}

.genai-content-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f093fb, #667eea, transparent);
}

.genai-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.genai-content-example {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 126, 234, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.genai-content-example::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.genai-content-example:hover::before {
    opacity: 1;
}

.genai-content-example:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.35), 0 0 50px rgba(118, 75, 162, 0.25);
}

.genai-content-type-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.genai-content-type-badge i {
    font-size: 1.3rem;
}

.genai-content-prompt {
    background: rgba(10, 14, 39, 0.6);
    padding: 25px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.15);
    position: relative;
    z-index: 1;
}

.genai-content-prompt .prompt-label {
    color: #667eea;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.genai-content-prompt .prompt-label::before {
    content: '→';
    color: #f093fb;
    font-size: 1.2rem;
}

.genai-content-prompt .prompt-text-small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.genai-content-output {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.genai-content-output .output-label {
    color: #f093fb;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.genai-content-output .output-label::before {
    content: '✓';
    color: #27c93f;
    font-size: 1.2rem;
}

.genai-content-output pre {
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-left: 4px solid #667eea;
    border-radius: 12px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.8;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.genai-content-output pre::-webkit-scrollbar {
    width: 6px;
}

.genai-content-output pre::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.genai-content-output pre::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
}

.genai-content-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.genai-content-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
}

.genai-content-meta i {
    color: #667eea;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .genai-metric-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .genai-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .genai-process-card::after {
        display: none;
    }
    
    .genai-demo-grid {
        grid-template-columns: 1fr;
    }
    
    .genai-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .genai-process-grid {
        grid-template-columns: 1fr;
    }
    
    .genai-output-showcase {
        grid-template-columns: 1fr;
    }
    
    .genai-content-grid {
        grid-template-columns: 1fr;
    }
    
    .genai-demo-tabs {
        gap: 10px;
    }
    
    .genai-demo-tab {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .genai-chat-messages {
        min-height: 300px;
    }
}
