
      /* Toast */
         .jq-toast-wrap {
            z-index: 999999 !important;
        }

        .jq-toast-wrap .jq-icon-success {
            background-color: #71c016;

        }

        .jq-toast-wrap .jq-icon-warning {
            background-color: #ffc100;

        }

        .jq-toast-wrap .jq-icon-error {
            background-color: #fc5661;

        }/* Resimsiz, Yazı Odaklı Kart Tasarımı */
.hizmet-link-wrapper {
    text-decoration: none !important;
    display: block;
    min-height: 120px; 
    margin-bottom: 20px;
}

.hizmet-yazi-kart {
    background: #ffffff;
    margin-bottom: 20px;
    min-height: 120px; 
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hizmet-baslik {
    margin: 0;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Hover Efektleri - Primary Color Kullanımı */
.hizmet-yazi-kart:hover {
    border-color: var(--color-primary) !important;
    transform: translateY(-8px);
  
}

.hizmet-link-wrapper:hover .hizmet-baslik {
    color: var(--color-primary) !important;
}

/* Kartın altına şık bir çizgi efekti */
.hizmet-yazi-kart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.hizmet-yazi-kart:hover::after {
    width: 100%;
}
@media (max-width: 767px) {
    .hizmet-yazi-kart {
        margin-bottom: 10px;
    }
}
.bank-accounts-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 10px 20px -5px rgba(102, 126, 234, 0.4);
}

/* Banka Kartları Grid */
.bank-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Banka Kartı */
.bank-card-wrapper {
    perspective: 1000px;
}

.bank-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.bank-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 45px -10px rgba(102, 126, 234, 0.3);
}

