/* Uygulama Alanları — statik HTML (uygulama-alanlari.html) ile aynı */

.application-areas-page > .custom-container > .row {
    --bs-gutter-x: 2.5rem;
}

@media (min-width: 992px) {
    .application-areas-page > .custom-container > .row {
        --bs-gutter-x: 5.5rem;
    }
}

.card-slider {
    position: relative;
    text-align: center;
}

.card-slider .swiper {
    height: 360px;
    overflow: hidden;
    border-radius: 6px;
}

.card-slider .swiper-slide {
    height: 100%;
}

.card-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    display: block;
}

.custom-next,
.custom-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
    border: none;
    padding: 0;
}

.custom-next {
    right: -30px;
}

.custom-prev {
    left: -30px;
}

@media (min-width: 992px) {
    .application-areas-page .card-slider .custom-next {
        right: -30px;
    }

    .application-areas-page .card-slider .custom-prev {
        left: -30px;
    }
}
   


.custom-next i,
.custom-prev i {
    font-size: 16px;
    line-height: 1;
    color: #ff0000;
}

.card-slider .card-title {
    margin-top: 10px;
    font-family: Mulish, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 28px;
    color: #232323;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .card-slider .swiper {
        height: 280px;
    }

    .card-slider .card-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .card-slider .swiper {
        height: 220px;
    }

    .card-slider .card-title {
        font-size: 18px;
    }

    .custom-next {
        right: 5px;
    }

    .custom-prev {
        left: 5px;
    }
}
