/* --- alanlara ait arkaplan oluşturmuk istenirse kullanılacak

  <div class="content-wrapper">

    <i class="bi bi-pencil-fill       bg-icon size-md pos-1"></i>
    <i class="bi bi-book-half         bg-icon size-lg pos-2"></i>
    <i class="bi bi-rocket-takeoff    bg-icon size-xl pos-3"></i>
    <i class="bi bi-puzzle-fill       bg-icon size-sm pos-4"></i>
    <i class="bi bi-lightbulb         bg-icon size-md pos-5"></i>
    <i class="bi bi-controller        bg-icon size-lg pos-6"></i>
    <i class="bi bi-globe             bg-icon size-sm pos-7"></i>
    <i class="bi bi-mortarboard-fill  bg-icon size-md pos-8"></i>
    <i class="bi bi-laptop            bg-icon size-xl pos-9"></i>
    <i class="bi bi-palette           bg-icon size-md pos-10"></i>
    <i class="bi bi-music-note        bg-icon size-sm pos-11"></i>
    <i class="bi bi-trophy            bg-icon size-lg pos-12"></i>
    <i class="bi bi-star-fill         bg-icon size-md pos-13"></i>
    <i class="bi bi-chat-quote        bg-icon size-sm pos-14"></i>
    <i class="bi bi-gear-fill         bg-icon size-xl pos-15"></i>
istenildiği dibi section eklenecek
  </div>


  --- */
/* --- 1. DİNAMİK TEMA SİSTEMİ --- */
/* Renkleri burada değişken (variable) olarak tanımlıyoruz */

/* 1. MAVİ TEMA (Modern Mavi Geçişi) */
.theme-blue {
    --grad-start: #0d6efd;
    /* Başlangıç: Standart Mavi */
    --grad-end: #0a58ca;
    /* Bitiş: Koyu Mavi */
    --bg-color: #f0f8ff;
    /* İçerik: Açık Mavi */
    --icon-color: #0d6efd;
}

/* 2. TURUNCU TEMA (Referansındaki gibi sıcak geçiş) */
.theme-orange {
    --grad-start: #ff9f43;
    /* Başlangıç: Turuncu */
    --grad-end: #ff7e5f;
    /* Bitiş: Mercan/Kızıl */
    --bg-color: #fffbf5;
    /* İçerik: Krem */
    --icon-color: #ff9f43;
}

.theme-okuma {
    --grad-start: #c471ed;
    --grad-end: #f64f59;
    --bg-color: #fff8f9;
    --icon-color: #bf79e2;
}

.theme-anlama {
    --grad-start: #00c6ff;
    --grad-end: #0072ff;
    --bg-color: #edf8fc;
    --icon-color: #377df7;
}

/* --- 2. HEADER YAPISI (SANDVİÇ MODELİ) --- */

.header-wrapper {
    /* ESKİSİ: background-color: var(--main-color); */

    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));

    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
    color: white;
    text-align: center;
    /* Renk geçişi animasyonu gradient'te doğrudan çalışmaz, 
       o yüzden transition'ı kaldırdık veya opacity ile yapılır */
}

.header-section-icon {
    font-size: 4rem;
    /* İkon boyutu */
    margin-bottom: 1rem;
    /* Başlıkla arasındaki boşluk */
    display: block;
    /* Blok eleman yap */
    margin-left: auto;
    /* Yatayda ortala */
    margin-right: auto;
    /* Yatayda ortala */
    color: rgba(255, 255, 255, 0.9);
    /* Hafif şeffaf beyaz renk */
}

/* --- 3. DALGA ORTAK AYARLARI --- */
.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
    /* Dalganın büyüklüğü */
}

/* Dalga Animasyonu (Sürekli akış) */
.parallax>use {
    animation: move-wave 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

@keyframes move-wave {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* --- 4. ÜST DALGA (BEYAZ MASKE) --- */
/* Bu dalga TERS duracak ve BEYAZ olacak */
.wave-top {
    top: 0;
    transform: rotate(180deg);
    /* Ters Çevir */
}

/* Üst dalganın rengi SABİT BEYAZ (#ffffff) olmalı ki sayfa ile bütünleşsin */
.wave-top .wave-layer-1 {
    fill: rgba(255, 255, 255, 0.3);
}

.wave-top .wave-layer-2 {
    fill: rgba(255, 255, 255, 0.5);
}

.wave-top .wave-fill {
    fill: var(--bs-light)
}

/* Sayfa Arka Plan Rengi */


/* --- 5. ALT DALGA (KREM GEÇİŞ) --- */
/* Bu dalga DÜZ duracak ve KREM (Tema Rengi) olacak */
.wave-bottom {
    bottom: 0;
}

.wave-bottom .wave-layer-1 {
    fill: rgba(255, 255, 255, 0.3);
}

.wave-bottom .wave-layer-2 {
    fill: rgba(255, 255, 255, 0.5);
}

.wave-bottom .wave-fill {
    fill: var(--bg-color);
    transition: fill 0.5s ease;
}


/* --- 3. İÇERİK ALANI --- */
.content-wrapper {
    background-color: var(--bg-color);
    /* Dinamik Renk */
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
    transition: background-color 0.5s ease;
}

/* --- 4. IKON SİSTEMİ --- */
.bg-icon {
    position: absolute;
    color: var(--icon-color);
    /* Dinamik Renk */
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    animation: float-anim 6s ease-in-out infinite;
    transition: color 0.5s ease;
}

@keyframes float-anim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* --- BOYUT VE KONUM (Aynı Kaldı) --- */
.size-sm {
    font-size: 1.5rem;
}

.size-md {
    font-size: 2.5rem;
}

.size-lg {
    font-size: 4rem;
    opacity: 0.07;
}

.size-xl {
    font-size: 6rem;
    opacity: 0.04;
}

/* Konumlar (Örneklem) */
.ipos-1 {
    top: 2%;
    left: 5%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.ipos-3 {
    top: 8%;
    left: 45%;
    transform: rotate(5deg);
    animation-delay: 2s;
}

.ipos-4 {
    top: 12%;
    left: 85%;
    transform: rotate(-20deg);
    animation-delay: 0.5s;
}

.ipos-5 {
    top: 15%;
    left: 20%;
    transform: rotate(15deg);
    animation-delay: 1.5s;
}

.ipos-6 {
    top: 25%;
    right: 5%;
    transform: rotate(-10deg);
    animation-delay: 3s;
}

.ipos-7 {
    top: 30%;
    left: 10%;
    transform: rotate(25deg);
    animation-delay: 0.2s;
}

.ipos-8 {
    top: 35%;
    right: 30%;
    transform: rotate(-5deg);
    animation-delay: 2.5s;
}

.ipos-9 {
    top: 40%;
    left: 60%;
    transform: rotate(10deg);
    animation-delay: 1s;
}

.ipos-10 {
    top: 45%;
    left: 2%;
    transform: rotate(-30deg);
    animation-delay: 4s;
}

.ipos-11 {
    top: 55%;
    right: 15%;
    transform: rotate(15deg);
    animation-delay: 0.8s;
}

.ipos-12 {
    top: 60%;
    left: 35%;
    transform: rotate(-10deg);
    animation-delay: 2.2s;
}

.ipos-13 {
    top: 65%;
    right: 50%;
    transform: rotate(20deg);
    animation-delay: 1.2s;
}

.ipos-14 {
    top: 70%;
    left: 80%;
    transform: rotate(-15deg);
    animation-delay: 3.5s;
}

.ipos-15 {
    top: 75%;
    left: 5%;
    transform: rotate(5deg);
    animation-delay: 0.5s;
}

.ipos-16 {
    top: 5%;
    right: 10%;
    transform: rotate(10deg);
    animation-delay: 1s;
}

/* ========================================= */
/* CSS Block 2 */
/* ========================================= */

body {
    font-family: 'Poppins', sans-serif;
}

.app-pattern-overlay {
    /* Mantık:
       1. Radial Gradient: Ortaya hafif bir parlaklık verir (tamamen transparan biter).
       2. Linear Gradient'ler: Çizgileri oluşturur. #f0f0f0 yerine rgba(255,255,255, 0.15) kullandık.
          Bu sayede alttaki renk neyse çizgiler onun üzerinde beyazımsı bir tonda belirir.
    */
    background-image:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 80%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.15) 49%, rgba(255, 255, 255, 0.15) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.15) 49%, rgba(255, 255, 255, 0.15) 51%, transparent 52%);

    background-size: 100% 100%, 60px 60px, 60px 60px;
}

:root {
    --orange: #fd7e14;
    /* Turuncu tonu */
    --cs-primary: #51c4f1;
    /* Turuncu tonu */
    --secondary: #51c4f1;
    /* Turuncu tonu */
    --cs-text-dark: #333333;
    --cs-text-light: #6c757d;
    --cs-border-color: #e9ecef;
    --cs-active-line: #ffc107;
    /* Sarı aktif çizgi */
}

/* =========================================
   GENEL BÖLÜM BAŞLIĞI (GLOBAL SECTION HEADER)
   Kullanım: section-header, section-subtitle, section-title
   ========================================= */

.section-header {
    margin-bottom: 50px;
    /* Başlık ile içerik arasındaki boşluk */
    text-align: center;
    /* Ortala */
}

/* Üstteki Küçük Başlık (İkonlu Kısım) */
.section-subtitle {
    border: 1px solid #e0e7ff;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #4f46e5;
    /* Koyu mor metin */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-weight: 700;
}

.section-subtitle i {
    color: #f59e0b;
}

/* Ana Büyük Başlık */
.section-title {
    font-weight: 700;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Vurgulu Kelime (Renkli) */
.section-highlight {
    /*color: var(--secondary);*/
}

/* Açıklama Metni */
.section-desc {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    /* Metnin çok yayılmasını engeller, okunabilirliği artırır */
    margin: 0 auto;
    /* Ortalar */
}

/* Mobilde fontları biraz küçültmek istersen */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ========================================= */
/* CSS Block 3 */
/* ========================================= */

/* =========================================
           CUSTOM HEADER STYLES (cs-hdr prefix)
           ========================================= */

/* Ana Header Wrapper */
.cs-hdr-wrapper {
    background-color: #fff;
    border-bottom: 1px solid var(--cs-border-color);
}

/* --- TOP BAR (İletişim Bilgileri) --- */
.cs-hdr-top {
    padding: 15px 0;
    border-bottom: 1px solid var(--cs-border-color);
}

.cs-hdr-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cs-text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs-hdr-logo i {
    color: var(--cs-primary);
}

.cs-hdr-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--cs-text-light);
}

.cs-hdr-info-icon {
    color: var(--cs-primary);
    font-size: 1rem;
}

.cs-hdr-info-text strong {
    display: block;
    color: var(--cs-text-dark);
    font-weight: 600;
    line-height: 1.2;
}

/* --- BOTTOM NAVBAR --- */
.cs-hdr-navbar {
    padding: 10px 0;
}

.cs-hdr-nav-link {
    color: #444;
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
    transition: color 0.3s;
}

.cs-hdr-nav-link:hover {
    color: var(--cs-primary);
}

/* Aktif Link Altındaki Sarı Çizgi */
.cs-hdr-nav-link.active {
    color: var(--cs-text-dark);
}

.cs-hdr-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 25px;
    /* Çizgi uzunluğu */
    height: 3px;
    background-color: var(--cs-active-line);
    border-radius: 2px;
}

/* --- DROPDOWN MENÜ (Custom) --- */
.cs-menu-dropdown {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    /* Navbar ile boşluk */
}

