:root {
    --primary-color: #093061; /* Ana Kurumsal Lacivert */
    --primary-dark: #051d3d; /* Daha koyu lacivert (Hover için) */
    --accent-color: #d6333e; /* Vurgu rengi (Kırmızı - Pagination'dan alındı) */
    --secondary-color: #6c757d; /* Gri Metin */
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Verdana', sans-serif;
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 25px rgba(9, 48, 97, 0.15);
}

@font-face {
    font-family: 'Verdana';
    src: url('../Fonts/verdana.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../Fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../Fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../Fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../Fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    background: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover {
        color: var(--accent-color);
        text-decoration: none;
    }

.bg-light.border-bottom {
    background-color: #fff !important;
    border-bottom: 1px solid #eee !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main); /* Daha modern durması için Poppins yapıldı */
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}
.fw-400 {
    font-weight: 400;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

 
p {
    /*color: #093061;*/
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* color: #093061;*/
    margin: 0 0 15px 0;
    padding: 0;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #093061;
    color: #ffffff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

    .back-to-top:hover {
        background: #ababab;
    }

    .back-to-top i {
        padding-top: 12px;
        color: #ffffff;
    }


/**********************************/
/********* Form Input CSS *********/
/**********************************/
.form-control,
.custom-select {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    color: #666666;
    border: 1px solid #093061;
    border-radius: 0;
    margin-bottom: 15px
}

    .form-control:focus,
    .custom-select:focus {
        box-shadow: none;
        border-color: #ababab;
    }

.custom-radio,
.custom-checkbox {
    margin-bottom: 15px;
}

    .custom-radio .custom-control-label::before,
    .custom-checkbox .custom-control-label::before {
        border-color: #093061;
        border-radius: 0;
    }

    .custom-radio .custom-control-input:checked ~ .custom-control-label::before,
    .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
        color: #ffffff;
        background: #ababab;
    }

button.btn {
    color: #093061;
    background: #ffffff;
    border: 1px solid #093061;
    border-radius: 0;
}

    button.btn:hover {
        color: #ffffff;
        background: #ababab;
        border-color: #ababab;
    }


/* =========================================
   SOSYAL MEDYA İKONLARI (GÜNCELLENDİ)
   ========================================= */

.social {
    display: flex;
    align-items: center;
    gap: 10px; /* İkonlar arası boşluk */
    flex-wrap: wrap;
}

    .social a {
        display: flex; /* İkonu kutunun tam ortasına getirir */
        align-items: center;
        justify-content: center;
        width: 40px; /* Genişlik */
        height: 40px; /* Yükseklik */
        background: #fff; /* Arkaplan beyaz */ 
        font-size: 1.1rem;
        border-radius: 8px; /* Hafif yuvarlatılmış köşeler */
        box-shadow: 0 2px 5px rgba(0,0,0,0.08); /* Hafif gölge */
        border: 1px solid #f0f0f0; /* Çok silik çerçeve */
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yumuşak yaylanma efekti */
        text-decoration: none;
    }

        /* Hover (Üzerine gelince) Durumu */
        .social a:hover {
            background: var(--light-bg); /* Arkaplan Lacivert olur */ 
            transform: translateY(-4px); /* Yukarı doğru hafif zıplar */
            box-shadow: 0 8px 15px rgba(9, 48, 97, 0.2); /* Gölge derinleşir */
            border-color: var(--primary-color);
        }
         
.footer .social a {
    background: #fff;  
    border: none;
}

    .footer .social a:hover {
        background: var(--light-bg); /* Footer'da hover olunca Kırmızı olsun */
        /* color: #fff;*/
        box-shadow: 0 0 15px rgba(214, 51, 62, 0.5); /* Kırmızımsı parlama */
    }
/* Back to Top */
.back-to-top {
    border-radius: 4px;
    background: var(--accent-color);
}

    .back-to-top:hover {
        background: var(--primary-color);
    }


@media (min-width: 768px) {
    .top-header {
        /*max-height: 90px;*/
    }
}

@media (max-width: 767.98px) {
    .top-header .logo,
    .top-header .search,
    .top-header .social {
        text-align: center;
        margin-bottom: 15px;
    }

    .social {
        margin-bottom: 0;
    }
}


/**********************************/
/********* Header Nav CSS *********/
/**********************************/
.header {
    background: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 999;
}

    .header .navbar {
        padding: 0;
        background: var(--primary-color) !important;
    }

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 14px;
    padding: 18px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 3px solid var(--accent-color); /* Altı çizili modern efekt */
    }

/* Dropdown Menü */
.header .dropdown-menu {
    border: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    margin-top: 0;
    background: #fff;
}

.header .dropdown-item {
    font-size: 14px;
    color: #333;
    padding: 8px 20px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

    .header .dropdown-item:hover {
        background: var(--light-bg);
        color: var(--primary-color);
        border-left: 3px solid var(--primary-color);
        padding-left: 25px; /* Sağa kayma efekti */
    }
@media (min-width: 768px) {
    .header,
    .header .navbar {
        background: #093061 !important;
    }

        .header .navbar-brand {
            display: none;
        }

        .header a.nav-link {
            padding: 8px 15px;
            font-size: 15px;
            /*text-transform: uppercase;*/
        }
}

@media (max-width: 768px) {
    .header,
    .header .navbar {
        background: #093061 !important;
    }

        .header a.nav-link {
            padding: 5px;
        }

        .header .dropdown-menu {
            box-shadow: none;
        }
}


/**********************************/
/********** Top News CSS **********/
/**********************************/
.top-news {
    position: relative;
    width: 100%;
    padding: 30px 0 0 0;
}

    .top-news .col-md-6 {
        margin-bottom: 30px;
    }

    .top-news .tn-img {
        position: relative;
        overflow: hidden;
    }

        .top-news .tn-img img {
            width: 100%;
        }

        .top-news .tn-img:hover img {
            /* filter: blur(5px);
    -webkit-filter: blur(5px);*/
        }

    .top-news .tn-content {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 15px 10px 15px 20px;
        background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
        display: flex;
        align-items: flex-end;
    }

        .top-news .tn-content a.tn-date {
            display: block;
            width: 100%;
            margin-bottom: 5px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 400;
            transition: .3s;
            letter-spacing: 1px;
        }

            .top-news .tn-content a.tn-date i {
                margin-right: 5px;
            }

            .top-news .tn-content a.tn-date:hover {
                text-decoration: underline;
            }

        .top-news .tn-content a.tn-title {
            display: block;
            width: 100%;
            color: #ffffff;
            font-size: 17px;
            font-weight: 600;
            transition: .3s;
            text-decoration: none;
        }

    .top-news .tn-left .tn-content a.tn-title {
        font-size: 35px;
        font-weight: 700;
    }

    .top-news .tn-content a.tn-title:hover {
        color: #ababab;
    }


/**********************************/
/******* Category News CSS ********/
/**********************************/
.cat-news {
    position: relative;
    width: 100%;
    padding: 0;
}

    .cat-news .col-md-6 {
        margin-bottom: 30px;
    }

    .cat-news h2 {
        color: #093061;
        font-size: 35px;
        font-weight: 700;
        margin-left: 40px;
    }

        .cat-news h2 i {
            position: absolute;
            top: 8px;
            left: 15px;
            font-size: 28px;
        }

    .cat-news .cn-img {
        position: relative;
        overflow: hidden;
    }

        .cat-news .cn-img img {
            width: 100%;
        }

        .cat-news .cn-img:hover img {
            /*filter: blur(5px);
    -webkit-filter: blur(5px);*/
        }

    .cat-news .cn-content {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 15px 10px 15px 20px;
        background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
        display: flex;
        align-items: flex-end;
    }

        .cat-news .cn-content a.cn-date {
            display: block;
            width: 100%;
            margin-bottom: 5px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 400;
            transition: .3s;
            letter-spacing: 1px;
        }

            .cat-news .cn-content a.cn-date i {
                margin-right: 5px;
            }

            .cat-news .cn-content a.cn-date:hover {
                text-decoration: underline;
            }

        .cat-news .cn-content a.cn-title {
            display: block;
            width: 100%;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            transition: .3s;
            text-decoration: none;
        }

            .cat-news .cn-content a.cn-title:hover {
                color: #ababab;
            }

    .cat-news .slick-prev,
    .cat-news .slick-next {
        top: -35px;
        width: 28px;
        height: 28px;
        z-index: 1;
        transition: .5s;
        color: #ffffff;
        background: #093061;
    }

    .cat-news .slick-prev {
        left: calc(100% - 85px);
    }

    .cat-news .slick-next {
        right: 14px;
    }

        .cat-news .slick-prev:hover,
        .cat-news .slick-prev:focus,
        .cat-news .slick-next:hover,
        .cat-news .slick-next:focus {
            color: #ffffff;
            background: #ababab;
        }

        .cat-news .slick-prev::before,
        .cat-news .slick-next::before {
            font-family: "Font Awesome 5 Free";
            font-size: 18px;
            font-weight: 900;
            color: #ffffff;
        }

    .cat-news .slick-prev::before {
        content: "\f104";
    }

    .cat-news .slick-next::before {
        content: "\f105";
    }


/**********************************/
/********** Main News CSS *********/
/**********************************/
.mn-img img, .tn-img img, .cn-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.mn-img, .tn-img, .cn-img {
    overflow: hidden;
    border-radius: 6px;
}

    .mn-img:hover img, .tn-img:hover img, .cn-img:hover img {
        transform: scale(1.05); /* Resim büyütme efekti */
    }

/* Standart İçerik Kartı */
.content-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

    .content-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
        border-color: transparent;
    }

.content-thumb {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .content-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.content-card:hover .content-thumb img {
    transform: scale(1.1);
}

.content-info {
    padding: 20px;
}

.content-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
    display: block; /* Link kapsayıcısı için */
}

    .content-title:hover {
        color: var(--accent-color);
    }
/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

    .sidebar .sidebar-widget {
        position: relative;
        width: 100%;
        margin-bottom: 45px;
    }

        .sidebar .sidebar-widget h2 {
            color: #093061;
            font-size: 35px;
            font-weight: 700;
            margin-left: 40px;
        }

            .sidebar .sidebar-widget h2 i {
                position: absolute;
                top: 8px;
                left: 0;
                font-size: 28px;
            }

        .sidebar .sidebar-widget .category {
            position: relative;
        }

            .sidebar .sidebar-widget .category .fa-ul {
                margin-left: 23px;
            }

                .sidebar .sidebar-widget .category .fa-ul li {
                    margin-bottom: 10px;
                }

                    .sidebar .sidebar-widget .category .fa-ul li i {
                        color: #093061;
                    }

                    .sidebar .sidebar-widget .category .fa-ul li a {
                        color: #093061;
                    }

                        .sidebar .sidebar-widget .category .fa-ul li a:hover {
                            color: #ababab;
                        }

        .sidebar .sidebar-widget .tags {
            position: relative;
        }

            .sidebar .sidebar-widget .tags a {
                display: inline-block;
                margin-bottom: 5px;
                padding: 5px 10px;
                color: #093061;
                background: #ffffff;
                border: 1px solid #093061;
            }

                .sidebar .sidebar-widget .tags a:hover {
                    color: #ffffff;
                    background: #ababab;
                    border: 1px solid #ababab;
                }

        .sidebar .sidebar-widget .image a {
            display: block;
            width: 100%;
            overflow: hidden;
        }

        .sidebar .sidebar-widget .image img {
            max-width: 100%;
            transition: .3s;
        }

            .sidebar .sidebar-widget .image img:hover {
                transform: scale(1.1);
                /*filter: blur(3px);
    -webkit-filter: blur(3px);*/
            }


/**********************************/
/********* Breadcrumb CSS *********/
/**********************************/
.breadcrumb-wrap {
    position: relative;
    width: 100%;
    background: #ffffff;
}

    .breadcrumb-wrap .breadcrumb {
        margin: 25px 0 0 0;
        padding: 0;
        background: none;
    }

        .breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            color: #093061;
        }

        .breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
            color: #093061;
        }


