/* ------------------- Genel Ayarlar ------------------- */
html {
    scroll-padding-top: 180px;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background: #000;
    color: rgba(130, 130, 132, 255);
    padding-top: 180px;
    background-image: url('images/arkaplan1.jpg'); /* arka plan resmi yolu */
    background-size: cover;       /* resmi ekranı tamamen kaplayacak şekilde ölçeklendirir */
    background-position: center;  /* resmi ortalar */
    background-repeat: no-repeat; /* tekrarlamayı kapatır */
    background-attachment: fixed; /* sayfa kaydırılsa bile sabit kalır */
}

/* ------------------- Sabit Header ------------------- */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 11, 11, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 50px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.fixed-header .logo {
    width: 150px;
    transition: transform 0.3s;
}
.fixed-header .logo:hover {
    transform: scale(1.1) rotate(-5deg);
}
.fixed-header h1 {
    font-size: 2rem;
    color: #ffffff6c;
    margin: 5px 0;
    text-align: center;
    transition: transform 0.3s;
}
.fixed-header h1:hover {
    transform: scale(1.1);
}
.fixed-header .main-menu ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}
.fixed-header .main-menu ul li a {
    text-decoration: none;
    color: #ffffffc7;
    font-weight: bold;
    transition: color 0.3s, transform 0.3s;
}
.fixed-header .main-menu ul li a:hover {
    color: #5b1b1b;
    transform: scale(1.1);
}

/* ------------------- Bölümler ------------------- */
section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 900px;
}
section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s, color 0.3s;
}
section h2:hover {
    transform: scale(1.1);
    color: #b9b5b5;
}
section p {
    font-size: 1.2rem;
    text-align: center;
}

/* Biz Kimiz (Hakkımızda) */
#biz-kimiz {
    background: linear-gradient(145deg, #181818, #0e0e0e);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    max-width: 900px;
    margin: 40px auto;
    transition: transform 0.3s, box-shadow 0.3s;
}
#biz-kimiz:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
}
#biz-kimiz h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}
#biz-kimiz p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: justify;
}
.box-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    max-width: 1000px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.about-text {
    flex: 1 1 400px;
    color: #ccc;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}
.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.about-charts {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.chart {
    text-align: center;
    color: #fff;
}
.circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
    background: conic-gradient(#00aaff 0deg, #000000 0deg);
    box-shadow: 0 0 20px #00aaff, 0 0 40px #13c0ff;
    transition: box-shadow 0.3s, transform 0.3s;
}
.circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px #00aaff, 0 0 50px #fff;
}


/* ------------------- Galeri ------------------- */
.galeri-wrapper {
    width: 90%;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.galeri-container {
    display: flex;
    transition: transform 1s ease-in-out;
    align-items: center;
}
.galeri-container img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 10px;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 20px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}

/* ------------------- İletişim ------------------- */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}
.phone-icon {
    width: 35px;
    height: 35px;
    transition: transform 0.3s;
}
.phone-icon:hover {
    transform: scale(1.2);
}
.social-icons {
    display: flex;
    gap: 20px;
}
.social-icons a img {
    width: 45px;
    height: 45px;
    filter: grayscale(50%);
    transition: transform 0.3s, filter 0.3s;
    cursor: pointer;
}
.social-icons a:hover img {
    transform: scale(1.5) rotate(-10deg);
    filter: grayscale(0%) brightness(1.2);
}
.address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    text-align: center;
}
.location-icon {
    width: 25px;
    height: 25px;
}

/* Map */
.map-section {
    display: flex;
    justify-content: center; /* Yatayda ortalar */
    align-items: center; /* Dikeyde ortalar */
    width: 100%;
    margin-top: 40px; /* Üst boşluk bırakır */
}

.map-section iframe {
    width: 100%; /* Kapsayıcısına (div) göre genişler */
    max-width: 600px; /* Maksimum genişliği belirler */
    height: 450px;
    border-radius: 20px; /* Köşeleri yuvarlar */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Hafif gölge ekler */
}

