.work-process-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .work-process-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.06) 0%, transparent 50%);
        pointer-events: none;
    }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
}

    .section-subtitle::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #00d4ff, #ff6b6b);
        border-radius: 2px;
    }

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e6ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #b4b4b4;
    max-width: 600px;
    margin: 0 auto;
}

.process-container {
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.process-left, .process-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.process-center {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step {
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

    .process-step:nth-child(1) {
        animation-delay: 0.2s;
    }

    .process-step:nth-child(2) {
        animation-delay: 0.4s;
    }

    .process-step:nth-child(3) {
        animation-delay: 0.6s;
    }

.process-left .process-step {
    text-align: right;
    padding-right: 20px;
}

.process-right .process-step {
    text-align: left;
    padding-left: 20px;
}

.step-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.process-left .step-content {
    flex-direction: row-reverse;
}

.step-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    z-index: 3;
}

.process-right .step-number {
    left: -10px;
    right: auto;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #00d4ff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

    .step-icon::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, #00d4ff, #0099cc);
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

.process-step:hover .step-icon {
    transform: scale(1.1);
    background: rgba(0, 212, 255, 0.15);
    border-color: #00d4ff;
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

    .process-step:hover .step-icon::before {
        opacity: 1;
    }

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.step-info {
    flex: 1;
    max-width: 280px;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.process-step:hover .step-title {
    color: #00d4ff;
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: #b4b4b4;
}

/* Central Tech Image */
.central-tech-image {
    position: relative;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: pulse 4s ease-in-out infinite;
    overflow: hidden;
}

.tech-image {
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

/* Connecting Lines */
.connecting-line {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #00d4ff, transparent);
    left: 50%;
    transform: translateX(-50%);
}

.line-left {
    top: -30px;
    right: 20px;
    left: auto;
    transform: rotate(-30deg);
    transform-origin: bottom;
}

.line-right {
    top: -30px;
    left: 20px;
    transform: rotate(30deg);
    transform-origin: bottom;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-container {
        gap: 40px;
    }

    .process-center {
        flex: 0 0 300px;
    }

    .central-tech-image {
        width: 280px;
        height: 280px;
    }

    .tech-illustration {
        width: 220px;
        height: 220px;
        font-size: 60px;
    }

    .step-info {
        max-width: 240px;
    }
}

@media (max-width: 1024px) {
    .process-container {
        flex-direction: column;
        gap: 50px;
    }

    .process-left, .process-right {
        flex-direction: row;
        justify-content: space-around;
        gap: 30px;
    }

        .process-left .process-step,
        .process-right .process-step {
            text-align: center;
            padding: 0;
        }

        .process-left .step-content,
        .process-right .step-content {
            flex-direction: column;
            text-align: center;
        }

    .step-info {
        max-width: 200px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .work-process-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .process-container {
        gap: 40px;
    }

    .process-left, .process-right {
        flex-direction: column;
        gap: 30px;
    }

    .central-tech-image {
        width: 250px;
        height: 250px;
    }

    .tech-illustration {
        width: 200px;
        height: 200px;
        font-size: 50px;
    }

    .step-info {
        max-width: 280px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 15px;
    }
}
