/* AI Application Development Page Styles */
:root {
    --ai-primary: #1163fb;
    --ai-secondary: #0f0f0f;
    --ai-accent: #00f2fe;
    --ai-text-light: #f8f9fa;
    --ai-text-dark: #333;
    --ai-bg-dark: #070707;
    --ai-glass: rgba(255, 255, 255, 0.05);
    --ai-gradient: linear-gradient(135deg, #1163fb 0%, #00f2fe 100%);
}

.ai-page {
    background-color: var(--ai-bg-dark);
    color: var(--ai-text-light);
    font-family: 'Inter', sans-serif;
    overflow: visible;
    /* Ensure nothing breaks sticky */
}

/* Hero Section */
.ai-hero {
    position: relative;
    padding: 160px 0 100px;
    background: #000;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    /* Start hidden */
    transform: translateY(100px);
    /* Start slightly down */
    transition: transform 0.1s linear, opacity 0.5s ease-out;
    /* Smooth transitions */
    will-change: transform, opacity;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    /* Slightly higher base opacity once revealed */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(17, 99, 251, 0.4), transparent 60%),
        linear-gradient(to bottom, transparent 60%, var(--ai-bg-dark));
    z-index: 1;
}

.ai-hero .container {
    position: relative;
    z-index: 2;
}

.ai-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-hero-content p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
}

.ai-hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--ai-glass);
}

/* Services Section */
.ai-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.ai-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ai-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.ai-service-card {
    background: var(--ai-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ai-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--ai-primary);
    background: rgba(17, 99, 251, 0.05);
}

.ai-service-card .icon {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--ai-primary);
}

.ai-service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.ai-service-card p {
    color: #aaa;
    line-height: 1.6;
}

/* Case Studies Section */
.ai-case-studies {
    padding: 100px 0;
    background: #0a0a0a;
}

.case-study-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.case-study-item:nth-child(even) {
    flex-direction: row-reverse;
}

.cs-content h4 {
    color: var(--ai-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cs-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cs-impact {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.impact-box h5 {
    font-size: 1.5rem;
    color: var(--ai-accent);
}

.impact-box p {
    font-size: 0.8rem;
    color: #888;
}

/* CTA Section */
.ai-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--ai-gradient);
    color: white;
}

.ai-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.ai-btn {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--ai-primary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ai-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Advanced Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(17, 99, 251, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(17, 99, 251, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(17, 99, 251, 0);
    }
}

.floating-img {
    animation: float 6s ease-in-out infinite;
}

/* Advanced Reveal Animations */
.reveal-text {
    background: linear-gradient(90deg, #00E6D2, #00E6D2);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-size 1s ease;
}

.reveal-text.active {
    background-size: 100% 100%;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ai-gradient);
    transform: translateX(-101%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-text.active::after {
    transform: translateX(101%);
}

.ai-scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.ai-scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glass-Hover Section */
.glass-hover-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.glass-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    text-align: left;
}

.glass-box:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--ai-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.glass-box i {
    font-size: 32px;
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.glass-box h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.glass-box p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Background Light Effect */
.bg-light-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(17, 99, 251, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Hero Update */
.ai-hero-image {
    position: relative;
}

.ai-hero-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(17, 99, 251, 0.15), transparent 70%);
    z-index: -1;
}

/* Roadmap Background Image */
.roadmap-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    filter: blur(5px);
}

.roadmap-bg-image img {
    width: 100%;
    height: auto;
}

/* Process Roadmap */
.ai-roadmap {
    padding: 100px 0;
    background: linear-gradient(to bottom, #070707, #0f0f0f);
    position: relative;
}

.roadmap-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.roadmap-dot {
    width: 20px;
    height: 20px;
    background: var(--ai-primary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 15px var(--ai-primary);
}

.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
    z-index: 1;
}

.roadmap-content {
    width: 45%;
    padding: 30px;
    background: var(--ai-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.roadmap-item:nth-child(even) .roadmap-content {
    margin-left: auto;
}

.roadmap-content:hover {
    border-color: var(--ai-accent);
    transform: scale(1.02);
}

.roadmap-content h4 {
    color: var(--ai-accent);
    margin-bottom: 10px;
}

/* Excellence Section */
.ai-excellence {
    background: #0a0a0a;
    position: relative;
    z-index: 1;
}

/* Tech Stack */
.ai-tech-stack {
    background: linear-gradient(to bottom, #0f0f0f, #070707);
    padding: 100px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    text-align: center;
}

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(17, 99, 251, 0.1);
    border-color: var(--ai-primary);
}

.tech-item i {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--ai-primary);
}

/* FAQ Accordion */
.ai-faq {
    padding: 100px 0;
}

.accordion-item {
    background: var(--ai-glass) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    background: transparent !important;
    color: white !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--ai-accent) !important;
}

.accordion-body {
    color: #ccc;
    line-height: 1.6;
}

/* Floating Blobs */
.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--ai-primary);
    filter: blur(100px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
}

.text-accent {
    color: var(--ai-accent) !important;
    text-decoration: none;
    font-weight: 600;
}

.text-accent:hover {
    text-decoration: underline;
}

/* Scroll Progress Bar */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--ai-gradient);
    z-index: 9999;
}

