      html {
    scroll-behavior: smooth;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            line-height: 1.6;
        }

       /* Header / Banner - Tam Sığdırma ve Hizalama Düzenlemesi */
.header {
    position: relative;
    min-height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    justify-content: flex-start;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(30, 60, 114, 0.9),
            rgba(42, 82, 152, 0.9)
        ),
url('https://images.unsplash.com/photo-1601999109332-5420d3b5a2c5?auto=format&fit=crop&w=1600&q=80');

        background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-color: #1e3c72;
    z-index: 0;
}

     /* Navigasyon Çubuğu - Logoyu Sola Sabitleyen Yapı */
.navbar {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(8px, 1.5vw, 24px);
    position: relative;
    z-index: 1;
    gap: 12px;
}

      .logo {
    display: flex;
    margin-left: 0;
    align-items: center;
    gap: 10px;
    font-size: clamp(15px, 1.6vw, 22px);
    font-weight: bold;
    flex-shrink: 0; /* Logonun daralmasını engeller */
    white-space: nowrap;
}

        .logo-icon {
            width: clamp(42px, 5vw, 60px);
            height: clamp(42px, 5vw, 60px);
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            flex-shrink: 0;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Nav menüsü: öğe sayısından bağımsız, otomatik ölçeklenir */
        .nav-menu {
            display: flex;
            gap: clamp(2px, 1vw, 18px);   /* Ekran genişliğine göre otomatik boşluk */
            list-style: none;
            align-items: center;
            flex-wrap: nowrap;
            flex-shrink: 1;              /* Gerekirse daralabilsin */
            min-width: 0;
        }

        .nav-menu > li {
            flex-shrink: 1;
            min-width: 0;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            padding: clamp(5px, 0.6vw, 8px) clamp(5px, 0.9vw, 13px);
            border-radius: 5px;
            transition: all 0.3s;
            font-size: clamp(12px, 1.1vw, 14.5px);   /* Yazı boyutu da ölçeklenir */
            white-space: nowrap;
            display: block;
        }

        .nav-menu a:hover {
            background: rgba(255,255,255,0.2);
        }

        /* Slider */
        .slider {
            max-width: 1200px;
            margin: 30px auto;
            background: white;
            border-radius: 15px;
            overflow: hidden;
    justify-content: flex-start;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            position: relative;
        }

        .slide {
            position: relative;
            height: 500px;
            display: none;
            animation: fadeIn 0.8s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(1.05); }
            to { opacity: 1; transform: scale(1); }
        }

        .slide.active {
            display: block;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
            color: white;
            padding: 50px;
        }

        .slide-title {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            animation: slideUp 0.8s ease-out 0.2s both;
        }

        .slide-description {
            font-size: 18px;
            line-height: 1.6;
            max-width: 700px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
            animation: slideUp 0.8s ease-out 0.4s both;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .slide-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: slideUp 0.8s ease-out both;
        }

        .slider-controls {
            position: absolute;
            bottom: 30px;
            right: 50px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            transition: all 0.3s;
        }

        .slider-btn:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
        }

        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            width: 40px;
            border-radius: 6px;
            background: white;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }

        /* Cards */
        .section {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 24px;
            color: #1e3c72;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #2a5298;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* HABER RESİMLERİ - SABİT BOYUT (DÜZELTİLDİ) */
        .news-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Haber resmi container - SABİT BOYUT */
        .news-item > img,
        .news-image {
            width: 150px !important;
            height: 100px !important;
            min-width: 150px !important;
            min-height: 100px !important;
            max-width: 150px !important;
            max-height: 100px !important;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
            display: block;
            background: #f0f0f0;
        }

        .news-content {
            flex: 1;
            min-width: 0; /* Flexbox overflow fix */
        }

        .news-title {
            font-size: 18px;
            color: #1e3c72;
            margin-bottom: 8px;
            font-weight: 600;
            line-height: 1.3;
        }

        .news-category {
            display: inline-block;
            background: #eef2f7;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            color: #2a5298;
            font-weight: 600;
            margin-bottom: 8px;
        }

    .news-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Eski tarayıcılar (Chrome/Safari) için */
    line-clamp: 2;         /* Modern ve standart tarayıcılar için */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

        .news-meta {
            display: flex;
            gap: 15px;
            font-size: 13px;
            color: #999;
        }

        .news-date {
            color: #666;
            font-size: 13px;
        }

        .news-views {
            color: #999;
            font-size: 13px;
        }

        /* Announcements */
        .announcement-item {
            padding: 15px;
            border-left: 4px solid #2a5298;
            background: #f8f9fa;
            margin-bottom: 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .announcement-item:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }

        .announcement-title {
            color: #1e3c72;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 15px;
        }

        .announcement-date {
            color: #666;
            font-size: 13px;
        }

        /* Events */
        .event-item {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid #28a745;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .event-item:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }

        .event-title {
            color: #1e3c72;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 15px;
            word-wrap: break-word;      /* Uzun kelimeleri zorla böler */
            overflow-wrap: break-word;  /* Taşan metni alt satıra atar */
            white-space: normal;        /* Metnin yan yana zorlanmasını iptal eder */
            flex: 1;                    /* Kalan boşluğu doldurur ama sınırı aşmaz */
            min-width: 0;
        }

        .event-status {
            color: #666;
            font-size: 13px;
            line-height: 1.5;
            flex-shrink: 0;       /* Başlık ne kadar uzun olursa olsun bu alanı asla küçültme! */
            white-space: nowrap;
        }

        /* Poll */
        .poll-option {
            margin-bottom: 15px;
        }

        .poll-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .poll-bar {
            height: 25px;
            background: #e9ecef;
            border-radius: 5px;
            overflow: hidden;
    justify-content: flex-start;
        }

        .poll-fill {
            height: 100%;
            background: linear-gradient(135deg, #2a5298, #1e3c72);
            display: flex;
            align-items: center;
            padding: 0 10px;
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        /* Quick Menu Buttons */
        .quick-menu {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .quick-button {
            background: white;
            padding: 30px 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: all 0.3s;
            text-decoration: none;
            color: #333;
        }

        .quick-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .quick-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .quick-title {
            font-weight: 600;
            color: #1e3c72;
        }

        /* Footer */
        .footer {
            background: #1e3c72;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }

        .footer-section h3 {
            margin-bottom: 15px;
            font-size: 18px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #ccc;
        }

        .view-all-link {
            color: #2a5298;
            text-decoration: none;
            font-size: 14px;
        }

        .view-all-link:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .quick-menu {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .nav-menu {
                flex-direction: column;
                gap: 10px;
            }
            
            /* Mobilde haber resimleri */
            .news-item > img,
            .news-image {
                width: 100px !important;
                height: 70px !important;
                min-width: 100px !important;
                min-height: 70px !important;
                max-width: 100px !important;
                max-height: 70px !important;
            }
        }
    
/* Sticky Header */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    /* Mobil Menü - Yan Panel */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: rgba(30,60,114,0.98);
        flex-direction: column;
        padding: 80px 20px 20px;
        border-radius: 0;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 10px;
        width: 100%;
        font-size: 16px;
    }
    
    .nav-menu a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .hamburger {
        display: block;
        color: white;
        position: relative;
        z-index: 1001;
    }
    
    /* Menu Overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Close Button */
    .close-menu {
        display: block; /* BUNU EKLEDİK - Sadece mobilde görünür yapar */
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 32px;
        cursor: pointer;
        padding: 0;
        line-height: 1;
        z-index: 1001;
    }
}


/* Header shrink on scroll */
.header.shrink {
    min-height: 100px;
    transition: all 0.3s ease;
}

.header.shrink .logo-icon {
    width: 45px;
    height: 45px;
}

/* Active menu link */
.nav-menu a.active {
    background: rgba(255,255,255,0.3);
}

/* Menu icons */
.nav-menu a::before {
    margin-right: 6px;
}



/* Modal Styles */
#newsModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-body {
    background: #fff;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 15px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: modalFade 0.3s ease;
    padding: 30px;
}
@keyframes modalFade { 
    from { opacity: 0; transform: translateY(-20px); } 
    to { opacity: 1; transform: translateY(0); } 
}
#modalContent {
    line-height: 1.8;
}
#modalContent img { 
    width: 100%; 
    height: auto;
    max-height: 400px; 
    object-fit: cover; 
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Loading spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ============================================
   İSTATİSTİK KARTLARI - CSS
   ============================================ */

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 10px;
}

.info-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.info-card.blue { 
    border-color: #2a5298;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.info-card.green { 
    border-color: #28a745;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.info-card.orange { 
    border-color: #fd7e14;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
}

.info-card.purple { 
    border-color: #6f42c1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f0ff 100%);
}

.info-icon {
    font-size: 56px;
    opacity: 0.85;
    line-height: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.info-text {
    flex: 1;
}

.info-text h3 {
    font-size: 42px;
    color: #1e3c72;
    margin: 0;
    font-weight: 700;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
}

.info-text p {
    margin: 8px 0 0;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1024px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .info-icon {
        font-size: 42px;
    }
    
    .info-text h3 {
        font-size: 32px;
    }
    
    .info-text p {
        font-size: 13px;
    }
}
/* ============================================
   İSTATİSTİK KARTLARI - CSS
   ============================================ */

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 10px;
}

.info-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.info-card.blue { 
    border-color: #2a5298;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.info-card.green { 
    border-color: #28a745;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.info-card.orange { 
    border-color: #fd7e14;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
}

.info-card.purple { 
    border-color: #6f42c1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f0ff 100%);
}

.info-icon {
    font-size: 56px;
    opacity: 0.85;
    line-height: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.info-text {
    flex: 1;
}

.info-text h3 {
    font-size: 42px;
    color: #1e3c72;
    margin: 0;
    font-weight: 700;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
}

.info-text p {
    margin: 8px 0 0;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive - İstatistik Kartları */
@media (max-width: 1024px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .info-icon {
        font-size: 42px;
    }
    
    .info-text h3 {
        font-size: 32px;
    }
    
    .info-text p {
        font-size: 13px;
    }
}

/* Inline Styles */
.ist1 { 
        display: flex;
        justify-content: center;
        align-items: center;
        height: 500px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       }
.ist2 { text-align: center; color: white; }
.ist3 { font-size: 48px; margin-bottom: 20px; }
.ist4 { font-size: 20px; font-weight: 600; }
.ist5 { text-align: center; padding: 20px }
.ist6 { margin-bottom: 40px }
.ist7 { 
                  color: #1e3c72;
                  margin-bottom: 20px;
                  font-size: 22px;
                  text-align: center;
                  border-bottom: 2px solid #2a5298;
                  padding-bottom: 10px;
                 }
.ist8 { max-width: 400px; margin: 0 auto }
.ist9 { 
                    background: linear-gradient(
                      135deg,
                      #667eea 0%,
                      #764ba2 100%
                    );
                    padding: 35px;
                    border-radius: 15px;
                    text-align: center;
                    color: white;
                    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
                   }
.ist10 { 
                      width: 100px;
                      height: 100px;
                      background: rgba(255, 255, 255, 0.25);
                      border-radius: 50%;
                      margin: 0 auto 20px;
                      display: flex;
                      align-items: center;
                      justify-content: center;
                      font-size: 48px;
                      border: 4px solid rgba(255, 255, 255, 0.4);
                      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
                     }
.ist11 { 
                      margin-bottom: 8px;
                      font-size: 24px;
                      font-weight: bold;
                     }
.ist12 { 
                      opacity: 0.95;
                      font-size: 16px;
                      margin-bottom: 12px;
                      font-weight: 600;
                     }
.ist13 { opacity: 0.85; font-size: 14px; line-height: 1.6 }
.ist15 { 
                  color: #1e3c72;
                  margin-bottom: 20px;
                  font-size: 20px;
                  border-left: 4px solid #2a5298;
                  padding-left: 15px;
                 }
.ist16 { 
                  display: grid;
                  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                  gap: 20px;
                 }
.ist17 { 
                    background: linear-gradient(
                      135deg,
                      #4facfe 0%,
                      #00f2fe 100%
                    );
                    padding: 30px;
                    border-radius: 12px;
                    text-align: center;
                    color: white;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s;
                   }
.ist18 { 
                      width: 80px;
                      height: 80px;
                      background: rgba(255, 255, 255, 0.25);
                      border-radius: 50%;
                      margin: 0 auto 15px;
                      display: flex;
                      align-items: center;
                      justify-content: center;
                      font-size: 36px;
                      border: 3px solid rgba(255, 255, 255, 0.4);
                     }
.ist19 { margin-bottom: 5px; font-size: 19px }
.ist20 { 
                      opacity: 0.9;
                      font-size: 14px;
                      margin-bottom: 10px;
                      font-weight: 600;
                     }
.ist21 { opacity: 0.85; font-size: 10px; line-height: 1.6 }
.ist22 { 
                    background: linear-gradient(
                      135deg,
                      #43e97b 0%,
                      #38f9d7 100%
                    );
                    padding: 30px;
                    border-radius: 12px;
                    text-align: center;
                    color: white;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s;
                   }
.ist27 { 
                    background: linear-gradient(
                      135deg,
                      #fa709a 0%,
                      #fee140 100%
                    );
                    padding: 30px;
                    border-radius: 12px;
                    text-align: center;
                    color: white;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s;
                   }
.ist32 { 
                    background: linear-gradient(
                      135deg,
                      #30cfd0 0%,
                      #330867 100%
                    );
                    padding: 30px;
                    border-radius: 12px;
                    text-align: center;
                    color: white;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s;
                   }
.ist37 { 
                    background: linear-gradient(
                      135deg,
                      #a8edea 0%,
                      #fed6e3 100%
                    );
                    padding: 30px;
                    border-radius: 12px;
                    text-align: center;
                    color: #333;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s;
                   }
.ist38 { 
                      width: 80px;
                      height: 80px;
                      background: rgba(102, 126, 234, 0.25);
                      border-radius: 50%;
                      margin: 0 auto 15px;
                      display: flex;
                      align-items: center;
                      justify-content: center;
                      font-size: 36px;
                      border: 3px solid rgba(102, 126, 234, 0.4);
                     }
.ist40 { 
                      opacity: 0.8;
                      font-size: 14px;
                      margin-bottom: 10px;
                      font-weight: 600;
                     }
.ist42 { 
                  color: #1e3c72;
                  margin-bottom: 20px;
                  font-size: 20px;
                  border-left: 4px solid #f5576c;
                  padding-left: 15px;
                 }
.ist43 { 
                  display: grid;
                  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                  gap: 20px;
                 }
.ist44 { 
                    background: linear-gradient(
                      135deg,
                      #f093fb 0%,
                      #f5576c 100%
                    );
                    padding: 30px;
                    border-radius: 12px;
                    text-align: center;
                    color: white;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s;
                   }
.ist48 { 
                      opacity: 0.9;
                      font-size: 10px;
                      margin-bottom: 10px;
                      font-weight: 600;
                     }
.ist49 { 
                    background: linear-gradient(
                      135deg,
                      #667eea 0%,
                      #764ba2 100%
                    );
                    padding: 30px;
                    border-radius: 12px;
                    text-align: center;
                    color: white;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s;
                   }
.ist54 { 
                    background: linear-gradient(
                      135deg,
                      #ff9a56 0%,
                      #ff6a88 100%
                    );
                    padding: 30px;
                    border-radius: 12px;
                    text-align: center;
                    color: white;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s;
                   }
.ist59 { text-align: center; padding: 20px; color: #999; }
.ist61 { margin-bottom: 20px; color: #333 }
.ist62 { width: 27% }
.ist64 { width: 21% }
.ist65 { width: 8% }
.ist66 { width: 12% }
.ist67 { 
                text-align: center;
                margin-top: 15px;
                color: #666;
                font-size: 14px;
               }
.ist68 { 
            position: absolute;
            top: 15px;
            right: 15px;
            background: #fff;
            border: none;
            font-size: 24px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 100;
           }
/* Duyuru kartları - tıklanabilir */
.announcement-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    cursor: pointer; /* Tıklanabilir */
    position: relative;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.announcement-card:hover .announcement-date,
.announcement-card:hover .announcement-preview {
    color: rgba(255,255,255,0.9);
}

.announcement-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.announcement-content {
    flex: 1;
    min-width: 0;
}

.announcement-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.announcement-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    color: #1e3c72;
    word-wrap: break-word;
}

.announcement-card:hover .announcement-title {
    color: white;
}

.announcement-preview {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.announcement-arrow {
    font-size: 24px;
    color: #667eea;
    flex-shrink: 0;
}

.announcement-card:hover .announcement-arrow {
    color: white;
    transform: translateX(5px);
}

/* DUYURU MODAL */
.announcement-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s;
}

.announcement-modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideIn 0.3s;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.announcement-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    position: relative;
}

.announcement-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border: none;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.announcement-modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.announcement-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 40px 10px 0;
    line-height: 1.3;
}

.announcement-modal-date {
    font-size: 14px;
    opacity: 0.9;
}

.announcement-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.announcement-modal-body p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .announcement-modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 80vh;
    }

    .announcement-modal-header {
        padding: 20px;
    }

    .announcement-modal-title {
        font-size: 20px;
    }

    .announcement-modal-body {
        padding: 20px;
    }

    .announcement-card {
        padding: 15px;
    }

    .announcement-icon {
        font-size: 28px;
    }

    .announcement-title {
        font-size: 15px;
    }

    .announcement-preview {
        font-size: 13px;
    }
}