/* Telefonlar için küçük ekran ayarı */
@media (max-width: 768px) {
    .map-section iframe {
        height: 300px; /* Yüksekliği küçültür */
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
}

/* ------------------- FLOATING MENÜ ------------------- */
.floating-menu {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.menu-toggle {
    width: 70px;
    height: 70px;
    cursor: pointer;
    border-radius: 50%;
    background: transparent;
    padding: 10px;
    animation: jump 1s ease-in-out infinite;
}

.menu-items {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    gap: 15px;
}

.menu-items img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-items img:hover {
    transform: scale(1.2) rotate(-10deg);
    background: #5b1b1b;
}

.phone-dropdown {
    position: relative;
}

.phone-dropdown img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    transition: transform 0.3s;
}

.phone-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 50px;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    width: max-content;
    z-index: 100;
}

.dropdown-content a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 5px 0;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
}

/* Bu blok, dosyanın en altında olmalı */
@media (max-width: 768px) {
    .floating-menu {
        bottom: 10px;
        left: 10px;
        z-index: 1001;
        display: flex; 
    }
}

/* RANDVU KUTUSU STİLİ */
.appointment-box {
    position: fixed;
    bottom: 20px;             /* ekranın altından 20px yukarıda */
    right: 20px;              /* sağdan 20px içeride */
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* gradient ile modern görünüm */
    color: #fff;
    padding: 14px 20px;
    border-radius: 20px;
    font-size: 1rem;
    max-width: 220px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: box-bounce 2s infinite;
}

/* Hover efekti */
.appointment-box:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
}

/* Metin stili */
.appointment-box span {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: underline;
}

/* Bildirim ikonu */
.notif-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: icon-bounce 1.5s infinite;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ------------------- Animasyonlar ------------------- */
@keyframes jump {
    0% { transform: translateY(0); }
    30% { transform: translateY(-15px); }
    50% { transform: translateY(0); }
    70% { transform: translateY(-7px); }
    100% { transform: translateY(0); }
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-15deg); }
    50% { transform: translateY(-8px) rotate(10deg); }
    75% { transform: translateY(-5px) rotate(-5deg); }
}

@keyframes box-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@media (max-width: 768px) {
    #appointmentBox {
        display: block;
    }
}

/* ------------------- Brand Icons ------------------- */
.brand-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px auto;
    max-width: 1000px;
    position: relative;
}
.brand-icons a {
    flex: 1 1 100px;
    max-width: 120px;
    height: 80px;
    background: #0d0d0d;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.brand-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}
.brand-icons a img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s, filter 0.3s;
}
.brand-icons a:hover img {
    filter: brightness(1.5);
}

/* ------------------- Hizmetler ------------------- */
.services {
    padding: 60px 20px;
    text-align: center;
}
.services h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Hizmetler Bölümü - Ana Container */
.services-container {
    display: flex; /* Öğeleri yan yana sıralamak için */
    flex-wrap: wrap; /* Ekran darsa alt satıra geçmesini sağlamak için */
    justify-content: center; /* Öğeleri yatayda ortala */
    gap: 25px; /* Kartlar arasında boşluk bırak */
    max-width: 1200px; /* Maksimum genişliği ayarla */
    margin: 0 auto; /* Sayfada ortala */
}

/* Hizmet Kartlarının Stili */
.hizmet-karti {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a); /* Koyu gradyan arka plan */
    padding: 25px 40px; /* İç boşluğu ayarla */
    border-radius: 15px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(93, 87, 87, 0.6), 0 0 15px rgba(255, 255, 255, 0.05) inset; /* Gölge efektini güçlendir */
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    min-width: 200px;
    flex: 1 1 calc(33.333% - 25px); /* Kartların eşit genişlikte olmasını sağlar */
    box-sizing: border-box; /* Padding'in genişliğe dahil olmasını sağlar */
}

.hizmet-karti:hover {
    transform: translateY(-8px); /* Fare üzerine gelince hafifçe yukarı kalkma */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 255, 255, 0.1) inset; /* Hover'da gölgeyi güçlendir */
}