/**********************************/
/********* Single News CSS ********/
/**********************************/
.single-news {
    position: relative;
    width: 100%;
    padding: 25px 0 0 0;
}

    .single-news .sn-img {
        position: relative;
        overflow: hidden;
    }

        .single-news .sn-img img {
            width: 100%;
        }

    .single-news .sn-content {
        position: relative;
        width: 100%;
        padding: 30px 0 30px 0;
    }

        .single-news .sn-content a.sn-title {
            display: block;
            width: 100%;
            color: #093061;
            font-size: 35px;
            font-weight: 700;
            line-height: 32px;
            margin-bottom: 10px;
        }

            .single-news .sn-content a.sn-title:hover {
                color: #ababab;
            }

        .single-news .sn-content a.sn-date {
            display: block;
            width: 100%;
            margin-bottom: 15px;
            color: #757575;
            font-size: 14px;
            font-weight: 400;
            transition: .3s;
            letter-spacing: 1px;
        }

            .single-news .sn-content a.sn-date i {
                margin-right: 5px;
            }

            .single-news .sn-content a.sn-date:hover {
                text-decoration: underline;
            }


/**********************************/
/********** Contact CSS ***********/
/**********************************/
.contact {
    position: relative;
    padding: 25px 0 45px 0;
}

    .contact .map {
        position: relative;
        width: 100%;
    }

        .contact .map iframe {
            width: 100%;
            height: 300px;
        }

    .contact .contact-info h4 {
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: 400;
    }

        .contact .contact-info h4 i {
            color: #093061;
            margin-right: 5px;
        }

    .contact .social {
        position: relative;
        width: 100%;
    }



    .contact .form {
        color: #666666;
    }