.cs-menu-item {
    padding: 8px 15px;
    border-radius: 5px;
    color: var(--cs-text-light);
    font-weight: 500;
    transition: all 0.2s;
}

.cs-menu-item:hover {
    background-color: #fff3cd;
    /* Açık sarı hover */
    color: var(--cs-primary);
}

/* --- SOSYAL MEDYA İKONLARI --- */
.cs-hdr-socials {
    display: flex;
    gap: 10px;
}

.cs-hdr-social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    /* Görseldeki halka */
    border-radius: 50%;
    color: var(--cs-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.cs-hdr-social-icon:hover {
    background-color: var(--cs-primary);
    color: #fff;
    border-color: var(--cs-primary);
}

/* --- RESPONSIVE AYARLAR --- */
@media (max-width: 991px) {

    /* Mobilde Top Bar (Info) Gizle */
    .cs-hdr-top .d-lg-flex {
        display: none !important;
    }

    /* Logo Mobilde Navbar içine taşınacak */
    .cs-hdr-top {
        display: none;
    }

    /* Offcanvas (Sidebar) Stili */
    .offcanvas-start {
        width: 280px;
    }

    /* Sidebar içi link düzeni */
    .cs-hdr-nav-link.active::after {
        display: none;
        /* Mobilde alt çizgiyi kaldır */
    }

    .cs-hdr-nav-link.active {
        background-color: #fff3cd;
        color: var(--cs-primary);
        border-radius: 5px;
    }
}

/* ========================================= */
/* CSS Block 4 */
/* ========================================= */

/* SVG içindeki varsayılan stiller */
.st0 {
    fill: #ffc100;
}

/* Bu JS ile değişecek */
.st1 {
    fill: #fff;
    isolation: isolate;
    opacity: .7;
}

/* ========================================= */
/* CSS Block 5 */
/* ========================================= */

/* =========================================
           LOGO-C STYLES (logo-c prefix)
           ========================================= */

/* Dış Kapsayıcı (Büyük Hap Şekli) */
.logo-c-container {
    border: 1px solid #e9ecef;
    background-color: #fff;
    border-radius: 100px;
    /* Hap şekli */
    padding: 20px 40px;
    /* İç boşluk */
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* Dışına taşanları gizle */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* Kaydırma Maskesi ve Gradyanlar (Kenarlarda yumuşak geçiş için) */
.logo-c-slider-mask {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Kenarlarda maskeleme efekti (Logolar kaybolurken yumuşak görünsün) */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Hareket Eden Yol (Track) */
.logo-c-track {
    display: flex;
    gap: 30px;
    /* Kartlar arası boşluk */
    width: max-content;
    /* İçerik kadar genişle */
    animation: logo-c-scroll 30s linear infinite;
    /* Animasyon */
}

/* Bireysel Logo Kartı */
.logo-c-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    border: 1px solid #f1f3f5;
    border-radius: 50px;
    /* Kartın kendisi de hap şeklinde */
    padding: 10px 25px 10px 10px;
    /* Soldan ikon payı az */
    min-width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Flex-shrink 0 önemli: Kartlar sıkışmasın */
    flex-shrink: 0;
}

.logo-c-card:hover {
    border-color: #dee2e6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Hover durumunda durmasını istersen aşağıdaki yorumu açabilirsin */
    /* cursor: pointer; */
}

/* İkon Kutusu */
.logo-c-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* İkon Renkleri (Görsele Benzer) */
.logo-c-icon-red {
    background-color: #fff0f0;
    color: #ff0000;
}

/* Youtube/Adobe */
.logo-c-icon-blue {
    background-color: #eaf6ff;
    color: #0088ff;
}

/* Shazam */
.logo-c-icon-yellow {
    background-color: #fffbe6;
    color: #fec007;
}

/* Mailchimp */
.logo-c-icon-black {
    background-color: #f1f3f5;
    color: #333;
}

/* Diğer */

/* Metin Alanı */
.logo-c-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-c-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
    line-height: 1.2;
}

.logo-c-sub {
    font-size: 0.75rem;
    color: #868e96;
    margin: 0;
}

/* Animasyon Keyframes */
@keyframes logo-c-scroll {
    0% {
        transform: translateX(0);
    }

    /* İçeriği 2 kez kopyaladığımız için -50%'ye kadar kaydırıyoruz */
    100% {
        transform: translateX(calc(-50% - 15px));
    }

    /* 15px = gap'in yarısı (hesap dengelemesi) */
}

/* ========================================= */
/* CSS Block 6 */
/* ========================================= */

/* =========================================
       REFERANCE SECTION STYLES (referance- prefix)
       ========================================= */

.referance-section {
    padding: 80px 0;
    /* --- SENİN VERDİĞİN ARKAPLAN KODLARI (KORUNDU) --- */
    background: linear-gradient(135deg, #fdfbfd 0%, #f7f4ff 100%);
    background: linear-gradient(135deg, #fdfbfd 0%, rgba(253, 126, 20, 0.05) 50%, #f7f4ff 100%);
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.08) 0%, #f7f4ff 100%);
    background: linear-gradient(135deg, #fdfbfd 0%, rgba(253, 126, 20, 0.12) 40%, #f7f4ff 100%);

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Kapsayıcı Kart (Tasarımı toparlamak için) */
.referance-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* --- SOL TARA: PROFİL RESMİ ALANI --- */
.referance-avatar-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    /* Mobilde ortalamak için */
}

/* Kesik Çizgili Daire (Dashed Border) */
.referance-avatar-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed #8b5cf6;
    /* Mor kesik çizgi */
    border-radius: 50%;
    animation: spin-slow 20s linear infinite;
    /* Opsiyonel: Yavaşça döner */
}

/* Resim */
.referance-avatar-img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 4px solid #fff;
    /* Resim etrafında beyaz boşluk */
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
    z-index: 1;
}

/* --- SAĞ TARAF: İÇERİK --- */
.referance-content-box {
    padding-left: 40px;
}

/* Tırnak İkonu */
.referance-quote-icon {
    font-size: 3rem;
    line-height: 1;
    color: rgba(139, 92, 246, 0.3);
    /* Silik Mor */
    margin-bottom: 10px;
    display: block;
}

/* Ana Alıntı Metni */
.referance-quote-text {
    font-size: 1.75rem;
    /* Büyük font */
    font-weight: 700;
    line-height: 1.4;
    color: #2d3748;
    /* Koyu gri (açık zemin için) */
    margin-bottom: 30px;
}

/* Vurgulanan Kelimeler (Görseldeki sarı/renkli kısım) */
.referance-highlight {
    color: #d97706;
    /* Turuncu/Gold tonu (Arkaplanla uyumlu) */
    position: relative;
    display: inline-block;
}

/* Vurgu kelimenin altını çizmek istersen (Opsiyonel) */
.referance-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(253, 126, 20, 0.2);
    z-index: -1;
}

/* Alt Bilgi Alanı (İsim ve Yıldızlar) */
.referance-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.referance-author h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    margin: 0;
}

.referance-author span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Yıldızlar */
.referance-stars {
    display: flex;
    gap: 4px;
}

.referance-stars i {
    color: #fbbf24;
    /* Canlı Sarı */
    font-size: 1.1rem;
}

/* Animasyon (Border Dönmesi için) */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- RESPONSIVE / MOBİL --- */
@media (max-width: 991px) {
    .referance-section {
        text-align: center;
    }

    .referance-content-box {
        padding-left: 0;
        padding-top: 30px;
    }

    .referance-meta {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .referance-avatar-wrapper {
        margin-bottom: 10px;
    }
}

/* ========================================= */
/* CSS Block 7 */
/* ========================================= */

/* GENEL BÖLÜM */
.statistic-section {
    padding: 80px 0;
    background-color: #fff;
}

/* KART YAPISI */
.statistic-card {
    position: relative;
    height: 220px;
    border-radius: 24px;
    padding: 30px;
    overflow: hidden;
    /* Dairelerin taşmasını engeller */
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Yazılar yukarıda kalsın */
}

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

/* METİN ALANI */
.statistic-text-wrapper {
    position: relative;
    z-index: 10;
    /* En üstte olsun */
    max-width: 60%;
    /* Maskota yer kalsın diye sınırladık */
}

.statistic-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.statistic-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    margin: 0;
    line-height: 1.4;
}

/* DAİRELER VE MASKOT HİZALAMA MERKEZİ 
       Bu kısım matematiksel olarak sağ alt köşeye odaklanır 
    */

/* 1. Dış Halka (Büyük) */
.statistic-circle-lg {
    position: absolute;
    width: 320px;
    height: 320px;
    background-color: rgba(255, 255, 255, 0.08);
    /* Çok hafif transparan */
    border-radius: 50%;
    bottom: -100px;
    /* Konum ayarı */
    right: -100px;
    pointer-events: none;
}

/* 2. İç Halka (Küçük) */
.statistic-circle-sm {
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: rgba(255, 255, 255, 0.15);
    /* Biraz daha belirgin */
    border-radius: 50%;
    /* Büyük daire ile aynı merkeze denk gelmesi için hesaplandı */
    bottom: -30px;
    right: -30px;
    pointer-events: none;
}

