@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
}

.scroll-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

    .scroll-animation.visible {
        opacity: 1;
        transform: translateY(0);
    }

.card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Tüm kartların eşit boyutta olmasını sağlar */
}

.card-img-top {
    height: 350px; /* Resimlerin aynı boyutta görünmesi için */
    object-fit: cover; /* Görsellerin boyutuna göre taşmadan sığmasını sağlar */
}

.card-body {
    flex-grow: 1; /* Kartın içindeki içeriğin esnek olmasını sağlar */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-text {
    flex-grow: 1; /* Açıklamanın esneyerek boşluğu doldurmasını sağlar */
}

.btn {
    margin-top: auto; /* Butonu en alta sabitler */
}

.testimonial {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçeriği yukarıdan aşağıya doğru yaymak için */
    height: 100%; /* Her testimonial'ın aynı boyutta olmasını sağlar */
    padding: 15px; /* İçeriği daha iyi hizalamak için boşluk ekleyelim */
    align-items: center; /* İçerikleri ortalamak için */
}

.rounded-circle {
    margin-bottom: 15px; /* Resim ve alıntı arasında boşluk oluşturur */
}


blockquote {
    flex-grow: 1; /* Alıntının esnek olmasını sağlar */
}

    blockquote p {
        font-style: italic; /* Alıntı metnini italik yapmak için */
    }

body {
    font-family: Montserrat, sans-serif;
    margin: 0;
    display: grid;
    font-size: 14px;
    grid-template-rows: auto 1fr auto;
    background-color: #ffffff;
    min-height: 100vh;
    opacity: 0; /* Başlangıçta görünmez */
    transition: opacity 0.5s ease-in-out; /* Geçiş süresi */
}

    body.loaded {
        opacity: 1; /* Yüklendiğinde görünür */
    }

.img-service {
    height: 400px; /* İstediğiniz sabit yükseklik */
    width: 100%;
    object-fit: cover; /* Resmin orantılı olarak kırpılması */
}

.wrapper {
    display: flex;
    max-width: 1200px;
    position: relative;
}

    .wrapper i {
        opacity: 0.5;
        transition: opacity 0.2s ease;
        top: 50%;
        height: 44px;
        width: 44px;
        color: #000000;
        cursor: pointer;
        font-size: 1.15rem;
        position: absolute;
        text-align: center;
        line-height: 44px;
        background: #fff;
        border-radius: 50%;
        transform: translateY(-50%);
    }

        .wrapper i:active {
            transform: translateY(-50%) scale(0.9);
        }

        .wrapper i:hover {
            background: #dbdbdb;
            opacity: 1;
        }

        .wrapper i:first-child {
            left: -22px;
            display: none;
        }

        .wrapper i:last-child {
            right: -22px;
        }

    .wrapper .carousel {
        font-size: 0px;
        cursor: pointer;
        overflow: hidden;
        white-space: nowrap;
        scroll-behavior: smooth;
    }

.carousel.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

    .carousel.dragging img {
        pointer-events: none;
        transform: scale(0.95);
    }

.carousel img {
    height: 350px;
    object-fit: cover;
    user-select: none;
    margin-left: 5px;
    width: calc(100% / 3);
    transition: transform 0.3s ease;
}

    .carousel img:first-child {
        margin-left: 0px;
    }

@media screen and (max-width: 900px) {
    .carousel img {
        width: calc(100% / 2);
    }
}

@media screen and (max-width: 550px) {
    .carousel img {
        width: 100%;
        margin-left: 5px;
    }
}

@media screen and (max-width: 768px) {
    .carousel img {
        pointer-events: none;
    }
}