.container {
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
}

.work-process {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    min-height: 500px;
}

.work-process:hover {
    transform: translateY(-5px);
}

.process-image {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.step-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.process-content {
    padding: 60px 50px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.process-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.process-desc {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 3s linear;
    border-radius: 0 2px 0 0;
}

.navigation-dots {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.dot:hover {
    background: #34495e;
    transform: scale(1.1);
}

.controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

.control-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #667eea;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.control-btn:hover {
    background: #5a67d8;
    transform: scale(1.1);
}

.control-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 800px) {
    .work-process {
        flex-direction: column;
        max-height: none;
    }

    .process-image,
    .process-content {
        width: 100%;
    }

    .process-image {
        height: 300px;
    }

    .process-content {
        padding: 40px 30px;
    }

    .process-title {
        font-size: 28px;
    }

    .process-desc {
        font-size: 16px;
    }
}

.placeholder-img {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 500px){
    .navigation-dots {
        align-items: center;
        margin-bottom: 50px;
        justify-content: center;
    }
    .controls{
        right: 60px;
    }
}