@media (max-width: 768px) {

    .roadmap-dot,
    .roadmap-line {
        display: none;
    }

    .roadmap-content {
        width: 100%;
        margin-bottom: 20px;
    }
}


/* ------------------------------------------------ */
/* ✅ INTERACTIVE SERVICE SCROLLER STYLES */
/* ------------------------------------------------ */
.ai-interactive-scroller {
    padding: 100px 0;
    background: #070707;
    position: relative;
    z-index: 2;
}

.scroller-wrapper {
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    min-height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.scroller-sidebar {
    width: 45%;
    background: linear-gradient(180deg, #1163fb 0%, #00f2fe 100%);
    padding: 80px 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scroller-indicator-line {
    position: absolute;
    right: 40px;
    top: 80px;
    bottom: 80px;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.scroller-indicator-active {
    position: absolute;
    right: -1px;
    width: 4px;
    background: white;
    border-radius: 2px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.scroller-nav-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 50px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.scroller-nav-item:last-child {
    margin-bottom: 0;
}

.scroller-nav-item.active {
    opacity: 1;
    transform: translateX(10px);
}

.scroller-nav-item .nav-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    font-family: 'Inter', sans-serif;
}

.scroller-nav-item.active .nav-num {
    color: white;
}

.scroller-nav-item .nav-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.scroller-main-content {
    width: 55%;
    padding: 80px;
    background: #000;
    display: block;
    /* Changed from flex to block for vertical stacking */
    overflow-y: scroll;
    scroll-behavior: smooth;
    max-height: 600px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
}

.scroller-main-content::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari/Opera */
}

.scroller-pane {
    display: block;
    /* Always visible in the scrollable container */
    padding-bottom: 80px;
    min-height: 440px;
    /* Ensure sections are distinct */
    opacity: 0.3;
    transition: all 0.6s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 80px;
}

.scroller-pane:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.scroller-pane.active {
    opacity: 1;
    transform: scale(1.02);
}

.scroller-pane .pane-icon {
    width: 70px;
    height: 70px;
    background: var(--ai-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 35px;
    box-shadow: 0 15px 30px rgba(17, 99, 251, 0.3);
}

.scroller-pane h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
    line-height: 1.1;
}

.scroller-pane p {
    font-size: 1.15rem;
    color: #bbb;
    line-height: 1.9;
    font-weight: 300;
}

@media (max-width: 1200px) {
    .scroller-sidebar {
        padding: 60px 40px;
    }

    .scroller-main-content {
        padding: 60px;
    }

    .scroller-pane h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .scroller-wrapper {
        flex-direction: column;
    }

    .scroller-sidebar,
    .scroller-main-content {
        width: 100%;
    }

    .scroller-indicator-line {
        display: none;
    }

    .scroller-nav-item.active {
        transform: none;
    }

    .scroller-sidebar {
        padding: 50px 30px;
    }
}

/* ------------------------------------------------ */
/* ✅ STICKY-LEFT TECH SHOWCASE STYLES */
/* ------------------------------------------------ */
.ai-sticky-tech {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: visible !important;
}

.ai-sticky-tech .row {
    display: flex;
    /* align-items: stretch is default, which we need for the sticky track */
}

.sticky-left-col {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px !important;
    height: auto !important;
    z-index: 50;
    align-self: flex-start;
}

.sticky-left-col h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 35px;
    color: white;
}

.sticky-left-col p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ccc;
    font-weight: 300;
}

.scroll-right-col {
    padding-left: 60px;
}

.tech-detail-item {
    display: flex;
    gap: 30px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-detail-item:first-child {
    padding-top: 0;
}

.tech-detail-item .model-icon {
    width: 60px;
    height: 60px;
    background: var(--ai-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(17, 99, 251, 0.2);
}

.tech-detail-item .model-info h4 {
    font-size: 1.95rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
}

.tech-detail-item .model-info p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #999;
}

@media (max-width: 1200px) {
    .sticky-left-col h2 {
        font-size: 2.5rem;
    }

    .scroll-right-col {
        padding-left: 40px;
    }
}

@media (max-width: 991px) {
    .sticky-left-col {
        position: static;
        margin-bottom: 60px;
        text-align: center;
    }

    .scroll-right-col {
        padding-left: 0;
    }

    .tech-detail-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
}

/* ------------------------------------------------ */
/* ✅ PREMIUM SUCCESS STORIES (CASE STUDIES) STYLES */
/* ------------------------------------------------ */
.ai-dot-grid {
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 30px 30px;
    position: relative;
}

.ai-success-section-title {
    text-align: center;
    margin-bottom: 70px;
}

.ai-success-section-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ai-success-section-title p {
    font-size: 1.2rem;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.ai-success-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 45px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ai-success-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 254, 0.3);
    background: #161616;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ai-success-card .card-content h4 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.ai-success-card .card-content p {
    font-size: 1.05rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 30px;
    min-height: 80px;
}

.full-story-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ai-accent);
    /* Cyan color #00f2fe */
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.full-story-link:hover {
    color: white;
    transform: translateX(5px);
}

