.index-hero {
    position: relative;
    width: 100%;
    height: 450px;
    padding-top: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #f5f9ff 0%, #e6f0ff 100%);
}

.index-slider-container {
    display: flex;
    height: 100%;
}

.slider-item {
    position: relative;
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    background-color: rgba(220, 230, 255, 0.4); /* Arka plan renk buraya */
    border-radius: 12px;
    overflow: hidden;
    /* Ortalamak için flex kullan */
    display: flex;
    justify-content: center; /* Yatay ortala */
    align-items: center;
}

.slider-image {
    width: 90%;
    height: 90%;
    margin: 2px;
    object-fit: fill; /* Orantı bozulur, resim tam dolar */
    object-position: center;
    background-color: transparent; /* Kaldırıldı */
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.3s ease;
    display: block;
}




.index-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4e73df;
}

.index-prev-btn {
    left: 20px;
}

.index-next-btn {
    right: 20px;
}

.index-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

    .index-slider-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .index-slider-dots span.active {
            background: #4e73df;
            transform: scale(1.2);
        }

@media (max-width: 480px) {
    .index-hero {
        height: 240px;
        padding: 10px;
    }

    .slider-item {
        border-radius: 8px;
    }

    .slider-image {
        border-radius: 8px;
    }

    .index-slider-btn {
        width: 34px;
        height: 34px;
    }
}


/* Genel İçerik */
.index-modern-content-section {
    padding: 20px 0;
    background: #f8f9fc;
}

.index-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.index-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Kartlar */
.index-content-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

    .index-content-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

.index-announcements {
    border-top-color: var(--primary-color);
}

.index-news {
    border-top-color: var(--secondary-color);
}

.index-quick-access {
    border-top-color: var(--accent-color);
}

.index-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(to right, #f8f9fc, white);
}

.index-section-title {
    margin: 0;
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 600;
}

    .index-section-title i {
        margin-right: 10px;
        color: var(--primary-color);
    }

.index-news .index-section-title i {
    color: var(--secondary-color);
}

.index-quick-access .index-section-title i {
    color: var(--accent-color);
}

.index-view-all {
    font-size: 14px;
    color: #6e707e;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

    .index-view-all:hover {
        color: var(--primary-color);
        transform: translateX(3px);
    }

    .index-view-all i {
        margin-left: 5px;
        font-size: 12px;
    }

.index-scrollable-content {
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
}

/* Duyurular */
.index-announcement-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s;
}

    .index-announcement-item:hover {
        background: #f8f9fc;
    }

    .index-announcement-item:last-child {
        border-bottom: none;
    }

.index-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 8px;
    color: white;
    flex-shrink: 0;
}

.index-day {
    font-size: 18px;
    font-weight: bold;
}

.index-month {
    font-size: 12px;
    text-transform: uppercase;
}

.index-new-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--danger-color);
    color: white;
    font-size: 11px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-weight: 500;
}

.index-title {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #2e2e2e;
    font-weight: 600;
}

.index-excerpt {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: #6e707e;
    line-height: 1.5;
}

.index-read-more {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

    .index-read-more:hover {
        color: #224abe;
        transform: translateX(3px);
    }

    .index-read-more i {
        margin-left: 5px;
        font-size: 11px;
    }

/* Haberler */
.index-news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s;
}

    .index-news-item:hover {
        background: #f8f9fc;
    }

.index-news-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #f0f0f0;
    transition: transform 0.3s;
}

.index-news-item:hover .index-news-image {
    transform: scale(1.05);
}

/* Hızlı Erişim */
.index-access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
}

.index-access-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

    .index-access-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-color: transparent;
    }

    .index-access-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--color);
    }

.index-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 20px;
    transition: all 0.3s;
}

.index-access-item:hover .index-icon-wrapper {
    transform: rotate(15deg) scale(1.1);
}

.index-access-item span {
    font-size: 14px;
    color: #2e2e2e;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 600;
}

.index-access-item small {
    font-size: 12px;
    color: #6e707e;
}

/* Hızlı Linkler */
.index-clients {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
    text-align: center;
}

    .index-clients h2 {
        font-size: 32px;
        color: var(--dark-color);
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
    }

        .index-clients h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
        }

    .index-clients p {
        font-size: 16px;
        color: #6e707e;
        margin-bottom: 40px;
    }

.index-owl-brands {
    padding: 20px 0;
}

.index-brand-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s;
    border-top: 4px solid var(--brand-color);
}

    .index-brand-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    }

.index-brand-photo {
    padding: 25px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s;
}

.index-brand-card:hover .index-brand-photo {
    background: #f8f9fc;
}

.index-brand-photo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s;
}

.index-brand-card:hover .index-brand-photo img {
    filter: grayscale(0%);
    opacity: 1;
}

.index-brand-footer {
    padding: 15px;
    background: #f8f9fa;
    border-top: 1px solid #f0f0f0;
}

    .index-brand-footer .index-title {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        color: var(--dark-color);
    }

/* Carousel Navigation */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    transition: all 0.3s !important;
}

    .owl-nav button:hover {
        background: #224abe !important;
        transform: translateY(-50%) scale(1.1);
    }

    .owl-nav button.owl-prev {
        left: -20px;
    }

    .owl-nav button.owl-next {
        right: -20px;
    }

    .owl-nav button span {
        font-size: 26px;
        line-height: 0.5;
        position: relative;
        top: -2px;
    }
