/* Genel Stiller */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif; /* Varsayılan font Raleway */
    background-color: #000000; /* Arka planı Spline gösterecek şekilde siyah */
    color: #ffffff;
    overflow-x: hidden;
    position: relative; /* Konumlandırma için */
    min-height: 100vh;
}

.container {
    max-width: 1140px;
}

/* Tüm section'lar için siyah arka plan rengi */
section {
    background-color: #000 !important;
}

/* Spline arka plan sadece ana sayfada gösterilecek */
.spline-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.spline-background iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Header Alanı */
.folder-tab-header {
    position: fixed; /* Sabitlendi */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030; /* Diğer elemanların üzerinde */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: rgba(0, 0, 0, 0.8) !important;
    transition: padding 0.3s ease, background-color 0.3s ease; /* Geçiş eklendi */
    border-bottom: none;
}

/* Kaydırılmış Header Stili */
.header-scrolled {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    background-color: rgba(10, 10, 12, 0.85); /* Hafif şeffaf koyu arka plan */
    backdrop-filter: blur(10px); /* Arka plan bulanıklaştırma */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-scrolled .navbar-logo {
    height: 50px; /* Logo küçültüldü (70px -> 50px) */
    transition: height 0.3s ease;
}

/* Navbar (Sabit Header İçinde) */
.navbar-logo {
    height: 70px;
    width: auto;
    margin-right: 0 !important;
    transition: height 0.3s ease; /* Geçiş eklendi */
}

/* Navbar Linkleri - Stil aynı */
.navbar .nav-link {
    font-family: 'Raleway', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    margin-left: 1rem;
    margin-right: 1rem;
    transition: color 0.3s ease, opacity 0.3s ease;
    font-weight: 600;
    padding: 0.5rem 0.2rem;
    border: none;
    border-radius: 0;
    background-color: transparent;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); /* Okunabilirlik için hafif gölge eklendi */
    font-size: 0.9rem;
    position: relative; /* Alt çizgi için */
    padding-bottom: 0.4rem; /* Çizgi için yer */
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%; /* Ortadan başlasın */
    width: 0; /* Başlangıçta görünmez */
    height: 2px;
    background: linear-gradient(to right, #8e7eff, #4e3eff); /* Mor gradyan */
    transition: width 0.3s ease-in-out;
}

.navbar .nav-link:hover {
    color: #ffffff;
    opacity: 1;
}

.navbar .nav-link:hover::after {
    width: 80%; /* Hover'da çizgi görünsün */
}

.navbar-actions {
    /* Navbar social yerine geçti */
}

/* Dil Değiştirici */
.language-switch {
    cursor: default; /* Konteynerin tıklanabilir olmadığını belirt */
}

.language-switch .lang-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    user-select: none;
    text-decoration: none; /* Link için metin dekorasyonu kaldır */
    cursor: pointer; /* Tıklanabilir olduğunu belirt */
}

.language-switch .lang-label.active {
    color: #ffffff;
}

.language-switch .lang-label:hover {
    color: rgba(255, 255, 255, 0.8); /* Hover durumunda renk değişimi */
}

.language-switch .form-check-input {
    width: 2.8em;
    height: 1.4em;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.2); /* Kapalı durum (EN) arka plan */
    border-color: rgba(255, 255, 255, 0.3);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255,255,255,0.5)'/%3e%3c/svg%3e"); /* Kapalı durum ikonu rengi */
}

.language-switch .form-check-input:checked {
    background-color: #6a5acd; /* Açık durum (TR) arka plan (mor) */
    border-color: #6a5acd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); /* Açık durum ikonu rengi (beyaz) */
}

.language-switch .form-check-input:focus {
    border-color: #8a7acd; /* Focus rengi */
    box-shadow: 0 0 0 0.2rem rgba(106, 90, 205, 0.25); /* Focus shadow */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255,255,255,0.8)'/%3e%3c/svg%3e");
}