/* Facebook */
/* Facebook */
.facebook {
    color: #1877F2; /* Yeni Facebook Mavisi */
}

/* X (Twitter) — Siyah tema */
.x {
    color: #000000; /* Full Black */
}

/* Instagram — Gradient + fallback */
.instagram {
    color: #bc1888
}

/* LinkedIn */
.linkedin {
    color: #0A66C2; /* Official LinkedIn Blue */
}

/* YouTube */
.youtube {
    color: #FF0000; /* YouTube Red */
}

/* WhatsApp */
.whatsapp {
    color: #25D366; /* Official WhatsApp Green */
}



@media (max-width: 767.98px) {
    .contact .form {
        margin-bottom: 30px;
    }
}


/**********************************/
/********** Footer CSS ************/
/**********************************/
.footer {
    background: var(--primary-color);
    color: #fff;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 5px solid var(--accent-color); /* Footer üstüne ince çizgi */
}

    .footer .footer-widget h3.title,
    .footer .footer-widget span.text-white b {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 25px;
        display: block;
        position: relative;
    }

        /* Başlık altı çizgisi */
        .footer .footer-widget h3.title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 40px;
            height: 3px;
            background: var(--accent-color);
        }

    .footer .footer-widget ul li a {
        color: rgba(255,255,255,0.7);
        padding: 5px 0;
        display: block;
        transition: all 0.3s;
    }

        .footer .footer-widget ul li a:hover {
            color: #fff;
            padding-left: 10px;
        }

        .footer .footer-widget ul li a::before {
            content: '\f105'; /* FontAwesome ok ikonu */
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            margin-right: 8px;
            color: var(--accent-color);
        }