.full-story-link i {
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .ai-success-section-title h2 {
        font-size: 2.8rem;
    }

    .ai-success-card .card-content h4 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .ai-success-section-title h2 {
        font-size: 2.2rem;
    }

    .ai-success-card {
        padding: 35px;
    }
}

/* ------------------------------------------------ */
/* ✅ AUTO-SCROLLING SLIDER STYLES                  */
/* ------------------------------------------------ */
.ai-success-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    cursor: grab;
}

.ai-success-slider-container:active {
    cursor: grabbing;
}

.ai-success-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-ticker 40s linear infinite;
}

.ai-success-slider-container:hover .ai-success-track {
    animation-play-state: paused;
}

.ai-success-track .ai-success-card {
    width: 450px;
    /* Fixed width for consistent scrolling */
    flex-shrink: 0;
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
        /* Loop at half point */
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .ai-success-track .ai-success-card {
        width: 320px;
    }
}

/* ------------------------------------------------ */
/* ✅ AI DEVELOPMENT PROCESS SLIDER STYLES          */
/* ------------------------------------------------ */
.ai-process-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.process-header {
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    max-width: 800px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.process-header p {
    font-size: 1.2rem;
    color: #888;
    max-width: 700px;
    line-height: 1.6;
}

.process-nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    margin-top: -80px;
    /* Offset for desktop layout */
}

@media (max-width: 991px) {
    .process-nav-container {
        margin-top: 20px;
        justify-content: flex-start;
    }
}

.process-step-counter {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'DM Sans', sans-serif;
}

.process-step-counter span {
    color: #444;
    margin: 0 10px;
}

.process-slider-controls {
    display: flex;
    gap: 15px;
}

.process-nav-btn {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    /* Off-white from screenshot */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    /* Dark icons from screenshot */
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.process-nav-btn:hover {
    background: white;
    color: black;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Slider Track */
.process-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 60px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    /* Force snapping for precise control */
}

.process-slider::-webkit-scrollbar {
    display: none;
}

.process-card {
    min-width: 400px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    height: 100%;
    scroll-snap-align: start;
    /* Snap alignment */
}

.process-card:hover {
    border-color: rgba(17, 99, 251, 0.4);
    background: #0f0f0f;
    transform: translateY(-5px);
}

.process-card .card-step-num {
    font-size: 1rem;
    font-weight: 700;
    color: #888;
    margin-bottom: 30px;
}

.process-card .step-icon-box {
    width: 70px;
    height: 70px;
    background: #0061ff;
    /* Solid corporate blue from screenshot */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 35px;
    box-shadow: 0 10px 20px rgba(0, 97, 255, 0.2);
}

.process-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.process-card p {
    font-size: 1.05rem;
    color: #999;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .process-header h2 {
        font-size: 2.8rem;
    }

    .process-card {
        min-width: 350px;
    }
}

@media (max-width: 768px) {
    .process-header h2 {
        font-size: 2.2rem;
    }

    .process-card {
        min-width: 300px;
        padding: 30px;
    }
}

/* Custom AI Data Expansion Styles */
.ai-industries-section { background: #070707; }
.industry-card-cv {
    background: var(--ai-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}
.industry-card-cv:hover {
    border-color: var(--ai-accent);
    transform: translateY(-5px);
}
.industry-card-cv .ind-icon {
    font-size: 40px;
    color: var(--ai-accent);
    margin-bottom: 20px;
}
.industry-card-cv h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}
.industry-card-cv p {
    color: #aaa;
    line-height: 1.6;
}

.ai-tech-stack { background: #0a0a0a; }
.tech-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}
.tech-badge:hover {
    background: rgba(17, 99, 251, 0.1);
    border-color: var(--ai-primary);
    transform: scale(1.05);
}

.ai-benefits-section { background: #070707; }
.benefit-list { list-style: none; padding: 0; }
.benefit-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}
.benefit-list li i { font-size: 24px; margin-top: 5px; color: var(--ai-accent); }
.benefit-list li strong { display: block; font-size: 1.3rem; margin-bottom: 5px; color: white; }
.benefit-list li span { color: #bbb; line-height: 1.6; }
.pulse-anim { animation: pulse-soft 3s infinite; }