/* Kart Header */
.bank-card .card-header {
    background: var(--color-primary);
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bank-card .card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bank-logo {
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.bank-logo img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    background: white;
    padding: 8px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bank-name {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Kart Body */
.bank-card .card-body {
    padding: 25px;
    flex: 1;
}

.account-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8fafd;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.detail-row:hover {
    background: #edf2f7;
    transform: translateX(5px);
}

.detail-label {
    min-width: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label i {
    color: #667eea;
    font-size: 16px;
    width: 20px;
}

.detail-value {
    font-size: 15px;
    color: #2d3748;
    font-weight: 500;
    word-break: break-all;
    flex: 1;
}

/* IBAN Özel Satır */
.iban-row {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fbbf24;
}

.iban-value {
    font-family: monospace;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Kopyala Butonu */
.copy-btn {
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.copy-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

/* Kart Footer */
.bank-card .card-footer {
    background: #f8fafd;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e2e8f0;
}

.badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.date {
    font-size: 12px;
    color: #94a3b8;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 40px;
}

.empty-state h3 {
    color: #2d3748;
    font-size: 24px;
    margin-bottom: 10px;
}

.empty-state p {
    color: #718096;
    font-size: 16px;
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.copy-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .bank-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .detail-row {
        flex-wrap: wrap;
    }
    
    .detail-label {
        min-width: 100%;
        margin-bottom: 5px;
    }
    
    .copy-btn {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .iban-row {
        padding-right: 50px;
    }
}

@media (max-width: 480px) {
    .bank-card .card-header {
        padding: 20px 15px;
    }
    
    .bank-logo img {
        max-width: 120px;
    }
    
    .bank-name {
        font-size: 18px;
    }
    
    .bank-card .card-body {
        padding: 20px;
    }
}


/* Resim Konteyneri: Sabit Yükseklik */
.urun-gorsel-container {
    height: 420px; /* Projeler için ideal yükseklik */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-radius: 8px 8px 0 0;
}

/* Görsel Ayarları */
.urun-gorsel {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Kare veya dikdörtgen fark etmeksizin alanı doldurur */
    transition: transform 0.5s ease;
}

/* Shine Efekti */
.urun-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
}

/* Hover İşlemleri */
.single-project-style-three:hover .urun-gorsel {
    transform: scale(1.1);
}

.single-project-style-three:hover .urun-shine {
    left: 150%;
    transition: left 0.8s ease-in-out;
}

.single-project-style-three {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Sayfalama stilleri */
.pagination-wrapper {
    margin-top: 40px;
    text-align: center;
}
.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    gap: 5px;
}
.pagination li a, .pagination li span {
    display: inline-block;
    padding: 10px 15px;
    background: #f5f5f5;
    color: #333;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.pagination li.active span {
    background: #007bff;
    color: #fff;
}
.pagination li a:hover {
    background: #007bff;
    color: #fff;
}
 .video-detail-showcase {
        margin-left: 15px;
        margin-right: 15px;
    }

    .video-detail__wrapper {
        background: #333;
        min-height: 600px;
        padding-top: 50px;
        padding-bottom: 150px;
    }

    .video-detail__header {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .video-detail__header .title {
        color: #ffffff;
        font-size: 28px;
        font-weight: 400;
    }

    .video-detail-player iframe {
        width: 100%;
        height: 530px;
    }

    @media (max-width: 767px) {
        .video-detail-player iframe {
            height: auto;
        }
    }

    @media (min-width: 768px) and (max-width: 991px) {
        .video-detail-player iframe {
            height: 400px;
        }
    }

    .video-detail-other-videos .heading {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background: var(--color-primary);
        height: 60px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 15px;
        padding-right: 15px;
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        margin: 0;
        font-family: var(--font-primary);
    }

    .video-detail-other-videos .heading .all-videos {
        text-transform: capitalize;
        font-size: 12px;
        color: #ffffff;
        opacity: .7;
        font-weight: 400;
    }

    .video-detail-other-videos .heading .all-videos:hover {
        text-decoration: underline;
    }

    .video-detail-list {
        overflow-y: auto;
        background: #212529;
        height: calc(530px - 60px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        margin: 0 !important;
        padding: 0 !important;

    }

    @media (min-width: 768px) and (max-width: 991px) {
        .video-detail-list {
            height: 340px;
        }
    }

    .video-detail-list li {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        -webkit-transition: .3s;
        transition: .3s;
        list-style: none;
        line-height: normal;
        margin: 0;
    }

    .video-detail-list li:last-child {
        border-bottom: 0 none;
    }

    .video-detail-list li:hover {
        background: rgba(0, 0, 0, 0.2);
    }

    .video-detail-list li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .video-detail-list .video-left {
        width: 110px;
        height: 70px;
        position: relative;
        margin-left: 10px;
        margin-right: 10px;
    }

    .video-detail-list .video-left img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .video-detail-list .video-left .icon {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.55);
        color: #ffffff;
        font-size: 16px;
    }

    .video-detail-list .video-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 5px;
        padding-right: 15px;
        font-family: var(--font-primary);
    }

    .video-detail-list .video-right .title {
        color: #ffffff !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-bottom: 0px !important;
        font-family: var(--font-primary);
    }

    .no-gutters>.col,
    .no-gutters>[class*=col-] {
        padding-right: 0;
        padding-left: 0;
    }

.about-image {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 0.25rem; /* Bootstrap "rounded" class'ı ile uyum için */
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%; /* Daha geriden başlasın ki çekince hemen bitsin */
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    
    /* Burası önemli: transition burada olursa çekince geri döner */
    transition: all 0.6s ease-in-out; 
    z-index: 1;
}

/* Mouse üzerine gelince */
.about-image:hover::before {
    left: 150%;
}

/* Görselin kendisi */
.about-image img {
    transition: transform 0.5s ease; /* Hafif bir zoom eklemek istersen */
}

.about-image:hover img {
    transform: scale(1.02); /* Çok hafif büyüme efekti şık durur */
}
.about-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}
.about-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
}
.about-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}
@media (max-width: 768px) {
    .about-title {
        font-size: 1.8rem;
        text-align: center;
    }
    .about-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.back-nav ul {
    list-style: none; /* Noktaları kaldırır */
    padding: 0;
    margin: 0;
    display: flex; /* Yan yana gelmelerini sağlar */
    align-items: center;
    gap: 10px; /* Öğeler arası boşluk */
}

.back-nav ul li {
    display: flex;
    align-items: center;
    color: #ffffff; /* Yazı rengi (arkaplana göre ayarla) */
    font-size: 14px;
}

/* Öğeler arasına ayırıcı işaret (>) ekleyelim */
.back-nav ul li:not(:last-child)::after {
    content: "/"; /* FontAwesome sağ ok ikonu veya sadece "/" yazabilirsin */
    font-family: "Font Awesome 5 Free"; /* Temanda yüklü değilse "/" kullan */
    font-weight: 900;
    margin-left: 10px;
    opacity: 0.5;
}

.back-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.back-nav ul li a:hover {
    opacity: 1;
  
}

/* Son öğe (aktif sayfa) hafif sönük veya farklı durabilir */
.back-nav ul li:last-child {
    opacity: 0.6;
    pointer-events: none; /* Son öğe tıklanmasın */
}
/* Ana menü için güçlendirilmiş Kırmızı Gradient CSS */
ul.single-categories li a.active1 {
    /* Koyu kırmızıdan (#c0392b) canlı kırmızıya (#e74c3c) geçiş */
    background: linear-gradient(135deg, #c0392b, #e74c3c) !important;
    color: #fff !important;
    border-color: transparent !important;
    /* Gölgeyi kırmızımsı yaptık */
    box-shadow: 0 5px 15px -5px rgba(192, 57, 43, 0.6);
    position: relative;
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    width: 100%;
    padding-right: 22px; 
    box-sizing: border-box; 
    transition: all 0.3s ease; /* Genel geçiş yumuşatması */
}

ul.single-categories li a.active1 i {
    color: #fff !important;
    margin-left: auto; 
    transition: transform 0.3s ease; 
}

ul.single-categories li a i::before {
    color: #fff !important;
    margin-left: auto; 
    transition: transform 0.3s ease; 
}

ul.single-categories li a.active1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: rgba(255, 255, 255, 0.8); /* Saf beyaz yerine hafif transparan */
    border-radius: 0 4px 4px 0;
    pointer-events: none;
}

/* Hover efekti (Renklerin yerini değiştirerek parlama etkisi verir) */
ul.single-categories li a.active1:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    transform: translateX(8px);
    color: #fff !important;
    box-shadow: 0 8px 20px -5px rgba(231, 76, 60, 0.5);
}

/* Mobil görünüm */
@media (max-width: 576px) {
    ul.single-categories li a.active1 {
        background: linear-gradient(135deg, #c0392b, #e74c3c) !important;
        color: #fff !important;
        border: none !important;
    }
    
    ul.single-categories li a.active1 i {
        color: #fff !important;
    }
    
    ul.single-categories li a.active1::before {
        display: none;
    }
}
/* Ana menü için güçlendirilmiş CSS */
ul.single-categories li a.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 5px 15px -5px var(--color-primary);
    position: relative;
    display: flex; /* Flexbox kullan */
    align-items: center; /* Dikeyde ortala */
    justify-content: space-between; /* İçeriği yay, yazı solda ok sağda */
    width: 100%;
    padding-right: 22px; /* Sağdan biraz boşluk */
    box-sizing: border-box; /* Padding dahil genişlik hesabı */
}

ul.single-categories li a.active i {
    color: #fff !important;
    margin-left: auto; /* Otomatik sol margin ile sağa it */
    transition: transform 0.3s ease; /* İsteğe bağlı hover efekti */
}
ul.single-categories li a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: #fff;
    border-radius: 0 4px 4px 0;
    pointer-events: none;
}

/* Hover efekti */
ul.single-categories li a.active:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary)) !important;
    transform: translateX(8px);
    color: #fff !important;
}