.hizmet-karti h3 {
    font-size: 1.4rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    margin: 0;
}

.hizmet-karti p {
    font-size: 1rem;
    line-height: 1.4;
    color: #d3d3d3;
    margin: 10px 0 0 0;
}


/* ------------------- Slider ------------------- */
.slider-container {
    height: 450px; /* Sabit yükseklik */
    width: 100%; /* 🔹 500% yerine 100% */
    max-width: 1000px; /* 🔹 İsteğe bağlı: genişlik sınırı koyar */
    margin: 0 auto; /* 🔹 Ortalamak için */
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    aspect-ratio: unset; /* 🔹 Sabit oranı kaldır */
}

.slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
    
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Resmi kırpmadan küçültür */
    margin: 0 auto;
    display: block;


}

.slide:hover img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.caption {
    position: absolute;
    top: 35px;
    left: 50px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffffd2;
    font-size: 28px;
    font-weight: bold;
    border-radius: 15px;
    font-family: 'Bebas Neue', cursive;
    text-shadow: 2px 2px 10px rgba(94, 86, 86, 0.338);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.778);
}

.slide.active .caption {
    opacity: 1;
    transform: translateY(0);
}

.slide:hover .caption {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(0) scale(1.05);
    transition: all 0.25s ease;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}


/* ------------------- Background Hizmetler ------------------- */
.hizmetler-bg {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg-image-container {
    width: 100%;
    height: 120%;
    position: absolute;
    top: 0;
    left: 1;
    overflow: hidden;
    z-index: -1;
}
.bg-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.2) contrast(3);
    transition: all 0.5s ease;
}
.bg-image-container:hover img {
    filter: brightness(1.3) contrast(4);
    box-shadow: 0 0 70px rgba(255, 255, 255, 0.4) inset;
}
.hizmetler-alt-bg {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg-image-alt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

/* ------------------- Genel Responsive Ayarlar ------------------- */
.bg-image, .bg-image-alt {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
}
.box-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}
.service-card img {
    object-fit: contain;
}
.slider-container {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* ------------------- Media Queries ------------------- */
/* ------------------- Media Queries ------------------- */
@media (max-width: 768px) {
    .hizmetler-bg {
        height: 400px;
    }
    .hizmetler-alt-bg {
        height: 250px;
    }
    .fixed-header {
        height: 200px;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 10px;
        box-sizing: border-box;
    }
    .fixed-header .logo {
        width: 120px;
    }
    .fixed-header h1 {
        font-size: 1.2rem;
        margin: 5px 0;
        text-align: center;
        width: 100%;
    }
    .fixed-header .main-menu {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    .fixed-header .main-menu ul {
        display: flex;
        justify-content: center;
        gap: 15px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .fixed-header .main-menu ul li a {
        font-size: 0.9rem;
        white-space: nowrap;
    }
    .brand-icons-container {
        position: absolute;
        bottom: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .brand-icons {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        width: 100%;
        justify-items: center;
    }
    .brand-icons a {
        width: 100%;
        max-width: 70px;
        height: 50px;
    }
    .appointment-box {
        position: fixed;
        top:auto;
        right: 10px;
        bottom: 20px;
        left: auto;
        padding: 8px 12px;
        max-width: 140px;
        font-size: 0.75rem;
        z-index: 1001;
        box-sizing: border-box;
    }
    @media (max-width: 768px) {
    #appointmentBox {
        display: block;      /* kutuyu görünür yapıyoruz */
        position: fixed;
        bottom: 20px;        /* ekranın altından 20px yukarıda */
        right: 10px;         /* sağdan 10px içeride */
        top: auto;           /* top'u iptal ediyoruz */
        max-width: 140px;    /* isteğe göre boyutu koruyoruz */
        z-index: 1001;
    }
    }
    .appointment-box span {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    .notif-icon {
        width: 30px;
        height: 30px;
    }
    .floating-menu {
        position: fixed;
        bottom: 10px;
        left: 10px;
        z-index: 1001;
        display: flex; /* Bu satır menüyü görünür yapar */
    }
    .hizmetler-karti {
        min-width: 90%;
        padding: 20px 30px;
    }
}

@media (max-width: 480px) {
    .hizmetler-bg {
        height: 25vh;
    }
    .fixed-header {
        height: 180px;
    }
    .fixed-header h1 {
        font-size: 1rem;
    }
    .fixed-header .main-menu ul {
        gap: 5px;
    }
    .brand-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
    .appointment-box {
        top: 400px;
        padding: 10px 12px;
        max-width: 130px;
        font-size: 0.65rem;
        right: 40px;
        left: auto;
    }
    .appointment-box span {
        font-size: 1rem;
    }
    .notif-icon {
        width: 25px;
        height: 25px;
    }
}

/* ------------------- Sponsorlarımız Bölümü ------------------- */
#sponsors {
    padding: 60px 20px;
    text-align: center;
    background: #000; /* Koyu arka plan */
    margin: 40px auto; /* Üst ve alt boşluklar */
    max-width: 900px; /* Genişlik sınırlaması */
    border-radius: 20px; /* Köşeleri yuvarla */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Gölgelendirme */
}

#sponsors h2 {
    font-size: 1.5rem;
    color:#ffffff6c; /* Beyaz başlık rengi */
    margin-bottom: 40px;
    transition: transform 0.3s, color 0.3s;
}

#sponsors h2:hover {
    transform: scale(1.05); /* Üzerine gelince biraz büyüt */
    color: #b9b5b5; /* Hafif griye dön */
}

.sponsors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Logolar arası boşluk */
    max-width: 1000px; /* Kapsayıcının maksimum genişliği */
    margin: 0 auto;
}

