/* Process Steps Section */
.process-section {
    padding: 120px 0;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.process-sec-title {
    margin-bottom: 60px;
}

.process-sec-title span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #7f181c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.process-sec-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.process-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    position: relative;
    padding: 0 15px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -30px;
    width: 70px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30'%3E%3Cpath d='M0,15 Q30,5 60,15 T90,15' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M80,5 L95,15 L80,25' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateY(-50%);
}

.ps-icon-wrapper {
    width: 140px;
    height: 140px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.ps-icon-wrapper:hover {
    border-color: #7f181c;
    box-shadow: 0 15px 35px rgba(186,19,26,0.15);
    transform: translateY(-5px);
}

.ps-icon-wrapper i {
    font-size: 45px;
    color: #7f181c;
    transition: all 0.4s ease;
}

.ps-icon-wrapper:hover i {
    transform: scale(1.1);
}

.ps-number {
    position: absolute;
    bottom: 5px;
    right: -5px;
    width: 45px;
    height: 45px;
    background: #cbd5e1;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.ps-icon-wrapper:hover .ps-number {
    background: #7f181c;
}

.ps-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.ps-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .process-row {
        flex-wrap: wrap;
    }
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    .process-step:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-step {
        flex: 0 0 100%;
    }
    .process-step::after {
        display: none !important;
    }
}
