
        /************************************/
        /***   17. Services Single css    ***/
        /************************************/

        .page-service-single {
            padding: 100px 0;
        }

        .service-sidebar {
            position: sticky;
            top: 30px;
            margin-right: 20px;
        }

        .service-catagery-list {
            border: 1px solid var(--background-accent-color);
            border-radius: 20px;
            margin-bottom: 60px;
            box-shadow: 0px 4px 30px 0px rgba(15, 23, 42, 0.04);
            overflow: hidden;
        }

        .service-catagery-list h3 {
            font-size: 20px;
            font-weight: 600;
            text-transform: capitalize;
            background-color: var(--accent-color);
            color: var(--white-color);
            padding: 20px 30px;
        }

        .service-catagery-list ul {
            list-style: none;
            margin: 0;
            padding: 30px;
        }

        .service-catagery-list ul li {
            border-bottom: 1px solid var(--divider-color);
            padding-bottom: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease-in-out;
        }

        .service-catagery-list ul li:last-child {
            margin: 0;
            padding: 0;
            border-bottom: none;
        }

        .service-catagery-list ul li a {
            position: relative;
            display: block;
            text-transform: capitalize;
            color: var(--text-color);
            transition: all 0.3s ease-in-out;
        }

        .service-catagery-list ul li a:hover {
            color: var(--accent-color);
        }

        .service-catagery-list ul li a::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            background: url(../../images/arrow-dark.svg) no-repeat;
            background-size: cover;
            width: 24px;
            height: 24px;
            transform: translateY(-50%);
            transition: all 0.3s ease-in-out;
        }

        .service-catagery-list ul li a:hover:before {
            transform: translateY(-50%) rotate(45deg);
        }

        .service-featured-image {
            margin-bottom: 30px;
        }

        .service-featured-image figure {
            display: block;
            border-radius: 40px;
            overflow: hidden;
        }

        .service-featured-image img {
            border-radius: 40px;
            width: 100%;
            aspect-ratio: 1 / 0.67;
            object-fit: cover;
        }

        .service-entry {
            margin-bottom: 40px;
        }

        .service-entry h2 {
            font-size: 50px;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .service-entry h2 span {
            font-weight: 700;
        }

        .service-entry p {
            margin-bottom: 20px;
        }

        .service-entry p:last-child {
            margin-bottom: 0;
        }

        .service-entry ul {
            padding: 0;
            margin-bottom: 40px;
            list-style: none;
            display: flex;
            gap: 20px 30px;
            flex-wrap: wrap;
        }

        .service-entry ul li {
            position: relative;
            width: calc(33.33% - 20px);
            color: var(--heading-color);
            text-transform: capitalize;
            padding-left: 40px;
        }

        .service-entry ul li::before {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            background: url(../../images/icon-check.svg) no-repeat center left;
            background-size: cover;
        }

        .service-entry-box {
            display: flex;
            gap: 80px 30px;
            flex-wrap: wrap;
            margin: 40px 0;
        }

        .service-entry-item {
            position: relative;
            width: calc(50% - 15px);
        }

        .service-entry-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--divider-color);
            height: 1px;
            width: 100%;
            transform: translateY(40px);
        }

        .service-entry-item:nth-last-child(-n + 2)::before {
            display: none;
        }

        .service-entry-item .icon-box {
            margin-bottom: 30px;
        }

        .service-entry-item .icon-box img {
            width: 50px;
            height: 50px;
        }

        .service-entry-item-content h3 {
            font-size: 20px;
            font-weight: 600;
            text-transform: capitalize;
            margin-bottom: 20px;
        }

        .service-entry-item-content p {
            margin-bottom: 0;
        }

        .service-entry-images {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .service-entry-img {
            width: calc(50% - 15px);
        }

        .service-entry-img figure {
            display: block;
            border-radius: 40px;
            overflow: hidden;
        }

        .service-entry-img img {
            width: 100%;
            aspect-ratio: 1 / 0.96;
            object-fit: cover;
            border-radius: 40px;
        }
    

/************************************/
/***       Responsive css        ***/
/************************************/

@media only screen and (max-width: 991px) {
    .page-service-single {
        padding: 50px 0;
    }

    .service-sidebar {
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .service-catagery-list {
        margin-bottom: 30px;
    }

    .service-catagery-list h3 {
        padding: 15px 30px;
    }

    .service-catagery-list ul li {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .service-featured-image {
        margin-bottom: 20px;
    }

    .service-featured-image figure {
        border-radius: 30px;
    }

    .service-featured-image img {
        aspect-ratio: 1 / 0.6;
        border-radius: 30px;
    }

    .service-entry {
        margin-bottom: 30px;
    }

    .service-entry h2 {
        font-size: 40px;
    }

    .service-entry-box {
        gap: 40px 30px;
        margin: 20px 0;
    }

    .service-entry-item::before {
        transform: translateY(20px);
    }

    .service-entry-item .icon-box {
        margin-bottom: 20px;
    }

    .service-entry-item .icon-box img {
        max-width: 40px;
    }

    .service-entry-item-content h3 {
        margin-bottom: 15px;
    }

    .service-entry-img figure,
	.service-entry-img img {
        aspect-ratio: 1 / 0.89;
        border-radius: 30px;
    }

}

@media only screen and (max-width: 767px) {
    .service-catagery-list h3 {
        font-size: 18px;
        padding: 15px 20px;
    }

    .service-catagery-list ul {
        padding: 20px;
    }

    .service-catagery-list ul li a::before {
        width: 20px;
        height: 20px;
    }

    .service-featured-image img {
        aspect-ratio: 1 / 0.85;
    }

    .service-entry h2 {
        font-size: 28px;
    }

    .service-entry-item {
        width: 100%;
    }

    .service-entry-item:nth-last-child(-n + 2)::before {
        display: block;
    }

    .service-entry-item:last-child::before {
        display: none;
    }

    .service-entry-item-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-entry ul {
        gap: 10px;
        margin-bottom: 30px;
    }

    .service-entry ul li {
        width: 100%;
        padding-left: 30px;
    }

    .service-entry ul li::before {
        width: 20px;
        height: 20px;
    }

    .service-entry-img {
        width: 100%;
    }

}
