/* Slayt */
.slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
}

/* Responsive Slider */
section.h-96 {
    height: 50vh; /* Mobil için esnek yükseklik */
}

@media (min-width: 768px) {
    section.h-96 {
        height: 60vh; /* Masaüstü için daha büyük yükseklik */
        max-height: 600px; /* Maksimum yükseklik sınırı */
    }
}

@media (min-width: 1024px) {
    section.h-96 {
        height: 70vh; /* Büyük ekranlar için */
        max-height: 800px;
    }
}

/* Özellikler */
.feature-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 10px;
}

/* Sosyal Medya ve Videolar */
a.bg-blue-500 {
    font-size: 1.2rem;
    padding: 12px 16px;
    width: 100%;
    max-width: 300px;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

a.bg-blue-500:hover {
    transform: translateY(-3px);
    background-color: #2563eb;
}

iframe {
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    height: 225px;
}

/* Müşteri Yorumları */
section.bg-gray-100 .bg-white {
    transition: transform 0.2s;
}

section.bg-gray-100 .bg-white:hover {
    transform: translateY(-5px);
}

/* CTA Butonu */
a.bg-green-500 {
    font-size: 1.2rem;
    padding: 12px 24px;
    transition: transform 0.2s;
}

a.bg-green-500:hover {
    transform: translateY(-3px);
}

/* Footer Linkleri */
footer a {
    transition: color 0.2s;
}

footer a:hover {
    color: #93c5fd;
}