.service-details-section {
    position: relative;
    overflow: hidden;
}

.service-item .service-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--bs-orange-custom);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(245, 130, 32, 0.2);
}

.service-icon-wrapper img,
.service-icon-wrapper svg {
    max-width: 45px;
    height: auto;
}

.service-item h4 {
    color: #212529;
}

.tire-visual-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    pointer-events: none;
}

.tire-image {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 420px;
    height: auto;
    z-index: 2;
}

@media (max-width: 990px) {
    .tire-image {
        width: 140px;
        bottom: 0px;
        right: -22px;
    }
}


