 
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Montserrat', sans-serif; background-color: #eff2f7; overflow-x: hidden; color: #333; }
        a { text-decoration: none;  transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

        /* --- HEADER --- */
        .initial-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 1000; background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%); padding-bottom: 20px; transition: transform 0.3s ease; }
        .initial-header a { color: white; }
        .top-bar { display: flex; justify-content: space-between; align-items: center; padding: 10px 50px; font-size: 12px; font-weight: 700; }
        .top-left, .top-right { display: flex; align-items: center; gap: 15px; }
        .pill-btn { border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; padding: 8px 15px; display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.5px; white-space: nowrap; }
        .pill-btn:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
        .icon-only-btn { width: 35px; height: 35px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; }
        .main-nav { display: flex; justify-content: center; align-items: center; padding: 10px 50px; position: relative; }
        .nav-links { display: flex; gap: 30px; font-size: 14px; font-weight: 800; text-transform: uppercase; width: 40%; }
        .nav-left { justify-content: flex-end; }
        .nav-right { justify-content: flex-start; }
        .center-logo { width: 20%; display: flex; justify-content: center; }
        .center-logo img { height: 90px; object-fit: contain; }

        /* --- SCROLLED HEADER --- */
        .scrolled-header { position: fixed; top: 0; left: 0; width: 100%; height: 80px; background-color: #163e72; z-index: 1001; display: flex; justify-content: space-between; align-items: center; padding: 0 50px; transform: translateY(-100%); transition: transform 0.4s ease-in-out; box-shadow: 0 4px 15px rgba(0,0,0,0.3); color: white; }
        .scrolled-header.active { transform: translateY(0); }
        .sh-left { display: flex; align-items: center; gap: 15px; font-size: 20px; font-weight: 800; cursor: pointer; }
        .menu-icon { display: flex; flex-direction: column; gap: 5px; }
        .menu-icon span { width: 25px; height: 2px; background-color: white; display: block; }
        .sh-center img { height: 50px; }
        .sh-right { display: flex; gap: 15px; }

        /* --- HERO SLIDER --- */
        .hero-slider { position: relative; width: 100%; height: 100vh; background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover; display: flex; justify-content: center; align-items: center; }
        .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }
        .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); font-size: 30px; color: rgba(255,255,255,0.7); cursor: pointer; font-weight: 100; padding: 20px; transition: 0.3s; z-index: 20; }
        .slider-arrow:hover { color: #fff; }
        .arrow-left { left: 30px; }
        .arrow-right { right: 30px; }
        .hero-content { z-index: 10; text-align: center; padding: 0 20px; }
        .hero-badge h1 { font-size: 4rem; text-shadow: 0 0 20px rgba(0,0,0,0.8); color: #fff; font-weight: 800; }
        .hero-badge h1 span { font-family: 'Kaushan Script', cursive; font-weight: 400; font-size: 5rem;  }
        .scroll-down { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); font-size: 30px; color: white; animation: bounce 2s infinite; z-index: 20; }
        @keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);} 40% {transform: translateX(-50%) translateY(-10px);} 60% {transform: translateX(-50%) translateY(-5px);} }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: #e6ebf1;
}
        /* --- HABERLER --- */
        .news-section { padding: 50px 0; display: flex; justify-content: center; }
        .news-grid-wrapper { display: grid; grid-template-columns: 1.3fr 1fr; gap: 25px; width: 100%; }
        .featured-news { display: flex; flex-direction: column; gap: 15px; }
        .main-slider-card { position: relative; width: 100%; height: 450px; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .main-slider-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .main-slider-card:hover img { transform: scale(1.03); }
        .overlay-gradient { position: absolute; bottom: 0; left: 0; width: 100%; height: 80%; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 100%); z-index: 1; }
        .featured-content { position: absolute; bottom: 30px; left: 30px; right: 30px; z-index: 2; color: #fff; }
        .featured-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
        .featured-content p { font-size: 14px; margin-bottom: 15px; opacity: 0.9; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .slider-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); font-size: 24px; color: rgba(255,255,255,0.6); cursor: pointer; z-index: 3; padding: 10px; transition: 0.3s; }
        .slider-nav-btn:hover { color: #fff; }
        .prev-btn { left: 20px; }
        .next-btn { right: 20px; }
        .thumbnails-row { display: flex; gap: 10px; height: 80px; }
        .thumb-item { flex: 1; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: 0.3s; }
        .thumb-item img { width: 100%; height: 100%; object-fit: cover; }
        .thumb-item.active { border-color: #5cb85c; }
        .all-news-btn { background-color: #5cb85c; color: white; flex: 1; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; line-height: 1.2; text-align: center; }
        .side-news-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 20px; }
        .news-card { background-color: #0f3057; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; position: relative; transition: transform 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        .news-card:hover { transform: translateY(-5px); }
        .card-img { height: 140px; width: 100%; position: relative; }
        .card-img img { width: 100%; height: 100%; object-fit: cover; }
        .category-badge { position: absolute; top: 10px; right: 10px; padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; }
        .badge-invest { background-color: #0056b3; }
        .badge-social { background-color: #28a745; }
        .badge-culture { background-color: #d63384; }
        .card-content { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
        .card-content h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
        .card-date { color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 500; }

        /* --- DERNEK REHBERİ (DR) ÖZEL CSS --- */
        .dr-section { width: 100%; display: flex; flex-direction: column; font-family: 'Montserrat', sans-serif; position: relative; background-color: #fff; z-index: 5; margin-bottom: 0; box-sizing: border-box; }
        .dr-section * { box-sizing: border-box; }
        .dr-header-row { display: flex; width: 100%; height: 70px; background-color: #0f3057; }
        .dr-tabs-container { width: 40%; display: flex; align-items: flex-end; padding-left: 40px; }
        .dr-tab-btn { padding: 0 25px; height: 50px; background: transparent; color: rgba(255,255,255,0.7); border: none; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; transition: all 0.3s; text-transform: uppercase; border-top-left-radius: 5px; border-top-right-radius: 5px; }
        .dr-tab-btn:hover { color: #fff; background-color: rgba(255,255,255,0.1); }
        .dr-tab-btn.dr-active { background-color: #16468a; color: #fff; font-weight: 800; }
        .dr-title-container { width: 60%; display: flex; flex-direction: column; justify-content: center; padding-left: 40px; color: white; border-left: 1px solid rgba(255,255,255,0.05); }
        .dr-title-container h2 { font-size: 20px; font-weight: 800; margin: 0; }
        .dr-title-container p { font-size: 12px; margin: 3px 0 0 0; font-style: italic; opacity: 0.7; }
        .dr-body-row { display: flex; width: 100%; background-color: #16468a; min-height: 480px; position: relative; }
        .dr-left-panel { width: 40%; padding: 30px 20px 30px 50px; border-right: 1px solid rgba(255,255,255,0.1); position: relative; }
        .dr-scroll-area { height: 420px; overflow-y: auto; padding-right: 15px; }
        .dr-scroll-area::-webkit-scrollbar { width: 6px; }
        .dr-scroll-area::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); border-radius: 10px; }
        .dr-scroll-area::-webkit-scrollbar-thumb { background: #6fc139; border-radius: 10px; }
        .dr-grid-view { display: none; grid-template-columns: repeat(3, 1fr); gap: 15px; }
        .dr-grid-view.dr-show { display: grid; }
        .dr-icon-box { aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; transition: 0.3s; cursor: pointer; padding: 10px; }
        .dr-icon-box:hover { background-color: rgba(255,255,255,0.1); border-color: #fff; }
        .dr-icon-box i { font-size: 24px; margin-bottom: 10px; opacity: 0.9; }
        .dr-icon-box span { font-size: 10px; font-weight: 700; line-height: 1.3; }
        .dr-right-panel { width: 60%; padding: 30px 40px; display: flex; align-items: center; justify-content: center; position: relative; }
        .dr-slider-frame { width: 100%; height: 100%; position: relative; background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .dr-slider-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.4s ease; }
        .dr-arrow-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; background-color: #16468a; color: white; border-radius: 50%; border: 3px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 24px; cursor: pointer; z-index: 20; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: transform 0.2s; }
        .dr-arrow-btn:hover { transform: translateY(-50%) scale(1.1); background-color: #0f3057; }
        .dr-prev { left: 10px; }
        .dr-next { right: 10px; }
        .dr-float-action { position: absolute; bottom: 40px; right: -25px; width: 55px; height: 55px; background-color: #6fc139; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; cursor: pointer; z-index: 100; border: 4px solid #16468a; box-shadow: 0 5px 10px rgba(0,0,0,0.2); }

        /* --- PROJELER --- */
        .projects-section { padding: 60px 0 80px 0; text-align: center; overflow: hidden; position: relative; }
        .ph-top { font-size: 32px; font-weight: 300; color: #163e72; letter-spacing: 2px; margin: 0; line-height: 1; }
        .ph-bottom { font-family: 'Kaushan Script', cursive; font-size: 64px; color: #163e72; margin: 0; line-height: 1.1; transform: rotate(-2deg); display: inline-block; }
        .swiper-container { width: 100%; padding: 20px 50px 60px 50px; }
        .project-card-img { width: 100%; aspect-ratio: 1 / 1; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin-bottom: 20px; }
        .project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .project-card-img:hover img { transform: scale(1.1); }
        .project-title { color: #163e72; font-size: 15px; font-weight: 800; text-transform: uppercase; margin-bottom: 5px; }
        .project-category { color: #777; font-size: 13px; }
        .big-green-btn { background-color: #6fc139; color: white; padding: 15px 100px; border-radius: 50px; font-weight: 800; font-size: 16px; display: inline-flex; align-items: center; gap: 20px; box-shadow: 0 10px 20px rgba(111, 193, 57, 0.3); }

        /* --- ETKİNLİKLER & FOOTER VS --- */
        .events-section { padding: 50px 0; max-width: 1400px; margin: 0 auto; }
        .section-header { text-align: center; margin-bottom: 40px; }
        .section-header h2 { color: #163e72; font-size: 36px; font-weight: 800; margin-bottom: 10px; }
        .events-wrapper { display: flex; gap: 30px; padding: 0 20px; }
        .calendar-container { flex: 1.2; }
        .calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
        .month-title { font-size: 28px; font-weight: 700; color: #555; }
        .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
        .day-name { text-align: center; background: #fff; padding: 10px; font-weight: 700; color: #7f8c8d; font-size: 13px; }
        .day-cell { background: #fff; min-height: 100px; border-radius: 8px; padding: 10px; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
        .day-cell:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .day-number { font-weight: 700; color: #bdc3c7; align-self: flex-end; }
        .day-cell.active-day { background-color: #5cb85c; }
        .day-cell.active-day .day-number { color: #fff; }
        .event-indicator { font-size: 9px; color: #5cb85c; font-weight: 700; margin-top: 5px; }
        .event-list-container { flex: 1; }
        .list-header { display: flex; justify-content: space-between; margin-bottom: 20px; }
        .list-title { font-size: 24px; font-weight: 700; }
        .view-all-btn { background: #163e72; color: white; padding: 8px 20px; border-radius: 4px; font-size: 12px; font-weight: 600; }
        .events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .event-card { display: flex; gap: 15px; align-items: center; cursor: pointer; }
        .event-poster { width: 110px; height: 110px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
        .event-poster img { width: 100%; height: 100%; object-fit: cover; }
        .event-details h4 { font-size: 16px; font-weight: 800; margin-bottom: 5px; }
        .event-meta { font-size: 12px; color: #7f8c8d; }
        .multimedia-section { position: relative; width: 100%; min-height: 600px; background: linear-gradient(to right, rgba(11, 46, 90, 0.95), rgba(11, 46, 90, 0.6)), url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?q=80&w=1920&auto=format&fit=crop'); background-size: cover; display: flex; align-items: center; padding: 60px 0; color: white; }
        .mm-container { display: flex; gap: 50px; max-width: 1400px; margin: 0 auto; padding: 0 30px; width: 100%; }
        .mm-left { flex: 0.8; display: flex; flex-direction: column; justify-content: space-between; min-height: 450px; position: relative; }
        .mm-header h2 { font-size: 42px; font-weight: 800; line-height: 1; }
        .play-wrapper { position: absolute; top: 50%; left: 0; transform: translateY(-50%); }
        .play-btn { width: 80px; height: 80px; background-color: #5cb85c; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: white; animation: pulse 2s infinite; }
        @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(92,184,92,0.7); } 70% { box-shadow: 0 0 0 20px rgba(92,184,92,0); } 100% { box-shadow: 0 0 0 0 rgba(92,184,92,0); } }
        .mm-right { flex: 1.2; }
        .mm-tabs { display: flex; gap: 15px; margin-bottom: 30px; justify-content: flex-end; }
        .mm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .img-container { width: 100%; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; margin-bottom: 10px; position: relative; }
        .img-container img { width: 100%; height: 100%; object-fit: cover; }
        .video-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: rgba(0,0,0,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid white; }
        .connect-partners-section { padding: 40px 0 60px 0; background-color: #fff; }
        .social-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
        .social-circle { width: 50px; height: 50px; background-color: #5cb85c; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; }
        .social-circle:hover { background-color: #4cae4c; }
        .mobile-app-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px; border-bottom: 1px solid #eee; margin-bottom: 40px; gap: 20px; }
        .app-title-wrapper { display: flex; align-items: center; gap: 15px; color: #163e72; }
        .app-title-wrapper i { font-size: 42px; }
        .app-text { font-size: 28px; line-height: 1; }
        .app-text .bold { font-weight: 800; }
        .app-badges-wrapper { display: flex; gap: 30px; }
        .badge-group { display: flex; align-items: center; gap: 8px; }
        .store-img { height: 32px; }
        .qr-img { width: 45px; }
        .partner-card { border: 1px solid #e1e1e1; border-radius: 10px; overflow: hidden; background: #fff; height: 180px; display: flex; flex-direction: column; }
        .p-logo-box { flex: 1; display: flex; align-items: center; justify-content: center; padding: 15px; }
        .p-logo-box img { max-width: 90%; max-height: 60px; filter: grayscale(100%); opacity: 0.7; }
        .partner-card:hover .p-logo-box img { filter: grayscale(0%); opacity: 1; }
        .p-name-box { background: #f9f9f9; padding: 12px; text-align: center; border-top: 1px solid #eee; font-size: 12px; font-weight: 700; color: #555; }
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 9999; display: none; justify-content: center; align-items: center; }
        .modal-box { background: white; width: 800px; max-width: 90%; display: flex; position: relative; }
        .modal-left { width: 45%; position: relative; }
        .modal-left img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .location-bar { position: absolute; bottom: 20px; left: 20px; right: 20px; background: black; color: white; padding: 10px; font-size: 11px; font-weight: 700; display: flex; gap: 10px; }
        .modal-right { width: 55%; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
        .close-modal { position: absolute; top: -20px; right: -20px; width: 40px; height: 40px; background: #5cb85c; color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; }
        .modal-btn { margin-top: 30px; border: 2px solid #5cb85c; color: #5cb85c; background: transparent; padding: 15px; font-weight: 800; cursor: pointer; width: 100%; }

        @media (max-width: 1200px) { .nav-links { gap: 15px; font-size: 12px; } .mm-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 1024px) {
            .initial-header { display: none; }
            .scrolled-header { transform: translateY(0); background-color: #163e72; position: sticky; }
            .news-grid-wrapper { grid-template-columns: 1fr; }
            .main-slider-card { height: 400px; }
            .side-news-grid { grid-template-columns: 1fr 1fr; }
            .events-wrapper { flex-direction: column; }
            .mm-container { flex-direction: column; gap: 30px; }
            .mm-left { min-height: 300px; align-items: center; text-align: center; }
            .play-wrapper { position: relative; transform: none; margin: 30px 0; }
            .mm-tabs { justify-content: center; flex-wrap: wrap; }
            .mobile-app-row { flex-direction: column; text-align: center; }
            .app-badges-wrapper { flex-wrap: wrap; justify-content: center; }
            .app-title-wrapper { flex-direction: column; }
            .dr-header-row { height: auto; flex-direction: column; }
            .dr-tabs-container, .dr-title-container { width: 100%; padding: 15px 20px; }
            .dr-tabs-container { overflow-x: auto; }
            .dr-body-row { flex-direction: column; }
            .dr-left-panel, .dr-right-panel { width: 100%; border: none; }
            .dr-left-panel { height: auto; padding: 20px; }
            .dr-scroll-area { height: auto; max-height: 300px; }
            .dr-right-panel { padding: 20px; height: 300px; }
            .dr-arrow-btn { width: 40px; height: 40px; font-size: 16px; }
            .dr-float-action { display: none; }
        }
        @media (max-width: 768px) {
            .hero-badge h1 { font-size: 2.5rem; }
            .hero-badge h1 span { font-size: 3.5rem; }
            .ph-bottom { font-size: 40px; }
            .ph-top { font-size: 24px; }
            .side-news-grid { grid-template-columns: 1fr; }
            .thumbnails-row { display: none; }
            .events-grid { grid-template-columns: 1fr; }
            .big-green-btn { padding: 15px 30px; width: 90%; justify-content: space-between; }
            .modal-box { flex-direction: column; }
            .modal-left, .modal-right { width: 100%; }
            .modal-left { height: 200px; }
            .modal-right { padding: 20px; }
            .day-cell { min-height: 60px; padding: 5px; }
            .day-number { font-size: 12px; }
            .event-indicator { display: none; }
            .mm-header h2 { font-size: 32px; }
        }
            /* SAĞ PANEL GÖRSEL SABİTLEME */
    .dr-right-panel {
        /* Sol taraftaki grid yüksekliğiyle dengeli olması için sabit yükseklik */
        height: 420px; 
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }
    
    .dr-swiper-container {
        width: 100%;
        height: 100%;
    }

    .dr-swiper-slide {
        width: 100%;
        height: 100%;
    }

    .dr-swiper-slide a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .dr-slider-img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
            background-color: white;
        object-position: center;
    }

    /* Slider Okları İçin Özelleştirme */
    .dr-nav-btn {
        color: #fff;
        background: rgba(0,0,0,0.3);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .dr-nav-btn:after { font-size: 18px; font-weight: bold; }

    /* Mobilde yükseklik ayarı */
    @media (max-width: 768px) {
        .dr-right-panel {
            height: 250px;
            margin-top: 20px;
        }
    }
        /* Takvim Genel Kapsayıcı */
    .calendar-container {
        background: #f8f9fa; /* Hafif gri arka plan */
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Üst Mavi Başlık Alanı */
    .calendar-header {
        background-color: #f0f4f8; /* Çok açık mavi/gri */
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: linear-gradient(135deg, #e3e8ee 0%, #f1f5f9 100%);
    }

    .month-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #34495e;
        text-transform: capitalize;
    }

    /* Butonlar */
    .cal-btn-today {
        background: #95a5a6;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
    }
    .cal-btn-today:hover { background: #7f8c8d; }

    .nav-arrows { display: flex; gap: 5px; }
    
    .cal-nav-btn {
        background: #1e5aa0; /* Koyu Mavi */
        color: white;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 5px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }
    .cal-nav-btn:hover { background: #163e72; }

    /* Takvim Gövdesi */
    .calendar-body {
        padding: 15px;
        background: #fff;
    }

    .calendar-days-header {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        text-align: center;
        font-weight: 600;
        color: #777;
        background: #f9f9f9;
        padding: 10px 0;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
    }

    /* Gün Hücreleri */
    .day-cell {
        min-height: 80px; /* Görseldeki gibi karemsi */
        background: #f4f6f9;
        border-radius: 8px;
        padding: 5px 8px;
        font-size: 1rem;
        color: #555;
        font-weight: bold;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end; /* Numarayı sağa yasla */
        transition: 0.2s;
        cursor: default;
    }

    .day-cell.empty { background: transparent; }

    /* Bugün */
    .day-cell.today {
        background: #fff;
        border: 2px solid #1e5aa0;
        color: #1e5aa0;
    }

    /* ETKİNLİK VARSA (YEŞİL KUTU) */
    .day-cell.has-event {
        background-color: #5cb85c; /* Görseldeki Yeşil Tonu */
        color: white;
        cursor: pointer;
        position: relative;
        border: none;
    }

    .day-cell.has-event:hover {
        background-color: #4cae4c;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    /* Eğer etkinlik varsa numaranın altına başlık koyabiliriz (opsiyonel) */
    .event-dots {
        align-self: flex-start;
        font-size: 1rem;
        margin-top: 5px;
        text-align: left;
        line-height: 1.2;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
        /* GENEL BÖLÜM STİLİ */
    .multimedia-section {
        position: relative;
        background: linear-gradient(to right, #0a2e5c, #0d3a73); /* Görseldeki koyu mavi ton */
        padding: 60px 0;
        color: #fff;
        overflow: hidden;
    }

    .mm-container {
        position: relative;
        z-index: 2;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 15px;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    /* SOL TARAF (VİDEO) */
    .mm-left {
        flex: 1;
        min-width: 350px;
        display: flex;
        flex-direction: column;
    }

    /* Başlık Alanı */
    .mm-title {
        margin-bottom: 20px;
    }
    .mm-title h2 {
        font-size: 42px;
        font-weight: 800;
        margin: 0;
        text-transform: uppercase;
        line-height: 1;
        letter-spacing: -1px;
    }
    .mm-title p {
        color: #aabdd1; /* Soluk mavi metin */
        margin-top: 5px;
        font-size: 15px;
        opacity: 0.8;
    }

    /* Video Kartı Tasarımı */
    .video-card-wrap {
        flex-grow: 1;
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        background-color: #000; /* Resim yüklenmezse siyah kalsın */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 400px; /* Yükseklik garantisi */
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Resmin üzerine hafif karartma (yazılar ve buton görünsün diye) */
    .video-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.3);
        z-index: 1;
        transition: 0.3s;
    }
    .video-card-wrap:hover .video-overlay {
        background: rgba(0,0,0,0.1); /* Hoverda resim netleşsin */
    }

    /* Play Butonu */
    .play-btn-large {
        position: relative;
        z-index: 2;
        width: 80px;
        height: 80px;
        background-color: #5cb85c; /* Yeşil buton */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 0 10px rgba(92, 184, 92, 0.3);
        transition: transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        text-decoration: none;
    }
    .play-btn-large:hover {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(92, 184, 92, 0.4);
    }
    .play-btn-large i {
        color: #fff;
        font-size: 28px;
        margin-left: 4px; 
    }

    /* Video Alt Bilgileri */
    .video-info-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 30px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        z-index: 2;
        text-align: left;
    }
    .video-info-bottom h3 {
        font-size: 26px;
        font-weight: 700;
        margin: 0;
        margin-bottom: 5px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    .video-info-bottom span {
        color: #ddd;
        font-size: 14px;
        opacity: 0.9;
    }

    /* SAĞ TARAF (GALERİ) */
    .mm-right {
        flex: 1.5;
        min-width: 350px;
    }

    /* Tab Butonları */
    .mm-tabs-row {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        justify-content: flex-end; 
    }

    .mm-tab-btn {
        padding: 10px 25px;
        border-radius: 5px;
        background: rgba(255,255,255,0.05);
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        border: 1px solid rgba(255,255,255,0.1);
        transition: 0.3s;
    }

    .mm-tab-btn.active {
        background-color: #5cb85c; 
        border-color: #5cb85c;
    }
    .mm-tab-btn:hover {
        background-color: #4cae4c;
        border-color: #4cae4c;
    }

    /* Grid Yapısı */
    .mm-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .gallery-card {
        background: transparent;
        overflow: hidden;
        position: relative;
        transition: 0.3s;
    }
    
    .g-img-box {
        width: 100%;
        height: 140px; /* Sabit yükseklik - Karemsi görünüm */
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }
    .g-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    .gallery-card:hover .g-img-box img {
        transform: scale(1.1);
    }

    .g-info {
        padding-top: 10px;
    }
    .g-title {
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        display: block;
        line-height: 1.3;
        margin-bottom: 5px;
    }
    .g-meta {
        font-size: 12px;
        color: #aabdd1;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    /* Mobil Uyumluluk */
    @media (max-width: 991px) {
        .mm-container { flex-direction: column; }
        .mm-tabs-row { justify-content: flex-start; flex-wrap: wrap; }
        .video-card-wrap { min-height: 300px; }
        .mm-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 576px) {
        .mm-grid { grid-template-columns: repeat(1, 1fr); }
    }y    @media screen and (max-width: 991px) {

        .hero-slider {
      
            background-size: contain !important; 
            background-repeat: no-repeat !important;
            background-position: center top !important;
            
         
            height: 260px !important; 
            
            background-color: #1a1a1a !important; 
        }

        .hero-content {
            top: 50% !important;
            transform: translateY(-50%) !important;
            width: 100% !important;
            padding: 0 10px !important;
            text-align: center !important;
                    margin-top: 73px;
        }

        .hero-content h1 {
            font-size: 22px !important;
            margin-bottom: 10px !important;
            text-shadow: 2px 2px 4px #000 !important; 
            padding-bottom: 21px;
        }
        
        .hero-content h1 span {
            display: none !important; 
        }

        /* İncele Butonu */
        .hero-content .btn-primary {
            margin-top: 10px !important;
            padding: 10px 30px !important;
            font-size: 14px !important;
            display: inline-block !important;
        }

        /* Okları mobilde kenarlara al */
        .arrow-left { left: 5px !important; }
        .arrow-right { right: 5px !important; }


        .dr-body-row {
            display: flex !important;
            flex-direction: column !important;
        }

        .dr-left-panel, .dr-right-panel {
            width: 100% !important;
            max-width: 100% !important;
            flex: 0 0 100% !important;
        }

        .dr-grid-view {
            display: grid !important;
            grid-template-columns: repeat(3, 1fr) !important; 
            gap: 10px !important;
            padding: 10px 0 !important;
        }

        /* Kutu Tasarımı (Örnekteki Mavi Kutu Tarzı) */
        .dr-icon-box {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            text-align: center !important;
            background-color: #1e5aa0; 
            color: #fff !important;
            border-radius: 8px !important;
            padding: 15px 5px !important;
            height: 110px !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }

        /* İkon Boyutu */
        .dr-icon-box i {
            font-size: 24px !important;
            margin-bottom: 8px !important;
            color: #fff !important;
        }

        /* Kutu Yazısı */
        .dr-icon-box span {
            font-size: 11px !important;
            line-height: 1.2 !important;
            font-weight: 600 !important;
            color: #fff !important;
            display: block !important;
        }

        /* Hızlı İşlemler Başlık Butonu */
        .dr-tabs-container {
            justify-content: center !important;
            margin-bottom: 10px !important;
        }
        
        
        .mm-container {
            display: flex !important;
            flex-direction: column !important;
            gap: 30px !important;
        }
        
        .mm-left, .mm-right {
            width: 100% !important;
            padding: 0 10px !important;
        }

        .video-card-wrap {
            width: 100% !important;
            height: 220px !important;
            background-size: cover !important;
            background-position: center !important;
            border-radius: 10px !important;
            margin-top: 15px !important;
        }
        
        .mm-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }
    
    /* Çok küçük ekranlar için (iPhone SE vb) yazı puntolarını biraz daha kıs */
    @media screen and (max-width: 380px) {
        .dr-grid-view {
            gap: 5px !important; /* Aralığı daralt */
        }
        .dr-icon-box span {
            font-size: 10px !important; /* Yazıyı küçült */
        }
        .dr-icon-box {
            height: 100px !important;
            padding: 10px 2px !important;
        }
    }
    /* Swiper'ın varsayılan mavi oklarını (ikonlarını) gizle */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none !important;
    content: none !important;
}

/* Eğer mavi oklara ait butonların kendisi de tıklanabilir alan olarak kalsın istemiyorsan (Çakışmayı önlemek için) */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
} /* SADECE MOBİL VE TABLET (Max Genişlik: 991px) */
    @media screen and (max-width: 991px) {

        /* --- 1. ANA İSKELET AYARLARI --- */
        .dr-section {
            display: flex !important;
            flex-direction: column !important;
            padding: 0 !important;
            margin: 0 !important;
            background: transparent !important;
            border: none !important;
            gap: 0 !important;
        }

        /* Satır yapılarını iptal et, içeriği serbest bırak */
        .dr-header-row, .dr-body-row {
            display: contents !important;
        }


        /* --- 2. BAŞLIKLAR (HEADER) - KOYU LACİVERT --- */
        /* Ortak Stil: Hızlı İşlemler & Faaliyetler Başlıkları */
        .dr-tabs-container, 
        .dr-title-container {
            background-color: #0b3d75 !important; /* Koyu Header Rengi */
            padding: 15px 20px !important;
            width: 100% !important;
            text-align: left !important;
            margin: 0 !important;
            border: none !important;
            display: block !important;
            box-sizing: border-box !important;
        }

        /* Sıralama (Order) Ayarları */
        .dr-tabs-container { order: 1 !important; } /* 1. Sırada */
        .dr-title-container { order: 3 !important; } /* 3. Sırada */

        /* Başlık Yazı Stilleri */
        .dr-tab-btn, 
        .dr-title-container h2 {
            background: transparent !important;
            border: none !important;
            color: #fff !important;
            font-weight: 800 !important;
            font-size: 15px !important;
            padding: 0 !important;
            margin: 0 !important;
            text-transform: uppercase !important;
            font-family: 'Montserrat', sans-serif !important; /* Fontunuz neyse */
            letter-spacing: 0.5px !important;
            display: block !important;
            width: 100% !important;
        }
        
        /* Faaliyetler altındaki 'güncel bilgiler' yazısını gizle */
        .dr-title-container p { display: none !important; }


        /* --- 3. İÇERİK ALANLARI (BODY) - AÇIK MAVİ --- */
        /* Ortak Stil: İkonlar ve Slider Alanı */
        .dr-left-panel, 
        .dr-right-panel {
            background-color: #105296 !important; /* Açık İçerik Mavisi */
            width: 100% !important;
            padding: 15px !important; /* Kenar boşluğu */
            margin: 0 !important;
            box-sizing: border-box !important;
        }

        .dr-left-panel { order: 2 !important; } /* 2. Sırada */
        .dr-right-panel { order: 4 !important;        border-radius: 1px; } /* 4. Sırada */


        /* --- 4. SOL PANEL: IZGARA (GRID) İKONLAR --- */
        .dr-scroll-area { overflow: visible !important; height: auto !important; }
        
        .dr-grid-view {
            display: grid !important;
            grid-template-columns: repeat(3, 1fr) !important; /* 3 Sütun */
            gap: 8px !important;
        }

        .dr-icon-box {
            background-color: rgba(255, 255, 255, 0.1) !important;
            border: 1px solid rgba(255, 255, 255, 0.15) !important;
            color: #fff !important;
            border-radius: 6px !important;
            height: 95px !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            text-align: center !important;
            text-decoration: none !important;
            padding: 5px !important;
        }
        .dr-icon-box i { font-size: 22px !important; margin-bottom: 6px !important; color:#fff !important; }
        .dr-icon-box span { font-size: 9px !important; font-weight: 700 !important; text-transform: uppercase !important; line-height: 1.2 !important;}


        /* --- 5. SAĞ PANEL: SLIDER VE OKLAR --- */
        
        /* Beyaz Kutu */
        .dr-swiper-container {
            background: #fff !important;
            border-radius: 8px !important;
            overflow: visible !important; /* Okların dışa taşmasına izin ver */
            padding: 0 !important;
            margin: 0 !important;
            position: relative !important;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
        }
        
        /* Resimlerin taştığı yer burası, bunu hidden yapıyoruz */
        .swiper-wrapper {
            overflow: hidden !important; 
            border-radius: 8px !important;
        }

        .dr-slider-img {
            width: 100% !important;
            height: auto !important;
            display: block !important;
            aspect-ratio: 16/9 !important; /* Resim oranını koru */
            object-fit: cover !important;
        }

        /* --- OKLARIN DÜZELTİLMESİ (ICON FIX) --- */


        /* İçeriye FontAwesome Okunu Zorla Ekle */
        .swiper-button-next::after, 
        .swiper-button-prev::after {
            font-family: "Font Awesome 6 Free" !important; /* FontAwesome kullan */
            font-weight: 900 !important;
            font-size: 14px !important;
            color: #fff !important;
            display: block !important;
            line-height: 1 !important;
        }

        /* Sol Ok İkonu */
        .swiper-button-prev::after {
            content: "\f053" !important; /* FA Chevron Left Kodu */
        }

        /* Sağ Ok İkonu */
        .swiper-button-next::after {
            content: "\f054" !important; /* FA Chevron Right Kodu */
        }

        /* Konumlandırma: Kutunun kenarlarına yapışık */
        .swiper-button-prev { left: -10px !important; }
        .swiper-button-next { right: -10px !important; }
   /* Sağ Panel (Slider Alanı) */
        .dr-right-panel {
            order: 4 !important;
            background-color: #105296 !important;
            width: 100% !important;
            padding: 15px !important;
            margin: 0 !important;
            box-sizing: border-box !important;
        }

        /* Slider Kutusu (Düz/Köşeli) */
        .dr-swiper-container {
            background: #fff !important;
            border-radius: 0 !important;
            overflow: visible !important; /* Okların dışarı taşmasına izin ver */
            padding: 0 !important;
            margin: 0 !important;
            position: relative !important;
            box-shadow: none !important;
        }

        .swiper-wrapper {
            overflow: hidden !important; 
            border-radius: 0 !important;
        }

        .dr-slider-img {
            width: 100% !important;
            height: auto !important;
            display: block !important;
            aspect-ratio: 16/9 !important;
            object-fit: cover !important;
            border-radius: 0 !important;
        }

        /* --- OKLARIN AYARI (İKON DÜZELTME) --- */
    

        /* İçindeki İkonu Oluşturma (Pseudo Element) */
        .swiper-button-next::after, 
        .swiper-button-prev::after {
            /* FontAwesome ailesini geniş tutuyoruz ki her sürümde çalışsın */
            font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome", sans-serif !important;
            font-weight: 900 !important;
            font-size: 14px !important;
            color: #fff !important;
            display: block !important;
            line-height: 1 !important;
            border: none !important;
            text-transform: none !important; /* Yazıya dönüşmesini engelle */
        }

        /* Sol Ok Kod Karşılığı */
        .swiper-button-prev::after { 
            content: "\f053" !important; /* Chevron Left İkonu */
        }

        /* Sağ Ok Kod Karşılığı */
        .swiper-button-next::after { 
            content: none !important; /* Chevron Right İkonu */
        }

        /* Kenarlara Yapıştırma */
        .swiper-button-prev { left: -15px !important; }
        .swiper-button-next { right: -15px !important; }
    }
    
    }
    .dr-slider-img {
   
    background-color: #eee; /* Resim yüklenene kadar gri fon */
}
@media (max-width: 768px) {

    /* 1. HERO SLIDER MOBİL AYARI */
    .hero-slider {
        /* Yüksekliği ekranın tamamı yerine daha makul bir boyuta çekiyoruz */
        height: 50vh !important; 
        min-height: 350px !important; /* Çok küçük ekranlar için minimum yükseklik */
        background-attachment: scroll !important; /* Mobilde parallax titremesini önler */
        background-position: center top !important; /* Mobilde yüzlerin/üst kısmın görünmesi için */
    }

    /* Slider İçerik Yazılarını Küçültme */
    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        padding-bottom: 18px;
    }
    .hero-content p {
        display: none !important; /* Mobilde uzun açıklamayı gizle (daha temiz görünüm için) */
    }
    .hero-badge {
        margin-top: 0 !important;
        padding-top: 60px !important; /* Mobilde menü altına girmemesi için boşluk */
    }

    /* 2. MULTİMEDYA VİDEO ALANI DÜZELTME */
    .mm-container {
        display: flex !important;
        flex-direction: column !important; /* Yan yana değil alt alta olsun */
        width: 100% !important;
    }

    .mm-left, .mm-right {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important; /* Kenarlardan hafif boşluk */
        margin-bottom: 20px !important;
    }

    /* O dar şerit halindeki video alanını genişletiyoruz */
    .video-card-wrap {
        width: 100% !important;
        height: 250px !important; /* Sabit yükseklik vererek kare/dikdörtgen olmasını sağladık */
        border-radius: 10px !important;
        background-size: cover !important;
        margin: 0 auto !important;
    }

    /* Video Play Butonunu Ortalama */
    .play-btn-large {
        width: 60px !important;
        height: 60px !important;
        line-height: 60px !important;
        font-size: 20px !important;
    }

    /* 3. PARTNERS / SPONSORLAR MOBİL */
    .partners-slider-wrapper {
        padding: 20px 0 !important;
    }
    .partner-card img {
        max-width: 80% !important; /* Mobilde logoların taşmasını engelle */
    }
}

        /* --- MODERN DROPDOWN MENU CSS --- */
        .nav-links li { position: relative; height: 100%; display: flex; align-items: center; }
        
        /* Dropdown Konteyner */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 240px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-top: 3px solid var(--green);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 999;
            border-radius: 0 0 5px 5px;
            padding: 0;
            display: block; /* Bootstrap default override */
        }

        /* Hover Durumu */
        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Dropdown Linkleri */
        .dropdown-menu li {
            width: 100%;
            display: block;
            border-bottom: 1px solid #f1f1f1;
            margin: 0;
            height: auto;
        }
        .dropdown-menu li:last-child { border-bottom: none; }

        .dropdown-menu li a {
            display: block;
            padding: 12px 20px;
            color: #333 !important; /* Arka plan beyaz olduğu için yazı koyu */
            font-size: 13px;
            font-weight: 600;
            text-transform: none; /* Alt menüde hepsi büyük harf olmasın */
            transition: all 0.2s ease;
            width: 100%;
        }

        /* Dropdown Link Hover */
        .dropdown-menu li a:hover {
            background-color: #f9f9f9;
            color: var(--primary-blue) !important;
            padding-left: 25px; /* Kayma efekti */
        }

        /* Ana Menüde Ok İşareti */
        .nav-links li > a i.fa-chevron-down {
            font-size: 10px;
            margin-left: 5px;
            opacity: 0.7;
            transition: transform 0.3s;
        }
        .nav-links li:hover > a i.fa-chevron-down {
            transform: rotate(180deg);
        }
          /* Ana Menüde Ok İşareti */
        .nav-links li > a i.fa-chevron-down {
            font-size: 10px;
            margin-left: 5px;
            opacity: 0.7;
            transition: transform 0.3s;
        }
        .nav-links li:hover > a i.fa-chevron-down {
            transform: rotate(180deg);
        }

       
        body.subpage header, 
        body.subpage header.initial-header,
        body.subpage header.scrolled-header {
            position: relative !important;
            transform: none !important;
            transition: none !important;
            animation: none !important;
            top: 0 !important;
            margin-top: 0 !important;
        }
        
        /* Menü iç boşluğunu sabitle (titremeyi engeller) */
        body.subpage .main-nav {
            padding-top: 15px !important;
            padding-bottom: 15px !important;
            transition: none !important;
        }

