@font-face {
    font-family: 'icomoon';
    src: url("../fonts/icomoon/icomoon.eot?srf3rx");
    src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
  }

/* Genel Stiller */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #828282;
    background: #fff;
    overflow-x: hidden; /* Yatay kaydırmayı engelle */
    width: 100%;
    position: relative;
    max-width: 100vw; /* Ekran genişliğinden fazlasına taşma */
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box; /* Padding'i genişliğe dahil et */
}

/* Ãœst Bilgi BandÄ± */
.top-info-bar {
    background-color: #f8f8f8;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

.top-info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Adres ve Ä°letiÅŸim Bilgileri Ortak Stiller */
.address-info, .contact-info {
    display: flex;
    align-items: center;
}

.address-info .icon, .contact-info .icon {
    width: 30px;
    height: auto;
    margin-right: 14px;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px; /* Ä°kon boyutunu bÃ¼yÃ¼ttÃ¼m */
}

.address-info .yazi, .contact-info .yazi {
    width: auto;
    text-align: left;
}

.address-info .kalin, .contact-info .kalin {
    width: 100%;
    font-size: 11pt; /* Font boyutunu bÃ¼yÃ¼ttÃ¼m */
    color: #999;
    font-weight: 500;
}

.address-info .ince, .contact-info .ince {
    width: 100%;
    font-size: 12pt; /* Font boyutunu bÃ¼yÃ¼ttÃ¼m */
    color: #999;
    margin-top: 5px;
}

/* Sosyal Medya Ä°konlarÄ± */
.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: #666;
    margin-left: 15px;
    text-decoration: none;
    font-size: 20px; /* Sosyal medya ikonlarÄ±nÄ± bÃ¼yÃ¼ttÃ¼m */
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #e20613;
    transform: translateY(-2px);
}

/* Program Button (EÄŸer ileride kullanÄ±lacaksa) */
.program-button {
    background-color: #e20613;
    color: white;
    padding: 5px 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    border-radius: 3px;
    margin-right: 15px;
}

/* Ana Banner */
.main-banner {
    background-color: #e20613;
    padding: 0;
    color: white;
    height: 150px; /* Banner yÃ¼ksekliÄŸini sabit tut */
    overflow: hidden; /* TaÅŸan iÃ§eriÄŸi gizle */
}

.main-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%; /* Container'Ä±n tÃ¼m yÃ¼ksekliÄŸi kaplamasÄ±nÄ± saÄŸla */
}

.logo-container img {
    height: 130px;
    margin: 10px 0;
}


.banner-right {
    display: flex;
    align-items: center;
    height: 100%; /* SaÄŸ tarafÄ±n tÃ¼m yÃ¼ksekliÄŸi kaplamasÄ±nÄ± saÄŸla */
}

.leaders-image {
    height: 100%;
    display: flex;
    align-items: center; /* Dikey ortalama */
}

.leaders-image img {
    height: 150px; /* Banner yÃ¼ksekliÄŸine tam sÄ±ÄŸdÄ±r */
    display: block;
}

.slogan {
    height: 100%;
    display: flex;
    align-items: center; /* Dikey ortalama */
    margin-left: 30px;
}

.slogan img {
    height: 90px; /* Banner yÃ¼ksekliÄŸine tam sÄ±ÄŸdÄ±r */
    display: block;
}

/* Ana MenÃ¼ */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: bold;
}