/* Mobil görünüm */
@media (max-width: 576px) {
    ul.single-categories li a.active {
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)) !important;
        color: #fff !important;
        border: none !important;
    }
    
    ul.single-categories li a.active i {
        color: #fff !important;
    }
    
    ul.single-categories li a.active::before {
        display: none;
    }
}
.single-blog-area-one .thumbnail {
    position: relative;
    display: block;
    overflow: hidden; /* Parlamanın dışarı taşmaması için kritik */
    border-radius: 8px; /* Kartın köşeleri varsa burayı ona göre ayarla */
}

/* Parlama efektini oluşturacak katman */
.single-blog-area-one .thumbnail::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; /* Başlangıçta solda, görünmez alanda */
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg); /* Hafif yan durması için eğiyoruz */
    transition: none;
}

/* Karta hover yapıldığında (üzerine gelindiğinde) hareket başlasın */
.single-blog-area-one:hover .thumbnail::after {
    left: 150%; /* Sağdan dışarı çıkana kadar kaydır */
    transition: all 0.7s ease-in-out; /* Kayma hızı */
}

/* Görselin kendisi için küçük bir dokunuş (isteğe bağlı) */
.single-blog-area-one .thumbnail img {
    transition: transform 0.5s ease;
    display: block;
    width: 100%;
}

