.process-section {
    position: relative;
    overflow: hidden;
}

.process-slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

.process-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide-content {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
}

.resume4pro-numberbox-wrap {
    margin-bottom: 30px;
}

.slide-nav {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;    
    background: #efefef;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    font-size: 24px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

/* Hover effect for arrows */
.slide-nav:hover {
    background: rgba(212, 212, 212, 0.7);
}

/* Brand color for arrows */
.next-1,
.prev-2 {
    color: #2b4dff;
}

.prev-2 {
    left: 10px;
}

.next-1 {
    right: 10px;
}

.process-slider-wrapper.show-second {
    transform: translateX(-100%);
}

/* =========================
   MOBILE VIEW (Column layout)
   ========================= */
@media (max-width: 768px) {
    .process-slider-wrapper {
        display: block; /* stack slides vertically */
        transform: none !important; /* disable slide shift */
    }

    .slide-content {
        display: block; /* stack inside each slide */
    }

    .slide-content .row {
        display: block; /* force single column */
    }

    .slide-content .col-lg-4,
    .slide-content .col-md-6,
    .slide-content .col-sm-12 {
        width: 100% !important; /* full width on mobile */
        max-width: 100%;
    }

    .slide-nav {
        display: none; /* hide arrows */
    }

    .process-slider-container {
        padding: 0 15px; /* reduce padding for mobile */
    }
}
