/* ===== How Process Section ===== */
.howProcessSection {
    padding: var(--section-bg-py) 0;
}

/* ===== Section Head ===== */
.processSecHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 80px;
}

.processSecHead .sectionHeadwrap {
    max-width: 600px;
    text-align: left;
    margin: 0;
}

/* ===== Swiper Nav Buttons ===== */
.processSwiperNav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.swiper-button-prev-process,
.swiper-button-next-process {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #D9E0F2;
    color: #3A66D4;
    cursor: pointer;
    background: #fff;
    flex-shrink: 0;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.swiper-button-next-process {
    border-color: #D9E0F2;
    color: #3A66D4;
}

.swiper-button-prev-process:hover,
.swiper-button-next-process:hover {
    border-color: #3A66D4;
    color: #3A66D4;
}

.swiper-button-prev-process.swiper-button-disabled,
.swiper-button-next-process.swiper-button-disabled {
    color: #D1D5DB;
    border-color: #F3F4F6;
    cursor: default;
    pointer-events: none;
}

/* ===== Swiper Pagination ===== */
.swiper-pagination-process {
    margin-top: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.swiper-pagination-process .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #C4C4C4;
    opacity: 1;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.swiper-pagination-process .swiper-pagination-bullet-active {
    background: var(--color-primary, #3A66D4);
    width: 20px;
}

/* Slide padding for visible overflow */
.processWrapper .swiper-slide {
    padding: 10px 2px 10px;
}

/* ===== Process Card ===== */
.processCard {
    background: #fff;
    border: 1px solid #DAE5F5;
    border-radius: 20px;
    padding: 42px 20px 50px;
    display: flex;
    flex-direction: column;
    max-height: 305px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
        max-width: 275px;
    width: 100%;
}

.processCard:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 28px rgba(58, 102, 212, 0.10);
    border-color: #C5D4F5;
}

/* ===== Step Label (STEP 01 —) ===== */
.processStepLabel {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #3A66D4;
    margin-bottom: 35px;
}

.processStepDash {
        display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--color-primary, #3A66D4);
}

/* ===== Card Title ===== */
.processCardTitle {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    color: #1F2937;
    margin-bottom: 12px;
}

/* ===== Card Description ===== */
.processCardDesc {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 180%;
    color: #676B7E;
    margin: 0;
    flex: 1;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .processSecHead {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .processSwiperNav {
        align-self: flex-end;
    }
}

@media (max-width: 575px) {
    .howProcessSection {
        padding: 50px 0;
    }

    .processSecHead {
        margin-bottom: 28px;
    }

    .processSwiperNav {
        display: none;
    }

    .swiper-pagination-process {
        display: flex;
    }

    .processCard {
        min-height: 262px;
        padding: 22px 20px;
        max-width: unset;
    }
    .processSecHead .sectionHeadwrap {
 
    text-align: center;
   
}
}