.single-blog-area-one:hover .thumbnail img {
    transform: scale(1.05); /* Parlama ile birlikte hafif zoom efekti */
}


.urun-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.2) 25%, 
        rgba(255,255,255,0.5) 50%, 
        rgba(255,255,255,0.2) 75%, 
        rgba(255,255,255,0) 100%);
    transform: skewX(-15deg);
    transition: left 0.8s ease;
    pointer-events: none;
}

.urun-gorsel-container:hover .urun-shine {
    left: 150%;
}

.urun-gorsel-container:hover .urun-gorsel {
    transform: scale(1.03);
}

.why-choose-us-area .container {
    max-width: 1140px;
}

.single-why-choose-four {
    position: relative;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}


.single-why-choose-four .thumbnail {
    display: block;
    width: 100%;
    height: 280px; 
    overflow: hidden;
}

.single-why-choose-four .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: 0.5s all ease;
}


.single-why-choose-four::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; 
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 5;
    transition: left 0.5s ease-in-out;
}

.single-why-choose-four:hover::before {
    left: 150%; 
    transition: left 0.5s ease-in-out; 
}

.single-why-choose-four:hover .thumbnail img {
    filter: brightness(0.85);
    transform: scale(1.05); 
}


.inner-content {
    padding: 15px;
}

.inner-content .title {
    font-size: 18px !important; 
    margin-bottom: 10px;
}
   /* ikon alanı */
.header-icons{
    display:flex;
    align-items:center;
    gap:14px;
    margin-right:25px; /* sağ boşluk */
}

/* ikon butonu */
.icon-btn{
    position:relative;
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f3f3f3;
    font-size:18px;
    color:#222;
    transition:all .3s ease;
}

/* hover */
.icon-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-3px);
}

/* sepet hover animasyonu */
.cart-btn:hover i{
    animation:cartShake .5s ease;
}

@keyframes cartShake{
    0%{transform:rotate(0)}
    25%{transform:rotate(-10deg)}
    50%{transform:rotate(10deg)}
    75%{transform:rotate(-6deg)}
    100%{transform:rotate(0)}
}

/* sepet sayısı */
.cart-count{
    position:absolute;
    top:-6px;
    right:-6px;
    min-width:19px;
    height:19px;
    padding:0 5px;
    border-radius:50px;
    background:#ff3d3d;
    color:#fff;
    font-size:11px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 3px 8px rgba(0,0,0,0.25);

    animation:bounceCart 2s infinite;
}

/* sayı animasyonu */
@keyframes bounceCart{
    0%,100%{transform:scale(1)}
    50%{transform:scale(1.2)}
}

