﻿:after,
:before,
* {
    box-sizing: border-box;
}

.hero-slider {
    width: 100%;
    height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 500px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

/* ===== SAĞ ALT KÖŞE - SLIDER NUMARASI VE NAVİGASYON ===== */
.slider-bottom-right {
    position: absolute;
    right: 40px;
    bottom: 18vh;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

/* Büyük Slider Numarası */
.slider-number-display {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #fff;
    font-family: inherit;
}

    .slider-number-display .current-number {
        font-size: 40px;
        font-weight: 700;
        line-height: 1;
        opacity: 1;
        transition: all 0.4s ease;
    }

    .slider-number-display .separator {
        font-size: 24px;
        font-weight: 300;
        opacity: 0.5;
        margin: 0 5px;
    }

    .slider-number-display .total-number {
        font-size: 20px;
        font-weight: 400;
        opacity: 0.5;
    }

/* Navigasyon Butonları Container */
.slider-nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* NAVİGASYON BUTONLARI */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    position: relative;
    background: transparent;
    width: 45px;
    height: 45px;
    line-height: 42px;
    text-align: center;
    border: 2px solid #d4d3d3;
    border-radius: 55px;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
    /* Varsayılan Swiper pozisyonlarını sıfırla */
    left: auto;
    right: auto;
    top: auto;
    margin-top: 0;
    transform: none;
}

    /* Hover'da beyaz ışık/glow efekti - box-shadow ile */
    .hero-slider .swiper-button-prev:hover,
    .hero-slider .swiper-button-next:hover {
        border-color: #fff;
        box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.4), 0 0 60px 20px rgba(255, 255, 255, 0.2), 0 0 80px 30px rgba(255, 255, 255, 0.1);
    }

        .hero-slider .swiper-button-prev:hover:before,
        .hero-slider .swiper-button-next:hover:before {
            color: #fff;
        }

    .hero-slider .swiper-button-prev:before {
        font-family: "Font Awesome 5 Free";
        content: "\f060";
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

    .hero-slider .swiper-button-next:before {
        font-family: "Font Awesome 5 Free";
        content: "\f061";
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

/* Responsive - tablet */
@media (max-width: 991px) {
    .slider-bottom-right {
        right: 30px;
        bottom: 20vh;
    }

    .slider-number-display .current-number {
        font-size: 56px;
    }

    .slider-number-display .separator,
    .slider-number-display .total-number {
        font-size: 20px;
    }
}

/* Responsive - mobil */
@media (max-width: 767px) {
    .slider-bottom-right {
        right: 20px;
        bottom: 25vh;
        gap: 15px;
    }

    .slider-number-display .current-number {
        font-size: 42px;
    }

    .slider-number-display .separator,
    .slider-number-display .total-number {
        font-size: 16px;
    }

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        width: 38px;
        height: 38px;
        line-height: 35px;
    }

        .hero-slider .swiper-button-prev:before,
        .hero-slider .swiper-button-next:before {
            font-size: 13px;
        }
}

/* ===== PROGRESS BAR PAGINATION ===== */
.hero-slider .swiper-pagination-bullet {
    width: 4vw;
    height: 24px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
    position: relative;
    transition: opacity .3s ease;
    background: transparent !important;
    border-radius: 0;
    cursor: pointer;
}

    /* Numara */
    .hero-slider .swiper-pagination-bullet::before {
        content: attr(data-index);
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 6px;
        transition: color .3s ease;
    }

    /* Progress bar arka planı (track) */
    .hero-slider .swiper-pagination-bullet::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        overflow: hidden;
    }

    /* Progress bar dolum (fill) - artık ayrı bir element */
    .hero-slider .swiper-pagination-bullet .progress-fill {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 6px;
        background: #fff;
        border-radius: 2px;
        z-index: 1;
        transition: none;
    }

/* Aktif bullet */
.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

    .hero-slider .swiper-pagination-bullet-active::before {
        color: #fff;
    }

    /* Aktif bullet'ta progress animasyonu */
    .hero-slider .swiper-pagination-bullet-active .progress-fill {
        animation: progressFill 6500ms linear forwards;
    }

/* Tamamlanmış slide'lar (aktif olanın öncesindekiler) */
.hero-slider .swiper-pagination-bullet.completed .progress-fill {
    width: 100% !important;
    animation: none;
}

/* Henüz gösterilmemiş slide'lar */
.hero-slider .swiper-pagination-bullet:not(.completed):not(.swiper-pagination-bullet-active) .progress-fill {
    width: 0% !important;
    animation: none;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Hover efekti */
.hero-slider .swiper-pagination-bullet:hover {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
        /*     display: none; */
    }
}

.swiper-pagination {
    text-align: left;
    display: flex;
    gap: 15px;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 25vh;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 18vh;
    }
}

