.process-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 6rem 0;
    position: relative;
    color: #e2e8f0;
}

.process-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(79, 70, 229, 0.3),
        transparent
    );
}

.process-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        rgba(79, 70, 229, 0.2) 0%,
        rgba(79, 70, 229, 0.5) 50%,
        rgba(79, 70, 229, 0.2) 100%
    );
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    padding: 3rem;
    margin-bottom: 4rem;
    border-radius: 24px;
    transition: all 0.5s ease;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.process-item:nth-child(odd) {
    margin-right: 50%;
    transform: translateX(20px);
}

.process-item:nth-child(even) {
    margin-left: 50%;
    transform: translateX(-20px);
}

.process-item:hover {
    transform: translateX(0) scale(1.02);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.1);
}

.process-item:nth-child(odd):hover {
    transform: translateX(30px) scale(1.02);
}

.process-item:nth-child(even):hover {
    transform: translateX(-30px) scale(1.02);
}

.process-number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #4f46e5, var(--color-primary));
    color: white;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.process-item:nth-child(odd) .process-number {
    right: -35px;
}

.process-item:nth-child(even) .process-number {
    left: -35px;
}

.process-content {
    position: relative;
    z-index: 1;
}

.process-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.process-title::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}

.process-description {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    padding: 2rem 0;
}

.section-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #4f46e5);
    border-radius: 2px;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #f8fafc 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #4f46e5);
    border-radius: 2px;
}

.section-subtitle {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.7;
    position: relative;
    padding: 0 1rem;
}

.section-subtitle::before,
.section-subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4f46e5);
}

.section-subtitle::before {
    left: 0;
}

.section-subtitle::after {
    right: 0;
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .process-section {
        padding: 4rem 0;
    }

    .process-container::before {
        left: 35px;
        display: none;
    }

    .process-item {
        margin: 0 0 4rem 0px !important;
        transform: none !important;
        padding: 2rem;
        background: rgba(30, 41, 59, 0.7);
    }

    .process-item:hover {
        transform: translateX(10px) scale(1.02) !important;
        background: rgba(30, 41, 59, 0.9);
    }

    .process-number {
        display: none;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        left: -45px !important;
        right: auto !important;
    }
.process-item{
    margin: 0;
}
    .process-content {
        padding: 0;
    }

    .process-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .process-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .section-header {
        margin-bottom: 4rem;
        padding: 1.5rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 2rem;
        margin-top: 1.5rem;
    }

    .section-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 3rem 0;
    }

    .process-container {
        padding: 1rem 0;
    }

    .process-item {
        margin: 0 0 3rem 0px !important;
        padding: 1.5rem;
        border-radius: 16px;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        left: -35px !important;
    }

    .process-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        gap: 0.75rem;
        align-items: center;
    }

    .process-title::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #4f46e5;
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
        flex-shrink: 0;
        margin-right: 0.5rem;
    }

    .process-description {
        font-size: 0.9rem;
        line-height: 1.5;
        padding-left: 0.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
        padding: 1rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 80px;
        bottom: -10px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1.5rem;
        margin-top: 1rem;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        width: 20px;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 0.35rem 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 360px) {
    .process-section {
        padding: 2.5rem 0;
    }

    .process-item {
        padding: 1.25rem;
    }
    .process-section > div{
        padding: 5px;
    }

    .process-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        left: -30px !important;
    }

    .process-title {
        font-size: 1.1rem;
        gap: 0.5rem;
    }

    .process-title::before {
        width: 6px;
        height: 6px;
        box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
        margin-right: 0.375rem;
    }

    .process-description {
        font-size: 0.85rem;
        padding-left: 0.375rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    .process-item{
    padding: 8px;
}
}

/* Add smooth transitions for all interactive elements */
.process-item,
.process-number,
.process-title,
.section-badge {
    transition: all 0.3s ease-in-out;
}


/* Add hover effect for process items */
.process-item:hover .process-number {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.4);
}

/* Improve touch targets for mobile */
@media (hover: none) {
    .process-item:active {
        transform: translateX(10px) scale(1.02) !important;
        background: rgba(30, 41, 59, 0.9);
    }

    .process-item:active .process-number {
        transform: translateY(-50%) scale(1.1);
    }
}