/* Floating kapsayıcı */
.mobile-floating-switcher {
    position: fixed;
    right: 15px;
    bottom: 100px;
    display: none; /* Mobilde açılacak */
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
}

/* Ortak Buton Görünümü */
.mobile-floating-switcher a {
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    /* Alt kısma ince renkli bir vurgu */
    border-bottom: 3px solid var(--color-primary);
}

/* İçindeki tüm spanları sıfırla ve ortala */
.mobile-floating-switcher a span {
    margin: 0 !important; /* Satır içi marginleri devre dışı bırakır */
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
}

/* Bayrak ikonları için özel boyut */
.mobile-floating-switcher a span[class^="flag-icon-"] {
    width: 24px !important;
    height: 18px !important;
    border-radius: 2px;
}

/* Kur metni (TL, USD vs.) */
.mobile-floating-switcher a .currency-text {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #333 !important;
}

/* Hover & Hareket */
.mobile-floating-switcher a:hover {
    transform: scale(1.1);
    background: #fdfdfd;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Shine Efekti */
.mobile-floating-switcher a::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50px;
    height: 200%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(25deg);
    transition: 0.6s;
}

.mobile-floating-switcher a:hover::after {
    left: 150%;
}


/* Select Genel Yapısı */
.custom-select-nav {
    background-color: #333;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 2px 5px;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    height: 30px;
}

/* Kur Seçiciye Özel Renk (Senin Tema Rengin) */
.kur-style {
    color: #fff;
    border-color: #fff; /* %40 şeffaflık */
}

.custom-select-nav:hover {
    border-color: #fff;
    background-color: #333;
}

/* Yan yana durmaları için li ayarı */
.nav-item-select {
    display: inline-flex;
    align-items: center;
    padding: 0 5px;
    list-style: none;
}
/* thumbnail kapsayıcı */
.rts-blog-h-2-wrapper a.thumbnail{
    position: relative;
    display: block;
    overflow: hidden;
}

/* resim zoom */
.rts-blog-h-2-wrapper a.thumbnail img{
    width: 100%;
    transition: transform .6s ease;
}

/* hover zoom */
.rts-blog-h-2-wrapper:hover a.thumbnail img{
    transform: scale(1.1);
}

/* beyaz şerit */
.rts-blog-h-2-wrapper a.thumbnail:after{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:50%;
    height:100%;
    background:linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
    transform:skewX(-25deg);
}

/* hover animasyonu */
.rts-blog-h-2-wrapper:hover a.thumbnail:after{
    animation: shine 0.9s;
}

@keyframes shine{
    100%{
        left:125%;
    }
}
.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.team-image-wrapper {
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.team-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.team-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Beyaz şerit efekti */
.image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    z-index: 2;
    pointer-events: none;
}

.team-image-wrapper:hover .image-shine {
    left: 150%;
}

.team-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Sosyal medya ikonları */
.team-social {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.team-social .main {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 11;
}

.team-social .main i {
    font-size: 20px;
    color: #333;
    transition: transform 0.3s ease;
}

.team-social:hover .main {
    background: #ff4b3a;
}

.team-social:hover .main i {
    transform: rotate(45deg);
    color: #fff;
}

.team-social-icons {
    position: absolute;
    bottom: 60px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-social:hover .team-social-icons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-icon:hover {
    transform: translateX(-5px);
    color: #fff;
}

/* Sosyal medya renkleri */
.social-icon.facebook {
    background: #3b5999;
}
.social-icon.facebook:hover {
    background: #2d4474;
}

.social-icon.twitter {
    background: #55acee;
}
.social-icon.twitter:hover {
    background: #3a8ace;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
}
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #d67c1f, #b21c5c, #7a1b9a, #3643b5);
}

.social-icon.linkedin {
    background: #0077b5;
}
.social-icon.linkedin:hover {
    background: #005a8c;
}

.social-icon.youtube {
    background: #cd201f;
}
.social-icon.youtube:hover {
    background: #a61b1a;
}

.left-thumbnail-about-area-two {
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* İsteğe bağlı köşe yuvarlama */
}

.left-thumbnail-about-area-two img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover efekti */
.left-thumbnail-about-area-two:hover img {
    transform: scale(1.05); /* %5 büyüme */
}

/* Beyaz şerit efekti */
.left-thumbnail-about-area-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    z-index: 2;
    pointer-events: none; /* Tıklanmayı engelleme */
}

