:root {
    --primary: #004494;
    --accent: #ff7e00;
    --dark: #0b1522;
    --text: #1e293b;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Inter', sans-serif; 
    background: #f8fafc; 
    color: var(--text); 
    line-height: 1.6; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* Header & Nav */
.top-bar { 
    background: var(--dark); 
    color: var(--white); 
    padding: 10px 0; 
    font-size: 0.85rem; 
}

.top-bar-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.top-info a { 
    color: #ccc; 
    text-decoration: none; 
    margin-right: 15px; 
}

.btn-top { 
    background: var(--accent); 
    color: white; 
    padding: 6px 15px; 
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: bold; 
}

.main-nav { 
    background: var(--white); 
    padding: 20px 0; 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* Logo Ayarları */
.logo { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    font-size: 1.5rem; 
    font-weight: 900; 
    color: var(--dark);
    transition: opacity 0.3s ease; 
}

.logo:hover { opacity: 0.8; }
.logo span { color: var(--primary); }

.logo-img { 
    max-height: 70px; 
    width: auto; 
    display: block; 
    object-fit: contain; 
}

/* Nav Menü & Dropdown */
.nav-menu { 
    list-style: none; 
    display: flex; 
    gap: 20px; 
    margin: 0; 
    padding: 0; 
}

.nav-menu li { position: relative; }

.nav-menu li a { 
    text-decoration: none; 
    color: #333; 
    font-weight: 600; 
    font-size: 0.95rem; 
    padding: 10px 0; 
    display: block; 
}

.dropdown-content { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background-color: #fff; 
    min-width: 260px; 
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1); 
    z-index: 1000; 
    border-top: 3px solid var(--accent); 
}

.dropdown-content li { 
    width: 100%; 
    border-bottom: 1px solid #eee; 
}

.dropdown-content li a { 
    padding: 12px 20px; 
    font-size: 14px; 
    color: #555; 
    transition: 0.3s; 
}

.dropdown-content li a:hover { 
    background-color: #f8f9fa; 
    color: var(--accent); 
    padding-left: 25px; 
}

.nav-menu li:hover > .dropdown-content { display: block; }

.has-submenu > a::after { 
    content: " »"; 
    font-size: 12px; 
    color: #ccc; 
}

/* Hero */
.hero-elegant { 
    padding: 100px 0; 
    text-align: center; 
    background: white; 
}

.hero-elegant h1 { 
    font-size: 3.2rem; 
    color: var(--primary); 
    margin-bottom: 20px; 
}

.hero-elegant span { color: var(--accent); }

/* GRID SİSTEMİ */
.services-grid { 
    display: grid !important; 
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 30px; 
}

.service-card { 
    background: white; 
    padding: 40px 30px; 
    border-radius: 20px; 
    box-shadow: var(--shadow); 
    text-align: center; 
    border: 1px solid #eee; 
    transition: 0.3s;
}

.service-card:hover { transform: translateY(-10px); }
.service-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 12px; }
.service-card a { color: var(--accent); text-decoration: none; font-weight: bold; font-size: 0.9rem; }

/* 4'lü Resim Grid Yapısı */
.image-menu-section { padding: 40px 0; background: #fff; }

.image-grid { 
    display: grid !important; 
    grid-template-columns: repeat(4, 1fr) !important; 
    gap: 20px; 
}

.image-card, .card { 
    text-align: left; 
    background: #fdfdfd; 
    padding: 10px; 
    border-radius: 5px; 
    border: 1px solid #eee;
    transition: 0.3s; 
}

.image-card:hover, .card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}

.image-card img, .card img { 
    width: 100%; 
    height: 180px; 
    object-fit: cover; 
    border-radius: 4px; 
}

.image-card h3 { 
    font-size: 18px; 
    margin: 15px 0 10px; 
    color: #333; 
}

.btn-detay { 
    display: inline-block; 
    padding: 8px 20px; 
    background: #0d47a1; 
    color: white; 
    text-decoration: none; 
    border-radius: 3px; 
    font-size: 14px; 
}

/* Sayfa Özel Stilleri & İçerik Alanı */
.page-header { 
    background: #f8f9fa; 
    padding: 40px 0; 
    text-align: center; 
    border-bottom: 1px solid #eee; 
}

.iletisim-grid {
    display: block !important;
}

.iletisim-grid > * {
    width: 100% !important;
    margin-bottom: 40px;
}

