.service-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-nav ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 24px;
    margin-bottom: 12px;

    min-height: 58px;

    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 999px;

    cursor: pointer;
    transition: all 0.3s ease;
}

.service-nav ul li:last-child {
    margin-bottom: 0;
}

.service-nav ul li a {
    flex: 1;

    display: flex;
    align-items: center;

    color: var(--headings-color);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family-headings);
    text-decoration: none;

    transition: all 0.3s ease;
}

.service-nav ul li span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    color: var(--headings-color);
    transition: all 0.3s ease;
}

/* Hover */

.service-nav ul li:hover {
    background: rgba(9, 159, 221, 0.08);
    border-color: rgba(9, 159, 221, 0.15);
}

.service-nav ul li:hover a,
.service-nav ul li:hover span {
    color: var(--primary);
}

/* Active */

.service-nav ul li.active {
    background: var(--primary);
    border-color: var(--primary);
}

.service-nav ul li.active a,
.service-nav ul li.active span {
    color: #fff;
}

.service-nav ul li.active span {
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================
   Service Content
========================================== */

.service-tab-content {
    display: none;
}

.service-tab-content.active {
    display: block;
    animation: fadeIn 0.35s ease;
}

/* ==========================================
   Animation
========================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .services-sidebar {
        margin-bottom: 30px;
    }
}

/* ── Stats Strip ── */
.svc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e2e8ec;
    border-radius: 12px;
    overflow: hidden;
    margin: 36px 0 40px;
}

.svc-stat-item {
    background: #fff;
    padding: 28px 20px 24px;
    text-align: center;
}

.svc-stat-item .stat-num {
    font-family: var(--font-family-headings, sans-serif);
    font-size: 38px;
    font-weight: 700;
    color: #099fdd;
    line-height: 1;
    display: block;
}

.svc-stat-item .stat-label {
    font-size: 13px;
    color: #788094;
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ── How It Works ── */
.svc-how {
    margin: 10px 0 0;
}

.svc-how-title {
    font-family: var(--font-family-headings, sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--headings-color, #020e28);
    margin-bottom: 24px;
}

.svc-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-bottom: 28px;
}

.svc-step:last-child {
    padding-bottom: 0;
}

/* vertical connector line */
.svc-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 42px;
    width: 2px;
    height: calc(100% - 42px);
    background: linear-gradient(to bottom, #099fdd44, transparent);
}

.svc-step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #099fdd;
    color: #fff;
    font-family: var(--font-family-headings, sans-serif);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-step-body h5 {
    font-family: var(--font-family-headings, sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--headings-color, #020e28);
    margin: 8px 0 5px;
}

.svc-step-body p {
    font-size: 14px;
    color: #788094;
    line-height: 1.6;
    margin: 0;
}

/* ── Gallery ── */
.gallery-single img {
    border-radius: 10px;
}

/* ── Feature badges on image ── */
.service-thumb {
    position: relative;
    margin-bottom: 30px;
}

.service-thumb img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 340px;
}

.svc-badge {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: #099fdd;
    color: #fff;
    border-radius: 8px;
    padding: 10px 18px;
    font-family: var(--font-family-headings, sans-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}