/* ============================================
   AI SOLUTIONS SERVICE PAGE - NEURAL CONSCIOUSNESS
   Unique premium effects: Neural synapses, holographic,
   data streams, consciousness visualization
   ============================================ */

/* ============================================
   HERO SECTION - AI CONSCIOUSNESS
   ============================================ */
.ai-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0015 0%, #0d0025 30%, #050520 70%, #000010 100%);
    overflow: hidden;
    padding-top: 80px;
}

/* Neural Network Background */
.neural-network {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.neural-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(138, 43, 226, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6),
        0 0 40px rgba(138, 43, 226, 0.3);
    animation: neuralPulse 3s ease-in-out infinite;
}

.neural-node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.5), transparent);
    transform-origin: left center;
    animation: synapseFire 4s ease-in-out infinite;
}

.neural-node:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.neural-node:nth-child(2) {
    top: 25%;
    left: 25%;
    animation-delay: 0.5s;
}

.neural-node:nth-child(3) {
    top: 10%;
    left: 40%;
    animation-delay: 1s;
}

.neural-node:nth-child(4) {
    top: 35%;
    left: 55%;
    animation-delay: 1.5s;
}

.neural-node:nth-child(5) {
    top: 20%;
    left: 70%;
    animation-delay: 2s;
}

.neural-node:nth-child(6) {
    top: 45%;
    left: 85%;
    animation-delay: 0.3s;
}

.neural-node:nth-child(7) {
    top: 60%;
    left: 15%;
    animation-delay: 0.8s;
}

.neural-node:nth-child(8) {
    top: 75%;
    left: 30%;
    animation-delay: 1.3s;
}

.neural-node:nth-child(9) {
    top: 65%;
    left: 50%;
    animation-delay: 1.8s;
}

.neural-node:nth-child(10) {
    top: 80%;
    left: 70%;
    animation-delay: 0.2s;
}

.neural-node:nth-child(11) {
    top: 55%;
    left: 90%;
    animation-delay: 0.7s;
}

.neural-node:nth-child(12) {
    top: 90%;
    left: 45%;
    animation-delay: 1.2s;
}

@keyframes neuralPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 40px rgba(138, 43, 226, 0.8),
            0 0 60px rgba(0, 255, 255, 0.4);
    }
}

@keyframes synapseFire {

    0%,
    100% {
        opacity: 0;
        transform: rotate(0deg) scaleX(0);
    }

    50% {
        opacity: 0.6;
        transform: rotate(var(--rotation, 45deg)) scaleX(1);
    }
}

/* Data Stream Effect */
.data-streams {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.data-particle {
    position: absolute;
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, transparent, #00ffff, transparent);
    animation: dataFlow 4s linear infinite;
    opacity: 0.4;
}

.data-particle:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 3s;
}

.data-particle:nth-child(2) {
    left: 15%;
    animation-delay: 0.5s;
    animation-duration: 4s;
}

.data-particle:nth-child(3) {
    left: 25%;
    animation-delay: 1s;
    animation-duration: 3.5s;
}

.data-particle:nth-child(4) {
    left: 35%;
    animation-delay: 1.5s;
    animation-duration: 4.5s;
}

.data-particle:nth-child(5) {
    left: 45%;
    animation-delay: 2s;
    animation-duration: 3s;
}

.data-particle:nth-child(6) {
    left: 55%;
    animation-delay: 0.3s;
    animation-duration: 4s;
}

.data-particle:nth-child(7) {
    left: 65%;
    animation-delay: 0.8s;
    animation-duration: 3.5s;
}

.data-particle:nth-child(8) {
    left: 75%;
    animation-delay: 1.3s;
    animation-duration: 4.5s;
}

.data-particle:nth-child(9) {
    left: 85%;
    animation-delay: 1.8s;
    animation-duration: 3s;
}

.data-particle:nth-child(10) {
    left: 95%;
    animation-delay: 2.5s;
    animation-duration: 4s;
}