.content-section { padding: 40px 0; }

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

.main-text h2, .main-text h3 { 
    color: #0d47a1; 
    margin-bottom: 20px; 
    margin-top: 25px; 
    border-left: 5px solid #ffc107; 
    padding-left: 15px; 
}

.main-text p { 
    line-height: 1.7; 
    color: #444; 
    margin-bottom: 15px; 
}

.main-text ul { margin-bottom: 25px; padding-left: 20px; }
.main-text li { margin-bottom: 10px; line-height: 1.6; }

/* Sidebar Menü */
.sidebar-menu { 
    background: #f8f9fa; 
    padding: 25px; 
    border-radius: 12px; 
    height: fit-content; 
    border: 1px solid #e0e0e0; 
}

.side-links { list-style: none; padding: 0; }

.side-links li a { 
    display: block; 
    padding: 12px; 
    border-bottom: 1px solid #ddd; 
    text-decoration: none; 
    color: #333; 
    transition: 0.3s; 
}

.side-links li.active a { 
    background: #0d47a1; 
    color: white; 
    border-radius: 4px; 
    font-weight: bold;
}

.side-links li a:hover:not(.active) { 
    padding-left: 20px; 
    color: #0d47a1; 
}

.cta-box { 
    margin-top: 30px; 
    background: #1565c0; 
    color: white; 
    padding: 25px; 
    border-radius: 10px; 
    text-align: center; 
}

.btn-side { 
    display: inline-block; 
    margin-top: 15px; 
    padding: 12px 25px; 
    background: #ffc107; 
    color: #000; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
}

/* Footer */
.main-footer { 
    background: var(--dark); 
    color: white; 
    padding: 70px 0 0; 
    margin-top: 80px; 
}

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

.footer-links a { 
    color: #888; 
    display: block; 
    text-decoration: none; 
    margin-bottom: 10px; 
    transition: 0.3s; 
}

.footer-links a:hover { 
    color: white; 
    transform: translateX(5px); 
}

.footer-bottom { 
    background: rgba(0,0,0,0.3); 
    padding: 25px 0; 
    text-align: center; 
    color: #666; 
    font-size: 0.8rem; 
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .services-grid, .footer-grid { grid-template-columns: 1fr !important; }
    .image-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .logo-img { max-height: 50px; }
    .content-grid { grid-template-columns: 1fr; }
    .image-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 576px) {
    .hero-elegant h1 { font-size: 2.2rem; }
}

.card:hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.1) !important; }
    .card:hover img { transform: scale(1.1); }
    @media (max-width: 992px) {
        .image-grid { grid-template-columns: repeat(2, 1fr) !important; }
    }
    @media (max-width: 600px) {
        .image-grid { grid-template-columns: 1fr !important; }
    }


    /* Ana Menü Linkleri */
.nav-menu li a {
    position: relative;
    padding: 10px 15px;
    transition: color 0.3s ease;
    text-decoration: none;
    color: #333; /* Logonuzun rengine göre düzenleyebilirsiniz */
    font-weight: 500;
}

/* Hover ve Aktif Durumda Renk Değişimi */
.nav-menu li a:hover,
.nav-menu li.active > a {
    color: var(--accent); /* Sitenizdeki vurgu rengi */
}

/* Alt Çizgi Efekti (Alt Menü Hariç Ana Menü İçin) */
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 15px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

/* Ana Menü Linkleri */
.nav-menu li a {
    position: relative;
    padding: 10px 15px;
    transition: color 0.3s ease;
    text-decoration: none;
    color: #333; /* Logonuzun rengine göre düzenleyebilirsiniz */
    font-weight: 500;
}



.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after {
    width: calc(100% - 30px);
}

/* Dropdown (Açılır Menü) Vurguları */
.dropdown-content {
    border-top: 3px solid var(--accent); /* Üstten vurgu çizgisi */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-content li a {
    transition: all 0.3s ease;
    padding: 12px 20px;
    display: block;
}

.dropdown-content li a:hover {
    background-color: #f8f9fa;
    padding-left: 25px; /* Hafif sağa kayma efekti */
    color: var(--accent);
}

/* Dropdown açıkken ana başlığın vurgulu kalması */
.has-dropdown:hover > a {
    color: var(--accent);
}

/* Mobil için vurgu (Opsiyonel) */
@media (max-width: 768px) {
    .nav-menu li a:hover {
        background-color: var(--accent);
        color: white !important;
    }
}


/* Ana Hero Alanı */
.programs-hero {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 120px 0;
    text-align: center;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 250px;
}

/* Karartma Katmanı */
.programs-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(90, 91, 92, 0.75);
    z-index: 1;
}