.language-switch .form-check-input:checked:focus {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/* 3D Beyaz Buton (Sign In için) - Stil aynı */
.btn-3d-white {
    font-family: 'Raleway', sans-serif;
    border-radius: 0.75rem;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    background-color: #ffffff;
    color: #18181b;
    border: none;
    box-shadow: 0 4px 0px #e2e8f0,
                0 5px 7px rgba(0, 0, 0, 0.15);
    transition: all 0.15s ease-out;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-3d-white:hover {
    background-color: #f8fafc;
    box-shadow: 0 3px 0px #e2e8f0,
                0 4px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}

.btn-3d-white:active {
    background-color: #f1f5f9;
    box-shadow: 0 1px 0px #cbd5e1,
                0 2px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(3px);
}

/* Ana İçerik Alanı (Sadece Üst Metin) */
.main-content-top-text {
    padding-top: 100px; /* Header yüksekliği + ek boşluk, önceki 18vh kaldırıldı */
    padding-bottom: 12vh; /* Alt boşluğu da biraz artır (10vh -> 12vh) */
    position: relative;
    z-index: 5;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Bu bölümdeki container'ın sol boşluğunu sıfırla */
.main-content-top-text .container {
    padding-left: var(--bs-gutter-x, 0.75rem); /* Sağ padding kalsın */
    /* padding-right: var(--bs-gutter-x, 0.75rem); */ /* Gerekirse sağ padding de ayarlanabilir */
    max-width: none; /* Container genişlik limitini kaldır */
    width: 100%; /* Tam genişlik */
}

/* Mobil için text-start */
@media (max-width: 991.98px) {
    .main-content-top-text .text-lg-start {
        text-align: start !important;
    }
}

/* Başlık için Montserrat Black */
.main-content-top-text h1 {
    /* ... h1 stilleri ... */
}

/* Başlıktaki Gradyan Metin */
.gradient-text-hero {
    /* ... gradient stilleri ... */
}

/* Lead paragraf için Raleway ve Mor Gradyan */
.main-content-top-text .lead {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    margin-left: 0;
    margin-right: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    max-width: 600px; /* Genişlik limiti güncellendi */
}

.lead-gradient {
    background: linear-gradient(to right, #bca0ff, #6a5acd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline; /* inline kalabilir veya inline-block yapılabilir */
}

/* Explore Services Butonu */
.main-content-top-text .btn-3d-white {
     /* Zaten tanımlı stilleri kullanır, gerekirse özelleştirilebilir */
     /* Örneğin boyut: */
     /* padding: 0.8rem 2rem; */
     /* font-size: 1rem; */
}

/* Responsive Ayarlamalar */
@media (max-width: 992px) {
    .main-content-top-text {
        padding-top: 16vh; /* Tablette de aşağı */
    }
     .main-content-top-text .container {
        padding-left: 1.5rem; /* Mobilde biraz iç boşluk kalsın */
        padding-right: 1.5rem;
        max-width: 960px; /* Mobilde max-width geri gelsin */
    }
}

@media (max-width: 768px) {
    .main-content-top-text {
        padding-top: 10vh; /* Mobilde boşluğu azalt (15vh -> 10vh) */
        /* justify-content: flex-start; zaten ayarlı */
    }
    .main-content-top-text h1 {
         font-size: 2.3rem; /* Mobil başlık boyutu ayarı */
    }
    .main-content-text .lead {
        font-size: 1.05rem; /* Mobil lead boyutu ayarı */
        max-width: 100%;
    }
     .lead-gradient {
         display: inline-block;
    }
    .main-content-top-text .container {
        padding-left: 1rem; /* Mobilde iç boşluk ayarı */
        padding-right: 1rem;
    }
}

/* Hakkımızda Bölümü */
.about-section {
    background-color: #000;
    padding-top: 8rem; /* Üst boşluk normale döndürüldü (60vh -> 8rem) */
    padding-bottom: 8rem;
    position: relative;
    z-index: 5;
}

.about-section .badge {
    background-color: #222 !important; /* Biraz daha açık siyah */
    border: 1px solid #444;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 0.5rem;
}

.about-section h2 {
    font-family: 'Montserrat', sans-serif; /* Başlık fontu */
    font-weight: 900; /* Black */
    color: #ffffff;
    font-size: 2.8rem; /* Boyut ayarlandı */
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Başlıktaki gradyan metin */
.gradient-text {
    background: linear-gradient(to right, #8e7eff, #4e3eff); /* Mor tonlarında gradyan */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block; /* Gradyanın çalışması için */
}

.about-section .lead {
    color: rgba(255, 255, 255, 0.7); /* Biraz daha parlak */
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'Raleway', sans-serif; /* Fontu belirtelim */
}

/* Metin arkasındaki gradyan efekti */
.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; /* Genişlik */
    height: 150px; /* Yükseklik */
    background: radial-gradient(ellipse at center, rgba(78, 62, 255, 0.15) 0%, rgba(0,0,0,0) 70%); /* Morumsu ışık */
    filter: blur(50px); /* Yumuşatma */
    z-index: -1; /* Metnin arkasında */
    opacity: 0.7;
}

/* Responsive Ayarlamalar */
@media (max-width: 768px) {
     /* ... (Navbar mobil stilleri) ... */

    .about-section h2 {
        font-size: 2.2rem;
    }
    .about-section .lead {
        font-size: 1rem;
    }
    .about-section::before {
        width: 80%;
        height: 100px;
        filter: blur(30px);
    }
}

/* Süreç Bölümü */
.process-section {
    background-color: #000; /* Arka plan siyah kalıyor */
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative; /* Gelecekteki efektler için */
    z-index: 5;
}

.process-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Black yerine Bold */
    color: #ffffff;
    font-size: 2.5rem;
    position: relative; /* Alt çizgi için */
    display: inline-block; /* Çizginin genişliğini ayarlar */
    padding-bottom: 0.5rem; /* Çizgi için boşluk */
    margin-bottom: 1.5rem; /* Alt boşluğu artır */
}

.process-section .lead {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.process-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px; /* Kısa çizgi */
    height: 3px;
    background: linear-gradient(to right, #8e7eff, #4e3eff); /* Mor gradyan */
    border-radius: 2px;
}

/* Süreç Kartları */
.process-card {
    background: linear-gradient(145deg, #2a2a2e, #1c1c1e); /* Hafif gradyan arka plan */
    border-radius: 1.2rem; /* Biraz daha yuvarlak */
    border: 1px solid #38383a;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.4s ease;
    overflow: hidden; /* İçerik taşmasını engelle */
}

/* Kart hover efekti */
.process-card:hover {
    transform: translateY(-6px) scale(1.01); /* Hafif büyüme */
    box-shadow: 0 12px 25px rgba(100, 100, 100, 0.15);
}

.process-card-image {
    background-color: #222224; /* İç arka plan */
    border-radius: 0.75rem;
    overflow: hidden;
    height: 200px; /* Sabit yükseklik */
    position: relative; /* Window dots için */
    display: flex;
    padding: 1rem; /* İç boşluk */
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.3); /* İç gölge */
}

/* Placeholder UI Genel */
.mock-ui {
    width: 100%;
    height: 100%;
    position: relative;
    color: #a0a0a0;
    font-size: 0.75rem;
}

.window-dots {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
}
.window-dots span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #444;
}
.window-dots span:nth-child(1) { background-color: #ff5f57; }
.window-dots span:nth-child(2) { background-color: #febc2e; }
.window-dots span:nth-child(3) { background-color: #28c840; }

/* Placeholder UI 1: Discovery */
.discovery-ui {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 1rem;
    padding-top: 30px; /* Noktalar için boşluk */
}
.ui-panel { background-color: #333; border-radius: 8px; padding: 10px; }
.chart-panel { display: flex; align-items: flex-end; gap: 10px; }
.chart-panel .bar { background-color: #555; width: 15%; height: 80%; border-radius: 3px; }
.target-panel { display: flex; justify-content: center; align-items: center; }
.target-circle { width: 60px; height: 60px; border-radius: 50%; border: 5px solid #555; background-color: #444; position: relative; }
.target-circle::before { content: ''; width: 20px; height: 20px; background: #777; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.text-lines { grid-column: span 2; }
.text-lines .line { height: 8px; background-color: #444; border-radius: 4px; margin-bottom: 6px; width: 80%; }
.text-lines .line:nth-child(2) { width: 90%; }
.text-lines .line:nth-child(3) { width: 70%; margin-bottom: 0; }

/* Placeholder UI 2: Code */
.code-ui {
    padding-top: 30px;
    font-family: monospace;
    overflow: hidden;
}
.code-ui pre {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    color: #aaa;
    font-size: 0.7rem; /* Küçük kod */
    white-space: pre-wrap; 
    word-wrap: break-word; 
    line-height: 1.4;
}

/* Placeholder UI 3: Dashboard */
.dashboard-ui {
    display: flex;
    padding-top: 30px;
    gap: 1rem;
}
.dash-sidebar { width: 120px; background-color: #333; border-radius: 8px; padding: 10px; display: flex; flex-direction: column; gap: 8px; font-size: 0.7rem; }
.dash-sidebar .item { display: flex; align-items: center; gap: 8px; padding: 5px; border-radius: 4px; }
.dash-sidebar .item i { width: 12px; text-align: center; color: #888; }
.dash-sidebar .item.active { background-color: #555; color: #fff; }
.dash-sidebar .item.active i { color: #fff; }
.dash-main { flex-grow: 1; background-color: #333; border-radius: 8px; padding: 10px; display: flex; justify-content: center; align-items: center; }
.dash-main .status { text-align: center; font-size: 0.8rem; }
.dash-main .status i { display: block; font-size: 2rem; margin: 10px 0; animation: spin 2s linear infinite; color: #6a7eff;}
.dash-main .status small { display: block; font-size: 0.7rem; color: #888; }

.process-card h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 1.5rem; /* Başlık ile UI arasında boşluk */
}

.process-card p.small {
    color: rgba(255, 255, 255, 0.65) !important; /* Açıklama rengi */
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Responsive Ayarlamalar */
@media (max-width: 992px) {
    /* ... (Önceki responsive stiller) ... */
    .process-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* ... (Önceki responsive stiller) ... */
    .process-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .process-section h2 {
        font-size: 1.8rem;
    }
    .process-card {
        text-align: center;
    }
}

/* Hizmetler Bölümü (Yeniden Tasarlandı) */
.services-section {
    background-color: #000000; /* Tam siyah arka plan */
    padding-top: 7rem;
    padding-bottom: 7rem;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.services-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 2.5rem;
    position: relative; /* Alt çizgi için */
    display: inline-block; /* Çizginin genişliğini ayarlar */
    padding-bottom: 0.5rem; /* Çizgi için boşluk */
    margin-bottom: 1.5rem; /* Alt boşluğu artır */
}

.services-section .lead {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px; /* Kısa çizgi */
    height: 3px;
    background: linear-gradient(to right, #8e7eff, #4e3eff); /* Mor gradyan */
    border-radius: 2px;
}

/* Hizmet Kartları Satırı (Bağlantı çizgisi için) */
.service-cards-row {
    position: relative;
}

/* Bağlantı Çizgisi (Sadece büyük ekranlarda) */
@media (min-width: 992px) {
    .service-cards-row::before {
        content: '';
        position: absolute;
        top: 120px; /* Görsel alanının ortasına yakın */
        left: 12.5%; /* İlk kartın ortasından başlasın */
        width: 75%; /* Son kartın ortasına kadar */
        height: 2px;
        background: linear-gradient(90deg, rgba(60, 60, 80, 0), rgba(80, 80, 120, 0.6), rgba(60, 60, 80, 0)); /* Soluk mor çizgi */
        z-index: -1; /* Kartların arkasında */
        opacity: 0.6;
    }
}

/* Hizmet Kartları (Yan Yana) */
.service-card {
    background: #111113; /* Biraz daha koyu kart */
    border-radius: 1rem;
    border: 1px solid #222; /* Daha belirsiz border */
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 2px solid transparent; /* Hover için başlangıç */
}

.service-card::before {
    /* Üst çizgi efekti kaldırıldı */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: #222; /* Alt/yan border rengi değişmesin */
    border-top-color: #6a5acd; /* Üst kenara hafif mor */
}

.service-card-visual {
    height: 180px; /* Yükseklik azaltıldı */
    border-radius: 0.75rem;
    background-color: #1a1a1c; /* İç arka plan */
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Kart Placeholder Görsel Stilleri (Gerekirse güncellenebilir) */
/* ... (Mock UI stilleri önceki gibi kalabilir veya ince ayar yapılabilir) ... */

.service-card h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700; /* Biraz daha kalın */
    font-size: 1.1rem; /* Biraz daha küçük */
    color: #ffffff;
}

.service-card p.small {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem; /* Biraz daha küçük */
    line-height: 1.5;
}

/* Responsive Ayarlamalar */
@media (max-width: 992px) {
     .service-card-col {
         flex: 0 0 50%; /* Tablette 2 sütun */
         max-width: 50%;
     }
}

@media (max-width: 768px) {
    .services-section h2 {
        font-size: 2rem;
    }
    .service-card {
        text-align: center;
    }
    .service-card-visual { height: 160px; }
     .service-card-col {
         flex: 0 0 100%; /* Mobilde tek sütun */
         max-width: 100%;
     }
}

/* Mobile Placeholder */
.visual-mobile .mock-phone {
    width: 80px;
    height: 150px;
    background: #333;
    border-radius: 10px;
    position: relative;
    border: 3px solid #444;
}
.visual-mobile .screen {
    position: absolute;
    inset: 5px;
    background: #222;
    border-radius: 5px;
    padding: 8px;
    display: flex;
    flex-direction: column;
}
.visual-mobile .header { height: 8px; background: #444; border-radius: 3px; margin-bottom: 10px; width: 50%; }
.visual-mobile .content-line { height: 6px; background: #555; border-radius: 3px; margin-bottom: 6px; width: 90%; }
.visual-mobile .content-line.short { width: 60%; }
.visual-mobile .fab { width: 25px; height: 25px; background: #6a7eff; border-radius: 50%; position: absolute; bottom: 10px; right: 10px; }

/* SaaS Placeholder */
.visual-saas .mock-browser {
    width: 90%;
    height: 80%;
    background: #333;
    border-radius: 8px;
    border: 1px solid #444;
    padding-top: 25px; /* Dots için yer */
    position: relative;
}
.visual-saas .dots {
    position: absolute;
    top: 8px;
    left: 10px;
    display: flex; gap: 5px;
}
.visual-saas .dots span { display: block; width: 8px; height: 8px; border-radius: 50%; background: #555; }
.visual-saas .dots span:first-child { background: #ff5f57; }
.visual-saas .address-bar { height: 15px; background: #222; border-radius: 3px; margin: 0 10px 10px 10px; }
.visual-saas .content-area { height: 65%; background: #444; margin: 0 10px; border-radius: 4px; }

/* Services Placeholder */
.visual-services .mock-gears {
    position: relative;
    width: 100px;
    height: 100px;
}
.visual-services .mock-gears i {
    position: absolute;
    font-size: 4rem;
    color: #555;
    animation: spin 8s linear infinite;
}
.visual-services .gear1 { top: 10px; left: 10px; }
.visual-services .gear2 { font-size: 3rem; color: #777; bottom: 15px; right: 15px; animation: spin-reverse 6s linear infinite; }

/* Community Placeholder */
.visual-community .mock-network {
    position: relative;
    width: 120px;
    height: 80px;
}
.visual-community .node {
    position: absolute;
    font-size: 2rem;
    color: #777;
}
.visual-community .node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); color: #aaa; }
.visual-community .node:nth-child(2) { bottom: 0; left: 10%; }
.visual-community .node:nth-child(3) { bottom: 0; right: 10%; }
.visual-community .line {
    position: absolute;
    height: 2px;
    background-color: #555;
    transform-origin: left center;
}
.visual-community .line:nth-child(4) { width: 50px; top: 20px; left: 35%; transform: rotate(40deg); }
.visual-community .line:nth-child(5) { width: 50px; top: 20px; left: 50%; transform: rotate(-40deg); }

.service-card h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
}

.service-card p.small {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ... (Responsive stiller) ... */
@media (max-width: 768px) {
    .services-section h2 {
        font-size: 2rem;
    }
    .service-card {
        text-align: center;
    }
    .service-card-visual { height: 180px; }
}

/* Referanslar/Müşteri Logoları Bölümü */
.client-logos-section {
    background-color: #080808; /* Ana siyaha çok yakın */
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 5;
}

.client-logos-section h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.client-logo-list {
    gap: 2rem; /* Logolar arası boşluk */
}

.client-logo img {
    max-height: 40px; /* Logo yüksekliği */
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%) contrast(120%); /* Gri tonlama ve kontrast */
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.client-logo img:hover {
    opacity: 1;
    filter: grayscale(0%) contrast(100%);
}

/* Projeler Bölümü */
.projects-section {
    background-color: #000; /* Tam siyah */
    padding-top: 7rem;
    padding-bottom: 7rem;
    position: relative;
    z-index: 5;
}

.projects-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 2.5rem;
}

.projects-section .lead {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Proje Kartları */
.project-card {
    background: #111113;
    border-radius: 1rem;
    border: 1px solid #222;
    overflow: hidden; /* Resmin köşelerini kartla hizala */
    transition: transform 0.3s ease, box-shadow 0.4s ease;
}

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

.project-card-img {
    display: block;
    width: 100%;
    height: auto;
    /* İsteğe bağlı: Geçiş efekti */
     transition: transform 0.4s ease-out;
}
.project-card:hover .project-card-img {
     transform: scale(1.03);
}

.project-card-body {
    /* İçerik için ek stil gerekirse */
}

.project-card h5 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.project-card p.small {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Mega Footer */
.site-footer {
    background-color: #000; /* Koyu arka plan */
    color: #adb5bd; /* Genel metin rengi (gri tonlu) */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Üstte hafif bir çizgi */
}

.footer-logo {
    max-height: 60px; /* Boyut artırıldı (30px -> 60px) */
    filter: grayscale(100%) brightness(2); /* İsteğe bağlı: Logoyu beyaz/gri yapma */
}

.site-footer h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem; /* Başlık altı boşluk */
}

.footer-links li {
    margin-bottom: 0.6rem; /* Linkler arası boşluk */
}

.footer-links a {
    color: #adb5bd; /* Link rengi */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
    color: #a39bff; /* Hover'da açık mor */
    text-decoration: none;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn-light {
    background-color: #fff;
    color: #000;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.newsletter-form .btn-light:hover {
    background-color: #eee;
}

.footer-social .nav-link {
    color: #adb5bd;
    font-size: 1.1rem;
    transition: color 0.2s ease-in-out;
}

.footer-social .nav-link:hover {
    color: #ffffff;
}

/* Alt Kısım */
.site-footer .border-top {
     border-color: rgba(255, 255, 255, 0.15) !important; /* Çizgi rengini biraz daha belirgin yap */
}

/* ... (Mevcut @media sorguları veya diğer stiller) ... */
@media (max-width: 768px) {
    .client-logo-list {
        gap: 1rem;
    }
    .project-card {
        text-align: center;
    }
}

/* İletişim Formu Bölümü */
.contact-section {
    background-color: #000; /* Arka plan siyah */
    position: relative;
    z-index: 5;
}

.contact-section h2 {
    /* Genel bölüm başlığı stillerini kullanır (alt çizgi vb.) */
}

.contact-section .lead {
     color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Elemanları */
.contact-section .form-control {
    background-color: rgba(255, 255, 255, 0.05); /* Çok hafif saydam beyaz arka plan */
    border: 1px solid #333; /* Koyu gri border */
    color: #ffffff;
    padding: 0.9rem 1rem;
    border-radius: 0.5rem; /* Hafif yuvarlak köşeler */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-section .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #6a5acd; /* Odaklanınca mor border */
    box-shadow: 0 0 0 0.2rem rgba(106, 90, 205, 0.25); /* Hafif mor dış gölge */
    color: #ffffff;
    outline: none;
}

.contact-section textarea.form-control {
    resize: vertical; /* Sadece dikey boyutlandırma */
}

/* Gönder Butonu (Mor Gradyan) - SİLİNDİ */

/* ... Footer stilleri ... */

/* Genel Sayfa İçeriği (About vb.) */
.page-content {
    background-color: #000;
    position: relative;
    z-index: 5;
    padding-top: 180px; /* 140px'den 180px'e artırıldı */
    padding-bottom: 5rem; /* Alt padding eklendi */
}

/* İletişim sayfası header bölümü için ek boşluk */
.page-header {
    padding-top: 180px !important; /* Menü ile arasında daha fazla boşluk */
    padding-bottom: 2rem;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    /* display-4 boyutunu kullanır */
    color: #fff;
    margin-bottom: 1rem !important; /* Alt boşluk */
}

.page-content .lead {
    /* Genel .lead stilini kullanır, gerekirse özelleştirilir */
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Misyon/Vizyon Bölümü */
.about-details-section {
    /* padding: 2rem 0; */ /* Section padding ayarı */
}

.about-details-section h2 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     color: #eee;
     font-size: 1.8rem; /* Başlık boyutu */
     margin-bottom: 0.8rem !important;
}

.about-details-section p {
     color: rgba(255, 255, 255, 0.75); /* Biraz daha parlak */
     line-height: 1.7;
     font-size: 1rem;
}

.spline-embed-container {
    background-color: rgba(255, 255, 255, 0.02); /* Hafif arka plan */
    border: 1px solid #222;
}

/* Takım Bölümü Stilleri (Silindiği için kaldırılabilir veya kalabilir) */
.team-section h2 {
    /* ... */
}
.team-card {
    /* ... */
}

/* ... Diğer stiller ... */

/* Community Sayfası Stilleri */

/* Hero Alanı */
.community-hero .card-img {
    object-fit: cover; /* Resmi kapsayıcıya sığdır */
    max-height: 500px; /* Hero resim yüksekliğini sınırla */
}

.community-hero .hero-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%); /* Alttan üste karartma */
    color: #ffffff;
}

.community-hero .hero-title {
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.community-hero .hero-excerpt {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
}

.community-hero .badge {
    font-weight: 600;
}

/* Makale Kartları */
.article-card {
    background-color: #111113;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.article-card .card-img-container {
    height: 200px;
    overflow: hidden;
}

.article-card .article-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-img {
    transform: scale(1.05);
}

.gradient-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    border-radius: 0.5rem;
}

.article-card .card-title {
    font-size: 1.2rem;
    line-height: 1.4;
}

/* Dikey kart resmi */
.article-card .card-img-top.article-card-img {
    height: 200px; /* Sabit yükseklik */
}

.article-card .card-body {
    padding: 1.2rem;
}

.article-card .card-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #f0f0f0; /* Tam beyazdan biraz farklı */
    margin-bottom: 0.5rem;
}

.article-card .card-text.small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65) !important;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.article-card .badge {
    font-size: 0.7rem;
    padding: 0.3em 0.6em;
    background-color: #333 !important; /* Etiket rengi */
    border: 1px solid #444;
}

.article-card .card-footer {
    /* Gerekirse footer için ek stil */
}

.article-card .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
}

.article-card .btn-outline-light:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ... Footer Stilleri ... */

/* Duyuru Banner Alanı (Terminal Stili) */
.announcement-banner {
    padding: 1rem 0; /* Padding ayarlandı */
}

.terminal-banner {
    /* height: auto; */ /* Yükseklik kaldırıldı, içerik belirlesin */
    perspective: none; /* Perspektif kaldırıldı */
    background: #0c0c0e; /* Koyu terminal arka planı */
    border: 1px solid #222; /* Daha belirgin border */
    border-radius: 0.5rem; /* Daha az yuvarlak */
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    overflow: visible; /* Overflow kaldırıldı */
    font-family: 'Courier New', Courier, monospace; /* Monospace font */
}

.announcement-logo {
    height: 28px; /* Logo boyutu ayarlandı */
    width: auto;
    filter: brightness(0) invert(1) opacity(0.8); /* Beyaz/gri tonlu logo */
}

.announcement-text {
    color: #ffffff; /* Yeşil -> Beyaz */
    font-size: 1rem;
    /* İsteğe bağlı yazılıyor efekti eklenebilir */
}

.cursor {
    display: inline-block;
    background-color: #ffffff; /* Yeşil -> Beyaz */
    width: 10px;
    height: 1.2rem; /* Metinle aynı hizada */
    margin-left: 5px;
    animation: blinkCursor 1s infinite step-end;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Eski Duyuru Stilleri - SİLİNDİ */
/* .announcement-item { ... } */
/* @keyframes rotateAnnouncementsSmooth { ... } */
/* .announcement-item span { ... } */


/* ... Footer Stilleri ... */

/* Article Detail Sayfası Stilleri */
.article-detail-page .page-content {
    /* Zaten siyah arkaplanı var */
}

.article-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.article-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.article-meta {
    font-family: 'Raleway', sans-serif;
}

.article-meta span + span::before {
    content: "•";
    margin: 0 0.5em;
}

.article-meta .badge {
    /* Zaten community sayfasında tanımlı stili kullanır */
    font-size: 0.75rem;
}

.article-featured-img {
    object-fit: cover;
    max-height: 450px; /* Resim yüksekliğini ayarla */
    width: 100%;
}

.article-body p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #eee;
    margin-top: 2.5rem;
}

.article-body ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-body ul li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.article-body blockquote {
    border-left-color: #6a5acd !important; /* Mor vurgu */
    background-color: rgba(255, 255, 255, 0.03) !important;
}

.article-body blockquote p {
     font-size: 1.1rem;
     color: rgba(255, 255, 255, 0.9);
}

/* ... Footer Stilleri ... */

/* Contact Sayfası Stilleri */
.contact-page h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #eee;
}

.contact-form-standalone .form-control {
    /* Zaten tanımlı stilini kullanır (.contact-section .form-control) */
    /* Gerekirse burada özelleştirilebilir */
}

.contact-info-block {
    /* İsteğe bağlı: Arka plan, border vb. eklenebilir */
    /* background-color: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 0.5rem; */
}

.contact-info-block .info-item i {
    /* İkon rengi */
    color: #6a5acd; /* Mor vurgu */
}

.contact-info-block .info-item h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-info-block .info-item p a:hover {
    color: #fff !important;
}


/* ... Footer Stilleri ... */

/* Community Initiative Bölümü */
.community-initiative-section {
    /* Arka plan zaten bg-black ile verildi */
    position: relative; /* Z-index için */
    z-index: 5;
    overflow: hidden; /* AOS animasyonları için */
}

.community-initiative-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.community-initiative-section p {
     font-family: 'Raleway', sans-serif;
     line-height: 1.7;
}

/* Alternatif Terminal Stili */
.terminal-line-alt {
    background-color: #1a1a1c; /* Biraz daha açık siyah */
    padding: 0.8rem 1.2rem;
    border-radius: 0.5rem;
    border: 1px solid #333;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-prompt {
    color: #888; /* Gri prompt */
    margin-right: 0.5rem;
}

.terminal-command-alt {
    color: #f0f0f0; /* Beyaz komut */
    font-size: 1rem;
}

.cursor-alt {
    display: inline-block;
    background-color: #f0f0f0; /* Beyaz imleç */
    width: 10px;
    height: 1.2rem;
    margin-left: 5px;
    animation: blinkCursor 1s infinite step-end;
}

/* ... Contact Sayfası Stilleri ... */

/* Community Initiative Detail Sayfası Stilleri */
.initiative-detail-page .page-content {
    /* Zaten siyah arkaplanı var */
}

.initiative-hero .badge {
    font-weight: 600;
}

.initiative-hero h1 {
    font-family: 'Montserrat', sans-serif;
}

.initiative-details h2 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     color: #eee;
}

.initiative-details h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #ddd;
}

.initiative-details h4 i {
    color: #6a5acd; /* Mor vurgu */
    width: 25px; /* İkon hizalaması için */
}

.initiative-details p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* Başvuru Çağrısı Kutusu */
.initiative-details .bg-dark {
    background-color: #111 !important; /* Biraz daha açık */
}


/* ... Footer Stilleri ... */ 

/* Footer alanı için siyah arka plan garantisi */
footer.footer-dark {
    background-color: #000 !important;
}

/* Paylaşım Linkleri İçin Stiller */
.share-links {
    display: flex;
    gap: 20px; /* İkonlar arasındaki boşluğu artırır */
    margin-top: 10px;
}

.share-link {
    font-size: 1.25rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.share-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.share-link.twitter:hover { color: #1DA1F2 !important; }
.share-link.facebook:hover { color: #4267B2 !important; }
.share-link.linkedin:hover { color: #0077b5 !important; }
.share-link.email:hover { color: #EA4335 !important; }

/* Beyaz 3D Etiket Stili */
.tag-3d-white {
    font-family: 'Raleway', sans-serif;
    border-radius: 0.5rem;
    padding: 0.4rem 0.8rem;
    font-weight: 600;
    background-color: #ffffff;
    color: #18181b !important;
    border: none;
    box-shadow: 0 3px 0px #e2e8f0,
                0 4px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.15s ease-out;
    font-size: 0.8rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-3d-white:hover {
    background-color: #f8fafc;
    box-shadow: 0 2px 0px #e2e8f0,
                0 3px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}

/* Blog Detay Sayfası Stilleri */
.blog-detail-header {
    padding-top: 180px; /* Menüden uzak durması için üst padding artırıldı */
}

.blog-content {
    padding-top: 2rem; /* İçerik ile başlık arasındaki boşluk */
}

/* Blog Detay Sayfası için Ek Düzenlemeler */
.blog-detail-page {
    margin-top: 100px; /* Sayfanın en üstüne ek margin */
    padding-top: 50px; /* Sayfanın en üstüne ek padding */
}

/* Sayfa İçeriği Genel Ayar - Artırıldı */
.page-content, .blog-header {
    padding-top: 200px !important; /* Genel içerik padding artırıldı */
}

/* Diğer Blog Yazıları Bölümü - Arkaplan */
.related-blogs {
    background-color: #000000 !important; /* Tam siyah arkaplan */
} 