@keyframes dataFlow {
    0% {
        top: -30px;
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* AI Core - Central Brain Visualization */
.ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 2;
    pointer-events: none;
}

.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(138, 43, 226, 0.3);
    animation: ringPulse 4s ease-in-out infinite;
}

.core-ring:nth-child(1) {
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    border-color: rgba(138, 43, 226, 0.5);
}

.core-ring:nth-child(2) {
    width: 250px;
    height: 250px;
    animation-delay: 0.5s;
    border-color: rgba(0, 255, 255, 0.3);
}

.core-ring:nth-child(3) {
    width: 350px;
    height: 350px;
    animation-delay: 1s;
    border-color: rgba(255, 107, 0, 0.2);
}

.core-ring:nth-child(4) {
    width: 450px;
    height: 450px;
    animation-delay: 1.5s;
    border-color: rgba(138, 43, 226, 0.15);
}

@keyframes ringPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.core-brain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.8) 0%, rgba(75, 0, 130, 0.5) 50%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(138, 43, 226, 0.6),
        0 0 100px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    animation: brainGlow 3s ease-in-out infinite;
}

.core-brain::before {
    content: '\f5dc';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

@keyframes brainGlow {

    0%,
    100% {
        box-shadow: 0 0 60px rgba(138, 43, 226, 0.6),
            0 0 100px rgba(0, 255, 255, 0.3);
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        box-shadow: 0 0 80px rgba(138, 43, 226, 0.9),
            0 0 150px rgba(0, 255, 255, 0.5),
            0 0 200px rgba(255, 107, 0, 0.2);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Holographic Orbs */
.holo-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.holo-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: holoFloat 15s ease-in-out infinite;
}

.holo-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, transparent 70%);
    top: -10%;
    right: 10%;
    animation-delay: 0s;
}

.holo-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.35) 0%, transparent 70%);
    bottom: 10%;
    left: 5%;
    animation-delay: -5s;
}

.holo-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
    top: 40%;
    left: 70%;
    animation-delay: -10s;
}

@keyframes holoFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Hero Content */
.ai-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 255, 255, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 60px;
    color: #00ffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: badgeShine 3s ease-in-out infinite;
}

.hero-ai-badge i {
    font-size: 18px;
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes badgeShine {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.hero-mega-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -2px;
}

.title-sub {
    display: block;
    font-size: 28px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0;
    margin-bottom: 10px;
}

.gradient-text-ai {
    background: linear-gradient(135deg,
            #8a2be2 0%,
            #00ffff 30%,
            #ff6b00 60%,
            #8a2be2 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-description strong {
    color: #00ffff;
}

.hero-description .highlight-glow {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Hero CTAs */
.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-ai-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #8a2be2 0%, #00bfff 50%, #00ffff 100%);
    background-size: 200% 200%;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    animation: btnGradient 3s ease-in-out infinite;
}

.btn-ai-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #8a2be2, #00ffff, #ff6b00, #8a2be2);
    background-size: 300% 300%;
    border-radius: 60px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-ai-primary:hover::before {
    opacity: 1;
}

.btn-ai-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.4),
        0 0 30px rgba(0, 255, 255, 0.3);
}

@keyframes btnGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    display: inline;
}

