        :root {
            --card-bg: rgba(10, 10, 10, 0.7); 
            --card-border: 1px solid rgba(255, 255, 255, 0.08);
            --text-color: #a0a0a0;       
            --heading-color: #ffffff;    
            --accent-color: #00f3ff;     /* Neon Cyan */
            --secondary-accent: #bc13fe; /* Neon Mor */
            --glow-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(-45deg, #000000, #131313, #1f1f1f, #050505);
            background-size: 400% 400%;
            animation: gradientBG 20s ease infinite; 
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #000; }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; border: 1px solid #000; }
        ::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }

        #canvas1 {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1; opacity: 0.4; pointer-events: none;
        }

        /* Navbar */
        header {
            position: fixed;
            top: 0; width: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo { font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 1px; }
        .logo span { color: var(--accent-color); text-shadow: var(--glow-shadow); }

        .nav-links { display: flex; gap: 2rem; }
        .nav-links a { font-weight: 500; color: #888; position: relative; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
        .nav-links a:hover, .nav-links a.active { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
        .nav-links a.active::after {
            content: ''; position: absolute; left: 0; bottom: -5px; width: 100%; height: 2px;
            background: var(--accent-color); box-shadow: var(--glow-shadow);
        }

        .menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

        /* Hero */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 5%;
            position: relative;
        }

        .hero-content { position: relative; z-index: 2; max-width: 800px; }
        .hero-content h1 { font-size: 3.5rem; margin-bottom: 1rem; color: #fff; text-shadow: 0 5px 15px rgba(0,0,0,0.5); line-height: 1.2; }
        .hero-content h1 span {
            background: linear-gradient(to right, var(--accent-color), var(--secondary-accent));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            font-weight: 800; filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.4));
        }

        .typewriter {
            font-size: 1.5rem; color: #94a3b8; margin-bottom: 2.5rem; min-height: 1.6em;
            letter-spacing: 1px; font-weight: 500;
        }

        .btn-group { display: flex; gap: 1.5rem; justify-content: center; }
        .btn {
            padding: 0.9rem 2.5rem; border-radius: 4px; font-weight: 600; cursor: pointer;
            transition: var(--transition); border: 1px solid var(--accent-color); position: relative;
            overflow: hidden; z-index: 1; letter-spacing: 1px; text-transform: uppercase;
            font-size: 0.9rem; text-decoration: none; display: inline-block;
        }
        .btn-primary { background: rgba(0, 243, 255, 0.1); color: #fff; box-shadow: 0 0 20px rgba(0, 243, 255, 0.2); }
        .btn-primary::before {
            content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
            background: var(--accent-color); transition: var(--transition); z-index: -1;
        }
        .btn-primary:hover::before { width: 100%; }
        .btn-primary:hover { color: #000; box-shadow: 0 0 40px rgba(0, 243, 255, 0.6); }
        .btn-outline { background: transparent; color: var(--accent-color); border-color: rgba(255, 255, 255, 0.2); }
        .btn-outline:hover { border-color: var(--accent-color); color: #fff; box-shadow: 0 0 20px rgba(0, 243, 255, 0.2) inset; }

        /* Section Generic */
        section { padding: 8rem 5% 4rem; position: relative; z-index: 2; }
        .section-title {
            text-align: center; font-size: 2.5rem; margin-bottom: 4rem; position: relative;
            color: #fff; text-transform: uppercase; letter-spacing: 2px;
        }
        .section-title::after {
            content: ''; display: block; width: 60px; height: 3px;
            background: linear-gradient(to right, var(--accent-color), var(--secondary-accent));
            margin: 15px auto 0; box-shadow: 0 0 10px var(--accent-color);
        }

        /* * ==========================================
         * PROJELER (DETAYLI TASARIM)
         * ==========================================
         */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Yeni Kart Yapısı (.work-card stili) */
        .work-card {
            background: var(--card-bg);
            border: var(--card-border);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .work-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 243, 255, 0.15);
        }

        .work-img {
            width: 100%;
            height: 220px;
            background-color: #050505;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .work-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            opacity: 0.8;
        }

        .work-card:hover .work-img img {
            transform: scale(1.1);
            opacity: 1;
        }

        .work-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .work-content h3 {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .work-content p {
            font-size: 0.95rem;
            color: #999;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .tech-tag {
            font-size: 0.75rem;
            background: rgba(255, 255, 255, 0.05);
            color: #ccc;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .work-links {
            display: flex;
            gap: 1rem;
            margin-top: auto;
        }

        .link-btn {
            flex: 1;
            padding: 0.6rem;
            text-align: center;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .btn-live {
            background: rgba(0, 243, 255, 0.1);
            color: var(--accent-color);
            border-color: rgba(0, 243, 255, 0.3);
        }
        .btn-live:hover {
            background: var(--accent-color);
            color: #000;
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
        }

        .btn-code {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
        }
        .btn-code:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
        }

        /* * ==========================================
         * FOOTER (ÖZELLEŞTİRİLMİŞ)
         * ==========================================
         */
        footer {
            background: #050505;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 3rem 5%;
            margin-top: auto;
            position: relative;
            z-index: 2;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-left h3 {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .footer-left p {
            color: #666;
            font-size: 0.85rem;
        }

        .footer-center ul {
            display: flex;
            gap: 1.5rem;
        }

        .footer-center a {
            color: #999;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .footer-center a:hover {
            color: var(--accent-color);
        }

        .footer-right {
            display: flex;
            gap: 1rem;
        }

        .footer-social-btn {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-social-btn:hover {
            background: var(--accent-color);
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 0 15px var(--accent-color);
        }

        /* Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

       @media (max-width: 768px) {
    .nav-links {
        position: fixed; /* Absolute yerine Fixed daha stabil durur */
        top: 0;          /* En tepeye yapışsın */
        right: 0;
        height: 100vh;   /* Tüm ekranı kaplasın */
        width: 70%;      /* Ekranın %70'ini kaplasın */
        background: rgba(5, 5, 5, 0.98); /* Arka plan rengi */
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Linkleri dikeyde ortalar */
        transform: translateX(100%); /* Sağdan gelmesi için */
        opacity: 1;      /* Opacity ile değil transform ile gizleyelim */
        transition: transform 0.3s ease-in-out;
        z-index: 999;    /* Menü butonunun altında, içeriğin üstünde */
        border-left: 1px solid var(--accent-color); /* Sol tarafa çizgi */
    }

    /* JavaScript 'active' sınıfını eklediğinde */
    .nav-links.active {
        transform: translateX(0); /* Ekrana gir */
    }

    /* Menü butonu her zaman en üstte kalsın */
    .menu-toggle {
        display: block;
        z-index: 1001; 
    }
}
          /* Navbar Layout and Language Switcher Styles (Imported from other pages) */

        /* Desktop Layout (Logo - Lang - Menu) */
        @media (min-width: 769px) {
            header {
                justify-content: flex-start !important; /* Align start */
                gap: 30px; /* Gap between Logo and Lang Switcher */
                display: flex;
                align-items: center;
                padding: 20px 50px; /* Assuming standard padding */
            }

            nav {
                margin-left: auto !important; /* Push Menu to the RIGHT */
            }
            
            .logo {
                margin-right: 0 !important;
            }
        }

        /* Language Switcher Container - Glassmorphism Theme */
        .lang-container {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 4px 6px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 30px;
            backdrop-filter: blur(5px);
        }
        
        .separator {
            display: none;
        }
        
        .lang-switch {
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 0.8rem;
            padding: 6px 14px;
            border-radius: 20px;
            border: none;
            color: #aaa; /* Passive color */
            transition: all 0.3s ease;
            background: transparent;
        }
        
        /* Active Language Button (Fill Color and Glow) - PURPLE THEME */
        .lang-switch.active-lang {
            color: #fff;
            background: #bc13fe; /* NEON PURPLE */
            border-color: #bc13fe;
            box-shadow: 0 0 15px rgba(188, 19, 254, 0.5); /* Purple Glow */
            font-weight: 600;
        }
        
        .lang-switch:hover:not(.active-lang) {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Mobile Layout */
        @media (max-width: 768px) {
            header {
                gap: 10px;
                padding: 20px;
            }
            
            .logo {
                font-size: 1.1rem;
                flex: 1;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .lang-container {
                margin-right: 5px;
                padding: 3px;
            }

            .lang-switch {
                padding: 4px 10px;
                font-size: 0.75rem;
            }
        }
 .hobbies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .hobby-card {
            background: var(--card-bg);
            border: var(--card-border);
            padding: 2rem 1rem;
            text-align: center;
            border-radius: 12px;
            transition: var(--transition);
        }

        .hobby-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 243, 255, 0.2);
        }

        .hobby-card i {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 1rem;
            transition: var(--transition);
        }
        
        .hobby-card:hover i {
            color: var(--accent-color);
            text-shadow: 0 0 10px var(--accent-color);
            transform: scale(1.1);
        }
        
        .hobby-card p {
            font-weight: 500;
            font-size: 0.9rem;
        }
    
               .chatbot-toggler {
            position: fixed;
            bottom: 30px;
            right: 35px;
            outline: none;
            border: none;
            height: 60px;
            width: 60px;
            display: flex;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 10000;
            box-shadow: 0 0 25px rgba(0, 243, 255, 0.5);
        }
        
        .chatbot-toggler:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 0 35px rgba(188, 19, 254, 0.7);
        }

        /* SVG Icon Styles in Toggler */
        .chatbot-toggler svg {
            width: 28px;
            height: 28px;
            fill: #fff;
            position: absolute;
            transition: all 0.3s ease;
        }

        .chatbot-toggler svg:last-child {
            opacity: 0;
            transform: rotate(90deg) scale(0.5);
        }
        
        /* Toggler Active State */
        body.show-chatbot .chatbot-toggler svg:first-child {
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        body.show-chatbot .chatbot-toggler svg:last-child {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        /* Chat Penceresi */
        .chatbot {
            position: fixed;
            right: 35px;
            bottom: 100px;
            width: 380px;
            background: rgba(15, 15, 15, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            opacity: 0;
            pointer-events: none;
            transform: scale(0.5);
            transform-origin: bottom right;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0,0,0,0.6);
            z-index: 9999;
        }

        body.show-chatbot .chatbot {
            opacity: 1;
            pointer-events: auto;
            transform: scale(1);
        }

        /* Header */
        .chatbot header {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .chatbot header h2 {
            font-size: 1rem;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .chatbot header h2 svg {
            width: 22px; height: 22px;
            fill: var(--accent-color);
            filter: drop-shadow(0 0 5px var(--accent-color));
        }

        .chatbot header .close-btn {
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
        }
        
        .chatbot header .close-btn svg {
            width: 20px; height: 20px;
            fill: #ccc;
        }
        .chatbot header .close-btn:hover svg { fill: #fff; }

        /* Mesaj Alanı */
        .chatbox {
            overflow-y: auto;
            height: 350px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .chatbox::-webkit-scrollbar { width: 5px; }
        .chatbox::-webkit-scrollbar-track { background: transparent; }
        .chatbox::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }

        .chat { display: flex; list-style: none; }
        
        /* Incoming Mesaj İkonu (Robot) */
        .chat.incoming .chat-icon {
            width: 35px; height: 35px;
            background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
            color: #fff;
            align-self: flex-end;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-right: 10px;
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
            flex-shrink: 0;
        }
        
        .chat.incoming .chat-icon svg {
            width: 20px; height: 20px;
            fill: #fff;
        }

        .chat p {
            max-width: 75%;
            font-size: 0.9rem;
            padding: 12px 16px;
            border-radius: 15px 15px 15px 0;
            white-space: pre-wrap;
            line-height: 1.4;
        }

        .chat.incoming p {
            background: rgba(255, 255, 255, 0.08);
            color: #eee;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .chat.outgoing { justify-content: flex-end; }
        
        .chat.outgoing p {
            background: linear-gradient(135deg, var(--secondary-accent), #8a00d4);
            color: #fff;
            border-radius: 15px 15px 0 15px;
            box-shadow: 0 5px 15px rgba(188, 19, 254, 0.3);
        }

        /* Hızlı Cevap Chipleri */
        .quick-replies {
            display: flex;
            gap: 8px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .chip {
            font-size: 0.75rem;
            padding: 6px 14px;
            background: rgba(0, 243, 255, 0.05);
            border: 1px solid rgba(0, 243, 255, 0.3);
            color: var(--accent-color);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .chip:hover {
            background: var(--accent-color);
            color: #000;
            box-shadow: 0 0 15px var(--accent-color);
        }

        /* Input Alanı */
        .chat-input {
            display: flex;
            gap: 5px;
            align-items: center;
            padding: 10px 20px 20px;
            background: transparent;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .chat-input textarea {
            height: 45px;
            width: 100%;
            border: none;
            outline: none;
            resize: none;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            transition: 0.3s;
        }

        .chat-input textarea:focus {
            background: rgba(255, 255, 255, 0.1);
        }

        .chat-input span {
            color: var(--accent-color);
            font-size: 1.3rem;
            cursor: pointer;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
            background: rgba(0, 243, 255, 0.05);
        }
        
        .chat-input span svg {
            width: 20px; height: 20px;
            fill: var(--accent-color);
            transition: 0.3s;
        }

        .chat-input span:hover {
            background: var(--accent-color);
        }
        
        .chat-input span:hover svg {
            fill: #000;
        }

        @media (max-width: 490px) {
            .chatbot {
                width: 100%;
                height: 100%;
                right: 0;
                bottom: 0;
                border-radius: 0;
                transform-origin: bottom center;
            }
            .chatbox { height: 80%; }
            .chatbot header { padding: 15px; }
        }
        /* * ==========================================
 * ÇALIŞMA HAYATI (TIMELINE) TASARIMI
 * ==========================================
 */

.experience-section {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Çizgi ve Kapsayıcı */
.experience-timeline {
    position: relative;
    padding-left: 30px; /* Çizgi için soldan boşluk */
    border-left: 2px solid rgba(255, 255, 255, 0.1); /* Dikey çizgi */
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem; /* Kartlar arası boşluk */
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Nokta (Dot) Tasarımı */
.timeline-dot {
    position: absolute;
    left: -36px; /* Çizginin üzerine oturtma */
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    border: 2px solid #000; /* İç içe geçmiş görünüm */
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    background: var(--secondary-accent);
    box-shadow: 0 0 15px var(--secondary-accent);
    transform: scale(1.3);
}

/* İçerik Kartı */
.timeline-content {
    background: var(--card-bg);
    border: var(--card-border);
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
}

/* Karta Hover Efekti */
.timeline-content:hover {
    border-color: var(--accent-color);
    transform: translateX(10px); /* Sağa hafif kayma */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 243, 255, 0.05);
}

/* Kartın solundaki küçük ok işareti */
.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 5px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(255, 255, 255, 0.08); /* Kart rengiyle uyumlu */
    transition: var(--transition);
}

.timeline-content:hover::before {
    border-right-color: var(--accent-color); /* Hoverda ok rengi değişir */
}

/* Başlık ve Tarih Alanı */
.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-header h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.timeline-header .date {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
    background: rgba(0, 243, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

/* Şirket Adı */
.timeline-content h4 {
    color: var(--secondary-accent);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Açıklama Metni */
.timeline-content p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-header .date {
        margin-top: 5px;
    }
}
/* İlgi Alanları Bölümünü Yukarı Taşıma Ayarı */
.timeline-section {
    padding-top: 2rem !important; /* Standart 8rem olan boşluğu 2rem'e indirdik */
    margin-top: 0; 
}

/* Eğer Hero (Giriş) ekranı çok boş kalıyorsa ve 
   bu bölümün hemen görünmesini istiyorsan Hero yüksekliğini de ayarlayabilirsin: */
@media (min-width: 769px) {
    .hero {
        min-height: 80vh; /* Tam ekran (100vh) yerine %80 yükseklik */
        height: auto;
        padding-bottom: 2rem;
    }
}