  :root {
            --primary-color: #0b4467; /* Daha Derin Lacivert */
            --secondary-color: #f8f9fa;
            --accent-color: #007bff; 
            --text-dark: #1a1a1a;
        }
        html, body { font-family: 'Inter', sans-serif; color: var(--text-dark); overflow-x: hidden; width: 100%; position: relative; }
        
        .lead {
            font-size: 1rem;
            font-weight: 300;
        }

        .btn-primary {
            font-size: 16px;
        }

        .btn-outline-light {
            font-size: 16px;
        }

        /* Header Top Bar */
        .header-top {
            background-color: var(--primary-color);
            color: white;
            font-size: 0.85rem;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1060;
        }
        .header-top a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
            margin-right: 15px;
        }
        .header-top a:hover { color: white; }
        .header-top i { color: white; margin-right: 5px; }

        /* Modern Navbar Styling */
        .navbar {
            width: 100%;
            transition: all 0.4s ease;
            padding: 0.3rem 0;
            z-index: 1050;
            background: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            top: 38px; /* Header top yüksekliği kadar aşağıda başla */
        }
        .navbar.scrolled {
            background: #ffffff !important;
            backdrop-filter: blur(15px);
            padding: 0.6rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            top: 0; /* Kaydırıldığında en üste yapış */
        }
        .nav-link {
            font-weight: 500;
            color: var(--primary-color) !important;
            position: relative;
            margin: 0 10px;
        }
        .navbar.scrolled .nav-link {
            color: var(--primary-color) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0; height: 2px;
            bottom: 0; left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after { width: 100%; }

        .navbar-brand {
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
            color: var(--primary-color) !important;
            white-space: nowrap;
            flex-shrink: 1;
        }
        .navbar.scrolled .navbar-brand {
            color: var(--primary-color) !important;
        }
        @media (max-width: 576px) {
            .navbar-brand { font-size: 1.1rem !important; }
        }
        
        /* Custom Mobile Toggler */
        .navbar-toggler {
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            outline: none !important;
            box-shadow: none !important;
        }
        .hamburger {
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            display: block;
        }
        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: var(--primary-color);
            border-radius: 9px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        .hamburger span:nth-child(1) { top: 0px; }
        .hamburger span:nth-child(2) { top: 9px; }
        .hamburger span:nth-child(3) { top: 18px; }
        .navbar.scrolled .hamburger span { background: var(--primary-color); }
        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) { top: 9px; transform: rotate(135deg); }
        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) { top: 9px; transform: rotate(-135deg); }

        /* Mobile Menu Overlay Style */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: #ffffff;
                margin-top: 0.5rem;
                border-radius: 15px;
                padding: 2rem;
                box-shadow: 0 15px 35px rgba(0,0,0,0.2);
                backdrop-filter: blur(10px);
            }

            .navbar { top: 0;}
            .nav-item { text-align: center; margin-bottom: 15px; }
            .nav-link { font-size: 1.2rem!important; color: var(--primary-color) !important; }
            .nav-link.btn { display: inline-block; width: 100%; margin-left: 0 !important; }
            /* Mobilde menü açıkken toggler her zaman lacivert olsun */
            .navbar-toggler[aria-expanded="true"] .hamburger span { background: var(--primary-color) !important; }
            /* Menü açıkken brand rengini mobilde koyulaştır */
            .navbar-toggler[aria-expanded="true"] ~ .navbar-brand { color: var(--primary-color) !important; }
        }

        /* Premium Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgb(10 35 81 / 57%), rgb(0 86 179 / 0%)), url(https://gaziantepggk.org.tr/assets/img/banner-bg.avif);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 180px 0 350px;
            clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
        }



        .bg-color-blue {
                        background: linear-gradient(135deg, rgb(10 35 81 / 57%), rgb(0 86 179 / 0%)), url(https://gaziantepggk.org.tr/assets/img/banner-bg.avif);

        }

        .bg-color-blue h2 {
            color: white;
        }
        
        .bg-color-blue  p {
            color: white;
        }



        .hero-badge {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 20px;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .hero-section h1 { 
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            line-height: 1.1;
            font-size: 2rem;
        }
        @media (max-width: 768px) {
            .hero-section { padding: 180px 0 120px; }
            .hero-section h1 { font-size: 1.5rem; }
        }

        .section-title { 
            color: var(--primary-color); 
            font-weight: 700; 
            margin-bottom: 50px; 
            position: relative;
            display: inline-block;
            font-size: 26px!important;
        }
        .section-title::after {
            content: ''; width: 50px; height: 3px; background: var(--accent-color);
            position: absolute; bottom: -10px; left: 0;
        }
        .text-center .section-title::after { left: 50%; transform: translateX(-50%); }

        .card { border: none; border-radius: 15px; transition: all 0.4s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden; }
        .card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .card-img-top { height: 200px; object-fit: cover; }
        
        .stats-box { background: var(--primary-color); color: white; padding: 60px 0; border-radius: 30px; margin-top: -50px; position: relative; z-index: 10; }
        
        .footer { background-color: var(--primary-color); color: white; padding: 50px 0; }
        .partner-logo { max-height: 90px;  opacity: 0.6; transition: 0.4s; }
        .partner-logo:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
        
        .btn-primary { background-color: var(--primary-color); border: none; padding: 12px 30px; border-radius: 8px; font-weight: 600; box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3); transition: all 0.3s; }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4); }
        .btn-light { border-radius: 8px; padding: 12px 30px; font-weight: 600; }

        /* Haber Slider Tasarımı */
        .news-slider-section { position: relative; z-index: 20; margin-top: -320px; margin-bottom: 120px; }
        .main-news-container {
            position: relative;
            height: 484px;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            background: #000;
            border-top-left-radius: 15px;
            border-bottom-left-radius: 15px;
        }
        .main-news-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
            border-top-left-radius: 15px;
            border-bottom-left-radius: 15px;
        }
        .main-news-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
            color: white;
        }
        .news-side-list { display: flex; flex-direction: column; gap: 0px; }
        .news-side-item {
            background: white;
            padding: 12px 16px;
            border-radius: 0px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }
        .news-side-item.active, .news-side-item:hover {
            background: var(--primary-color);
            color: white !important;
            transform: translateX(0px);
        }
        .news-side-item.active h6, .news-side-item:hover h6 { color: white; }
        .news-side-item small { display: block; margin-bottom: 5px; opacity: 0.6; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
        .news-side-item h6 { margin: 0; font-size: 14px; font-weight: 600; transition: color 0.3s; color: var(--primary-color); }
        @media (max-width: 991px) {
            .news-slider-section { margin-top: -108px; }
            .main-news-container { height: 350px; }
            .news-side-item:hover { transform: none; }
        }

    .news-slider-section .col-lg-8 {
        padding-left: 0px;
        padding-right: 0px;
    }
    .news-slider-section .col-lg-4 {
        padding-left: 0px;
        padding-right: 0px;
    }
    
    .news-slider-section .container {
       /* background-color: gray; */
        border-radius: 19px;
    }

    /* --- HABER SLIDER HİZALAMA VE YÜKSEKLİK DÜZELTMESİ --- */

/* Row içeriğini esnek yap ki sol ve sağ eşit yükseklikte olmaya zorlansın */
.news-slider-section .row.g-4 {
    align-items: stretch;
    margin: 0; /* padding/margin çakışmalarını önlemek için */
}

/* Sol Taraftaki Ana Resim Konteyneri */
.main-news-container {
    height: 100%; /* Kutu yüksekliğini serbest bırakıp row'a uydururuz */
    min-height: 484px; /* Minimum bir yükseklik verelim ki mobilde çökmesin */
    max-height: 484px;
    display: flex;
    flex-direction: column;
}

/* Sağ Taraftaki Liste Konteyneri */
.news-side-list { 
    display: flex; 
    flex-direction: column; 
    height: 100%; /* Sol taraf ile aynı boyda olmasını garanti eder */
    justify-content: space-between; /* İçindeki kutuları yukarıdan aşağıya eşit dağıtır */
    gap: 0;
    border-top-right-radius: 15px; /* Ana tasarıma uyum için köşe yuvarlatma */
    border-bottom-right-radius: 15px;
    overflow: hidden;
}

/* Sağ Taraftaki Her Bir Haber Kutusu (Satır sayısından bağımsız yükseklik) */
.news-side-item {
    flex: 1; /* Konteyner içindeki boşluğu eşit paylaşmalarını sağlar */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Yazıyı kutu içinde dikey ortalar */
    border-radius: 0; /* Sıkı tasarım için */
}

/* Başlıkların Satır Sınırı (Metin uzarsa 3. satır yerine '...' koyar) */
.news-side-item h6 { 
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2 satırda keser */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em; /* 1.4 x 2 satır = Maksimum yükseklik sabitleme */
}

/* Mobilde davranışı normale döndürmek için */
@media (max-width: 991px) {
    .main-news-container { height: 350px; min-height: 350px; }
    .news-side-list { border-radius: 0; }
    .news-side-item { flex: none; height: auto; padding: 12px 16px; }
}

/* Sağ Taraftaki Her Bir Haber Kutusu */
.news-side-item {
    flex: 1; 
    display: flex;
    flex-direction: row; /* Resim ve metni YAN YANA dizer */
    align-items: center; /* İkisini dikeyde tam ortalar */
    gap: 15px; /* Resim ile metin arasındaki boşluk */
    padding: 15px 20px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    background: white;
}

/* YENİ: Mini Resim Konteyneri */
.news-side-img {
    flex-shrink: 0; /* Ekran küçülse de resmin ezilmesini engeller */
    width: 80px; /* Mini resmin genişliği (İsteğe göre değiştirebilirsin) */
    height: 65px; /* Mini resmin yüksekliği */
    border-radius: 8px; /* Hafif yuvarlatılmış köşeler */
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Resme hafif gölge */
}

.news-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi sündürmeden çerçevenin içine doldurur */
    transition: transform 0.3s ease;
}

/* Kutuya gelince mini resim hafif büyüsün (Güzel bir detay) */
.news-side-item:hover .news-side-img img,
.news-side-item.active .news-side-img img {
    transform: scale(1.1);
}

/* Yazı Alanı Konteyneri */
.news-side-text {
    display: flex;
    flex-direction: column;
    min-width: 0; /* Taşan metnin Flexbox içinde düzgün kesilmesi için çok önemlidir */
}

/* Özel Odak Noktaları Kart Tasarımı */
.feature-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 1.2rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.icon-wrapper {
    width: 85px;
    height: 85px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1);
}

/* Soft İkon Arka Planları */
.bg-soft-primary { background-color: rgba(13, 110, 253, 0.08); }
.bg-soft-warning { background-color: rgba(255, 193, 7, 0.12); }
.bg-soft-success { background-color: rgba(25, 135, 84, 0.08); }

.btn-outline-primary {
    color:#0b4467;
    border-color:#0b4467;
}

.btn-outline-primary:hover {
    background-color:#0b4467;
    color: white;
        border-color:#0b4467;

}

a {
    color:#0b4467;

}

.article-meta i {
    color:#0b4467!important;
}