.footer-bottom {
    background: #04162e; /* Primary color'dan daha koyu */
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .footer-bottom p {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.5);
    }

/* =========================================
   7. DİĞER BİLEŞENLER (Form, Buton, Pagination)
   ========================================= */

/* Butonlar */
.btn {
    border-radius: 4px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s;
}

button.btn {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

    button.btn:hover {
        background: var(--primary-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(9, 48, 97, 0.2);
    }

/* Formlar */
.form-control {
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    height: auto;
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(9, 48, 97, 0.15);
    }

/* Pagination */
.pagination .page-link {
    border: none;
    margin: 0 3px;
    border-radius: 4px !important;
    color: var(--primary-color);
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 4px 10px rgba(214, 51, 62, 0.3);
}

@media (max-width: 768.98px) {
    .footer-bottom .copyright,
    .footer-bottom .template-by {
        text-align: center;
    }
}

.top-header {  
}
/* Kart ana container */
.content-card {
    border-radius: 6px;
    overflow: hidden;
    transition: all .2s ease-in-out;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

    /* Kart hover efekti */
    .content-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0,0,0,.15);
    }

/* Resim Alanı */
.content-thumb {
    height: 220px; /* Sabit yükseklik */
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

    .content-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Alt bilgi */
.content-info {
    padding: 12px 14px;
    background: #fff;
}

.content-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e1e1e;
    line-height: 1.3;
    margin: 0;
}

.content-item-horizontal .content-link {
    text-decoration: none;
    color: inherit;
}

.content-item-horizontal .content-thumb {
    max-height: 180px;
    overflow: hidden;
    padding: 0;
}

    .content-item-horizontal .content-thumb img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 6px;
    }

