.service-item {
    position: relative;
    break-inside: avoid;
    border-bottom: 1px solid #B9B9B9;
    transition: border-color 0.3s;
    overflow: hidden;
    padding: 20px 12px 0;
}

.service-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: #c5c5cb;
    transition: width 0.5s ease;
}

.service-item:hover {
    border-color: transparent;
}

.service-item:hover::after {
    width: 100%;
}

.service-item__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
}

.service-item__title h3 {
    color: var(--ced-grey-60);
    font-family: 'montserratbold';
    margin: 0;
}




@media screen and (min-width: 992px) {
    .service-item__content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }

    .service-item:hover .service-item__content {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        padding-top: 12px;
    }

    .services-offered {
        column-gap: 20px;
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: end;
    }


    .service-item__title h3 {
        font-size: 20px;
    }

}

@media screen and (max-width: 991px) {


    .service-item__title h3 {
        font-size: 18px;
    }

    .service-item__content {
        font-size: 15px;
        padding-top: 12px;
    }
}

/* Testimonial section start */
.image-testimonial-section {
    background-image: url('https://cedcommerce.com/wp-content/uploads/2025/05/Rectangle-11.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.review-wrapper {
    gap: 20px;
}

.review-author {
    font-size: 18px;
    color: var(--ced-grey-60);
    line-height: 30px;
}


.review-item p {
    font-size: 20px;
    font-family: 'montserratbold';
    color: var(--ced-black-color);
}

.review-item-wrapper {
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.review-item span {
    font-size: 14px;
    color: var(--ced-black-color);
}


.review-content {
    font-family: 'montserratbold';
    line-height: normal;
    color: var(--ced-black-color);
}


@media screen and (min-width: 1400px) {
    .review-content {
        font-size: 30px;
    }
}

@media screen and (min-width: 992px) {
    .review-wrapper {
        max-width: 82%;
    }
}

@media screen and (min-width:768px) and (max-width:1399px) {

    .review-content {
        font-size: 24px;
        line-height: 32px;
    }
}

@media screen and (max-width: 767px) {
    .review-content {
        font-size: 20px;
        line-height: 26px;
    }
}


@media screen and (max-width: 990px) {
    .media-card {
        order: -1;
        margin-bottom: 0px;
    }
}

.prerequisite-section::after {
    display: none;
}

/* @media screen and (min-width: 1200px) {
    #why-sell-slider .why-sell-card {
        padding: 20px;
    }
} */