/* Siyah-Beyaz Tema */
body {
    background-color: #000;
    color: #fff;
}

/* Yorumlar */
        .slider-container {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            width: 100%;
        }
        .slider {
            display: flex;
            gap: 20px;
            animation: scroll 20s linear infinite;
        }
.slide {
    flex: 0 0 auto;
    width: 320px;
    background: #ffffff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #f3f4f6;
    overflow: hidden; /* Taşan yazıları keser */
    text-overflow: ellipsis; /* ... şeklinde kısaltma yapar */
    white-space: nowrap; /* Metni tek satırda tutar */
}

.slide p {
    max-height: 50px; /* Taşmayı engelle */
    overflow: hidden; /* Fazla metni gizle */
    text-overflow: ellipsis;
    white-space: normal;
}
        .slide img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin: 0 auto 10px;
            object-fit: cover;
            border: 3px solid #ffcc00;
        }
        .stars {
            color: #ffcc00;
            font-size: 18px;
        }
        .business-name {
            font-weight: bold;
            color: #6366f1;
            font-size: 14px;
        }

        @keyframes scroll {
            from {
                transform: translateX(0%);
            }
            to {
                transform: translateX(-100%);
            }
        }
        /* */
        
@keyframes slide-loop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.slider-track {
    display: flex;
    flex-wrap: nowrap;
    animation: slide-loop 10s linear infinite;
}

.testimonial-card {
    transition: transform 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

/* Video Arkaplan */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

/* İstatistikler */
.hidden-element {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.progress-bar {
    width: 0;
    height: 6px;
    background-color: #fff;
    transition: width 2s ease-in-out;
}

/* Footer */
footer {
    background: black;
    text-align: center;
    padding: 20px 0;
    color: gray;
}

/* Sosyal Medya */
.social-icons a {
    font-size: 2rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: white;
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #f3f4f6;
}

.custom-shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-top .shape-fill {
    fill: #ffffff;
}

@keyframes carouselMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.animate-carousel {
    display: flex;
    width: 200%;
    animation: carouselMove 12s linear infinite;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}



.carousel-container {
    display: flex;
    white-space: nowrap; /* İçeriğin tek satırda kalmasını sağlar */
    overflow: hidden; /* Kayma efekti için taşanları gizler */
    width: 100%;
    padding: 1rem 0;
}

.testimonial {
    flex: 0 0 auto; /* Kartların küçülmesini engeller */
    max-width: 100%;
    transition: transform 0.3s ease-in-out;
}

.carousel-container::-webkit-scrollbar {
    display: none; /* Scroll bar gizlendi */
}

.carousel-item {
    flex: 0 0 auto;
    width: 280px;
    margin-right: 20px;
    transition: transform 0.3s ease-in-out;
}

.carousel-item:hover {
    transform: scale(1.05);
}