.left-thumbnail-about-area-two:hover::before {
    left: 150%;
}

/* Ana Bölme Ayarı */
.hizmet-card-section {
    margin-top: 5% !important;
}

/* Kartların Birbirine Yakınlığı */
.hizmet-card-slider-wrapper .swiper-slide {
    padding: 0 10px;
}

/* Kart Genel Yapısı */
.hizmet-card-item {
    background: transparent; /* Arka planı transparan yaptık çünkü içerik kutusu beyaz olacak */
    border-radius: 12px;
    overflow: visible; /* İçeriğin taşmasına izin veriyoruz */
    transition: all 0.3s ease;
    width: 100%;
}

/* Resim Kutusu */
.hizmet-card-image {
    position: relative;
    overflow: hidden;
    height: 320px; /* Resim yüksekliği bir tık artırıldı ki yazı üzerine binince dengeli dursun */
    border-radius: 12px; /* Resmin kendi köşeleri oval */
    background: #f0f0f0;
    z-index: 1;
}

.hizmet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* Git-Gel Beyaz Şerit Efekti */
.hizmet-card-shine {
    position: absolute;
    top: 0;
    left: -130%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 5;
    transition: left 0.6s ease-in-out;
}

/* YAZI ALANI - Resmin Üstüne Çıkan Kısım */
.hizmet-card-content {
    background: #ffffff;
    padding: 20px;
    margin: -40px 15px 0 15px; /* ÜST MARJ NEGATİF: Yazıyı 40px yukarı çektik */
    position: relative;
    z-index: 10; /* Resmin üstünde görünmesi için */
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Yazı kutusuna derinlik verdik */
    transition: all 0.3s ease;
}

.hizmet-card-title {
    font-size: 20px !important;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 8px;
    display: block;
    line-height: 1.2;
}

.hizmet-card-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover Durumları */
.hizmet-card-item:hover .hizmet-card-content {
    transform: translateY(-5px); /* Hoverda yazı kutusu biraz daha yükselsin */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.hizmet-card-item:hover .hizmet-card-image img {
    transform: scale(1.1);
}

.hizmet-card-item:hover .hizmet-card-shine {
    left: 160%;
}
.single-service-style-three {
    transition: all 0.2s ease;
}

.single-service-style-three:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
/* Resimleri aynı boy yap */
.custom-project-card .thumbnail{
    position: relative;
    display: block;
    overflow: hidden;
    height: 420px; /* tüm resimlerin yüksekliği */
}

.custom-project-card .thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* resim kırpılır ama oran bozulmaz */
    transition: transform .5s ease;
}

/* Hover zoom */
.custom-project-card:hover .thumbnail img{
    transform: scale(1.08);
}

/* Beyaz ışık efekti */
.project-shine-effect{
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.45) 50%,
        rgba(255,255,255,0) 100%
    );
    transform:skewX(-25deg);
}

.custom-project-card:hover .project-shine-effect{
    animation: shineMove .9s;
}

@keyframes shineMove{
    100%{
        left:130%;
    }
}

.rts-banner-area-two {
    position: relative;
    overflow: hidden;
    min-height: 600px; /* Yükseklik ayarı */
    display: flex;
    align-items: center;
}

.rts-banner-area-two .container {
    position: relative;
    z-index: 10; /* Yazıların video üzerinde görünmesi için */
    width: 100%;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Video overlay - yazıların daha iyi görünmesi için */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Siyah yarı saydam katman */
    z-index: 2;
}

