/* =========================================
   1. DEĞİŞKENLER VE SIFIRLAMA
   ========================================= */
:root {
    --primary: #0062ff;
    --secondary: #00d2ff;
    --bg-light: #fdfdfd;
    --text-dark: #0a0a0b;
    --text-muted: #6b7280;
    --glass: rgba(255, 255, 255, 0.7);
    --border: rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-light);
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 98, 255, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 210, 255, 0.03) 0px, transparent 50%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* =========================================
   2. NAVBAR & NAVIGASYON
   ========================================= */
.navbar {
    padding: 25px 0; position: fixed; width: 100%; top: 0; z-index: 1000;
    transition: var(--transition);
}

.nav-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; text-transform: uppercase; }
.logo span { color: var(--primary); }

.lang-selector { display: flex; gap: 8px; background: #f1f1f1; padding: 4px; border-radius: 12px; }
.lang-btn {
    padding: 6px 14px; border-radius: 9px; text-decoration: none;
    font-size: 12px; font-weight: 700; color: var(--text-muted); transition: 0.3s;
}
.lang-btn.active { background: white; color: var(--primary); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

/* =========================================
   3. HERO AREA (Profil, İsim, Sosyal Medya)
   ========================================= */
.hero {
    position: relative; /* İçindeki canvas'ı konumlandırmak için */
    padding: 120px 0 60px;
    text-align: center;
    overflow: hidden; /* Canvas'ın taşmasını engeller */
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1; /* 0.5'ten 1'e çıkardık, artık kısıtlama yok */
    pointer-events: none;
}

/* Hero içeriğinin canvas üstünde kalmasını garanti edelim */
.hero .container {
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: flex; align-items: center; justify-content: center;
    gap: 40px; margin-bottom: -20px;
}

/* Profil Fotoğrafı Sistemi */
.profile-container {
    position: relative; width: 420px; height: 420px;
    display: flex; align-items: center; justify-content: center;
}

.profile-main {
    width: 340px; height: 340px; border-radius: 50%; background: white;
    z-index: 10; padding: 10px; overflow: hidden; position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    display: flex; align-items: center; justify-content: center;
    animation: float 6s ease-in-out infinite;
}

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

/* Yörünge ve Işık Efekti */
.orbit-path {
    position: absolute; width: 380px; height: 380px; border-radius: 50%;
    border: 1px solid rgba(0, 98, 255, 0.05); z-index: 1;
}

.comet-glow {
    position: absolute; width: 375px; height: 375px; border-radius: 50%;
    z-index: 2; animation: rotateComet 8s linear infinite;
    background: conic-gradient(from 0deg, var(--secondary) 0%, var(--primary) 15%, transparent 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, transparent 69.5%, black 70%, black 70.5%, transparent 71%);
    mask-image: radial-gradient(circle, transparent 69.5%, black 70%, black 70.5%, transparent 71%);
    filter: drop-shadow(0 0 8px var(--primary));
}

/* İsim ve Slogan */
.glitch-name {
    font-size: 58px; font-weight: 800; letter-spacing: -2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite; filter: drop-shadow(0 10px 15px rgba(0, 98, 255, 0.1));
    margin-bottom: 0;
}

.tagline { font-size: 18px; color: var(--text-muted); margin-top: -5px; font-weight: 500; }

/* Sosyal Medya Kutuları */
.hero-social-modern { display: flex; justify-content: center; gap: 15px; margin: 30px 0 50px; }
.social-box {
    display: flex; align-items: center; gap: 10px; padding: 12px 20px;
    background: white; border: 1px solid var(--border); border-radius: 100px;
    text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 14px;
    transition: var(--transition); box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.social-box i { color: var(--primary); font-size: 18px; }
.social-box:hover { transform: translateY(-5px); background: var(--primary); color: white; box-shadow: 0 10px 20px rgba(0, 98, 255, 0.2); }
.social-box:hover i { color: white; }

/* =========================================
   4. YAN SKILL BLOKLARI (Desktop Only)
   ========================================= */
.skill-sidebar { display: flex; flex-direction: column; gap: 20px; width: 250px; text-align: left; }
.skill-sidebar.right { text-align: right; }
.skill-item {
    display: flex; align-items: center; gap: 15px; padding: 15px;
    background: rgba(255, 255, 255, 0.5); border-radius: 16px; border: 1px solid var(--border);
    transition: var(--transition);
}
.skill-sidebar.right .skill-item { flex-direction: row-reverse; }
.skill-item i { font-size: 20px; color: var(--primary); }
.skill-item h4 { font-size: 14px; font-weight: 700; margin: 0; }
.skill-item p { font-size: 11px; margin: 0; color: var(--text-muted); }
.skill-item:hover { background: white; transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

/* =========================================
   5. STATS VE SERVICES
   ========================================= */
.stats-panel {
    max-width: 850px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
    border: 1px solid var(--border); border-radius: 24px; margin: 60px auto;
    padding: 35px; display: flex; box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
}
.stat-item { flex: 1; text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(0, 0, 0, 0.06);
}
.stat-val { font-size: 36px; font-weight: 800; color: var(--primary); display: block; }
.stat-label { font-size: 12px; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }

.services-section { padding: 80px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
    background: white; padding: 40px; border-radius: 32px; border: 1px solid var(--border);
    transition: var(--transition); text-align: left;
}
.card:hover { transform: translateY(-10px); border-color: var(--secondary); box-shadow: 0 30px 60px rgba(0,0,0,0.05); }
.card-icon { width: 50px; height: 50px; background: rgba(0, 98, 255, 0.05); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 20px; }

/* =========================================
   6. AMİRAL PROJE VE TIMELINE
   ========================================= */
.project-glow-wrapper {
    position: relative;
    margin-top: 80px;
    padding: 3px; /* Işığın geçeceği ray kalınlığı */
    border-radius: 42px;
    overflow: hidden;
    transform: translateZ(0);
}

.card-glow-huzme {
    position: absolute;
    width: 200%; /* Kartı tamamen kapsaması için büyüttük */
    height: 200%;
    top: -50%;
    left: -50%;
    /* 
       Kuyruk Efekti: 
       0deg'den 60deg'e kadar bir renk geçişi veriyoruz. 
       Bu 60 derecelik alan ışığın 'kuyruğu' olacak.
    */
    background: conic-gradient(
        from 0deg,
        #00d2ff 0deg,      /* Başlangıç (En parlak nokta) */
        #0062ff 20deg,     /* Gövde */
        rgba(0, 98, 255, 0.5) 40deg, 
        transparent 70deg, /* Kuyruğun sönümlendiği yer */
        transparent 360deg
    );
    animation: rotateGlow 4s linear infinite; /* 6s çok yavaştı, 4s daha dinamik */
    z-index: 1;
    /* Parlama ve Bulanıklık: Kuyruğun daha yumuşak ve ışık gibi durmasını sağlar */
    filter: blur(10px); 
}

/* Kartın üzerine binen ekstra bir parlama (isteğe bağlı ama şık durur) */
.project-glow-wrapper::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #0a0a0b;
    border-radius: 40px;
    z-index: 2;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.active-project-card {
    position: relative;
    background: #0a0a0b;
    border-radius: 40px;
    padding: 60px;
    color: white;
    z-index: 3;
    overflow: hidden; /* Canvasın dışarı taşmasını engeller */
}

#projectCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Arka planda kalsın */
    opacity: 0.6; /* Yazıların okunması için hafif şeffaf */
}

.project-content {
    position: relative;
    z-index: 2; /* Canvasın üstünde görünmesi için */
}

.project-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.experience-section { padding: 80px 0; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 30px; border-left: 2px solid rgba(0, 98, 255, 0.1); }
.timeline-item { position: relative; margin-bottom: 40px; }
.time-dot { position: absolute; left: -37px; top: 5px; width: 12px; height: 12px; background: #ddd; border-radius: 50%; border: 4px solid white; }
.time-dot.active { background: var(--secondary); box-shadow: 0 0 15px var(--secondary); }
.time-content { background: white; padding: 25px; border-radius: 20px; border: 1px solid var(--border); transition: 0.3s; }
.time-content:hover { transform: translateX(10px); border-color: var(--primary); }

/* =========================================
   7. ANIMASYONLAR
   ========================================= */
@keyframes rotateComet { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes shine { to { background-position: 200% center; } }

/* =========================================
   8. RESPONSIVE (MOBIL UYUMLULUK)
   ========================================= */
@media (max-width: 992px) {
    .skill-sidebar { display: none; } /* Mobilde yan yetenekleri gizle */
    .hero-layout { flex-direction: column; }
    .profile-container { width: 320px; height: 320px; }
    .profile-main { width: 260px; height: 260px; }
    .orbit-path, .comet-glow { width: 300px; height: 300px; }
    .grid { grid-template-columns: 1fr; }
    .glitch-name { font-size: 42px; }
    .stats-panel { flex-direction: column; gap: 20px; }
    .stat-item:not(:last-child)::after { display: none; }
}


/* Vizyon Bölümü */
.vision-section {
    padding: 100px 0;
    background-color: #ffffff;
    /* Hafif nokta desenli arka plan */
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 30px 30px;
    text-align: center;
}

.vision-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.vision-header h2 span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-desc {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Etiketler (Tags) */
.tags-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.tag {
    background: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.tag:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    color: var(--primary);
}

/* Butonlar */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 98, 255, 0.2);
}

.btn-primary-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 98, 255, 0.3);
}

.btn-outline-modern {
    background: white;
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline-modern:hover {
    border-color: var(--text-dark);
    background: #f9fafb;
}

/* Kaydırma Göstergesi */
.scroll-indicator {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

@media (max-width: 768px) {
    .cta-group { flex-direction: column; align-items: center; }
    .vision-header h2 { font-size: 32px; }
}


.community-section {
    position: relative;
    padding: 120px 0;
    background: #050507; /* Derin siyah/lacivert */
    overflow: hidden;
}

#neuronCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    opacity: 0.5; /* Arka planda çok baskın olmasın */
}

.community-content {
    position: relative;
    z-index: 2; /* Canvas'ın üstünde kalması için */
}

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

/* Glassmorphism Kartlar */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.05);
}

.card-header { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.card-header h3 { color: white; font-size: 22px; margin-bottom: 5px; }
.card-header p { color: rgba(255,255,255,0.5); font-size: 14px; }

.icon-circle {
    width: 60px; height: 60px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 24px;
}

.stat-pills { display: flex; gap: 10px; margin-bottom: 20px; }
.stat-pills span {
    background: rgba(255, 255, 255, 0.05);
    color: white; padding: 6px 12px;
    border-radius: 100px; font-size: 11px; font-weight: 600;
}

.card-quote {
    font-style: italic; color: rgba(255,255,255,0.7);
    font-size: 15px; border-left: 2px solid var(--secondary);
    padding-left: 15px; margin-bottom: 35px;
}

/* Neon Butonlar */
.btn-neon {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--secondary); color: #000;
    text-decoration: none; padding: 15px; border-radius: 16px;
    font-weight: 800; font-size: 14px; transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.btn-neon.alt { background: #25D366; color: white; box-shadow: 0 0 20px rgba(37, 211, 102, 0.3); }

.btn-neon:hover { transform: scale(1.02); filter: brightness(1.1); }

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


footer {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-pill {
    display: flex;
    gap: 30px;
}

.contact-pill a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.contact-pill a:hover { color: var(--primary); }

.social-links a {
    color: var(--text-dark);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* MOBİL FOOTER AYARI */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .contact-pill {
        flex-direction: column;
        gap: 15px;
    }
}


/* --- YENİ ÇÖZÜMLER BÖLÜMÜ (DARK STYLE) --- */
.solutions-section {
    padding: 100px 0;
    background: #0f172a; /* Derin lacivert/siyah arka plan */
    color: white;
}

.badge-featured {
    background: rgba(0, 98, 255, 0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.light-text { color: white; margin-top: 15px; font-size: 42px; }
.text-gradient {
    background: linear-gradient(to right, #00d2ff, #0062ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: #94a3b8;
    max-width: 600px;
    margin: 15px auto 50px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: #1e293b;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 210, 255, 0.3);
}

/* Üst Kısım Radyanları */
.card-top {
    padding: 40px;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.gradient-blue { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.gradient-purple { background: linear-gradient(135deg, #a855f7 0%, #6d28d9 100%); }
.gradient-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

.card-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.card-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.card-top h3 { font-size: 20px; font-weight: 800; line-height: 1.2; }

/* Alt Kısım Detayları */
.card-bottom { padding: 30px; }
.card-bottom p { color: #94a3b8; font-size: 15px; margin-bottom: 20px; min-height: 60px; }

.card-tags { display: flex; gap: 10px; margin-bottom: 25px; }
.card-tags span {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
}

.btn-card {
    display: block;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-card:hover {
    background: white;
    color: #0f172a;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .solutions-grid { grid-template-columns: 1fr; }
}


/* --- FINAL FOOTER DESIGN --- */
.main-footer {
    background: #050507; /* Community ile aynı siyah */
    color: white;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 20px; color: white; }
.footer-motto { color: #94a3b8; font-size: 14px; margin-bottom: 25px; line-height: 1.6; }

.footer-socials { display: flex; gap: 15px; }
.footer-socials a {
    width: 40px; height: 40px; background: rgba(255, 255, 255, 0.05);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none; transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-socials a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-links h4, .footer-contact h4 {
    font-size: 18px; font-weight: 700; margin-bottom: 25px; color: white;
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
    color: #94a3b8; text-decoration: none; font-size: 14px; transition: 0.3s;
}
.footer-links ul li a:hover { color: var(--secondary); padding-left: 5px; }

.footer-contact p { color: #94a3b8; font-size: 14px; margin-bottom: 15px; display: flex; align-items: center; gap: 12px; }
.footer-contact i { color: var(--primary); }

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-content { display: flex; justify-content: space-between; align-items: center; color: #64748b; font-size: 13px; }

#backToTop {
    width: 40px; height: 40px; background: var(--primary); color: white;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: 0.3s;
}
#backToTop:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0, 98, 255, 0.4); }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-socials { justify-content: center; }
}

/* Logo Genel Ayarları */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Navigasyon Logosu */
.nav-logo {
    height: 45px; /* Logonun yüksekliğini buradan ayarlayabilirsin */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

/* Footer Logosu */
.footer-logo {
    height: 50px; /* Footer'da biraz daha büyük durabilir */
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Navbar scroll olduğunda logonun hafif küçülmesi için (İsteğe bağlı) */
.navbar.scrolled .nav-logo {
    height: 38px;
}

/* Mobil için logo ayarı */
@media (max-width: 768px) {
    .nav-logo {
        height: 35px;
    }
}


/* Reveal Efekti Düzeltme */
.reveal-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-content.active {
    opacity: 1;
    transform: translateY(0);
}