.content-item-horizontal .content-info {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-item-horizontal .content-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.content-item-horizontal .content-meta {
    font-size: 1rem;
}
.pagination .page-link {
    border: 1px solid #e5e5e5;
    font-weight: 600;
    transition: 0.25s all;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-item.active .page-link {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(220,53,69,0.3);
}

.pagination .page-link:hover {
    background-color: #f8f9fa;
    border-color: #cfcfcf;
}

.pagination .page-item.disabled .page-link {
    background-color: #f1f1f1;
    border-color: #ddd;
    color: #aaa;
}
.share-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px 20px;
    border: 1px solid #e3e3e3;
}

.share-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.share-icons {
    gap: 10px;
    margin: 0;
    padding: 0;
}

    .share-icons li {
        list-style: none;
    }

.share-btn {
    width: 42px;
    height: 42px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-size: 18px;
    transition: all .2s ease-in-out;
    border: 1px solid #ddd;
}

    .share-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    }

    .share-btn.whatsapp {
        color: #25D366;
    }

    .share-btn.telegram {
        color: #2AABEE;
    }

    .share-btn.twitter {
        color: #000000;
    }

    .share-btn.facebook {
        color: #1877F2;
    }

    .share-btn.copy {
        color: #6c757d;
    }
.sendika-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .sendika-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        border-color: #fff;
    }

.card-img-wrapper {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    .card-img-wrapper img {
        max-height: 80px;
        max-width: 100%;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }

.sendika-card:hover .card-img-wrapper img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.sendika-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    margin-top: 10px;
}

.sendika-card:hover .sendika-title {
    color: var(--primary-color);
} 
.gender-selection-group .btn-outline-custom {
    border: 1px solid #e0e0e0;
    color: #555;
    background-color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

    .gender-selection-group .btn-outline-custom:hover {
        background-color: #f8f9fa;
        border-color: #ccc;
        transform: translateY(-2px);
    }
     
.btn-check:checked + .btn-outline-custom {
    background-color: var(--primary-color);  
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(9, 48, 97, 0.3);  
    transform: translateY(-2px);
}
 
.gender-selection-group i {
    opacity: 0.7;
}

.btn-check:checked + .btn-outline-custom i {
    opacity: 1;
}
/* =========================================
   CAROUSEL (SLIDER) ÖZELLEŞTİRME
   ========================================= */
.carousel-item {
    height: 500px; /* Sabit yükseklik */
    background-color: #000;
}

    .carousel-item img {
        height: 100%;
        object-fit: cover;
        opacity: 0.9; /* Yazının okunması için resmi hafif karart */
    }

.carousel-caption-custom {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-left: 5px solid var(--accent-color);
    text-align: left;
    transition: transform 0.3s ease;
}

    .carousel-caption-custom h5 {
        color: var(--primary-color);
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.3;
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    background-size: 50%;
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }

    .carousel-caption-custom {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 15px;
    }

        .carousel-caption-custom h5 {
            font-size: 1rem;
        }
}

/* =========================================
   YATAY LİSTE KARTLARI (LIST PAGE)
   ========================================= */
.content-item-horizontal {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .content-item-horizontal:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
        border-color: transparent;
    }

    .content-item-horizontal .content-thumb {
        height: 220px; /* Görsel yüksekliği */
        padding: 0;
        overflow: hidden;
    }

        .content-item-horizontal .content-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

    .content-item-horizontal:hover .content-thumb img {
        transform: scale(1.05);
    }

    .content-item-horizontal .content-info {
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.content-meta span {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.content-meta i {
    color: var(--accent-color);
    margin-right: 4px;
}

/* =========================================
   DETAY SAYFASI (ARTICLE)
   ========================================= */
.article-header h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.article-meta {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: #666;
    font-size: 0.9rem;
}

.article-body {
    font-family: 'Verdana', sans-serif; /* Okunabilirlik için */
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

    .article-body p {
        margin-bottom: 20px;
    }

    .article-body img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
        margin: 20px 0;
    }

/* Sidebar Widget */
.sidebar-widget {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

    .sidebar-widget ul.fa-ul {
        margin-left: 1.5em;
    }

        .sidebar-widget ul.fa-ul li {
            margin-bottom: 12px;
        }

            .sidebar-widget ul.fa-ul li a {
                color: #555;
                font-weight: 500;
            }

                .sidebar-widget ul.fa-ul li a:hover {
                    color: var(--primary-color);
                    text-decoration: underline;
                }