/* İçerik ve Yazı Stilleri */
.programs-hero .container {
    position: relative;
    z-index: 2;
}

.programs-hero h1 {
    color: #f58b13; 
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.programs-hero p {
    color: #f1f2f6;
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}



/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .programs-hero { padding: 80px 0; min-height: auto; }
    .programs-hero h1 { font-size: 2.2rem; }
}



:root {
        --primary-dark: #2c3e50;
        --accent-orange: #d8720c;
        --glass: rgba(255, 255, 255, 0.95);
    }

    /* Slider Yüksek Kalite Görünüm */
    .ozel-slider { position: relative; width: 100%; height: 520px; overflow: hidden; background: #000; }
    .slider-wrapper { display: flex; width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1); }
    .slider-item { min-width: 100%; height: 100%; position: relative; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
    .slider-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
    .slider-content { position: relative; z-index: 5; padding: 60px 80px; color: white; transform: translateY(0); transition: 0.5s; }
    .slider-content h1 { font-size: 1.6em; font-weight: 800; line-height: 1.1; margin-bottom: 15px; text-transform: uppercase; letter-spacing: -1px; }
    .slider-content span { font-size: 1.1rem; color: var(--accent-orange); font-weight: 700; display: block; border-left: 4px solid var(--accent-orange); padding-left: 20px; }

    /* Zengin Hizmet Kartları */
    .services-premium { padding: 100px 0; background: #fcfcfc; }
    .section-title { text-align: center; margin-bottom: 60px; }
    .section-title h2 { font-size: 2.5rem; font-weight: 800; color: var(--primary-dark); position: relative; display: inline-block; }
    .section-title h2::after { content: ''; width: 50%; height: 4px; background: var(--accent-orange); position: absolute; bottom: -15px; left: 25%; border-radius: 2px; }

    .premium-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .premium-card { position: relative; height: 350px; border-radius: 20px; overflow: hidden; cursor: pointer; box-shadow: 0 15px 35px rgba(0,0,0,0.1); transition: 0.4s; }
    .premium-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
    .card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(transparent, rgba(0,0,0,0.9)); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; transition: 0.4s; }
    .premium-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(216, 114, 12, 0.2); }
    .premium-card:hover img { scale: 1.1; }
    .premium-card h3 { color: #fff; font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
    .premium-card p { color: #ddd; font-size: 0.9rem; opacity: 0; transform: translateY(20px); transition: 0.4s; }
    .premium-card:hover p { opacity: 1; transform: translateY(0); }

    /* Kurumsal Bağlılık Alanı */
    .trust-bar { padding: 60px 0; background: #fff; text-align: center; }
    .brand-logos { display: flex; justify-content: center; align-items: center; gap: 80px; flex-wrap: wrap; margin-top: 40px; }
    .brand-logos img { height: 80px; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1)); transition: 0.3s; }
    .brand-logos img:hover { transform: scale(1.1); }

    /* Rapor Bilgilendirme - Modern Step Yapısı */
    .report-guide { padding: 100px 0; background: var(--primary-dark); color: white; }
    .step-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 50px; }
    .step-item { background: rgba(255,255,255,0.05); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); position: relative; }
    .step-number { position: absolute; top: -20px; left: 30px; width: 50px; height: 50px; background: var(--accent-orange); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.5rem; }
    .step-item h4 { margin-top: 15px; font-size: 1.3rem; color: var(--accent-orange); }

    .nav-btn { background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); color: white; border: none; width: 60px; height: 60px; border-radius: 50%; font-size: 24px; cursor: pointer; transition: 0.3s; pointer-events: auto; }
    .nav-btn:hover { background: var(--accent-orange); }

   
    .news-and-programs-section { padding: 50px 0; background: #f8fafc; }
.ana-haber-alani { display: flex; gap: 30px; align-items: stretch; }

/* SOL TARAF - HABER SLIDER */
.sol-haber { flex: 2.5; position: relative; border-radius: 15px; overflow: hidden; background: #000; box-shadow: 0 10px 30px rgba(0,0,0,0.15); min-height: 450px; }
.haber-container { position: relative; width: 100%; height: 100%; }
.news-wrapper { display: flex; height: 100%; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

.haber-slide { min-width: 100%; position: relative; height: 100%; }
.haber-slide img { width: 100%; height: 100%; object-fit: cover; }

.haber-info-overlay { 
    position: absolute; bottom: 0; left: 0; width: 100%; 
    padding: 60px 40px 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9)); 
    color: white; 
}
.haber-info-overlay .category { color: #ff7e00; font-weight: bold; font-size: 1.1rem; margin-bottom: 5px; display: block; }
.haber-info-overlay h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.haber-info-overlay p { font-size: 1rem; color: #ccc; max-width: 80%; }

/* Navigasyon Okları */
.news-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.2); border: none; color: white;
    width: 45px; height: 45px; cursor: pointer; border-radius: 50%;
    z-index: 10; transition: 0.3s;
}
.news-nav-btn:hover { background: #ff7e00; }
.prev { left: 20px; }
.next { right: 20px; }

/* Sayfalama (Dots) */
.news-dots { position: absolute; bottom: 15px; left: 40px; display: flex; gap: 8px; z-index: 10; }
.dot { width: 28px; height: 28px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; color: #333; cursor: pointer; transition: 0.3s; }
.dot.active { background: #e30613; color: white; }

/* SAĞ TARAF - KÜÇÜK PROGRAM LİSTESİ */
.sag-liste { flex: 1; background: white; padding: 25px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid #eee; display: flex; flex-direction: column; }
.side-title { font-size: 1.3rem; margin-bottom: 20px; color: var(--primary); border-bottom: 2px solid #ff7e00; padding-bottom: 10px; }

.kucuk-kart { display: flex; align-items: center; gap: 15px; padding: 12px; border-radius: 10px; text-decoration: none; transition: 0.3s; margin-bottom: 10px; border: 1px solid transparent; }
.kucuk-kart:hover { background: #fff4eb; border-color: #ff7e00; transform: translateX(5px); }
.kucuk-kart img { width: 65px; height: 65px; object-fit: cover; border-radius: 8px; }
.kucuk-kart-info h4 { font-size: 0.95rem; color: #333; margin: 0; }
.kucuk-kart-info span { font-size: 0.8rem; color: #777; }

.btn-all-programs { margin-top: auto; text-align: center; padding: 12px; background: var(--primary); color: white; text-decoration: none; border-radius: 8px; font-weight: bold; transition: 0.3s; }
.btn-all-programs:hover { background: var(--accent); }

/* Responsive */
@media (max-width: 992px) {
    .ana-haber-alani { flex-direction: column; }
    .sol-haber { min-height: 350px; }
    .haber-info-overlay h2 { font-size: 1.6rem; }
} 


/* Ana düzen ayarları */
    .content-wrapper {
        display: flex;
        gap: 30px;
        align-items: stretch; /* Her iki tarafın boyunu eşitlemeye çalışır */
    }

    .main-text {
        flex: 1;
    }

    /* Sağ taraf genişliği alttaki Eğitim Programlarımız ile aynı (350px) */
    .sag-liste {
        width: 350px;
        flex-shrink: 0;
    }

    #kadro {
        position: relative;
        height: 520px; /* Alanı daha iyi doldurması için yüksekliği artırdık */
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .kadro-item {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .kadro-item.active {
        opacity: 1;
        z-index: 2;
    }

    /* Resim tüm alanı kaplayacak şekilde ayarlandı */
    .kadro-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Resmi çerçeveye tam yayar, boşluk bırakmaz */
        display: block;
    }

    /* Mobil Uyumluluk */
    @media (max-width: 992px) {
        .content-wrapper {
            flex-direction: column;
        }
        .sag-liste {
            width: 100%;
        }
        #kadro {
            height: 400px;
        }
    }



    /* Masaüstü için ana taşıyıcı */
    .makale-grid {
        display: grid; 
        grid-template-columns: 1fr 300px; 
        gap: 40px;
    }

    /* Mobil cihazlar için (992px altı) */
    @media (max-width: 992px) {
        .makale-grid {
            grid-template-columns: 1fr; /* Yan menüyü alta atar */
            gap: 20px;
        }
        
        aside {
            position: static !important; /* Mobilde yapışkan özelliği devre dışı kalır */
            order: 2; /* Kartlardan sonra gelmesini garanti eder */
        }
    }