.nav-menu li a:hover {
    background-color: #e20613;
    color: white;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-menu li.active > a {
    background-color: #e20613;
    color: white;
    border-radius: 3px;
}

.dropdown-content a.active {
    background-color: #f8f8f8;
    color: #e20613;
    font-weight: bold;
}

/* Dropdown MenÃ¼ */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: normal;
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* SaÄŸ Taraf ButonlarÄ± */
.action-buttons {
    display: flex;
    align-items: center;
}

.action-button {
    display: inline-block;
    padding: 10px 15px;
    margin-left: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 3px;
    font-size: 13px;
    transition: all 0.3s ease; /* GeÃ§iÅŸ efekti iÃ§in */
}

.online-bagis {
    background-color: #e20613;
}

.online-uyelik {
    background-color: #e20613;
}

/* Hover efektleri */
.action-button:hover {
    background-color: #a40000; /* Daha koyu kÄ±rmÄ±zÄ± ton */
    transform: translateY(-2px); /* Hafif yukarÄ± hareket */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* GÃ¶lge efekti */
    text-decoration: none; /* AltÄ± Ã§izili olmasÄ±nÄ± engelle */
    color: white; /* Metin rengini beyaz olarak koru */
}

.action-button:active {
    transform: translateY(0); /* TÄ±klandÄ±ÄŸÄ±nda orijinal pozisyona dÃ¶n */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Daha az belirgin gÃ¶lge */
}

/* Arama Ã‡ubuÄŸu */
.search-container {
    margin-left: 10px;
}

.search-container form {
    display: flex;
}

.search-container input[type="text"] {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px 0 0 3px;
    width: 150px;
}

.search-container button {
    background-color: #333;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
}

.search-container button:hover {
    background-color: #555;
}

/* Hero BÃ¶lÃ¼mÃ¼ */
.hero {
    background: url('default-banner.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 100px 20px;
    color: white;
    font-size: 24px;
    margin-top: 20px;
}

/* Haberler */
.haberler {
    padding: 40px 0;
}

.haberler h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: #333;
}

.haber-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.haber-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.haber-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.haber-gorsel {
    height: 200px;
    overflow: hidden;
}

.haber-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.haber-card:hover .haber-gorsel img {
    transform: scale(1.05);
}

.haber-icerik {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.haber-icerik h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.haber-tarih {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.haber-icerik p {
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.btn-detay {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-detay:hover {
    background-color: #c0392b;
}

.no-content {
    text-align: center;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 5px;
    color: #666;
    font-style: italic;
}

/* Mobil iÃ§in dÃ¼zenlemeler */
@media (max-width: 767px) {
    .haber-listesi {
        grid-template-columns: 1fr;
    }
    
    .haber-gorsel {
        height: 160px;
    }
    
    .haber-icerik {
        padding: 15px;
    }
    
    .haber-icerik h3 {
        font-size: 16px;
    }
}

/* Ãœyelik Formu*/
.uyelik-formu {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 40px auto;
}

.uyelik-formu h1 {
    text-align: center;
    color: #e20613;
    margin-bottom: 30px;
    font-size: 28px;
}

.uyelik-formu h2 {
    text-align: center;
    color: #e20613;
    margin-bottom: 15px;
    font-size: 18px;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Floating Label Stili */
.form-group.floating-label {
    position: relative;
    margin-bottom: 20px;
}

.form-group.floating-label label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group.floating-label input:focus ~ label,
.form-group.floating-label input:not(:placeholder-shown) ~ label,
.form-group.floating-label textarea:focus ~ label,
.form-group.floating-label textarea:not(:placeholder-shown) ~ label {
    top: 10px;
    font-size: 12px;
    color: #e20613;
}

.form-group.floating-label input,
.form-group.floating-label textarea {
    width: 100%;
    padding: 15px 10px 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group.floating-label input:focus,
.form-group.floating-label textarea:focus {
    border-color: #e20613;
    outline: none;
}

/* Butonlar */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btn-submit,
.btn-reset {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit {
    background-color: #e20613;
    color: white;
}

.btn-submit:hover {
    background-color: #a40000;
}

.btn-reset {
    background-color: #ddd;
    color: #333;
}

.btn-reset:hover {
    background-color: #ccc;
}

/* UyarÄ± MesajlarÄ± */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Popup Stili */
.popup {
    display: none; /* Popup baÅŸlangÄ±Ã§ta gizli */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* YarÄ± saydam arka plan */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* DiÄŸer iÃ§eriklerin Ã¼zerinde gÃ¶rÃ¼nsÃ¼n */
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.popup-content h2 {
    color: #e20613;
    margin-bottom: 15px;
    font-size: 20px;
}

.popup-content p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.close-btn:hover {
    color: #e20613;
}

.kanun-link {
    color: #e20613;
    text-decoration: none;
    font-weight: bold;
}

.kanun-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #e20613; /* Arka plan rengi (kÄ±rmÄ±zÄ±) */
    color: white; /* YazÄ± rengi */
    padding: 40px 0 0 0; /* Ãœst boÅŸluk 40px, alt boÅŸluk 0 */
    font-family: 'Roboto', sans-serif; /* YazÄ± tipi */
}

footer .container {
    max-width: 1200px; /* Maksimum geniÅŸlik */
    margin: 0 auto; /* Ortala */
    padding: 0 15px; /* Yan boÅŸluklar */
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Ä°Ã§erikleri yatayda eÅŸit aralÄ±klarla daÄŸÄ±t */
    align-items: flex-start; /* Ä°Ã§erikleri Ã¼stten hizala */
    flex-wrap: wrap; /* KÃ¼Ã§Ã¼k ekranlarda alt alta sÄ±rala */
    margin-bottom: 20px; /* Alt boÅŸluk */
}

.footer-logo img {
    width: 430px; /* Logo geniÅŸliÄŸi */
    height: auto; /* Logo yÃ¼ksekliÄŸi otomatik */
    margin-bottom: 15px; /* Logo alt boÅŸluÄŸu */
}

.footer-contact h3 {
    font-size: 18px; /* BaÅŸlÄ±k boyutu */
    margin-bottom: 15px; /* BaÅŸlÄ±k alt boÅŸluÄŸu */
    font-weight: bold; /* BaÅŸlÄ±k kalÄ±nlÄ±ÄŸÄ± */
}

.footer-contact p {
    font-size: 14px; /* YazÄ± boyutu */
    margin-bottom: 10px; /* Paragraf alt boÅŸluÄŸu */
    display: flex; /* Ä°kon ve metni yan yana hizala */
    align-items: center; /* Dikeyde ortala */
}

.footer-contact p i {
    margin-right: 10px; /* Ä°kon ile metin arasÄ± boÅŸluk */
    font-size: 16px; /* Ä°kon boyutu */
}

/* İnce Alt Footer Stilleri */
.small-footer {
    width: 100%;
    background-color: #8e0c14;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.small-footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.small-footer-brand {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}

.small-footer-brand a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.small-footer-brand a:hover {
    color: #ffffff;
}

.small-footer-copyright {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-style: italic;
}

/* Mobil Uyumluluk */
@media (max-width: 576px) {
    .small-footer-container {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .small-footer-brand {
        margin-bottom: 5px;
    }
    
    /* Mobil görünümde geniş elementlerin taşmasını engelle */
    img, video, iframe, table, div {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Yatay kaydırmayı engelle - tüm sayfayı kapsayacak */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
}

/* Footer Link Stilleri */
.footer-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: none;
    color: white;
}

/* Hero Slider Stilleri */
.hero-slider {
    margin-bottom: 40px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

/* Slider arka plan stilleri */
.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Slider arka plan renkleri (resim yoksa) */
.slide1 {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.slide2 {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.slide3 {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.slider-content {
    padding: 25px;
    border-radius: 5px;
    max-width: 80%;
    text-align: center;
    z-index: 10;
}

.slider-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.slider-content p {
    font-size: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    margin-bottom: 15px;
}

.slider-link-container {
    position: absolute;
    bottom: 80px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.slider-btn {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: #c0392b;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #e74c3c;
}

.slider-controls {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 10;
}

.slider-control {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-control:hover {
    background-color: rgba(192, 57, 43, 0.9);
}

/* Mobil iÃ§in dÃ¼zenlemeler */
@media (max-width: 767px) {
    .slider-container {
        height: 250px;
    }
    
    .slider-content {
        padding: 15px;
        max-width: 90%;
    }
    
    .slider-content h2 {
        font-size: 24px;
    }
    
    .slider-content p {
        font-size: 14px;
    }
    
    .slider-prev, .slider-next {
        width: 30px;
        height: 30px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

/* Haber kartlarÄ± iÃ§in hover efektleri */
.haber-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.haber-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.haber-gorsel img {
    transition: transform 0.3s;
}

.haber-card:hover .haber-gorsel img {
    transform: scale(1.05);
}

/* DevamÄ±nÄ± Oku butonu iÃ§in hover efekti */
.btn-detay {
    transition: background-color 0.3s;
}

.btn-detay:hover {
    background-color: #c0392b;
}

/* Ã–zel slider iÃ§in CSS stillerini ekledim. Absolute pozisyonlama ve opacity geÃ§iÅŸleri kullanarak slider'Ä±n dÃ¼zgÃ¼n Ã§alÄ±ÅŸmasÄ±nÄ± saÄŸladÄ±m. TÃ¼m iÃ§erik tam ortada gÃ¶rÃ¼necek ÅŸekilde flex kullandÄ±m. */
.hero-slider {
    margin-bottom: 40px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

/* Slider arka plan renkleri */
.slide1 {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.slide2 {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.slide3 {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.slider-content {
    padding: 25px;
    border-radius: 5px;
    max-width: 80%;
    text-align: center;
    z-index: 10;
}

.slider-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.slider-content p {
    font-size: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.slider-link-container {
    position: absolute;
    bottom: 80px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.slider-btn {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: #c0392b;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #e74c3c;
}

.slider-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(231, 76, 60, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.3s;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover, .slider-next:hover {
    background-color: rgba(192, 57, 43, 0.9);
}

@media (max-width: 767px) {
    .slider-container {
        height: 250px;
    }
    
    .slider-content {
        padding: 15px;
        max-width: 90%;
    }
    
    .slider-content h2 {
        font-size: 24px;
    }
    
    .slider-content p {
        font-size: 14px;
    }
    
    .slider-prev, .slider-next {
        width: 30px;
        height: 30px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

/* Arama SonuÃ§larÄ± SayfasÄ± */
.arama-sonuclari {
    padding: 40px 0;
}

.arama-sonuclari h1 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
}

.uyari {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.uyari p {
    color: #666;
    font-size: 16px;
}

.sonuc-ozeti {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

.sonuc-kategori {
    margin-bottom: 40px;
}

.sonuc-kategori h2 {
    color: #e20613;
    margin-bottom: 20px;
    font-size: 22px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.kadro-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.kadro-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kadro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.kadro-gorsel {
    height: auto;
    overflow: hidden;
    text-align: center;
}

.kadro-gorsel img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 300px;
}

.kadro-bilgi {
    padding: 20px;
}

.kadro-bilgi h3 {
    margin-bottom: 5px;
    color: #333;
}

.kadro-bilgi .unvan {
    color: #e20613;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-detay {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-detay:hover {
    background-color: #a40000;
    text-decoration: none;
    color: white;
}

/* Mobil MenÃ¼ Butonu */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

/* Responsive TasarÄ±m */
@media screen and (max-width: 992px) {
    /* Ãœst Bilgi BandÄ± */
    .top-info-bar .container {
        flex-wrap: wrap;
    }
    
    .social-icons {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    /* Ana Banner */
    .main-banner {
        height: auto;
        padding: 10px 0;
    }
    
    .banner-right {
        display: none; /* KÃ¼Ã§Ã¼k ekranlarda banner-right gizlenir */
    }
    
    .mobile-menu-toggle {
        display: block; /* KÃ¼Ã§Ã¼k ekranlarda hamburger menÃ¼ gÃ¶rÃ¼nÃ¼r */
    }
    
    /* Ana MenÃ¼ */
    .main-nav .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-menu {
        display: none; /* VarsayÄ±lan olarak menÃ¼ gizli */
        flex-direction: column;
        width: 100%;
    }
    
    .nav-menu.active {
        display: flex; /* JavaScript ile active class eklendiÄŸinde menÃ¼ gÃ¶rÃ¼nÃ¼r */
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }
    
    .dropdown:hover .dropdown-content {
        display: none; /* Hover ile aÃ§Ä±lmayÄ± devre dÄ±ÅŸÄ± bÄ±rak */
    }
    
    .dropdown.active .dropdown-content {
        display: block; /* JavaScript ile active class eklendiÄŸinde dropdown gÃ¶rÃ¼nÃ¼r */
    }
    
    /* Action Buttons */
    .action-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
    }
    
    .action-button {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
    
    .search-container {
        width: 100%;
        margin: 10px 0;
    }
    
    .search-container form {
        width: 100%;
    }
    
    .search-container input[type="text"] {
        width: calc(100% - 40px); /* Buton geniÅŸliÄŸini Ã§Ä±kar */
    }
}

/* Daha KÃ¼Ã§Ã¼k Ekranlar */
@media screen and (max-width: 576px) {
    .address-info, .contact-info {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .top-info-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-container img {
        height: 80px; /* Daha kÃ¼Ã§Ã¼k logo */
    }
}

/* Ä°letiÅŸim SayfasÄ± Stilleri */
.iletisim-sayfasi {
    padding: 40px 0;
}

.iletisim-sayfasi h1 {
    color: #e20613;
    margin-bottom: 30px;
    text-align: center;
    font-size: 32px;
}

.iletisim-sayfasi h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 2px solid #e20613;
    padding-bottom: 10px;
    display: inline-block;
}

.iletisim-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Ä°letiÅŸim Bilgileri */
.iletisim-bilgileri {
    flex: 1;
    padding-right: 30px;
    min-width: 300px;
}

.bilgi-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.bilgi-item .icon {
    width: 40px;
    height: 40px;
    background-color: #e20613;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 18px;
}

.bilgi-item .icerik h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.bilgi-item .icerik p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.sosyal-medya {
    margin-top: 30px;
}

.sosyal-ikonlar {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.sosyal-ikonlar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sosyal-ikonlar a:hover {
    background-color: #e20613;
    color: white;
    transform: translateY(-3px);
}

/* Ä°letiÅŸim Formu */
.iletisim-formu {
    flex: 1;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    min-width: 300px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
}

.zorunlu {
    color: #e20613;
}

.btn-gonder {
    background-color: #e20613;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-gonder:hover {
    background-color: #c00511;
}

/* Captcha */
.captcha-row {
    align-items: flex-end;
}

.captcha-group {
    position: relative;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-code {
    background-color: #e20613;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 2px;
    user-select: none;
}

/* BaÅŸarÄ±lÄ± ve Hata MesajlarÄ± */
.basarili-mesaj,
.hata-mesaj {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.basarili-mesaj {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.hata-mesaj {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.basarili-mesaj i,
.hata-mesaj i {
    margin-right: 10px;
    font-size: 18px;
}

/* Harita */
.harita-container {
    margin-top: 40px;
}

.harita {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Responsive TasarÄ±m */
@media screen and (max-width: 768px) {
    .iletisim-container {
        flex-direction: column;
    }
    
    .iletisim-bilgileri {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* PDF Görüntüleyici Stilleri */
.pdf-container {
    margin-bottom: 30px;
}

.pdf-viewer {
    margin-top: 20px;
    margin-bottom: 20px;
}

.pdf-viewer iframe {
    width: 100%;
    height: 600px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pdf-download {
    margin-top: 15px;
    font-size: 0.9em;
    color: #666;
}

.pdf-download a {
    color: #c10000;
    font-weight: 500;
    text-decoration: underline;
}

.pdf-download a:hover {
    color: #880000;
}

/* Kadro SayfalarÄ± Stilleri */
.kurumsal-menu {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.kurumsal-menu h3 {
    color: #e20613;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #e20613;
}

.kurumsal-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kurumsal-menu ul li {
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #eaeaea;
}

.kurumsal-menu ul li:last-child {
    border-bottom: none;
}

.kurumsal-menu ul li a {
    color: #333;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kurumsal-menu ul li a:hover {
    color: #e20613;
    padding-left: 5px;
}

.kurumsal-menu ul li.active a {
    color: #e20613;
    font-weight: 600;
}

/* Alt Menü Stilleri */
.kurumsal-menu ul li.has-submenu {
    position: relative;
}

.kurumsal-menu ul li .alt-menu {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
    display: block;
}

.kurumsal-menu ul li .alt-menu li {
    margin-bottom: 5px;
}

.kurumsal-menu ul li .alt-menu li a {
    font-size: 14px;
    padding: 8px 15px;
    color: #555;
    display: block;
    text-decoration: none;
}

.kurumsal-menu ul li .alt-menu li.active a,
.kurumsal-menu ul li .alt-menu li a:hover {
    background-color: #e20613;
    color: white;
    border-radius: 3px;
}


/* Kadro KartlarÄ± Stilleri */
.kadro-kart {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kadro-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.kadro-liste .row {
    margin-left: -15px;
    margin-right: -15px;
}

/* Kadro Detay/Profil Stilleri */
.kadro-profil {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .kadro-profil {
        flex-direction: column;
    }
}

.kadro-profil-gorsel {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 450px;
}

.kadro-profil-gorsel img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 5px;
}

.kadro-profil-bilgi {
    padding: 30px;
}

.kadro-profil-bilgi h2 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.kadro-profil-bilgi h3 {
    color: #e20613;
    margin-bottom: 20px;
    font-weight: 600;
}

.kadro-profil-aciklama {
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.kadro-profil-aciklama p {
    margin-bottom: 20px;
    text-indent: 30px !important;
    display: block;
}

.kadro-profil-aciklama p:last-child {
    margin-bottom: 0;
}

/* Sayfa BaÅŸlÄ±k Banner */
.sayfa-baslik-banner {
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #e20613;
    border-radius: 0 5px 5px 0;
}

.sayfa-baslik-banner h1 {
    margin: 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

/* Duyarlı Tasarım Medya Sorguları */
@media (max-width: 991px) {
    .kurumsal-menu {
        margin-bottom: 20px;
    }
    
    .kadro-profil-gorsel {
        flex: 0 0 100%;
    }
}

/* Content Section Padding */
.content-section {
    padding-top: 30px;
}

/* Kurumsal Menu Padding */
.kurumsal-menu {
    margin-top: 20px;
}



/* Paragraf stilleri - spesifik seçici ile paragraf başı girintisi */
section.content-section .container .row .kadro-profil-aciklama p {
    margin-bottom: 20px;
    text-indent: 30px !important;
    text-align: justify;
}

/* MYK Kadro Kartı Yatay Stil */
.kadro-kart-yatay {
    display: flex;
    flex-direction: row;
    background-color: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    width: 100%;
}

.kadro-kart-gorsel {
    flex: 0 0 120px;
    width: 120px;
    max-width: 120px;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.kadro-kart-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.kadro-kart-icerik {
    flex: 1;
    padding: 15px 20px;
}

.kadro-kart-icerik h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.kadro-kart-icerik h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #e20613;
    font-weight: 400;
}

.kadro-kart-aciklama {
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.kadro-kart-aciklama p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    text-align: justify;
    text-indent: 0;
}

.devamini-oku {
    display: inline-block;
    color: #e20613;
    margin-left: 5px;
    font-weight: 500;
    text-decoration: none;
}

.devamini-oku:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .kadro-kart-yatay {
        flex-direction: column;
    }
    
    .kadro-kart-gorsel {
        flex: 0 0 auto;
        max-width: 100%;
        min-width: 100%;
    }
    
    .kadro-kart-gorsel img {
        width: 100%;
        height: auto;
    }
}

/* MYK Üye Özet Kartı */
.kadro-ozet-kart {
    display: flex;
    flex-direction: row;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

.kadro-ozet-foto {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    height: 150px;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kadro-ozet-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.kadro-ozet-bilgi {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.kadro-ozet-bilgi h3 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    color: #333;
    margin-bottom: 3px;
}

.kadro-ozet-bilgi h4 {
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: #e20613;
    margin-bottom: 8px;
    font-weight: normal;
}

.kadro-ozet-bilgi p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    text-align: justify;
    margin-bottom: 5px;
}

.detay-link {
    display: inline-block;
    color: #e20613;
    text-decoration: none;
    font-size: 14px;
    align-self: flex-end;
    margin-top: 5px;
    font-weight: 500;
}

.detay-link:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .kadro-ozet-kart {
        flex-direction: column;
    }
    
    .kadro-ozet-foto {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-width: auto;
        min-height: unset;
    }
    
    .kadro-ozet-foto img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 300px;
    }
}

.kadro-profil {
    display: flex;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.kadro-profil-gorsel {
    flex: 0 0 350px;
    max-width: 350px;
    margin-right: 30px;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 450px;
}

.kadro-profil-gorsel img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 5px;
}

.kadro-ozet-bilgi {
    padding: 15px;
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.kadro-ozet-bilgi h3 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    color: #333;
    margin-bottom: 3px;
}

.kadro-ozet-bilgi h4 {
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: #e20613;
    margin-bottom: 8px;
    font-weight: normal;
}

.kadro-ozet-bilgi p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    text-align: justify;
    margin-bottom: 5px;
}

.detay-link {
    display: inline-block;
    color: #e20613;
    text-decoration: none;
    font-size: 14px;
    align-self: flex-end;
    margin-top: 5px;
    font-weight: 500;
}


/* Sosyal Medya İkonları Stilleri */
.sosyal-medya-ikonlar {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.sosyal-ikon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sosyal-ikon:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}

.sosyal-ikon.facebook {
    background-color: #3b5998;
}

.sosyal-ikon.twitter {
    background-color: #000;
}

.sosyal-ikon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Mobil Responsive Ayarları - Slider */
@media (max-width: 768px) {
    /* Hero Slider - Mobil Görünüm */
    .hero-slider {
        margin-bottom: 20px !important;
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        overflow: visible !important;
        max-height: none !important;
    }
    
    .slider-container {
        height: 250px !important;
        display: block !important;
        visibility: visible !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 5 !important;
    }
    
    .slider-item {
        display: flex !important;
    }
    
    .slider-item.active {
        opacity: 1 !important;
        z-index: 10 !important;
        visibility: visible !important;
    }
    
    .slider-background {
        background-size: cover !important;
    }
    
    .slider-nav {
        bottom: 10px !important;
        z-index: 15 !important;
        display: flex !important;
    }
    
    .slider-controls {
        display: flex !important;
        z-index: 15 !important;
    }
    
    .slider-btn {
        font-size: 14px !important;
        padding: 8px 16px !important;
    }
    
    .slider-prev, .slider-next {
        opacity: 0.8 !important;
        width: 35px !important;
        height: 35px !important;
    }
}

/* Kadro Profil ve Özet Kartı Responsive Ayarları */
@media (max-width: 576px) {
    /* MYK liste görünümü */
    .kadro-ozet-kart {
        flex-direction: column;
    }
    
    .kadro-ozet-foto {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-width: auto;
        min-height: unset;
    }
    
    .kadro-ozet-foto img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 300px;
    }
    
    /* MYK detay sayfası */
    .kadro-profil {
        flex-direction: column;
    }
    
    .kadro-profil-gorsel {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 450px;
    }
    
    .kadro-profil-gorsel img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 300px;
    }
}



/* Sosyal Medya Kartı Stilleri */
.sosyal-medya-kart {
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sosyal-medya-baslik h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #333;
    position: relative;
    padding-left: 10px;
    border-left: 3px solid #e20613;
}

.sosyal-medya-ikonlar {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 5px 0;
}

.sosyal-ikon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sosyal-ikon.facebook {
    background-color: #3b5998;
}

.sosyal-ikon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.sosyal-ikon.twitter {
    background-color: #1DA1F2;
}

.sosyal-ikon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: #fff;
}

.sosyal-ikon i {
    font-size: 20px;
}

/* MKYK �ye Listesi Stilleri */
.mkyk-liste {
    margin: 20px 0;
    padding: 0;
}

.mkyk-uye-listesi {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mkyk-uye-listesi li {
    padding: 10px 15px;
    margin-bottom: 5px;
    background-color: #f9f9f9;
    border-radius: 5px;
    font-size: 16px;
}

.mkyk-uye-listesi li.ilk-uye {
    background-color: #f5f5f5;
    border-left: 4px solid #c40d2e;
    padding: 15px;
}

.mkyk-ad-soyad {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.mkyk-unvan {
    color: #c40d2e;
    font-size: 16px;
    font-weight: 500;
}

/* İlçe Başkanları Listesi Stilleri */
.ilce-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 767px) {
    .ilce-grid {
        grid-template-columns: 1fr;
    }
}

.ilce-kart {
    display: flex;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: #fff;
    transition: all 0.3s ease;
}

.ilce-kart:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ilce-foto {
    width: 120px;
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
}

.ilce-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ilce-bilgi {
    padding: 15px;
    flex-grow: 1;
}

.ilce-ad-soyad {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.ilce-unvan {
    font-size: 15px;
    color: #e20613;
    margin-bottom: 10px;
    font-weight: 500;
}

.ilce-aciklama {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.ilce-sosyal {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.ilce-sosyal a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ilce-sosyal a:hover {
    background-color: #e20613;
    color: white;
    transform: translateY(-2px);
}


/* Ana Sayfa Video Stilleri */

.videolar-section .video-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.videolar-section .video-thumbnails-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #c20000 #f0f0f0;
}

.videolar-section .video-thumbnails-wrapper::-webkit-scrollbar {
    width: 6px;
}

.videolar-section .video-thumbnails-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.videolar-section .video-thumbnails-wrapper::-webkit-scrollbar-thumb {
    background-color: #c20000;
    border-radius: 6px;
}

.videolar-section .all-videos-btn-container .btn:hover {
    background-color: #a10000 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
    transform: translateY(-2px) !important;
}

.videolar-section .video-thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

.videolar-section .video-thumbnail.active {
    border: 2px solid #c20000;
}

.videolar-section .thumbnail-img {
    transition: all 0.3s ease;
}

.videolar-section .video-thumbnail:hover .thumbnail-img {
    filter: brightness(1.1);
}

.videolar-section .play-icon {
    transition: all 0.3s ease;
}

.videolar-section .video-thumbnail:hover .play-icon {
    transform: scale(1.1);
}

.videolar-section #video-title {
    transition: all 0.3s ease;
}

.videolar-section #video-description {
    transition: all 0.3s ease;
    line-height: 1.6;
}

@media (max-width: 992px) {

.videolar-section .video-player-container {
    height: auto;
}

.videolar-section #main-video-player {
    height: 350px !important;
    }
}

@media (max-width: 576px) {
.videolar-section #main-video-player {
    height: 250px !important;
   }
}


