* {
    box-sizing: border-box;
}

:root {
    --primary-color: #339999;
    --primary-dark: #287878;
    --primary-light: #66b2b2;
    --text-dark: #2b2e2e;
    --background-light: #f4f4f4;
    --accent-yellow: #ffc107;
    --menu-text-color: #1a1a1a;
}

body {
    color: var(--text-dark);
    background-color: #f3f3f3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}



.navbar-nav .nav-link {
    color: var(--menu-text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.navbar {
    background-color: #fff;
}

.navbar.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-toggle-no-icon::after {
    display: none !important;
}

.custom-dropdown {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 200px;
}

.nav-item.dropdown:hover .custom-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.custom-dropdown .dropdown-item {
    color: var(--menu-text-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.custom-dropdown .dropdown-item:hover {
    background-color: var(--primary-light);
    color: #fff;
}

/* Mobil özelleştirme  575.98px*/
@media (max-width: 1400px) {
    .container-fluid.general-pad {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }
}

@media (max-width: 1180px) {
    .container-fluid.general-pad {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        flex-direction: column !important;
    }
}

@media (max-width: 575.98px) {
    .navbar .container {
        flex-direction: column;
        align-items: center;
    }

    .navbar-toggler {
        align-self: center;
    }

    .navbar-brand,
    .navbar img {
        margin-bottom: 0.5rem;
    }

    .navbar-toggler {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/* Navbar için temel geçişler */
#mainNavbar {
    transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Scroll sonrası eklenecek 'sticky-active' sınıfı */
#mainNavbar.sticky-active {
    position: fixed;
    top: 0;
    /* Yukarıdan kayma efekti için başlangıçta ekran dışında olacak, animasyonla 0'a gelecek */
    left: 0;
    width: 100%;
    z-index: 1030;
    /* Diğer elementlerin üzerinde kalması için Bootstrap fixed-top z-index'i */
    background-color: #ffffff;
    /* Sabitlendiğinde arka plan rengi (banner-bg'yi ezecek) */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Hafif bir gölge */
    /* Sabitlendiğinde padding değerleri (py-4 sınıfını ezecek) */
    padding-top: 0.75rem !important;
    /* Bootstrap'in py-4 sınıfını ezmek için !important gerekebilir */
    padding-bottom: 0.75rem !important;
    transform: translateY(-100%);
    /* Başlangıçta yukarıda gizli (animasyon için) */
    animation: slideDownEffect 0.5s forwards ease-out;
    /* Animasyon tanımı */
}

@keyframes slideDownEffect {
    to {
        transform: translateY(0);
    }
}

.navbar-nav .nav-link {
    color: var(--menu-text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Navbar başlangıç arka planı eğer banner-bg ile gelmiyorsa burada tanımlanmalı */
/* .navbar { background-color: #fff; } eğer banner-bg yoksa */


.dropdown-toggle-no-icon::after {
    display: none !important;
}

.custom-dropdown {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 200px;
}

.nav-item.dropdown:hover .custom-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.custom-dropdown .dropdown-item {
    color: var(--menu-text-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.custom-dropdown .dropdown-item:hover {
    background-color: var(--primary-light);
    color: #fff;
}

/* Mobil özelleştirme  575.98px*/
@media (max-width: 1400px) {
    .container-fluid.general-pad {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }
}

@media (max-width: 1180px) {
    .container-fluid.general-pad {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

@media (max-width: 575.98px) {

    .navbar-toggler {
        align-self: center;
        /* Hamburger butonunu ortalamak için */
    }

    .navbar img {
        /* Logo için */
        margin-bottom: 0.5rem;
        /* Logonun altında boşluk */
    }

    .navbar-toggler {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}


/* Google Fonts - Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

/* Temel Stiller */
.main-content {
    height: 75vh;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.general-pad {
    padding: 0 12rem;
}

/* Yazı Stilleri */
.text-content {
    max-width: 40rem;
}

@media (max-width: 1180px) {
    .text-content {
        margin-top: 3rem;
    }
}

.mini-title {
    font-size: 1.6rem;
    letter-spacing: 4px;
    color: #555;
    font-weight: 300;
    margin-bottom: -1rem;
}

.main-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 1rem 0;
    line-height: 1.2;
}

.description {
    font-size: 1.3rem;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Animasyonlu Buton */
.btn-animated {
    display: inline-block;
    padding: 15px 40px;
    background-color: #339999;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.btn-animated:hover {
    transform: translateY(5px);
    box-shadow: 0 5px 15px rgba(51, 153, 153, 0.4);
}

/* GIF Container */
.gif-container {
    flex-shrink: 0;
}

/* Responsive Düzen */
@media (max-width: 1180px) {
    .main-content {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 5rem 0;
    }

    .container-fluid.main-content.general-pad {
        padding: 2rem 6rem 3rem 6rem !important;
    }


    .text-content {
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .description {
        max-width: 100%;
    }

    .gif-container img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .general-pad {
        padding: 0 3rem !important;
    }

    .mini-title {
        font-size: 1.5rem;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .description {
        font-size: 1.8rem;
    }

    .btn-animated {
        padding: 12px 30px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .general-pad {
        padding: 0 2rem !important;
    }

    .mini-title {
        font-size: 1.2rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1.4rem;
    }
}

.home-intro {
    background-color: #f3f3f3;
}

.hover-effect {
    width: 22rem;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
    background: white;
    overflow: visible;
    border-radius: 12px;
    padding-top: 180px;
    /* Görsele alan açmak için yukarıdan boşluk */
    margin: 4rem 0 4rem 0 !important;
}

.hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.image-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
    /* Hover gibi etkileşimler kartta kalsın */
}

.floating-image {
    width: 75%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .floating-image {
        width: 62%;
        max-width: 700px;
    }

    .hover-effect {
        padding-top: 60px;
    }

    .card-pt {
        padding-top: 24.3% !important;
    }
}

.card-pt {
    padding-top: 28.3%;
}




.title-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
}

.text-font {
    font-family: 'Montserrat', sans-serif;
}

.section-spacer {
    padding-top: 9rem;
    padding-bottom: 9rem;
}

.section-bg-1 {
    background-color: #f3f3f3;
}

.banner-bg {
    background-color: #ffffff;
}

.bg-def {
    background-color: #f3f3f3 !important;
}

.banner-text {
    font-size: 1.2rem;
}

/* 768px ve üzeri: üst boşluğu ayarla, içerikleri ortala */
@media (max-width: 768px) {
    .section-frst-left-side {
        padding-top: 12vh;
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: column;
        justify-content: center;
    }
}



.site-footer {
    position: relative;
    font-family: 'Poppins', sans-serif;
    /* Poppins fontunu kullandığınızdan emin olun */
    background-color: #fff;
    padding-top: 150px;
    /* Üstteki kutunun yüksekliği + boşluk için */
}

/* Üstteki "Call to Action" Kutusu */
.cta-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 1rem;
    /* 16px */
    padding: 2.5rem;
    /* 40px */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-text h2 {
    color: #1A202C;
    font-weight: 600;
    font-size: 1.75rem;
    /* 28px */
}

.cta-text p {
    color: #4A5568;
    font-size: 1rem;
    /* 16px */
}

/* Özel Ana Renk Butonu */
.btn-primary-custom {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
    /* 8px */
    transition: all 0.3s ease;
    background-color: #339999;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background-color: #297a7a;
    /* Ana rengin biraz koyusu */
    border-color: #297a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(51, 153, 153, 0.2);
}

/* Footer İçerik Başlıkları */
.widget-title {
    font-size: 0.875rem;
    /* 14px */
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    /* 16px */
    color: #339999;
}

/* Footer Linkleri */
.footer-links li {
    margin-bottom: 0.75rem;
    /* 12px */
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: #1a1a1a;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Abonelik Formu */
.input-group .form-control {
    border-radius: 0.5rem 0 0 0.5rem;
    padding: 0.75rem 1rem;
}

.input-group .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(51, 153, 153, 0.25);
}


.input-group .btn-primary-custom {
    border-radius: 0 0.5rem 0.5rem 0;
}

/* Mobil Cihazlar İçin Ayarlamalar */
@media (max-width: 991.98px) {
    .site-footer {
        padding-top: 120px;
    }

    .cta-box {
        position: relative;
        transform: translate(-50%, 0);
        margin-top: -80px;
        margin-bottom: 40px;
        width: 90%;
    }
}

@media (max-width: 767.98px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .site-footer {
        text-align: center;
    }

    .footer-widgets .row>div {
        margin-bottom: 2rem !important;
    }

    .input-group {
        max-width: 400px;
        margin: 0 auto;
    }
}

.splide__slide {
    /* Logoları slide içinde dikey ve yatay olarak ortalar */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    /* Slider'ın minimum yüksekliği */
}

.splide__slide img {
    max-width: 80%;
    /* Resmin slide'dan taşmamasını sağlar */
    /* Tüm logoların maksimum yüksekliğini sabitler */
    width: 120px !important;
    height: auto;

    filter: grayscale(1) hue-rotate(140deg) saturate(5);

    /* Filtre değişiminin yumuşak olması için transition ekliyoruz */

    /* --- YENİ KISIM BİTİŞ --- */
}

.splide__slide:hover img {
    /* Fare üzerine gelince tüm filtreleri kaldırarak logonun orijinal rengini gösterir */
    filter: none;
}

.splide__track {
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/**/

/* Blog Detail Page Styles */
.dtl-breadcrumb-area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    background-color: #339999;
}

.dtl-breadcrumb-content {
    text-align: center;
    color: white;
}

.dtl-breadcrumb-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    list-style: none;
    padding: 0;
}

.dtl-breadcrumb-item {
    display: flex;
    align-items: center;
}

.dtl-breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin: 0 0.5rem;
    color: rgba(255,255,255,0.7);
}

.dtl-breadcrumb-link {
    color: white;
    text-decoration: none;
}

.dtl-breadcrumb-active {
    color: white;
}

.dtl-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dtl-blog-section {
    padding: 5rem 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.dtl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dtl-content-wrapper {
    display: flex;
    justify-content: center;
}

.dtl-main-column {
    width: 100%;
    max-width: 1000px;
    margin-top: 4rem;
}

.dtl-article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
}

.dtl-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.dtl-article-body {
    padding: 3rem;
}

.dtl-article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dtl-meta-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dtl-category-badge {
    background-color: #339999;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.dtl-date-info, .dtl-read-time {
    color: #666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dtl-social-share {
    display: flex;
    gap: 0.5rem;
}

.dtl-share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.dtl-share-btn:hover {
    transform: scale(1.1);
    color: white;
}

.dtl-facebook { background-color: #3b5998; }
.dtl-twitter { background-color: #1da1f2; }
.dtl-linkedin { background-color: #0077b5; }
.dtl-whatsapp { background-color: #25d366; }

.dtl-article-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1rem;
}

.dtl-article-lead {
    font-size: 1.25rem;
    color: #666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 3rem;
}

.dtl-blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dtl-blog-content h2 {
    color: #339999;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dtl-blog-content h3 {
    color: #287878;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.dtl-blog-content p {
    margin-bottom: 1.2rem;
}

.dtl-content-list {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

.dtl-blockquote {
    border-left: 4px solid #339999;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.dtl-tags-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.dtl-tags-title {
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1rem;
}

.dtl-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dtl-tag {
    background-color: #f8f9fa;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.dtl-author-card {
    background: linear-gradient(135deg, #339999 0%, #287878 100%);
    border-radius: 15px;
    color: white;
    margin-top: 2rem;
}

.dtl-author-content {
    padding: 2rem;
}

.dtl-author-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dtl-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.dtl-author-name {
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 0.5rem;
}

.dtl-author-title {
    margin-bottom: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    opacity: 0.9;
}

.dtl-author-bio {
    margin-bottom: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    opacity: 0.75;
    font-size: 0.9rem;
}

.dtl-related-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.dtl-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dtl-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #339999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dtl-section-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dtl-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dtl-related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.dtl-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dtl-related-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dtl-related-body {
    padding: 1.5rem;
}

.dtl-related-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dtl-related-badge {
    background-color: #339999;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.dtl-related-date {
    color: #666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dtl-related-title {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1rem;
}

.dtl-related-excerpt {
    color: #666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1rem;
}

.dtl-related-link {
    color: #339999;
    text-decoration: none;
    font-weight: 600;
}

.dtl-newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #339999 0%, #287878 100%);
}

.dtl-newsletter-content {
    text-align: center;
    color: white;
}

.dtl-newsletter-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.dtl-newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1rem;
}

.dtl-newsletter-subtitle {
    font-size: 1.25rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 2rem;
}

.dtl-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dtl-email-input {
    min-width: 300px;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
}

.dtl-subscribe-btn {
    padding: 1rem 2rem;
    background-color: white;
    color: #339999;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.dtl-subscribe-btn:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dtl-container {
        padding: 0 1rem;
    }
    
    .dtl-article-body {
        padding: 2rem;
    }
    
    .dtl-article-title {
        font-size: 2rem;
    }
    
    .dtl-page-title {
        font-size: 2rem;
    }
    
    .dtl-author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .dtl-newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .dtl-email-input {
        min-width: 250px;
    }
    
    .dtl-article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dtl-social-share {
        margin-top: 1rem;
    }
}



/* Stil kodlarında hiçbir değişiklik yok, aynı kalabilir */
.tab-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    justify-content: center;
}
.tab-container::-webkit-scrollbar {
    display: none;
}
.tab-scroller {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 4px;
    background: #f3f3f3;
    border-radius: 10px;
}
.indicator {
    height: calc(100% - 8px);
    background: #ffffff;
    position: absolute;
    top: 4px;
    z-index: 9;
    border-radius: 8px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.12), 0px 3px 1px rgba(0, 0, 0, 0.04);
    transition: left 0.3s ease-in-out, width 0.3s ease-in-out;
}
.tab {
    display: none;
}
.tab_label {
    padding: 0 20px; 
    height: 38px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    user-select: none;
    white-space: nowrap;
}
.tab:checked + .tab_label {
    color: var(--primary-color);
}




/* Temel Konteyner Stilleri */
.pagination-custom {
    display: flex;
    gap: 8px;
    /* Bootstrap'in varsayılan <ul> stillerini sıfırla */
    padding-left: 0;
    list-style: none;
}

/* Tüm Sayfa Linklerinin (a etiketi) Ortak Stili */
.pagination-custom .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #cccccc;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    color: #343a40;
    position: relative;
    background-color: transparent;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1; /* Animasyonun üstte kalması için */
}

/* Önceki/Sonraki butonları için SVG rengi */
.pagination-custom .page-link svg {
    transition: fill 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    fill: #6c757d;
}

/* Linklerin üzerine gelince (hover) efekti */
.pagination-custom .page-link:hover {
    border-color: #0a3cff;
    color: #0a3cff;
    background-color: transparent; /* Bootstrap'in hover rengini iptal et */
}
.pagination-custom .page-link:hover svg {
    fill: #0a3cff;
}

/* -- ANİMASYON KISMI -- */
/* Aktif olan sayfa linkinin ::before ve ::after pseudo elemanları */
.pagination-custom .page-item.active .page-link::before,
.pagination-custom .page-item.active .page-link::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1; /* İçeriğin arkasına gönder */
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Arkadaki büyük daire animasyonu */
.pagination-custom .page-item.active .page-link::before {
    top: -24px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--primary-color);
    scale: 0;
    opacity: 0;
}

/* Alttaki küçük nokta animasyonu */
.pagination-custom .page-item.active .page-link::after {
    bottom: -32px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    scale: 0;
    opacity: 0;
}

/* AKTİF DURUM: Bootstrap'in .active sınıfı animasyonu tetikler */
.pagination-custom .page-item.active .page-link {
    border-color: transparent;
    color: #ffffff;
    scale: 1.1;
    background-color: transparent; /* Bootstrap'in aktif rengini iptal et */
}

.pagination-custom .page-item.active .page-link::before {
    opacity: 1;
    scale: 1;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pagination-custom .page-item.active .page-link::after {
    opacity: 1;
    scale: 1;
    bottom: -16px;
}

/* DEVRE DIŞI DURUM: Bootstrap'in .disabled sınıfı */
.pagination-custom .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #cccccc;
    color: #6c757d;
    background-color: transparent;
}
.pagination-custom .page-item.disabled .page-link:hover {
    border-color: #cccccc;
}
.pagination-custom .page-item.disabled .page-link svg {
    fill: #6c757d;
}