.stat-plus {
    font-size: 32px;
    font-weight: 700;
    color: #00ffff;
    display: inline;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(138, 43, 226, 0.5), transparent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 2px;
    z-index: 10;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: #00ffff;
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

/* ============================================
   AI SERVICES SECTION
   ============================================ */
.section-ai-services {
    padding: 120px 0;
    background: linear-gradient(180deg, #050520 0%, #0a0a20 100%);
    position: relative;
}

.section-header-center {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge-ai {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(138, 43, 226, 0.15);
    color: #00ffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    margin-bottom: 25px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Holographic Service Cards */
.ai-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ai-service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            rgba(138, 43, 226, 0.8),
            rgba(0, 255, 255, 0.8),
            transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ai-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 30px 60px rgba(138, 43, 226, 0.2),
        0 0 40px rgba(0, 255, 255, 0.1);
}

.ai-service-card:hover::before {
    opacity: 1;
}

/* Holographic shine effect */
.card-holo-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            transparent 20%,
            rgba(138, 43, 226, 0.05) 40%,
            rgba(0, 255, 255, 0.08) 45%,
            rgba(255, 107, 0, 0.05) 50%,
            transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.ai-service-card:hover .card-holo-shine {
    opacity: 1;
    animation: holoShine 2s linear infinite;
}

@keyframes holoShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.service-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.service-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0.2;
    transition: all 0.4s ease;
}

.service-icon-bg.bg-purple {
    background: linear-gradient(135deg, #8a2be2, #9400d3);
}

.service-icon-bg.bg-cyan {
    background: linear-gradient(135deg, #00bfff, #00ffff);
}

.service-icon-bg.bg-orange {
    background: linear-gradient(135deg, #ff6b00, #ffd700);
}

.service-icon-bg.bg-green {
    background: linear-gradient(135deg, #00ff88, #00d4aa);
}

.service-icon-bg.bg-pink {
    background: linear-gradient(135deg, #ff6b9d, #ff3388);
}

.service-icon-bg.bg-blue {
    background: linear-gradient(135deg, #4169e1, #6495ed);
}

.ai-service-card:hover .service-icon-bg {
    opacity: 0.4;
    transform: scale(1.1);
}

.service-icon-wrap i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: #fff;
    z-index: 1;
}

.ai-service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.ai-service-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.service-features li i {
    font-size: 12px;
    color: #00ffff;
}

/* ============================================
   TECHNOLOGY STACK SECTION
   ============================================ */
.section-tech-stack {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a20 0%, #0d0025 100%);
    position: relative;
}

.tech-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.tech-left p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 35px;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.tech-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.tech-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.3));
}

.tech-item span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* ============================================
   AI PROCESS SECTION
   ============================================ */
.section-ai-process {
    padding: 120px 0;
    background: linear-gradient(180deg, #0d0025 0%, #050520 100%);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
            transparent,
            rgba(138, 43, 226, 0.5) 10%,
            rgba(0, 255, 255, 0.5) 50%,
            rgba(255, 107, 0, 0.5) 90%,
            transparent);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8a2be2, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

.step-marker i {
    font-size: 24px;
    color: #fff;
}

.step-content {
    width: calc(50% - 60px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.step-content:hover {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.2);
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ============================================
   USE CASES SECTION
   ============================================ */
.section-use-cases {
    padding: 120px 0;
    background: linear-gradient(180deg, #050520 0%, #0a0a20 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.use-case-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(138, 43, 226, 0.15);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s ease;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            rgba(138, 43, 226, 0.1) 60deg,
            transparent 120deg);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(138, 43, 226, 0.2);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.use-case-inner {
    position: relative;
    z-index: 1;
}

.use-case-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.use-case-card:hover .use-case-icon {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4), rgba(0, 255, 255, 0.2));
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
}

.use-case-icon i {
    font-size: 28px;
    color: #00ffff;
}

.use-case-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.use-case-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-ai-cta {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #0a0025 0%, #150030 50%, #0a0025 100%);
    overflow: hidden;
}

.cta-neural-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background:
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.2) 0%, transparent 40%);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: #fff;
    color: #0a0025;
    font-size: 17px;
    font-weight: 700;
    border-radius: 60px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-white-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(138, 43, 226, 0.3);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-outline-white:hover {
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .ai-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-mega-title {
        font-size: 48px;
    }

    .title-sub {
        font-size: 22px;
    }

    .tech-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-line {
        left: 30px;
    }

    .process-step {
        flex-direction: row !important;
        gap: 30px;
        padding-left: 80px;
    }

    .step-marker {
        left: 0;
        transform: none;
    }

    .step-content {
        width: 100%;
    }

    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .ai-hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-mega-title {
        font-size: 36px;
    }

    .title-sub {
        font-size: 18px;
    }

    .ai-services-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .ai-core {
        width: 300px;
        height: 300px;
    }

    .core-ring:nth-child(3),
    .core-ring:nth-child(4) {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-mega-title {
        font-size: 28px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-ai-primary,
    .btn-glass {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}