/* ===== Service detail rich content styling ===== */
.service-details__content h3 {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 26px;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-left: 16px;
    border-left: 4px solid #4946EC;
    line-height: 1.3;
}

.service-feature-list,
.service-process-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.5rem;
}

.service-feature-list li {
    position: relative;
    padding: 12px 16px 12px 44px;
    margin-bottom: 8px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #4946EC;
    line-height: 1.6;
    transition: 0.2s;
}
.service-feature-list li:hover {
    background: #eef0ff;
    transform: translateX(4px);
}
.service-feature-list li::before {
    content: "\f00c"; /* fa-check */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    color: #4946EC;
    position: absolute;
    left: 14px;
    top: 13px;
    font-size: 14px;
    width: 22px;
    height: 22px;
    background: rgba(73,70,236,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.service-feature-list li strong {
    color: #1a1a2e;
    font-weight: 700;
}

.service-process-list {
    counter-reset: process-step;
}
.service-process-list li {
    position: relative;
    padding: 14px 16px 14px 60px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    counter-increment: process-step;
    line-height: 1.6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: 0.2s;
}
.service-process-list li:hover {
    border-color: #4946EC;
    box-shadow: 0 4px 16px rgba(73,70,236,0.1);
}
.service-process-list li::before {
    content: counter(process-step);
    position: absolute;
    left: 14px;
    top: 13px;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #4946EC, #6d6bf0);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.service-process-list li strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* Inline tech / industry cards */
.service-details__content .bg-light {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
}
.service-details__content .bg-light:hover {
    background: #eef0ff !important;
    border-color: #4946EC;
}

/* Accordion */
.service-details__content .accordion {
    margin: 1rem 0 1.5rem;
}
.service-details__content .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.service-details__content .accordion-button {
    background: #fff;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 20px;
}
.service-details__content .accordion-button:not(.collapsed) {
    background: rgba(73,70,236,0.05);
    color: #4946EC;
    box-shadow: none;
}
.service-details__content .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(73,70,236,0.15);
}
.service-details__content .accordion-body {
    padding: 16px 20px;
    color: #475569;
    line-height: 1.7;
    background: #fafbfc;
}

/* CTA box at bottom */
.service-details__content .btn-primary {
    background: #4946EC;
    border-color: #4946EC;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.2s;
}
.service-details__content .btn-primary:hover {
    background: #3a37d5;
    border-color: #3a37d5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(73,70,236,0.4);
}