/* Banner içeriği */
.banner-inner-two-content {
    position: relative;
    z-index: 11;
    color: #fff;
}

.banner-inner-two-content .title {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-inner-two-content .disc {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Resimli slider için arkaplan */
.rts-banner-area-two.bg_image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Buton stilleri */
.rts-btn {
    position: relative;
    z-index: 11;
}

.gallery-bg {
    margin-top: 5%!important;
}

.service-thumbnail {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 380px; 
    height: 285px; 
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.service-thumbnail:hover .service-image-container img {
    transform: scale(1.1);
}


.service-image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    z-index: 3;
    pointer-events: none;
}

.service-thumbnail:hover .service-image-shine {
    left: 150%;
}


.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.service-thumbnail:hover .service-image-overlay {
    opacity: 0.85;
}


.service-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 18px 18px;
    z-index: 2;
    color: white;
    transform: translateY(0);
    transition: transform 0.4s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    border-radius: 0 0 12px 12px;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.service-description {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 12px 0;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transform: translateY(0);
    transition: transform 0.3s ease 0.05s;
}


.service-hover-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-thumbnail:hover .service-hover-icon {
    opacity: 1;
    transform: translateY(0);
}


.service-thumbnail:hover .service-title {
    transform: translateY(-3px);
}

.service-thumbnail:hover .service-description {
    transform: translateY(-3px);
}

.swiper-compact {
    max-width: 100%;
    padding: 10px 20px !important;
}

.swiper-compact .swiper-slide {
    width: 380px !important; 
    margin-right: 25px;
}

.swiper-paginations {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.project-style-one-wrapper {
    padding: 10px 0 30px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .service-image-container {
        width: 340px;
        height: 255px;
    }
    
    .swiper-compact .swiper-slide {
        width: 340px !important;
    }
}
    @media (max-width: 991px) {
    /* Header top alanının sayfa ile inmesini engeller */
    .header-top-one-wrapper {
        position: relative !important; 
        top: 0 !important;
        z-index: 10;
    }

  

     .service-image-container {
        width: 300px;
        height: 225px;
    }
    
    .swiper-compact .swiper-slide {
        width: 300px !important;
        margin-right: 20px;
    }
    .nav-item-select {
        margin: 8px 0 10px 80px;

    }
 .mobile-floating-switcher {
        display: flex;
    }

}

@media (max-width: 767px) {
     .service-image-container {
        width: 280px;
        height: 210px;
    }
    
    .swiper-compact .swiper-slide {
        width: 280px !important;
    }
    
    .service-content-overlay {
        padding: 20px 15px 15px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-hover-icon {
        width: 35px;
        height: 35px;
    }
     .hizmet-card-image { height: 200px; }
    .hizmet-card-content { margin: -30px 10px 0 10px; padding: 15px; }
    .hizmet-card-title { font-size: 18px !important; }
   
    .header-top-area-wrapper .header-top-one-wrapper .left {
        display:none;
    }

    .header-top-area-wrapper .header-top-one-wrapper .right .top-nav {
       display:none; 
    }

     .team-social-icons {
        flex-direction: row;
        bottom: 70px;
        right: 0;
        flex-wrap: wrap;
        justify-content: flex-end;
        max-width: 200px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .team-social .main {
        width: 40px;
        height: 40px;
    }
    
    .team-social .main i {
        font-size: 16px;
    }


}

@media (max-width: 576px) {
    .service-image-container {
        width: 260px;
        height: 195px;
    }
    
    .swiper-compact .swiper-slide {
        width: 260px !important;
    }
    
    .service-description {
        -webkit-line-clamp: 1;
        margin-bottom: 8px;
    }
    
    .service-hover-icon {
        width: 32px;
        height: 32px;
    }
    
    .service-hover-icon svg {
        width: 18px;
        height: 18px;
    }
}