/* Hizmet kartları için stil */

.heroservices-absolute{
    position: absolute;
    z-index: 5;
    bottom: 0;
    left:0;
    height:104px;
    width:100%;
}

.heroservices-absolute:before{
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    height: calc(100% + 4px);
    --fade-start: 10%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) var(--fade-start), rgba(255, 255, 255, 1) 90%);
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
}

        

.heroservices-container {
    z-index: 2;
    position: relative;
    padding:0 4px;
}

.heroservice-item {
    position: relative;
    width: 100%;
    height: 100%;
    padding:10px 3px;
}

.service-card-wrapper {
    position: relative;
    width: 100%;
    /* aspect-ratio: 1/1; */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
    border:3px solid #c12f7a;
}

.service-card-wrapper .swiper-wrapper{
    height: 100%;
}

.service-card-wrapper img {
    width: 100%;
    /* height: 100%; */
    height: 100px;
    object-fit: cover;
    display: flex;
}

.service-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 15px 10px;
    text-align: center;
}

.service-title h4 {
    color: #ffffff;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}