/* Scroll bar özelleştirme */
.announcement-modal-body::-webkit-scrollbar {
    width: 8px;
}

.announcement-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.announcement-modal-body::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.announcement-modal-body::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}
.social-media-enhanced {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 20px;
    border-radius: 15px;
}

/* İstatistik Kartları Grid */
.social-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.social-stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.twitter-stat::before {
    background: linear-gradient(90deg, #1DA1F2, #0c85d0);
}

.instagram-stat::before {
    background: linear-gradient(90deg, #E1306C, #F56040, #FCAF45);
}

.posts-stat::before {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.likes-stat::before {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.social-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.social-stat-card .stat-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #667eea;
}

.twitter-stat .stat-icon {
    color: #1DA1F2;
}

.instagram-stat .stat-icon {
    color: #E1306C;
}

.social-stat-card .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 8px;
}

.social-stat-card .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Gelişmiş Sosyal Medya Butonları */
.social-buttons-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.social-btn-enhanced {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: all 0.4s;
    z-index: 0;
}

.twitter-btn::before {
    background: linear-gradient(135deg, #1DA1F2, #0c85d0);
}

.instagram-btn::before {
    background: linear-gradient(135deg, #E1306C, #F56040, #FCAF45);
}

.social-btn-enhanced:hover::before {
    left: 0;
}

.social-btn-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.social-btn-enhanced:hover .btn-icon,
.social-btn-enhanced:hover .btn-content,
.social-btn-enhanced:hover .btn-arrow {
    color: white;
    position: relative;
    z-index: 1;
}

.social-btn-enhanced .btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.twitter-btn .btn-icon {
    background: linear-gradient(135deg, #1DA1F2, #0c85d0);
    color: white;
}

.instagram-btn .btn-icon {
    background: linear-gradient(135deg, #E1306C, #F56040);
    color: white;
}

.social-btn-enhanced .btn-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.social-btn-enhanced .btn-title {
    font-weight: 700;
    font-size: 16px;
    color: #1e3c72;
    margin-bottom: 3px;
    transition: color 0.3s;
}

.social-btn-enhanced .btn-subtitle {
    font-size: 13px;
    color: #666;
    transition: color 0.3s;
}

.social-btn-enhanced .btn-arrow {
    font-size: 24px;
    color: #667eea;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.social-btn-enhanced:hover .btn-arrow {
    transform: translateX(5px);
}

/* Son Paylaşımlar */
.latest-posts {
    margin-bottom: 30px;
}

.latest-posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.latest-posts-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3c72;
    margin: 0;
}

.latest-posts-header .view-all {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.latest-posts-header .view-all:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.post-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-item:hover img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.post-item:hover .post-overlay {
    opacity: 1;
}

.post-stats {
    color: white;
    font-weight: 600;
    display: flex;
    gap: 20px;
    font-size: 14px;
}

/* Sosyal Medya CTA */
.social-feed-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 30px;
    color: white;
}

.feed-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feed-cta-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.feed-cta-text {
    flex: 1;
    min-width: 200px;
}

.feed-cta-text h4 {
    margin: 0 0 5px 0;
    font-size: 22px;
}

.feed-cta-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.feed-cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feed-cta-btn {
    background: white;
    color: #667eea;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}

.feed-cta-btn:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .social-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-stat-card .stat-number {
        font-size: 28px;
    }

    .social-buttons-enhanced {
        grid-template-columns: 1fr;
    }

    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feed-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .feed-cta-buttons {
        width: 100%;
        justify-content: center;
    }

    .feed-cta-btn {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .social-stats-grid {
        grid-template-columns: 1fr;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .feed-cta-icon {
        font-size: 36px;
    }

    .feed-cta-text h4 {
        font-size: 18px;
    }
}
/* WhatsApp Float Buton Stilleri */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 15px;
    font-family: sans-serif;
}

/* Üzerine gelince büyüme efekti */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobil cihazlar için boyut düzenlemesi */
@media (max-width: 768px) {
    .whatsapp-text {
        display: none; /* Mobilde sadece ikon görünsün istersen bunu bırak, yazı da kalsın dersen bu satırı sil */
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-content {
        padding: 12px;
    }
    .whatsapp-icon {
        margin-left: 0;
    }
}
/* Masaüstü Görünümde Mobil Kapatma Butonunu Gizle */
.close-menu {
    display: none;
}
@media (max-width: 768px) {
    /* Header */
    header {
        padding: 15px 20px;
    }

    /* Navigation */
    nav, .navigation {
        width: 100%;
    }

    /* Nav Links */
    .nav-links, nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links li, nav ul li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links a, nav ul a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        font-size: 16px;
    }

    /* Logo */
    .logo {
        font-size: 18px;
    }
}