/* 3. MASKOT ALANI */
.statistic-mascot-wrapper {
    position: absolute;
    /* Maskotu dairelerin tam göbeğine oturtuyoruz */
    bottom: 15px;
    right: 15px;
    width: 120px;
    /* Maskotun kaplayacağı alan */
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.mascot-img {
    width: 100%;
    height: auto;
    /* Eğer görsellerinin arkasında beyaz kare varsa bunu gizlemek için scale kullanabiliriz ama
           en iyisi transparan PNG olmasıdır. Maskota derinlik katalım: 
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));*/
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.statistic-card:hover .mascot-img {
    transform: scale(1.15) rotate(-8deg);
    /* Hoverda tatlı bir zıplama */
}

/* --- YENİ RENK PALETİ (Referans Görseldeki Mat Gradientler) --- */

/* Mor Kart (Shopping Tarzı) */
.statistic-theme-purple {
    background: linear-gradient(135deg, #a68ce9 0%, #8566dd 100%);
}

/* Mavi Kart (Cloud Tarzı - Buz Mavisi) */
.statistic-theme-blue {
    background: linear-gradient(135deg, #89d4fe 0%, #6faaff 100%);
}

/* Kırmızı/Pembe Kart (Notes Tarzı - Somon) */
.statistic-theme-red {
    background: linear-gradient(135deg, #ff9a9e 0%, #ff758c 100%);
}

/* Yeşil Kart (Premium Tarzı - Fıstık Yeşili) */
.statistic-theme-green {
    background: linear-gradient(135deg, #84fab0 0%, #46bf95 100%);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .statistic-card {
        height: 180px;
    }

    .statistic-number {
        font-size: 2rem;
    }

    .statistic-circle-lg {
        width: 250px;
        height: 250px;
        bottom: -80px;
        right: -80px;
    }

    .statistic-circle-sm {
        width: 150px;
        height: 150px;
        bottom: -30px;
        right: -30px;
    }

    .statistic-mascot-wrapper {
        bottom: 15px;
        right: 15px;
        width: 70px;
    }
}

/* ========================================= */
/* CSS Block 8 */
/* ========================================= */

/* --- MODERN ROI TASARIMI (Tüm Stiller) --- */
:root {

    --color-bg: #f8f9fc;
    --grad-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --grad-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --grad-red: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    --grad-orange: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --radius-card: 24px;
}

.roi-wrapper {

    background: var(--color-bg);
    padding: 60px 20px;
    border-radius: 0;
}

.roi-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Başlık Alanı */
.roi-header {
    text-align: center;
    margin-bottom: 50px;
}

.roi-header h2 {
    font-weight: 800;
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.roi-header p {
    color: #718096;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Slider Kartları */
.slider-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.slider-card:hover {
    transform: translateY(-5px);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.slider-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-right: 15px;
}

.slider-val {
    font-size: 2rem;
    font-weight: 800;
    background: -webkit-linear-gradient(#667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Range Input Özelleştirme */
.custom-range {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #764ba2;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(118, 75, 162, 0.2);
    transition: background .15s ease-in-out;
}

/* Karşılaştırma Tablosu */
.comparison-grid {
    margin-top: 50px;
    background: white;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

/* Tablo Başlıkları */
.comp-header-row {
    display: flex;
    text-align: center;
    color: white;
}

.comp-col-metric {
    flex: 1.2;
    background: white;
    padding: 25px;
    display: flex;
    align-items: center;
    font-weight: 800;
    color: #2d3748;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
}

.comp-col-header {
    flex: 1;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.header-manual {
    background: var(--grad-red);
}

.header-okus {
    background: var(--grad-purple);
}

.header-gain {
    background: var(--grad-orange);
}

.header-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.header-sub {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Tablo Satırları */
.comp-row {
    display: flex;
    border-bottom: 1px solid #edf2f7;
    align-items: center;
    padding: 20px 0;
    transition: background 0.2s;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row:hover {
    background-color: #fbfdff;
}

.cell-metric {
    flex: 1.2;
    padding: 0 25px;
    font-weight: 600;
    color: #4a5568;
}

.cell-data {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    font-size: 1.05rem;
}

/* İkonlar ve Badge */
.icon-cross {
    color: #fff;
    background: #fc8181;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 8px;
}

.icon-check {
    color: #fff;
    background: #48bb78;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 8px;
}

.badge-gain {
    background: #fffaf0;
    color: #ed8936;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #fbd38d;
    display: inline-block;
}

/* Farklı badge renkleri için */
.badge-gain.soft-blue {
    background: #ebf8ff;
    color: #3182ce;
    border-color: #bee3f8;
}

.badge-gain.soft-green {
    background: #f0fff4;
    color: #38a169;
    border-color: #c6f6d5;
}

.badge-gain.soft-purple {
    background: #faf5ff;
    color: #805ad5;
    border-color: #e9d8fd;
}

.badge-gain.soft-pink {
    background: #fff5f7;
    color: #d53f8c;
    border-color: #fed7e2;
}

/* Büyük Özet Kartı */
.summary-card {
    margin-top: 40px;
    background: var(--grad-blue);
    border-radius: var(--radius-card);
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(79, 172, 254, 0.4);
}

.summary-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.summary-main {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.big-money {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 10px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-box h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin: 0;
}

.stat-box .val {
    font-size: 2rem;
    font-weight: 700;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .comp-header-row {
        display: none;
    }

    .comp-row {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
        border-bottom: 5px solid #f0f0f0;
    }

    .cell-metric {
        margin-bottom: 15px;
        font-size: 1.2rem;
        color: #2d3748;
    }

    .cell-data {
        width: 100%;
        margin-bottom: 10px;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 10px;
    }

    .cell-data::before {
        content: attr(data-label);
        display: block;
        font-size: 0.8rem;
        color: #a0aec0;
        margin-bottom: 5px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .summary-main {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

/* ========================================= */
/* CSS Block 9 */
/* ========================================= */

/* * --- TEMEL AYARLAR --- * */
.section-padding {}

/* * --- KART GÖVDE YAPISI --- * */
.app-card {
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    /* Taşmaları gizle */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* * --- ROZET (BADGE) --- * */
.app-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    /* Buzlu cam efekti */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

/* * --- HEADER ALANI (GRADYAN) --- * */
.app-card-header {
    position: relative;
    /* Yükseklik veriyoruz ki SVG rahat otursun */
    padding: 50px 20px 100px 20px;
    color: #fff;
    text-align: center;
}

/* Işıltı Efektleri */
.sparkle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.header-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: inline-block;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-title {
    font-weight: 700;
    font-size: 1.6rem;
    margin: 0;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-top: 8px;
}

/* * --- DALGA (WAVE) - KRİTİK BÖLÜM --- * */
/* Dalga kutusunu başlığın en altına yapıştırıyoruz */
.app-wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    /* Satır boşluğunu öldür */
    transform: rotate(180deg);
    /* SVG'yi terse çevir (yukarı baksın) */
}

.app-wave-svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    /* Piksel hatalarını önlemek için %100'den biraz fazla */
    height: 60px;
    /* Dalganın yüksekliği */
}

.app-wave-path {
    fill: #ffffff;
    /* Kartın gövde rengiyle aynı olmak ZORUNDA */
}

/* * --- GÖVDE (BODY) --- * */
.app-card-body {
    background-color: #fff;
    padding: 10px 30px 40px 30px;
    flex-grow: 1;
    /* Alt kısmı doldur */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.body-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    min-height: 48px;
}

/* Liste Stilleri */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    width: 100%;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Yüzen Buton (Floating Button) */
.btn-floating {
    margin-top: auto;
    background-color: #fff;
    color: #333;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    /* Hafif gölge */
    transition: all 0.3s;
    border: 1px solid transparent;
}

.btn-floating:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* * --- RENK TEMALARI --- * */

/* Mor Tema */
.theme-purple .app-card-header {
    background: linear-gradient(135deg, #c471ed 0%, #f64f59 100%);
}

.theme-purple .btn-floating {
    color: #d65db1;
}

.theme-purple .btn-floating:hover {
    background-color: #fff5fa;
}

/* Mavi Tema */
.theme-blue .app-card-header {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}

.theme-blue .btn-floating {
    color: #0084ff;
}

.theme-blue .btn-floating:hover {
    background-color: #f0f8ff;
}

/* ========================================= */
/* CSS Block 10 */
/* ========================================= */

/* * --- KURUMSAL RENKLER & ROKET AYARLARI (GÜNCEL) --- * */
:root {
    --primary: #172a47;
    /* Birincil (Koyu Lacivert) */
    --secondary: #51c4f1;
    /* İkincil (Açık Mavi) */
    --aux: #ff8c42;
    /* Yardımcı (Turuncu) */
}

.rocket-morph-wrapper {
    position: relative;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
}

.rocket-btn-container {
    position: relative;
    width: 340px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 1. Metin (Sabit) */
.static-text {
    position: relative;
    z-index: 20;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    animation: text-brand-pulse 6s ease-in-out infinite;
}

/* 2. Ghost Placeholder (Silik İz) */
.btn-ghost-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-color: #f1f3f5;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.06);
    z-index: 0;
}

/* 3. Arka Plan (Buton -> Top Dönüşümü) */
.morphing-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    height: 100%;

    /* GÜNCELLENEN GRADYAN: Birincil -> İkincil */
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);

    border-radius: 50px;
    z-index: 5;
    /* Hafif gölge */
    box-shadow: 0 10px 20px rgba(23, 42, 71, 0.3);

    animation: bg-center-shrink 6s ease-in-out infinite;
}

/* 4. Roket (SVG) */
.real-rocket {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 50px;
    z-index: 15;

    animation: rocket-launch-center 6s ease-in-out infinite;
}

/* 5. Duman */
.rocket-smoke {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    z-index: 10;
    opacity: 0;
    animation: smoke-puff 6s ease-in-out infinite;
}

/* --- KEYFRAMES --- */

/* Metin Rengi: Buton gidince YARDIMCI (Turuncu) renk olsun */
@keyframes text-brand-pulse {

    0%,
    25% {
        color: #fff;
    }

    30%,
    85% {
        color: var(--aux);
    }

    /* Turuncu vurgu */
    90%,
    100% {
        color: #fff;
    }
}

/* Arka Plan Büzüşme */
@keyframes bg-center-shrink {

    0%,
    20% {
        width: 100%;
        height: 100%;
        border-radius: 50px;
        opacity: 1;
    }

    28% {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        opacity: 1;
    }

    30% {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        opacity: 0;
    }

    90% {
        width: 100%;
        height: 100%;
        border-radius: 50px;
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Roket Hareketi */
@keyframes rocket-launch-center {

    0%,
    25% {
        transform: translateX(-50%) scale(0) translateY(0);
        opacity: 0;
    }

    28% {
        transform: translateX(-50%) scale(1) translateY(0);
        opacity: 1;
    }

    32% {
        transform: translateX(-50%) scale(0.9) translateY(10px);
    }

    40% {
        transform: translateX(-50%) scale(1.1) translateY(-250px);
        opacity: 1;
    }

    50%,
    100% {
        transform: translateX(-50%) scale(1) translateY(-300px);
        opacity: 0;
    }
}

/* Duman */
@keyframes smoke-puff {

    0%,
    28% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }

    32% {
        opacity: 1;
        transform: translateX(-50%) scale(1.5);
    }

    45% {
        opacity: 0;
        transform: translateX(-50%) scale(2.5);
    }

    100% {
        opacity: 0;
    }
}

/* ========================================= */
/* CSS Block 11 */
/* ========================================= */

.timeline-section {
    position: relative;
}

/* --- MERKEZİ S-EĞRİSİ (SVG) --- */
.svg-line-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    /* Çizgi genişliğini kıstık, daha zarif duracak */
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Çizgi Stili */
.svg-line-container path {
    stroke: #cbd5e0;
    /* Gri tonu */
    stroke-width: 3px;
    stroke-dasharray: 12, 12;
    /* Kesikli çizgi */
    fill: none;
    stroke-linecap: round;
}

/* --- SATIR YAPISI --- */
.timeline-row {
    position: relative;
    display: flex;
    align-items: center;
    /* Dikeyde ortalar */
    margin-bottom: 60px;
    /* Adımlar arası boşluk */
    z-index: 1;
}

/* Son satırda margin olmasın */
.timeline-row:last-child {
    margin-bottom: 0;
}

/* --- MERKEZ NUMARA KUTUSU --- */
.number-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.number-left {
    left: calc(50% - 20px);
}

.number-right {
    left: calc(50% + 20px);
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #ffe5c1;
    font-weight: 700;
    font-size: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-icon {
    width: 20px;
    height: 20px;
    background: #71c2ed;
    color: #71c2ed;
    position: absolute;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;

}

/* --- İÇERİK ve GÖRSEL --- */
.content-col {
    padding: 20px 40px;
    /* Yazıların çizgiye yapışmaması için */
}

.col-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-right-align {
    text-align: right;
}

.text-left-align {
    text-align: left;
}

.timeline-section h3 {
    font-weight: 700;
    color: #2f3542;
    margin-bottom: 12px;
}

.timeline-section p {
    color: #747d8c;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-arrow {
    text-decoration: none;
    color: #ff4757;
    font-weight: 600;
    transition: 0.3s;
}

.btn-arrow:hover {
    color: #e03b49;
    letter-spacing: 0.5px;
}

.img-fluid {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.img-fluid:hover {
    transform: translateY(-5px);
    /* Hafif yukarı kalkma efekti */
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 991px) {
    .svg-line-container {
        display: none;
    }

    /* Mobilde çizgiyi kapat */

    .timeline-row {
        flex-direction: column !important;
        /* Her şeyi alt alta diz */
        text-align: center !important;
        margin-bottom: 50px;
    }

    .number-wrapper {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 15px auto;
        /* Ortala */
    }

    .content-col {
        padding: 10px;
    }

    /* Mobilde sıralama: Resim -> Numara -> Yazı */
    .col-image {
        order: 1;
    }

    .col-number {
        order: 2;
    }

    .col-text {
        order: 3;
    }

    .text-right-align {
        text-align: center;
    }

    .text-left-align {
        text-align: center;
    }
}

/* ========================================= */
/* CSS Block 12 */
/* ========================================= */

/* =========================================
           LIVE SECTION STYLES (liveSection prefix)
           ========================================= */

.liveSection-wrapper {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
    /* Taşmaları önlemek için */
}

/* --- SAĞ TARAF (METİN) --- */
.liveSection-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 20px;
}

.liveSection-highlight {
    color: #3b82f6;
    /* Mavi renk */
}

.liveSection-desc {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 300;
}

.liveSection-divider {
    border-top: 1px solid #e5e7eb;
    margin: 30px 0;
}

/* Özellik Listesi */
.liveSection-feature-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1f2937;
}

.liveSection-check-icon {
    width: 24px;
    height: 24px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* --- SOL TARAF (GRAFİK VE KARTLAR) --- */
.liveSection-visual-area {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arka Plandaki Bar Grafik Kartı */
.liveSection-chart-bg {
    background-color: #fff;
    /* Veya çok hafif gri #f9fafb */
    width: 90%;
    height: 350px;
    border-radius: 20px;
    /* Hafif gölge */
    /* border: 1px solid #f3f4f6; */
    position: relative;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}

/* Y Ekseni Etiketleri */
.liveSection-y-axis {
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Barların Konteyneri */
.liveSection-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80%;
    margin-left: 40px;
    /* Y ekseni için boşluk */
    padding-bottom: 10px;
}

/* Tekil Bar */
.liveSection-bar {
    width: 12%;
    /* Bar genişliği */
    background-color: #f3f4f6;
    border-radius: 50px;
    position: relative;
}

/* Vurgulu (Gradient) Bar */
.liveSection-bar.active {
    background: linear-gradient(180deg, #a855f7 0%, #3b82f6 50%, #bef264 100%);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.2);
}

/* Ön Plandaki Yeşil "Balance" Kartı */
.liveSection-balance-card {
    background-color: #bef264;
    /* Lime Yeşili */
    width: 340px;
    padding: 25px;
    border-radius: 24px;
    position: absolute;
    top: 20px;
    left: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transform: rotate(-2deg);
    /* Hafif eğiklik görseldeki gibi */
    transition: transform 0.3s ease;
}

.liveSection-balance-card:hover {
    transform: rotate(0deg) scale(1.02);
    z-index: 10;
}

.liveSection-card-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.liveSection-card-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.liveSection-card-sub {
    font-size: 0.75rem;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Kart Üzerindeki Butonlar */
.liveSection-actions {
    display: flex;
    gap: 15px;
}

.liveSection-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.liveSection-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #1f2937;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.liveSection-action-btn:hover .liveSection-icon-circle {
    transform: translateY(-2px);
}

.liveSection-action-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f2937;
}

/* Mobil Ayarları */
@media (max-width: 991px) {
    .liveSection-visual-area {
        margin-bottom: 50px;
        height: 400px;
    }

    .liveSection-balance-card {
        width: 280px;
        left: 50%;
        transform: translateX(-50%) rotate(-2deg);
    }

    .liveSection-title {
        font-size: 2.2rem;
    }
}

.liveSection-graph-container {
    position: relative;
    width: 100%;
    height: 70px;
    /* Grafik yüksekliği */
    margin-bottom: 20px;
    margin-top: 10px;
}

/* SVG Ayarları */
.liveSection-svg-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* 1. Çizgi Stili ve Animasyonu */
.liveSection-line-path {
    fill: none;
    stroke: #1f2937;
    /* Koyu gri çizgi */
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    /* Çizgi uzunluğu kadar bir değer */
    stroke-dashoffset: 400;
    /* Başlangıçta gizli */
    animation: drawLine 2s ease-out forwards;
}

/* 2. Alt Alan Dolgusu (Hafif beyaz) */
.liveSection-area-fill {
    fill: url(#chartGradient);
    stroke: none;
    opacity: 0;
    animation: fadeInArea 1s ease-out 1s forwards;
    /* Çizgi bittikten sonra gelir */
}

/* 3. Nokta (Pulsing Dot) */
.liveSection-chart-dot {
    fill: #fff;
    stroke: #1f2937;
    stroke-width: 2;
    opacity: 0;
    animation: popInDot 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.5s forwards;
}

/* 4. Tooltip (Bilgi Baloncuğu) */
.liveSection-graph-tooltip {
    position: absolute;
    top: 0px;
    right: 40px;
    /* Noktanın üzerine denk getirdik */
    background-color: #fff;
    color: #1f2937;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    animation: floatTooltip 3s ease-in-out infinite alternate, fadeInTooltip 0.5s ease 1.8s forwards;
}

.liveSection-graph-tooltip i {
    color: #10b981;
    /* Yeşil ok */
    margin-right: 2px;
}

/* --- KEYFRAMES (ANİMASYONLAR) --- */
/* --- YEŞİL KART İÇİ LOOP ANİMASYONLU GRAFİK --- */

.liveSection-graph-container {
    position: relative;
    width: 100%;
    height: 70px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.liveSection-svg-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* 1. Çizgi: Çizilir, bekler, silinir */
.liveSection-line-path {
    fill: none;
    stroke: #1f2937;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    /* Başlangıçta gizli */
    /* 4 saniyelik sonsuz döngü */
    animation: drawLineLoop 4s ease-in-out infinite;
}

/* 2. Alan Dolgusu: Belirir, bekler, kaybolur */
.liveSection-area-fill {
    fill: url(#chartGradient);
    stroke: none;
    opacity: 0;
    animation: fadeInAreaLoop 4s ease-in-out infinite;
}

/* 3. Nokta: Büyür, bekler, küçülür */
.liveSection-chart-dot {
    fill: #fff;
    stroke: #1f2937;
    stroke-width: 2;
    transform-box: fill-box;
    transform-origin: center;
    opacity: 0;
    animation: popInDotLoop 4s ease-in-out infinite;
}

/* 4. Tooltip: Belirir, yüzer, kaybolur */
.liveSection-graph-tooltip {
    position: absolute;
    top: 0px;
    right: 40px;
    background-color: #fff;
    color: #1f2937;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    /* Hem belirme döngüsü hem de yüzme (float) efekti */
    animation: fadeInTooltipLoop 4s ease-in-out infinite, floatTooltip 3s ease-in-out infinite alternate;
}

.liveSection-graph-tooltip i {
    color: #10b981;
    margin-right: 2px;
}

/* --- GÜNCELLENMİŞ KEYFRAMES (LOOP İÇİN) --- */

/* Çizgi: Çizil -> Bekle -> Opaklığı düşürerek resetle */
@keyframes drawLineLoop {
    0% {
        stroke-dashoffset: 400;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    /* 30. yüzdede çizim biter */
    80% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    /* 80. yüzdeye kadar ekranda kalır */
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }

    /* Kaybolur ve başa döner */
}

/* Alan: Belir -> Bekle -> Kaybol */
@keyframes fadeInAreaLoop {

    0%,
    30% {
        opacity: 0;
    }

    /* Çizgi çizilene kadar bekle */
    45% {
        opacity: 1;
    }

    /* Belir */
    80% {
        opacity: 1;
    }

    /* Kal */
    100% {
        opacity: 0;
    }

    /* Kaybol */
}

/* Nokta: Büyü -> Bekle -> Küçül */
@keyframes popInDotLoop {

    0%,
    30% {
        transform: scale(0);
        opacity: 0;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }

    /* Hafif patlama efekti */
    45% {
        transform: scale(1);
        opacity: 1;
    }

    80% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Tooltip: Belir -> Bekle -> Kaybol */
@keyframes fadeInTooltipLoop {

    0%,
    40% {
        opacity: 0;
        transform: translateY(10px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateY(0);
    }

    /* Bu arada floatTooltip de çalışıyor */
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Yüzme efekti (Bu zaten loopludur, değiştirmeye gerek yok) */
@keyframes floatTooltip {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}

.live-Section-gray {
    backgrounf-color: #f8f8fa;
}

/* ========================================= */
/* CSS Block 13 */
/* ========================================= */

/* * ÖZEL CSS (app- prefix) */

.app-section-padding {}

/* --- RENK VE TEMA AYARLARI --- */
.app-theme-green {
    --app-color: #00d084;
    --app-grad: linear-gradient(180deg, #00d084 0%, #00b894 100%);
    --app-shadow: rgba(0, 208, 132, 0.20);
    --app-bg-light: #e6fffa;
    --app-border-light: #b2f5ea;
}

.app-theme-blue {
    --app-color: #2b7de9;
    --app-grad: linear-gradient(180deg, #2b7de9 0%, #4facfe 100%);
    --app-shadow: rgba(43, 125, 233, 0.20);
    --app-bg-light: #eef6ff;
    --app-border-light: #bedefe;
}

.app-theme-purple {
    --app-color: #9b51e0;
    --app-grad: linear-gradient(180deg, #9b51e0 0%, #c471ed 100%);
    --app-shadow: rgba(155, 81, 224, 0.20);
    --app-bg-light: #f9f0ff;
    --app-border-light: #e9d8fd;
}

/* --- DIŞ ÇERÇEVE (WRAPPER) --- */
.app-card-wrapper {
    position: relative;
    border-radius: 36px;
    background: #e0e0e0;
    padding: 12px 2px 2px 2px;
    transition: all 0.3s ease;
    height: 100%;
}

.app-card-wrapper:hover {
    background: var(--app-grad);
    box-shadow: 0 15px 40px var(--app-shadow);
    transform: translateY(-8px);
}

/* --- İÇ KART (INNER) --- */
.app-inner-card {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* --- HEADER (BEYAZ ALAN) --- */
.app-card-top {
    background-color: #fff;
    padding: 30px 25px 40px 25px;
    position: relative;
    z-index: 2;
}

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

.app-badge-pill {
    background-color: var(--app-bg-light);
    color: var(--app-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.app-level-label {
    font-style: italic;
    color: #999;
    font-size: 0.9rem;
}

.app-icon-lg {
    width: 50px;
    height: 50px;
    background-color: var(--app-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px var(--app-shadow);
}

.app-eng-subtitle {

    color: var(--app-color) !important;

}

.app-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.1;
}

.app-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    min-height: 42px;
}

/* --- BODY (GRİ ALAN) --- */
.app-card-bottom {
    background-color: #f8f9fb;
    padding: 30px 25px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    margin-top: -20px;
    padding-top: 35px;
    border-radius: 0 0 32px 32px;
}

.app-card-top {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

/* --- LİSTE VE KUTULAR --- */
.app-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.app-skill-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.app-skill-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
}

.app-skill-list li::before {
    content: '•';
    color: var(--app-color);
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 1.2rem;
    line-height: 1;
}

.app-question-info {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 10px;
    font-style: italic;
}

.app-example-box {
    background-color: var(--app-bg-light);
    border: 1px solid var(--app-border-light);
    border-radius: 16px;
    padding: 15px;
}

.app-example-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.app-example-text {
    font-size: 0.85rem;
    color: var(--app-color);
    font-weight: 600;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

/* --- YENİ EKLENEN FOOTER KARTI --- */
.app-footer-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

.app-footer-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-footer-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.app-footer-text {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    font-weight: 500;
}

.app-footer-divider {
    width: 1px;
    height: 40px;
    background-color: #eee;
}

@media (max-width: 768px) {
    .app-footer-card {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        text-align: center;
        width: 100%;
    }

    .app-footer-item {
        text-align: center;
    }

    .app-footer-divider {
        width: 100px;
        height: 1px;
        /* Yatay çizgiye dönüştür */
    }
}

/* ========================================= */
/* CSS Block 14 */
/* ========================================= */

/* * ÖZEL STİLLER (qfmt- prefix) */


.qfmt-section-padding {}

/* --- RENK DEĞİŞKENLERİ --- */
:root {
    --qfmt-purple: #9b51e0;
    --qfmt-blue: #2b7de9;
    --qfmt-green: #00d084;
    --qfmt-orange: #fd7e14;
}

.qfmt-header-area {
    text-align: center;
    margin-bottom: 50px;
}

.qfmt-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b7de9;
    margin-bottom: 10px;
}

.qfmt-sub-desc {
    color: #666;
    font-size: 1.1rem;
}

/* ============================================================
           BÜTÜNLEŞİK KUTU (FULL BACKGROUND) TASARIMI
           ============================================================ */

/* 1. ANA KAPSAYICI */
.qfmt-unified-box {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    /* Taşmaları gizle */
    display: flex;
    flex-wrap: wrap;
}

/* 2. SOL PANEL (MENÜ) */
.qfmt-left-panel {
    background-color: #fff;
    border-right: 1px solid #eee;
    /* Sağ ile ayrım çizgisi */
    display: flex;
    flex-direction: column;
    z-index: 2;
    /* Sağ tarafın üzerine çıkmasın ama sınır belli olsun */
}

/* Menü Linkleri */
.qfmt-nav-pills .nav-link {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #f5f5f5;
    border-left: 6px solid transparent;
    background: #fff;
    padding: 30px 25px;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #555;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.qfmt-nav-pills .nav-link:last-child {
    border-bottom: none;
}

.qfmt-nav-pills .nav-link:hover {
    background-color: #fafafa;
}

/* AKTİF DURUMLAR (Sol Menü) */
/* Mor */
.qfmt-nav-pills .nav-link.active.qfmt-theme-purple {
    background-color: #fbf5ff;
    border-left-color: #9b51e0;
    color: #333;
}

.nav-link.active.qfmt-theme-purple .qfmt-menu-icon {
    background: #9b51e0;
    color: #fff;
}

/* Mavi */
.qfmt-nav-pills .nav-link.active.qfmt-theme-blue {
    background-color: #f2f8ff;
    border-left-color: #2b7de9;
    color: #333;
}

.nav-link.active.qfmt-theme-blue .qfmt-menu-icon {
    background: #2b7de9;
    color: #fff;
}

/* Yeşil */
.qfmt-nav-pills .nav-link.active.qfmt-theme-green {
    background-color: #f0fdf9;
    border-left-color: #00d084;
    color: #333;
}

.nav-link.active.qfmt-theme-green .qfmt-menu-icon {
    background: #00d084;
    color: #fff;
}

/* Turuncu */
.qfmt-nav-pills .nav-link.active.qfmt-theme-orange {
    background-color: #fffbf5;
    border-left-color: #fd7e14;
    color: #333;
}

.nav-link.active.qfmt-theme-orange .qfmt-menu-icon {
    background: #fd7e14;
    color: #fff;
}

/* İkon ve Metinler */
.qfmt-menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ccc;
    background-color: #f5f5f5;
    transition: all 0.3s;
    flex-shrink: 0;
}

.qfmt-menu-text h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 4px 0;
    color: inherit;
}

.qfmt-menu-text span {
    font-size: 0.85rem;
    color: #888;
    display: block;
    line-height: 1.4;
    font-weight: 500;
}

/* Sağ Ok */
.qfmt-nav-pills .nav-link::after {
    content: '\F285';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #ddd;
    transition: all 0.3s;
}

.nav-link.active.qfmt-theme-purple::after {
    color: #9b51e0;
}

.nav-link.active.qfmt-theme-blue::after {
    color: #2b7de9;
}

.nav-link.active.qfmt-theme-green::after {
    color: #00d084;
}

.nav-link.active.qfmt-theme-orange::after {
    color: #fd7e14;
}


/* 3. SAĞ PANEL (TAM EKRAN BACKGROUND) */
.qfmt-right-panel {
    padding: 0;
    /* İç boşluğu kaldırdık, içerik tam yayılacak */
    display: flex;
    flex-direction: column;
}

/* İçerik Alanı (Tam Boyut) */
.qfmt-content-full {
    height: 100%;
    width: 100%;
    padding: 50px;
    /* İçerik kenarlara yapışmasın diye iç boşluk */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Full Arka Plan Renkleri (Sol menüdeki aktif renkle eşleşir) */
.qfmt-bg-full-purple {
    background-color: #fbf5ff;
}

/* Mor'un en açığı */
.qfmt-bg-full-blue {
    background-color: #f2f8ff;
}

/* Mavi'nin en açığı */
.qfmt-bg-full-green {
    background-color: #f0fdf9;
}

/* Yeşil'in en açığı */
.qfmt-bg-full-orange {
    background-color: #fffbf5;
}

/* Turuncu'nun en açığı */


/* 4. SORU BİLEŞENLERİ (Beyaz kutular) */
/* Arka plan renkli olduğu için soru elemanlarını beyaz kutulara alıyoruz */
.qfmt-white-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.qfmt-example-label {
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qfmt-label-purple {
    color: #9b51e0;
}

.qfmt-label-blue {
    color: #2b7de9;
}

.qfmt-label-green {
    color: #00d084;
}

.qfmt-label-orange {
    color: #fd7e14;
}

.qfmt-question-text {
    font-weight: 800;
    color: #222;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* Radio Options (Beyaz Kutu İçinde) */
.qfmt-radio-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.qfmt-radio-item:hover {
    border-color: #ccc;
}

.qfmt-radio-item.correct {
    background-color: #e8f5e9;
    border-color: #c8e6c9;
    color: #2e7d32;
    font-weight: 600;
}

.qfmt-radio-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ddd;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qfmt-radio-item.correct .qfmt-radio-circle {
    border-color: #00d084;
    background-color: #00d084;
    color: #fff;
}

.qfmt-radio-item.correct .qfmt-radio-circle::after {
    content: '✓';
    font-size: 12px;
}

/* Input Alanları */
.qfmt-input-full {
    width: 100%;
    padding: 15px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    color: #2b7de9;
    font-style: italic;
    background: #fff;
}

.qfmt-textarea-full {
    width: 100%;
    padding: 15px;
    border: 1px solid #c8e6c9;
    border-radius: 12px;
    color: #666;
    min-height: 100px;
    background: #fff;
}

.qfmt-drag-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.qfmt-drag-number {
    width: 28px;
    height: 28px;
    background-color: #fd7e14;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 15px;
}

/* --- MOBİL AKORDEON (FULL BACKGROUND STYLE) --- */
.qfmt-mobile-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #eee;
}

.qfmt-mobile-accordion .accordion-button {
    background: #fff;
    padding: 20px;
    box-shadow: none !important;
    border: none;
}

/* Akordeon Body - Padding SIFIR ve Tam Renk */
.qfmt-mobile-accordion .accordion-body {
    padding: 0;
}

/* Body İçindeki Tam Boyutlu İçerik */
.qfmt-mobile-content {
    padding: 25px;
}

/* Mobilde iç boşluk */

/* Mobil Renkler */
.bg-mobile-purple {
    background-color: #fbf5ff;
}

.bg-mobile-blue {
    background-color: #f2f8ff;
}

.bg-mobile-green {
    background-color: #f0fdf9;
}

.bg-mobile-orange {
    background-color: #fffbf5;
}

/* ========================================= */
/* CSS Block 15 */
/* ========================================= */

/* * ÖZEL STİLLER (dash- prefix) */

.dash-section-padding {}

/* --- RENK PALETİ --- */
:root {
    --dash-green: #10b981;
    /* Başarılı */
    --dash-yellow: #f59e0b;
    /* Orta */
    --dash-red: #ef4444;
    /* Düşük */
    --dash-dark-bg: #1e293b;
    /* Sağ taraf zemin */
    --dash-card-bg: #2d3748;
    /* Sağ kart zemin */
    --dash-primary: #3b82f6;
    /* Mavi Başlık */
    --dash-purple: #8b5cf6;
    /* Mor Başlık */
}

/* --- SOL KART (PERFORMANS HARİTASI) --- */
.dash-map-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

}

.dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dash-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.dash-subtitle {
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
}

/* Tablo Başlıkları */
.dash-table-header {
    display: flex;
    margin-bottom: 15px;
    padding-left: 140px;
    /* İsim alanı kadar boşluk */
}

.dash-col-title {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.text-green {
    color: var(--dash-green);
}

.text-blue {
    color: var(--dash-primary);
}

.text-purple {
    color: var(--dash-purple);
}

/* Öğrenci Satırları */
.dash-student-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.dash-student-info {
    width: 140px;
    /* Sabit genişlik */
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.dash-avatar {
    width: 32px;
    height: 32px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
}

.dash-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Puan Kutuları */
.dash-scores {
    flex: 1;
    display: flex;
    gap: 10px;
}

.dash-score-box {
    flex: 1;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.bg-score-high {
    background-color: var(--dash-green);
}

.bg-score-mid {
    background-color: var(--dash-yellow);
}

.bg-score-low {
    background-color: var(--dash-red);
}

/* Legend (Alt Bilgi) */
.dash-legend {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.dash-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #666;
}

.dash-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

/* --- SAĞ TARAF (DARK PANELS) --- */
.dash-right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dash-dark-card {
    /* Görseldeki koyu lacivert ton */
    background: linear-gradient(145deg, #2c3e50, #34495e);
    background: #2b3a55;
    /* Solid alternatif */
    border-radius: 20px;
    padding: 25px;
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Özel Renkli Sol Çizgiler (Opsiyonel vurgu için) */
.border-left-green {
    border-left: 4px solid var(--dash-green);
}

.border-left-orange {
    border-left: 4px solid var(--dash-yellow);
}

.dash-card-top {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.dash-status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.icon-success {
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--dash-green);
    border: 1px solid var(--dash-green);
}

.icon-warning {
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--dash-yellow);
    border: 1px solid var(--dash-yellow);
}

.icon-info {
    background-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid #60a5fa;
}

.dash-status-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: block;
}

.text-status-green {
    color: var(--dash-green);
}

.text-status-orange {
    color: var(--dash-yellow);
}

.dash-student-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.dash-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.dash-list li {
    font-size: 0.85rem;
    color: #cbd5e1;
    /* Açık gri metin */
    margin-bottom: 6px;
    display: flex;
    align-items: start;
    gap: 8px;
}

.dash-list li i {
    font-size: 0.9rem;
    margin-top: 2px;
}

/* Yorum/Öneri Kutusu (İç içe kutu) */
.dash-feedback-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.dash-feedback-label {
    font-weight: 700;
    margin-right: 5px;
}

.dash-text-teal {
    color: #5eead4;
}

.dash-text-orange {
    color: #fdba74;
}

/* ========================================= */
/* CSS Block 16 */
/* ========================================= */

/* * ÖZEL CSS (lvl- prefix) */

.lvl-section-padding {}

/* --- TEMA RENKLERİ --- */
:root {
    /* Yeşil */
    --theme-green: #00d084;
    --theme-green-bg: #e0fcf4;
    --theme-green-border: #bbf7e6;

    /* Mavi */
    --theme-blue: #2b7de9;
    --theme-blue-bg: #eaf4ff;
    --theme-blue-border: #cce4ff;

    /* Mor */
    --theme-purple: #9b51e0;
    --theme-purple-bg: #f5eaff;
    --theme-purple-border: #e4ccff;

    /* Kırmızı (Yeni) */
    --theme-red: #ff6b6b;
    --theme-red-bg: #fff0f0;
    --theme-red-border: #ffcccc;
}

/* --- KART GÖVDESİ --- */
.lvl-card {
    background: #fff;
    border-radius: 32px;
    /* Tasarım imzası: Geniş oval köşeler */
    padding: 35px 25px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Çok hafif sınır */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.lvl-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* --- ÜST KISIM --- */
.lvl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.lvl-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lvl-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}

/* --- BAŞLIKLAR --- */
.lvl-title {

    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* --- İSTATİSTİK LİSTESİ --- */
.lvl-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.lvl-stats li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
}

.lvl-stats li i {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* --- ODAK KUTUSU (Alt Kısım) --- */
.lvl-focus-box {
    margin-top: auto;
    /* En alta it */
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.lvl-focus-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
    opacity: 0.7;
}

.lvl-focus-text {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.lvl-desc {
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.5;
    padding: 0 5px;
}

/* --- TEMA RENKLENDİRMELERİ --- */

/* Yeşil */
.theme-green .lvl-badge {
    background-color: var(--theme-green-bg);
    color: var(--theme-green);
}

.theme-green .lvl-icon-circle {
    background-color: var(--theme-green);
    box-shadow: 0 5px 15px rgba(0, 208, 132, 0.3);
}

.theme-green .lvl-stats li i {
    color: var(--theme-green);
}

.theme-green .lvl-focus-box {
    background-color: var(--theme-green-bg);
    border: 1px solid var(--theme-green-border);
}

.theme-green .lvl-focus-text {
    color: #0f5c42;
}

/* Mavi */
.theme-blue .lvl-badge {
    background-color: var(--theme-blue-bg);
    color: var(--theme-blue);
}

.theme-blue .lvl-icon-circle {
    background-color: var(--theme-blue);
    box-shadow: 0 5px 15px rgba(43, 125, 233, 0.3);
}

.theme-blue .lvl-stats li i {
    color: var(--theme-blue);
}

.theme-blue .lvl-focus-box {
    background-color: var(--theme-blue-bg);
    border: 1px solid var(--theme-blue-border);
}

.theme-blue .lvl-focus-text {
    color: #10386b;
}

/* Mor */
.theme-purple .lvl-badge {
    background-color: var(--theme-purple-bg);
    color: var(--theme-purple);
}

.theme-purple .lvl-icon-circle {
    background-color: var(--theme-purple);
    box-shadow: 0 5px 15px rgba(155, 81, 224, 0.3);
}

.theme-purple .lvl-stats li i {
    color: var(--theme-purple);
}

.theme-purple .lvl-focus-box {
    background-color: var(--theme-purple-bg);
    border: 1px solid var(--theme-purple-border);
}

.theme-purple .lvl-focus-text {
    color: #4a1d75;
}

/* Kırmızı */
.theme-red .lvl-badge {
    background-color: var(--theme-red-bg);
    color: var(--theme-red);
}

.theme-red .lvl-icon-circle {
    background-color: var(--theme-red);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.theme-red .lvl-stats li i {
    color: var(--theme-red);
}

.theme-red .lvl-focus-box {
    background-color: var(--theme-red-bg);
    border: 1px solid var(--theme-red-border);
}

.theme-red .lvl-focus-text {
    color: #8a1c1c;
}


/* Footer */
.lvl-footer-card {
    background: #fff;
    border-radius: 100px;
    padding: 25px 50px;
    display: inline-flex;
    gap: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    margin-top: 60px;
    align-items: center;
}

.lvl-footer-divider {
    width: 1px;
    height: 40px;
    background: #eee;
}

.lvl-footer-item h6 {
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.lvl-footer-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

@media (max-width: 992px) {
    .col-lg-3 {
        margin-bottom: 20px;
    }

    .lvl-footer-card {
        flex-direction: column;
        border-radius: 30px;
        gap: 20px;
        text-align: center;
    }

    .lvl-footer-divider {
        width: 100%;
        height: 1px;
    }
}

/* ========================================= */
/* CSS Block 17 */
/* ========================================= */

/* * ÖZEL STİLLER (rs- prefix) */

body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    background-color: #fff;
}

/* --- ANA BÖLÜM (LIGHT THEME) --- */
.rs-section {
    position: relative;
    background-color: #f8f9fc;
    /* Çok açık gri/mavi zemin */
    padding: 120px 0;
    color: #333;
    /* Genel metin rengi koyu */
    overflow: hidden;
    /* Taşan şekilleri gizle */
}

/* --- ARKA PLAN ŞEKİLLERİ (BLOBS) --- */
/* Görseldeki Mor Dalga Efektleri */
.rs-blob-top {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: linear-gradient(135deg, #89dfff 0%, #51c4f1 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    /* Opaklığı 0.2'den 0.12'ye düşürdüm, bulanıklığı artırdım */
    opacity: 0.12;
    z-index: 0;
    transform: rotate(-15deg);
    filter: blur(50px);
}

.rs-blob-bottom {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: linear-gradient(135deg, #e0f7ff 0%, #b3eaff 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    /* Opaklığı 0.3'ten 0.18'e düşürdüm, bulanıklığı artırdım */
    opacity: 0.18;
    z-index: 0;
    filter: blur(60px);
}

/* --- PARTİKÜL ARKA PLANI (KOYU RENKLİ) --- */
.rs-floating-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.rs-float-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Zemin açık olduğu için partikülleri koyu yapıyoruz */
    opacity: 0.08;
    color: #6366f1;
    /* İkonlar için morumsu renk */
    will-change: transform;
}

/* IMG etiketleri için filtre güncellemesi (Koyu zemine göre değil, açık zemine göre) */
.rs-float-item img {
    width: 100%;
    height: auto;
    /* Resimleri biraz morumsu/gri yapıp silikleştiriyoruz */
    filter: grayscale(100%) brightness(50%) sepia(1) hue-rotate(230deg) saturate(2);
}

/* İkonlar */
.rs-float-item i {
    font-size: 100%;
    color: #4338ca;
}

/* Koyu mor ikon */


/* Animasyonlar (Aynı Kalıyor) */
@keyframes floatWanderA {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(200px, -150px) rotate(120deg) scale(1.1);
    }

    66% {
        transform: translate(-100px, 200px) rotate(240deg) scale(0.9);
    }

    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

@keyframes floatWanderB {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-250px, 100px) rotate(-180deg) scale(1.2);
    }

    100% {
        transform: translate(0, 0) rotate(-360deg) scale(1);
    }
}

/* Partikül Konumları */
.rs-item-1 {
    top: 10%;
    left: 5%;
    width: 50px;
    height: 50px;
    animation: floatWanderA 35s infinite linear;
}

.rs-item-2 {
    top: 15%;
    right: 10%;
    width: 70px;
    height: 70px;
    animation: floatWanderB 40s infinite linear reverse;
    animation-delay: -5s;
}

.rs-item-3 {
    bottom: 20%;
    left: 15%;
    width: 45px;
    height: 45px;
    animation: floatWanderB 30s infinite linear;
    animation-delay: -10s;
}

.rs-item-4 {
    bottom: 25%;
    right: 5%;
    width: 60px;
    height: 60px;
    animation: floatWanderA 45s infinite linear reverse;
    animation-delay: -15s;
}

.rs-item-5 {
    top: 50%;
    left: -5%;
    width: 40px;
    height: 40px;
    animation: floatWanderA 28s infinite linear;
    animation-delay: -2s;
}

.rs-item-6 {
    top: 40%;
    right: -5%;
    width: 55px;
    height: 55px;
    animation: floatWanderB 32s infinite linear reverse;
    animation-delay: -8s;
}


/* --- İÇERİK --- */
.rs-content-wrapper {
    position: relative;
    z-index: 5;
}

/* Badge (Light Theme) */
.rs-badge {
    background: #fff;
    border: 1px solid #e0e7ff;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #4f46e5;
    /* Koyu mor metin */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-weight: 700;
}

.rs-badge i {
    color: #f59e0b;
}

/* Sarı yıldız */

/* Başlık (Koyu Renk) */
.rs-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1e293b;
    /* Koyu gri */
}

/* Gradyan Metin (Mor Ağırlıklı) */
.rs-gradient-text {
    background: linear-gradient(90deg, #4f46e5, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-desc {
    font-size: 1.1rem;
    color: #64748b;
    /* Orta gri */
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Logolar */
.rs-logo-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rs-logo-circle {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Light theme için daha belirgin gölge */
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.1);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.rs-logo-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.2);
}

.rs-logo-circle img {
    width: 65%;
    height: auto;
    object-fit: contain;
}

.rs-uni-text {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 50px;
    font-style: italic;
    font-weight: 500;
}

/* İstatistikler (Light Theme) */
.rs-stat-col {
    border-right: 1px solid #e2e8f0;
}

/* Çizgi rengi gri oldu */
.rs-stat-col:last-child {
    border-right: none;
}

.rs-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    /* Koyu sayı */
    margin-bottom: 5px;
}

.rs-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-weight: 700;
}

.rs-footer-text {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #64748b;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .rs-title {
        font-size: 2rem;
    }

    .rs-stat-col {
        border-right: none;
        margin-bottom: 30px;
    }
}

/* ========================================= */
/* CSS Block 18 */
/* ========================================= */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    padding: 40px 0;
}

/* ================= TAB MENU STİLİ (OVAL & ORTALI) ================= */
.custom-nav-pills {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    /* ORTALAMA İŞLEMİ */
    gap: 15px;
    margin-bottom: 50px;
    width: 100%;
    /* Konteyner genişliği */
}

.custom-nav-pills .nav-link {
    border-radius: 50px;
    /* Oval Hatlar */
    padding: 12px 30px;
    font-weight: 600;
    color: #6c757d;
    background-color: #fff;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.custom-nav-pills .nav-link:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* --- AKTİF TAB RENKLERİ --- */
#tab-hepsi.active,
#tab-mudur.active {
    background-color: #1f2235;
    color: #fff;
    border-color: #1f2235;
    box-shadow: 0 6px 15px rgba(31, 34, 53, 0.3);
}

#tab-ogretmen.active {
    background-color: #2f80ed;
    color: #fff;
    border-color: #2f80ed;
    box-shadow: 0 6px 15px rgba(47, 128, 237, 0.3);
}

#tab-veli.active {
    background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
    color: #fff;
    border: none;
    box-shadow: 0 6px 15px rgba(242, 153, 74, 0.3);
}

#tab-ogrenci.active {
    background: linear-gradient(135deg, #9b51e0 0%, #b075e8 100%);
    color: #fff;
    border: none;
    box-shadow: 0 6px 15px rgba(155, 81, 224, 0.3);
}

.custom-nav-pills .nav-link i {
    font-size: 1.1rem;
}

/* ================= KART TASARIMLARI ================= */
.color-box {
    border-radius: 20px;
    padding: 35px 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Link kalktığı için justify-content: flex-start daha iyi durabilir, 
               ama tasarım bozulmasın diye space-between bıraktım, içerik dolacaktır. */
    justify-content: flex-start;
    min-height: 420px;
    /* Link kalkınca biraz kısalttım */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: none;
    height: 100%;
}

.color-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.color-box-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Badge / Etiket */
.color-box-badge {
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 25px;
}

/* Başlıklar */
.color-box h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.25;
}

/* Açıklama Metni */
.color-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Liste Tasarımı */
.color-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    /* Link kalktığı için alt boşluğu sıfırladım */
}

.color-box ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.color-box ul li::before {
    content: '•';
    position: absolute;
    left: 5px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    top: -2px;
}

/* VARYASYONLAR (AYNI KALDI) */
.color-box-dark {
    background-color: #1f2235;
}

.color-box-dark::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(15deg);
    border-radius: 20px;
}

.color-box-blue {
    background-color: #2f80ed;
}

.color-box-blue::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.color-box-orange {
    background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
}

.color-box-orange::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.color-box-purple {
    background: linear-gradient(135deg, #9b51e0 0%, #b075e8 100%);
}

.color-box-purple::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.15);
    transform: rotate(45deg);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.tab-pane {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================= */
/* CSS Block 19 */
/* ========================================= */

/* * --- GLOBAL RESET --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    background-color: #fff;
}

/* * --- ANA KAPSAYICI (mix-section) --- */
.mix-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #fff;
    min-height: 800px;
}

/* * --- ARKA PLAN KATMANI --- */
.mix-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.mix-wave-svg {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    display: block;
}

/* * --- ANİMASYONLAR (İsimler değiştirildi) --- */
@keyframes mixDashFlow {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes mixFloatBubble {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-20px);
        opacity: 0.2;
    }
}

/* * --- SVG ELEMENTLERİ --- */
.mix-wave-path {
    fill: none;
    stroke: #a2d2df;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.6;
    stroke-dasharray: 20 10;
    animation: mixDashFlow 80s linear infinite;
}

.mix-wave-shadow {
    fill: none;
    stroke: #a2d2df;
    stroke-width: 1;
    opacity: 0.2;
    stroke-dasharray: 10 10;
    animation: mixDashFlow 50s linear infinite reverse;
}

.mix-circle-hollow {
    fill: none;
    stroke: #a2d2df;
    stroke-width: 2;
    animation: mixFloatBubble 6s ease-in-out infinite;
    transform-origin: center;
}

.mix-circle-solid {
    fill: #a2d2df;
    animation: mixFloatBubble 8s ease-in-out infinite reverse;
    transform-origin: center;
}

/* Gecikmeler */
.mix-c1 {
    animation-delay: 0s;
}

.mix-c2 {
    animation-delay: 1s;
}

.mix-c3 {
    animation-delay: 2s;
}

.mix-c4 {
    animation-delay: 3s;
}

.mix-c5 {
    animation-delay: 4s;
}


/* * --- ÖN PLAN KATMANI (İÇERİK) --- */
.mix-content-layer {
    position: relative;
    z-index: 1;
}

/* Kart Stili */
.mix-card {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* İkon Kutusu */
.mix-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* Metinler */
.mix-title {
    font-weight: 800;
    font-size: 1.15rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.mix-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* * --- RENK TEMALARI (mix-theme prefix) --- */
.mix-theme-purple {
    background-color: #fbf5ff;
}

.mix-theme-purple .mix-icon-box {
    background-color: #f3e5f5;
    color: #9b51e0;
}

.mix-theme-blue {
    background-color: #f0f8ff;
}

.mix-theme-blue .mix-icon-box {
    background-color: #e3f2fd;
    color: #2b7de9;
}

.mix-theme-yellow {
    background-color: #fffbf0;
}

.mix-theme-yellow .mix-icon-box {
    background-color: #fff8e1;
    color: #f59e0b;
}

.mix-theme-pink {
    background-color: #fff0f5;
}

.mix-theme-pink .mix-icon-box {
    background-color: #fce4ec;
    color: #e83e8c;
}

.mix-theme-green {
    background-color: #f0fffa;
}

.mix-theme-green .mix-icon-box {
    background-color: #d1fae5;
    color: #00d084;
}

.mix-theme-red {
    background-color: #fff5f5;
}

.mix-theme-red .mix-icon-box {
    background-color: #ffeaea;
    color: #ff6b6b;
}

.mix-theme-gold {
    background-color: #fffff0;
}

.mix-theme-gold .mix-icon-box {
    background-color: #fffde7;
    color: #fbc02d;
}

.mix-theme-teal {
    background-color: #f0fdfa;
}

.mix-theme-teal .mix-icon-box {
    background-color: #ccfbf1;
    color: #00b894;
}

/* ========================================= */
/* CSS Block 20 */
/* ========================================= */

/* --- RENKLER --- */
:root {
    --primary-color: #172a47;
    --secondary-color: #51c4f1;
    --auxiliary-color: #ff8c42;
    --bg-light: #f4f7fa;
    --text-dark: #172a47;
}

.orbit-section {
    padding: 90px 0;
    overflow: hidden;
    text-align: center;
}

.orbit-container {
    position: relative;
    width: 100%;
    height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* --- MERKEZ HUB --- */
.center-hub {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    /* Görseldeki gibi koyu lacivert */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    box-shadow: 0 15px 35px rgba(23, 42, 71, 0.4);
    border: 4px solid #fff;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.center-hub:hover {
    transform: scale(1.05);
}

.center-hub h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

/* --- KARTLAR --- */
.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    margin-left: -130px;
    margin-top: -46px;
    z-index: 10;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.orbit-item.is-ready {
    opacity: 1;
}

.custom-orbit-card {
    background: #fff;
    padding: 8px 12px 8px 25px;
    border-radius: 60px;
    min-height: 76px;
    box-shadow: 0 8px 20px rgba(23, 42, 71, 0.08);
    display: flex;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
}

.custom-orbit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(81, 196, 241, 0.25);
}

.orbit-icon-circle {
    position: absolute;
    right: 8px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary-color), #3db0dd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.orbit-text {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    padding-right: 50px;
    font-size: 0.9rem;
    text-align: left;
}

/* --- SVG ÇİZGİLERİ (GÖRSELDEKİ GİBİ) --- */
.orbit-svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.orbit-connector-path {
    fill: none;
    stroke: #8ecae6;
    /* Görseldeki açık mavi tonu */
    stroke-width: 2px;
    stroke-dasharray: 8, 8;
    /* Daha seyrek kesik çizgiler */
    opacity: 0;
    transition: opacity 1s ease;

    /* İsteğe bağlı: Çizgilerin akıyormuş gibi görünmesi için */
    animation: dashFlow 30s linear infinite;
}

.orbit-connector-path.is-ready {
    opacity: 1;
}

@keyframes dashFlow {
    from {
        stroke-dashoffset: 500;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* MOBİL */
@media (max-width: 991px) {
    .orbit-container {
        height: auto;
        flex-direction: column;
        padding: 20px;
    }

    .center-hub {
        position: relative;
        margin-bottom: 40px;
        pointer-events: none;
    }

    .orbit-svg-container {
        display: none !important;
    }

    .orbit-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        margin: 0 0 20px 0 !important;
        transform: none !important;
        opacity: 1 !important;
        width: 100%;
        max-width: 450px;
    }

    .custom-orbit-card {
        min-height: auto;
        padding: 15px;
    }
}

/* ========================================= */
/* CSS Block 21 */
/* ========================================= */

/* Genel */
.comment-custom-section {
    background-color: #fcfcfd;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- YAY VE SAHNE ALANI --- */
.comment-custom-track-area {
    position: relative;
    height: 140px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 20px;
}

/* YAY ÇİZGİSİ */
.comment-custom-arc {
    position: absolute;
    width: 140%;
    height: 400px;
    border-radius: 50%;
    border-bottom: 1px solid #ddd;
    left: -20%;
    top: -290px;
    z-index: 0;
}

/* AVATARLARI TUTAN KUTU */
.comment-custom-avatar-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* --- HAREKETLİ AVATARLAR --- */
.cc-avatar {
    position: absolute;
    width: 65px;
    /* Biraz büyüttüm */
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    background: #fff;

    /* Varsayılan Gizli */
    opacity: 0;
    z-index: -1;
    transform: scale(0) translateX(-50%);
    top: 65px;
    left: 50%;
}

.cc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Avatar initials styling */
.cc-avatar-initials {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6610f2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* --- POZİSYONLAR --- */
.pos-0 {
    left: 0%;
    top: 0px;
    transform: scale(0.6) translateX(-50%);
    opacity: 0.5;
    filter: grayscale(100%);
    z-index: 1;
}

.pos-1 {
    left: 25%;
    top: 35px;
    transform: scale(0.85) translateX(-50%);
    opacity: 0.8;
    filter: grayscale(50%);
    z-index: 5;
}

/* MERKEZ (POS-2) */
.pos-2 {
    left: 50%;
    top: 65px;
    transform: scale(1.3) translateX(-50%);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(102, 16, 242, 0.3);
    border: 2px solid #6610f2;
}

.pos-2 img {
    border: 2px solid #6610f2;
}

.pos-3 {
    left: 75%;
    top: 35px;
    transform: scale(0.85) translateX(-50%);
    opacity: 0.8;
    filter: grayscale(50%);
    z-index: 5;
}

.pos-4 {
    left: 100%;
    top: 0px;
    transform: scale(0.6) translateX(-50%);
    opacity: 0.5;
    filter: grayscale(100%);
    z-index: 1;
}

/* --- BUTONLAR --- */
.cc-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #6610f2;
    border: none;
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(102, 16, 242, 0.2);
}

.cc-control-btn:hover {
    background-color: #520dc2;
    transform: scale(1.1);
}

/* --- MOBİL --- */
@media (max-width: 768px) {
    .comment-custom-track-area {
        max-width: 100%;
        height: 100px;
    }

    .comment-custom-arc {
        display: none;
    }

    .pos-0,
    .pos-4 {
        opacity: 0;
    }

    .pos-1,
    .pos-3 {
        opacity: 0.3;
        transform: scale(0.6) translateX(-50%);
    }

    .pos-2 {
        top: 20px;
        transform: scale(1.1) translateX(-50%);
    }
}

/* YILDIZ RENGİ */
.text-warning {
    color: #ffc107 !important;
}

/* ========================================= */
/* CSS Block 22 */
/* ========================================= */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

/* =========================================
           OUR TEAM STYLES (our- prefix)
           ========================================= */

.our-section {
    padding: 80px 0;
}

/* --- TEMA RENKLERİ (KOLAY GÜNCELLEME İÇİN) --- */
/* Yeni renk eklemek istersen buraya bir sınıf ve hex kodu eklemen yeterli */
.our-theme-purple {
    --our-color: #9b51e0;
}

.our-theme-blue {
    --our-color: #2f80ed;
}

.our-theme-green {
    --our-color: #27ae60;
}

.our-theme-red {
    --our-color: #eb5757;
}

.our-theme-orange {
    --our-color: #f2994a;
}

.our-theme-dark {
    --our-color: #333333;
}

/* --- KART YAPISI --- */
.our-member-card {
    text-align: center;
    margin-bottom: 40px;
    /* Tema rengini değişken olarak kullanıyoruz */
    color: var(--our-color);
}

/* --- FOTOĞRAF VE ARKAPLAN LEKESİ --- */
.our-img-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arkadaki Renkli Leke (Blob) */
.our-blob {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--our-color);
    /* Seçilen tema rengini alır */
    z-index: 0;
    transition: all 0.5s ease;
    opacity: 0.9;
}

/* Leke Şekil Varyasyonları (Doğallık katmak için) */
.our-blob-shape-1 {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: rotate(10deg);
}

.our-blob-shape-2 {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    transform: rotate(-10deg);
}

.our-blob-shape-3 {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(5deg);
}

.our-blob-shape-4 {
    border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
    transform: rotate(-5deg);
}

/* Fotoğraf */
.our-photo {
    position: relative;
    z-index: 1;
    width: 160px;
    /* Lekeden biraz küçük olsun ki leke taşsın */
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    /* Siyah Beyaz Efekti */
    transition: all 0.3s ease;
    border: 3px solid #fff;
    /* Fotoğrafın etrafında temiz bir çizgi */
}

/* Hover Efekti: Fotoğraf renklenir, leke biraz döner */
.our-member-card:hover .our-photo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.our-member-card:hover .our-blob {
    transform: rotate(45deg) scale(1.1);
}

/* --- METİN ALANLARI --- */
.our-role {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--our-color);
    /* Tema rengi */
    opacity: 0.8;
}

.our-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    /* İsim her zaman siyah */
    margin-bottom: 5px;
}

.our-email {
    display: block;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--our-color);
    /* Tema rengi */
    font-weight: 500;
    transition: opacity 0.3s;
}

.our-email:hover {
    opacity: 0.7;
    color: var(--our-color);
}

/* ========================================= */
/* CSS Block 23 */
/* ========================================= */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* =========================================
           SSS SECTION STYLES (sss- prefix)
           ========================================= */

.sss-section {
    padding: 80px 0;
    position: relative;
    /* Görseldeki hafif grimsi/bej geçişli arka plan */
    background: linear-gradient(135deg, #eaeff2 0%, #fdfbf7 100%);
    overflow: hidden;
    /* Dekoratif öğeler taşmasın */
}

/* --- DEKORATİF ARKAPLAN ÖĞELERİ --- */

/* Sol üstteki noktalar */
.sss-decor-dots {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#adb5bd 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.6;
}

/* Sağdaki dalgalı çizgi (SVG simülasyonu) */
.sss-decor-wave {
    position: absolute;
    top: 20%;
    right: -50px;
    width: 300px;
    height: 300px;
    border: 2px solid #a8dadc;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.3;
    transform: rotate(45deg);
    pointer-events: none;
}

/* --- BAŞLIK --- */
.sss-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* --- AKORDİYON (KART) YAPISI --- */
.sss-accordion {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sss-item {
    background-color: #fff;
    border: none;
    border-radius: 15px !important;
    /* Bootstrap'i ezmek için */
    margin-bottom: 20px;
    /* Kartlar arası boşluk */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    /* Hafif gölge */
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Aktif (Açık) olduğunda gölgeyi artır */
.sss-item:has(.sss-btn:not(.collapsed)) {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* --- BUTON (SORU KISMI) --- */
.sss-btn {
    background-color: #fff;
    color: #444;
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 25px;
    border-radius: 15px !important;
    /* Kapalıyken yuvarlak köşeler */
    box-shadow: none !important;
    /* Bootstrap mavi focus gölgesini kaldır */
}

/* Açık olduğunda butonun alt köşelerini düzleştir (içerikle birleşsin) */
.sss-btn:not(.collapsed) {
    background-color: #fff;
    /* Bootstrap varsayılan mavi arka planı engelle */
    color: #333;
    /* Aktif yazı rengi */
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* Ok İkonu (Bootstrap varsayılanını değiştiriyoruz) */
.sss-btn::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fd7e14'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.sss-btn:not(.collapsed)::after {
    transform: rotate(-180deg) scale(0.8);
}

/* --- İÇERİK (CEVAP KISMI) --- */
.sss-body {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 25px 25px 25px;
    /* Üst padding 0 çünkü butonda var */
}

/* ========================================= */
/* CSS Block 24 */
/* ========================================= */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Taşmaları engelle */
}

/* =========================================
           HERO SECTION BACKGROUND
           ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* --- DALGALI ÇİZGİLER (SVG) --- */
.hero-waves {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
    /* Dikey ortala */
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
    /* Tıklamayı engelle */
}

/* --- YÜZEN GEOMETRİK ŞEKİLLER (DECORATIONS) --- */
.shape {
    position: absolute;
    z-index: 1;
    animation: floatAnim 6s ease-in-out infinite;
}

/* Kareler (Diamond Shape) */
.shape-diamond {
    width: 30px;
    height: 30px;
    border: 4px solid;
    transform: rotate(45deg);
    /* Baklava dilimi */
    background: transparent;
}

/* Daireler (Dots) */
.shape-dot {
    border-radius: 50%;
}

/* Blur Efekti (Derinlik algısı için) */
.blur-sm {
    filter: blur(2px);
}

.blur-md {
    filter: blur(4px);
}

/* Konumlandırmalar ve Renkler (Görsele göre) */

/* Sol Taraf */
.s1 {
    top: 20%;
    left: 10%;
    border-color: #ffc107;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

/* Sarı Kare */
.s2 {
    bottom: 15%;
    left: 15%;
    border-color: #fd7e14;
    border-width: 5px;
    animation-delay: 1s;
}

/* Turuncu Kare */
.s3 {
    top: 60%;
    left: 5%;
    width: 15px;
    height: 15px;
    background: #2ecc71;
    animation-delay: 2s;
}

/* Yeşil Nokta */

/* Sağ Taraf */
.s4 {
    top: 25%;
    right: 10%;
    border-color: #00b894;
    width: 45px;
    height: 45px;
    border-width: 5px;
    animation-delay: 0.5s;
}

/* Yeşil Kare */
.s5 {
    bottom: 20%;
    right: 5%;
    background: #fd7e14;
    width: 20px;
    height: 20px;
    transform: rotate(15deg);
    animation-delay: 1.5s;
}

/* Turuncu Dolu Kare */
.s6 {
    bottom: 40%;
    right: 20%;
    width: 12px;
    height: 12px;
    background: #fd7e14;
    animation-delay: 2.5s;
}

/* Turuncu Nokta */

/* Üst / Orta Rastgele */
.s7 {
    top: 10%;
    left: 40%;
    background: #fd7e14;
    width: 10px;
    height: 10px;
    opacity: 0.6;
}

/* Küçük Turuncu */
.s8 {
    top: 15%;
    right: 40%;
    background: #00b894;
    width: 12px;
    height: 12px;
    opacity: 0.6;
}

/* Küçük Yeşil */
.s9 {
    bottom: 30%;
    left: 30%;
    background: #2d9cdb;
    width: 8px;
    height: 8px;
    opacity: 0.5;
}

/* Mavi Nokta */


/* Animasyon (Hafif Yüzme Efekti) */
@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-15px) rotate(45deg);
    }
}

/* Noktalar için dönme olmayan animasyon */
.shape-dot {
    animation-name: floatDot;
}

@keyframes floatDot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* --- İÇERİK KUTUSU (Görseldeki Yazılar) --- */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    color: #2d3436;
    font-weight: 700;
}

/* Arama Kutusu Stili */
.hero-search-box {
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    /* Hap şekli */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #eee;
}

.hero-search-input {
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 50px;
    color: #555;
}

.hero-search-btn {
    background-color: #fd7e14;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
}

.hero-search-btn:hover {
    background-color: #e67e22;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-search-box {
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        gap: 15px;
    }

    .hero-search-input {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .hero-search-btn {
        width: 100%;
    }
}

/* ========================================= */
/* CSS Block 25 */
/* ========================================= */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* =========================================
           FOOTER STYLES (footer- prefix)
           ========================================= */

.footer-section {
    background-color: #172a47;
    /* İstenilen Renk */
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 30px;
    font-size: 0.95rem;
}

/* --- BAŞLIKLAR --- */
.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: block;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}

/* --- METİNLER --- */
.footer-desc {
    color: #d1d5db;
    /* Hafif gri */
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-contact-info {
    color: #d1d5db;
    margin-bottom: 5px;
    display: block;
}

/* --- LİNKLER --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

/* --- SOSYAL MEDYA İKONLARI --- */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-icon:hover {
    color: #fd7e14;
    /* Turuncu Hover Rengi */
    transform: translateY(-3px);
}

/* --- ALT KISIM (COPYRIGHT) --- */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    margin-bottom: 30px;
}

.footer-bottom-text {
    color: #d1d5db;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

/* Mobil Uyum */
@media (max-width: 991px) {
    .footer-heading {
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

/* =========================================
   KVKK Modal Styles
   ========================================= */

/* KVKK Modal Content Styling */
.kvkk-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
}

.kvkk-content h6 {
    border-left: 4px solid #0d6efd;
    padding-left: 12px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.kvkk-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.kvkk-content li {
    margin-bottom: 8px;
}

.kvkk-content p {
    margin-bottom: 16px;
    text-align: justify;
}

.kvkk-content strong {
    color: #0d6efd;
}

/* Modal dialog improvements */
#kvkkModal .modal-dialog {
    max-width: 900px;
}

#kvkkModal .modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

/* Scrollbar styling for modal */
#kvkkModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

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

#kvkkModal .modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

#kvkkModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Footer KVKK link styling */
.footer-link i {
    font-size: 0.85rem;
}


/* =========================================
   Dashboard Row Equal Heights Fix
   ========================================= */

/* Sol ve sağ kolonların yüksekliklerini eşitle */
.dash-map-card,
.dash-right-col {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Sol kartın içeriğinin yayılması */
.dash-map-card {
    min-height: 600px;
    /* Minimum yükseklik garantisi */
}

/* Sağ kolonun kartlarının flex ile doldurması */
.dash-right-col .dash-dark-card {
    flex: 1;
    /* Eşit bölüşüm */
    min-height: 0;
    /* Flex itemleri için önemli */
}

/* Row'un kendisine stretch özelliği */
.dash-section-padding .row.g-4 {
    align-items: stretch;
}

/* ========================================= */
/* Hero Section CTA Buttons - Orange Theme */
/* ========================================= */

/* Demo button - filled orange */
.hero-section .btn-warning {
    background-color: #e67e22 !important;
    border-color: #e67e22 !important;
    color: #fff !important;
}

.hero-section .btn-warning:hover {
    background-color: #e67e22 !important;
    border-color: #e67e22 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4) !important;
}

.hero-section .btn-warning:active,
.hero-section .btn-warning:focus {
    background-color: #ba4a00 !important;
    border-color: #ba4a00 !important;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4) !important;
}

/* Contact button - outline orange */
.hero-section .btn-outline-warning {
    color: #e67e22 !important;
    border-color: #e67e22 !important;
    background-color: transparent !important;
}

.hero-section .btn-outline-warning:hover {
    background-color: #e67e22 !important;
    border-color: #e67e22 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3) !important;
}

.hero-section .btn-outline-warning:active,
.hero-section .btn-outline-warning:focus {
    background-color: #d35400 !important;
    border-color: #d35400 !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4) !important;
}

/* White contact button with orange hover effect */
.hero-section .btn[style*="background-color: white"] {
    transition: all 0.3s ease;
}

.hero-section .btn[style*="background-color: white"]:hover {
    background-color: #e67e22 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4) !important;
}

.hero-section .btn[style*="background-color: white"]:hover i,
.hero-section .btn[style*="background-color: white"]:hover a {
    color: #fff !important;
}