    .coverage-hero {
        background-color: var(--light-gray);
        text-align: center;
        margin-bottom: 60px;
        border-bottom: 1px solid #eee;
    }

    .section.service_details {
        padding-top: 0;
        background-color: #fff;
    }

    .sidebar-bg {
        background: transparent;
        padding: 0;
    }

    .sidebar-wrapper {
        position: sticky;
        top: 100px; 
        z-index: 10;
    }

    .nav-tabs {
        border: none;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .nav-tabs .nav-item {
        width: 100%;
        margin-bottom: 0;
    }

    .nav-tabs .nav-link {
        color: var(--secondary);
        background: var(--white);
        border: 1px solid #e9ecef;
        font-weight: 600;
        font-size: 15px;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: var(--transition);
        width: 100%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        text-align: left;
        width: 100%;
    }

    .nav-tabs .nav-link i {
        font-size: 20px;
        color: var(--primary);
        opacity: 0.7;
        width: 25px;
        text-align: center;
    }

    .nav-tabs .nav-link:hover {
        transform: translateY(-2px);
        border-color: var(--primary);
        color: var(--primary);
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    }

    .nav-tabs .nav-link.active {
        background: var(--primary);
        color: var(--white) !important;
        border-color: var(--primary);
        box-shadow: 0 8px 20px rgba(5, 138, 216, 0.3);
        width: 100%;
    }

    .nav-tabs .nav-link.active i {
        color: var(--white);
        opacity: 1;
    }

    .tab-content {
        background: var(--white);
        padding: 25px;
        box-shadow: var(--shadow-soft);
        border: 1px solid #e9ecef;
        position: relative;
    }

    .tab-pane {
        animation: fadeInUp 0.4s ease;
        height: 100%; 
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .text-content-wrapper {
        margin-bottom: 15px;
        overflow: hidden; 
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .text-content-wrapper p {
        color: var(--text);
        line-height: 1.8;
        margin-bottom: 15px;
        font-size: 16px; 
        text-align: justify; 
        text-justify: inter-word;
    }

    .tab-pane h2 {
        font-weight: 800;
        font-size: 32px;
        margin-bottom: 20px;
        color: var(--secondary);
        line-height: 1.2;
    }

    .tab-pane h5 {
        font-weight: 700;
        margin-top: 20px;
        margin-bottom: 15px;
        color: var(--secondary);
        font-size: 18px;
    }

    .service-image-col {
        padding-right: 0;
    }
    
    .service-image-col img {
        width: 100%;
        height: 100%;
        min-height: 450px;
        max-height: 500px;
        object-fit: cover;
        box-shadow: var(--shadow-soft);
    }


    @media (max-width: 991px) {
        .sidebar-wrapper {
            position: static; 
            margin-bottom: 0px;
        }

        .nav-tabs {
            flex-direction: row; 
            overflow-x: auto;  
            white-space: nowrap;
            padding-bottom: 15px;
            gap: 10px;
            -ms-overflow-style: none;  
            scrollbar-width: none; 
        }

        .nav-tabs::-webkit-scrollbar {
            display: none;
        }

        .nav-tabs .nav-link {
            flex: 0 0 auto; 
            width: 100%;
            margin-right: 0;
            padding: 8px 15px;
        }

        .tab-content {
            padding: 20px;
            min-height: auto;
        }

        .tab-pane {
            height: auto;
        }

        .text-content-wrapper {
            height: auto;   
            overflow: visible; 
        }


        .service-image-col {
            margin-bottom: 0px;
            padding-right: 15px;
            order: -1; 
        }

        .row.g-5.align-items-center {
            align-items: flex-start !important;
        }

        .service-image-col img {
            min-height: 250px;
            max-height: 350px;
            width: 100%;

        }


    }