.sponsors-container a {
    flex: 1 1 100px; /* Esnek kutu ayarı */
    max-width: 320px; /* Maksimum logo genişliği */
    height: 100px; /* Logo kutusu yüksekliği */
    background: #0d0d0d; /* Logo arka plan rengi */
    border-radius: 10px; /* Köşeleri yuvarla */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Hafif gölge */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sponsors-container a:hover {
    transform: scale(1.1); /* Üzerine gelince büyüt */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7); /* Daha belirgin gölge */
}

.sponsors-container a img {
    max-width: 70%; /* Logo resmi genişliği */
    max-height: 70%; /* Logo resmi yüksekliği */
    object-fit: contain; /* Resmi kutuya sığdır */
    filter: brightness(1.1); /* Logoları hafifçe parlaklaştır */
    transition: transform 0.3s, filter 0.3s;
}

.sponsors-container a:hover img {
    filter: brightness(1.5); /* Üzerine gelince daha parlak yap */
}

/* Küçük ekranlar için düzenleme */
@media (max-width: 768px) {
    #sponsors {
        padding: 40px 15px;
        margin: 20px auto;
    }

    #sponsors h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .sponsors-container {
        grid-template-columns: repeat(3, 1fr); /* 3 sütunlu düzen */
        gap: 10px;
    }

    .sponsors-container a {
        max-width: 90px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .sponsors-container {
        grid-template-columns: repeat(2, 1fr); /* 2 sütunlu düzen */
        gap: 8px;
    }

    .sponsors-container a {
        max-width: 80px;
        height: 50px;
    }
}

/* ------------------- Responsive ------------------- */
@media (max-width: 768px) {
  .slider-container {
    height: 300px; /* 🔹 Tablet ve küçük ekranlarda biraz küçült */
    max-width: 95%; /* 🔹 Kenarlardan biraz boşluk bırak */
  }

  .caption {
    font-size: 20px; /* Yazılar da biraz küçülsün */
    top: 20px;
    left: 20px;
    padding: 10px 15px;
  }

  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 290px; /* 🔹 Telefon ekranlarında daha da küçült */
  }

  .caption {
    font-size: 16px;
    top: 15px;
    left: 15px;
    padding: 8px 12px;
  }

  .prev, .next {
    padding: 6px;
    font-size: 16px;
  }
}
