.process-section-v5 {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.process-card-v5 {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    border: 1px solid #eef2f7;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
    overflow: hidden;
}

/* SOFT HOVER LIFT */
.process-card-v5:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(16, 24, 40, 0.12);
    border-color: rgba(29, 67, 254, 0.25);
}

/* FEATURED CARD (important one) */
.process-card-v5.featured {
    border: 1px solid rgba(29, 67, 254, 0.35);
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

/* subtle glow */
.process-card-v5.featured::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: radial-gradient(
        circle,
        rgba(29, 67, 254, 0.15),
        transparent 70%
    );
}

/* TOP */
.process-top-v5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

/* NUMBER */
.process-num-v5 {
    font-size: 12px;
    font-weight: 700;
    color: #1d43fe;
    background: rgba(29, 67, 254, 0.08);
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 1px;
}

/* ICON (premium badge style) */
.process-icon-v5 {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(29, 67, 254, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1d43fe;
    transition: all 0.3s ease;
    position: relative;
}

/* ICON GLOW EFFECT */
.process-icon-v5::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 16px;
    background: rgba(29, 67, 254, 0.08);
    opacity: 0;
    transition: 0.3s ease;
}

/* TITLE */
.process-card-v5 h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

/* TEXT */
.process-card-v5 p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* HOVER INTERACTION */
.process-card-v5:hover .process-icon-v5 {
    background: #1d43fe;
    color: #fff;
}

.process-card-v5:hover .process-icon-v5::after {
    opacity: 1;
}

/* FEATURED HOVER ENHANCEMENT */
.process-card-v5.featured:hover {
    transform: translateY(-12px) scale(1.01);
}

.about__list-item-two {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* gap: 4px; */
}

.about__item {
    display: flex;
    align-items: flex-start;
    /* gap: 10px; */
    line-height: 1.6;
}

.about__item .icon {
    width: 12px;
    height: 12px;
    /* min-width: 16px; */
    font-size: 11px;
    margin-top: 2px;
    line-height: 1;
    flex-shrink: 0;
    color: #1d43fe;
}

.about__item .text {
    font-size: 14px;
    color: #374151;
}

.services__sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sidebar__title {
    font-family: "Kantumruy Pro";
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111827;
}

.services--card {
    padding: 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.service__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    background: #f8faff;
    color: #1f2937;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.service__item:hover {
    transform: translateX(4px);
    background: #fff;
    border-color: rgba(29, 67, 254, 0.25);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.service__item.active {
    background: #1d43fe;
    color: #fff;
    box-shadow: 0 12px 28px rgba(29, 67, 254, 0.25);
}

.service__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1d43fe;
    flex-shrink: 0;
}

.service__item.active .service__dot {
    background: #fff;
}

.service__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service__name {
    font-size: 14px;
    font-weight: 600;
}

.service__desc {
    font-size: 12px;
    opacity: 0.65;
}

.service__arrow {
    font-size: 18px;
    opacity: 0.4;
}

.support--card {
    padding: 22px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #1d43fe, #4f7cff);
    box-shadow: 0 18px 40px rgba(29, 67, 254, 0.25);
    position: relative;
    overflow: hidden;
}

.support__icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support--card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 12px;
}

.support--card p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.6;
}

.support__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    color: #1d43fe;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.support__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.info--card {
    padding: 18px;
    border-radius: 14px;
    background: #ffffff;
    border-left: 4px solid #1d43fe;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.info--card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1d43fe;
}

.info--card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===== MOBILE / SMALL SCREEN ===== */
@media (max-width: 768px) {
    .services__sidebar {
        gap: 14px;
    }

    /* Make service list 2 columns + scroll */
    .service__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;

        max-height: 260px;
        /* controls visible items */
        overflow-y: auto;
        padding-right: 6px;
    }

    /* Optional: make items more compact */
    .service__item {
        padding: 10px 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .service__arrow {
        display: none;
        /* cleaner on mobile */
    }

    .service__name {
        font-size: 13px;
        line-height: 1.3;
    }

    .service__desc {
        font-size: 11px;
        opacity: 0.8;
    }

    .about__list-item-two {
        gap: 6px;
    }

    .about__item {
        line-height: 1.4;
    }

    .about__item .icon {
        width: 10px;
        height: 10px;
        font-size: 10px;
        margin-top: 2px;
    }

    .about__item .text {
        font-size: 13px;
    }
}