/* ===== Pagination Responsive ===== */
@media (max-width: 767px) {
    .hero-slider .swiper-pagination-bullet {
        width: 15vw;
        height: 20px;
    }

        .hero-slider .swiper-pagination-bullet::before {
            font-size: 10px;
            margin-bottom: 4px;
        }

        .hero-slider .swiper-pagination-bullet::after,
        .hero-slider .swiper-pagination-bullet .progress-fill {
            height: 3px;
        }

    .swiper-pagination {
        gap: 10px;
    }
}

/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
    height: 100vh;
    transition: all .4s ease;
}

@media (max-width: 991px) {
    .hero-style {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 500px;
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    max-width: 690px;
}

    .hero-style .slide-title h2 {
        font-size: 37px;
        font-weight: bold;
        line-height: 1;
        color: #ffffff;
        margin: 0 0 40px;
        text-transform: capitalize;
        transition: all .4s ease;
    }

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 30px;
        margin: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 28px;
        margin: 25px 0 30px;
    }
}

.hero-style .slide-text p {
    opacity: 0.9;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: normal;
    color: #ffffff;
    margin: 0 0 40px;
    transition: all .4s ease;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns > a:first-child {
    margin-right: 10px;
}

.overbg {
    background-color: rgba(0, 0, 0, 0.30);
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.hero-slider {
    position: relative;
}

.slider_top {
    margin-top: -18vh;
}

.bg_none {
    background: transparent !important;
}

    .bg_none .single-item {
        border-right: none !important;
        padding: 23px 20px 23px 20px !important;
    }

    .bg_none h6 {
        color: white !important;
    }

.bgIcons {
    margin-left: 10vw;
    margin-right: 10vw;
}

.bgcontainer {
    z-index: 9999;
    position: relative;
}

.bg_white {
    color: white;
}

.mainul {
    opacity: 0.3;
}

.bg_boy {
    max-height: 98px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.Mainiko {
    height: 30px;
}


/* =============================================
   SABİT İKON SATIRI - ŞEFFAF ARKA PLAN + GLOW
   ============================================= */

.icons-static-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
}

.icon-static-item {
    flex: 1;
    max-width: 200px;
    background: transparent;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

    .icon-static-item:last-child {
        border-right: none;
    }

    .icon-static-item a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        color: #fff;
        text-decoration: none;
        position: relative;
        z-index: 2;
    }

        .icon-static-item a:hover {
            color: #fff;
        }

    .icon-static-item .icon-box {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: transform 0.3s ease;
    }

        /* Hover'da beyaz ışık/glow efekti */
        .icon-static-item .icon-box::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 35%, transparent 65%);
            border-radius: 50%;
            transition: all 0.4s ease;
            z-index: -1;
        }

    .icon-static-item:hover .icon-box::before {
        width: 100px;
        height: 100px;
    }

    .icon-static-item .icon-box img.Mainiko {
        height: 32px;
        width: auto;
        transition: transform 0.3s ease;
        filter: brightness(0) invert(1);
    }

    .icon-static-item:hover .icon-box {
        transform: scale(1.1);
    }

    .icon-static-item h6 {
        font-size: 12px;
        font-weight: 600;
        margin: 0;
        line-height: 1.4;
        color: #fff !important;
        opacity: 0.85;
        transition: opacity 0.3s ease;
    }

    .icon-static-item:hover h6 {
        opacity: 1;
    }

/* Responsive */
@media (max-width: 991px) {
    .icons-static-row {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .icon-static-item {
        flex: 0 0 calc(33.333% - 10px);
        max-width: none;
        border-right: none;
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .icons-static-row {
        gap: 8px;
    }

    .icon-static-item {
        flex: 0 0 calc(50% - 6px);
        padding: 18px 10px;
    }

        .icon-static-item h6 {
            font-size: 11px;
        }

        .icon-static-item .icon-box img.Mainiko {
            height: 28px;
        }

        .icon-static-item:hover .icon-box::before {
            width: 70px;
            height: 70px;
        }
}


.hero-style .slide-btns .theme-btn {
    background: rgba(255, 255, 255, 0.0);
    color: #fff !important;
    border: none;
    padding: 8px 10px 0px 0px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    /* Pseudo element'leri devre dışı bırak */
    .hero-style .slide-btns .theme-btn:before,
    .hero-style .slide-btns .theme-btn:after {
        display: none;
    }

    /* Hover durumu */
    .hero-style .slide-btns .theme-btn:hover {
        text-decoration:underline;
        color: #fff !important;
    }

/* ===== VIDEO SLIDE STİLLERİ ===== */
.slide-video-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    overflow: hidden;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.slide-video-container .bgcontainer {
    z-index: 10;
    position: relative;
}

.slide-video-container .overbg {
    z-index: 5;
}

@media (max-width: 991px) {
    .slider_top {
        background-color: #252638;
        margin-top: -14vh;
    }
}
