/* PRELOADER STİLİ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--koyu-siyah);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-content {
    text-align: center;
}

.loader-content p {
    color: var(--elektrik-yesili);
    font-weight: bold;
    letter-spacing: 3px;
    margin-top: 20px;
    font-size: 1.2rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #333;
    border-top: 5px solid var(--elektrik-yesili);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Yükleme bittiğinde gizle */
.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}



/* TEMEL AYARLAR VE RENK PALETİ */
        :root {
            --koyu-siyah: #121212;
            --acik-siyah: #1e1e1e;
            --elektrik-yesili: #00ff7f;
            --beyaz: #f4f4f4;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth; 
        }
        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            background-color: var(--koyu-siyah);
            color: var(--beyaz);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 100px;
        }

        /* ÜST MENÜ (HEADER) */
        header {
            background-color: var(--acik-siyah);
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--elektrik-yesili);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
        }

        /* JavaScript ile eklenecek 'scrolled' sınıfı */
        header.scrolled {
            padding: 10px 50px;
            background-color: rgba(30, 30, 30, 0.95);
            backdrop-filter: blur(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--elektrik-yesili);
        }
        /* Logo Boyutlandırması */
        .logo-img {
            height: 75px;
            display: block; /* Alt kısımdaki gereksiz boşluğu alır */
            transition: height 0.3s ease;
            transform: scale(2); /* Logoyu %30 oranında büyütür (1.2, 1.4 gibi deneyebilirsin) */
            transform-origin: left center;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        nav ul li a {
            color: var(--beyaz);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--elektrik-yesili);
        }

        /* HAMBURGER MENÜ (Mobil için) */
        .menu-toggle {
            display: none;
            color: var(--beyaz);
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .menu-toggle:hover {
            color: var(--elektrik-yesili);
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }
            header.scrolled {
                padding: 10px 20px;
            }
            .logo-img {
                height: 45px; 
            }
            nav {
                flex: 0; 
            }
            .menu-toggle {
                display: flex;
                align-items: center;
                font-size: 2rem;
                margin-left: auto; /* YENİ: İkonu zorla en sağa yaslar */
                z-index: 1001;
            }
    /* ... (altındaki nav ul kodları aynı kalacak) ... */

            nav ul {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--acik-siyah);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 20px;
                transform: translateY(-150%); /* Gizli durum */
                opacity: 0;
                pointer-events: none;
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                border-bottom: 2px solid var(--elektrik-yesili);
            }
            nav ul.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
        }

        /* ANA EKRAN (HERO SECTION) */
        /* ANA EKRAN (HERO SECTION) */
        .hero {
            background-image: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.9)), url('img/arkaplan.jpg');
    
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            color: #cccccc;
        }

        .btn {
            background-color: var(--elektrik-yesili);
            color: var(--koyu-siyah);
            padding: 15px 30px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 5px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 127, 0.2);
        }

        /* ORTAK BAŞLIK STİLİ */
        .section-title {
            font-size: 2.5rem;
            color: var(--elektrik-yesili);
            margin-bottom: 60px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
        }

        /* HİZMETLER BÖLÜMÜ */
        .services {
            padding: 100px 20px;
            background-color: var(--koyu-siyah);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background-color: var(--acik-siyah);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            border-bottom: 4px solid transparent;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .service-card:hover {
            transform: scale(1.03) translateY(-12px);
            border-bottom: 4px solid var(--elektrik-yesili);
            box-shadow: 0 20px 40px rgba(0, 255, 127, 0.15), 0 0 20px rgba(0, 255, 127, 0.1);
            background-color: #222;
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--elektrik-yesili);
            display: inline-block;
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.15) rotate(5deg);
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--beyaz);
        }

        .service-desc {
            color: #cccccc;
            font-size: 0.95rem;
        }
        /* İSTATİSTİKLER BÖLÜMÜ */
        .stats {
            padding: 60px 20px;
            background: linear-gradient(rgba(0, 255, 127, 0.05), var(--koyu-siyah));
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 60px;
            text-align: center;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }

        .stat-item {
            min-width: 150px;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            color: var(--elektrik-yesili);
            margin-bottom: 5px;
            font-weight: bold;
        }

        .stat-item p {
            font-size: 1rem;
            color: #ccc;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* REFERANSLAR BÖLÜMÜ */
        .references {
            padding: 100px 20px;
            background-color: var(--acik-siyah);
        }

        .ref-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .ref-card {
            background-color: var(--koyu-siyah);
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #333;
        }

        .ref-card:hover {
            border-color: var(--elektrik-yesili);
            transform: translateY(-5px);
        }

        .ref-card h4 {
            font-size: 1.2rem;
            color: var(--beyaz);
            margin-bottom: 10px;
        }

        .ref-card p {
            color: #888;
            font-size: 0.9rem;
        }

        /* HAKKIMIZDA BÖLÜMÜ */
        .about {
            padding: 100px 20px;
            background-color: var(--koyu-siyah); 
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--beyaz);
        }

        .about-text p {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 20px;
            text-align: justify;
        }

        .about-features {
            flex: 1;
            min-width: 300px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .feature-box {
            background-color: var(--acik-siyah); 
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border-left: 3px solid var(--elektrik-yesili);
        }

        .feature-box h4 {
            color: var(--elektrik-yesili);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        /* ÇÖZÜM ORTAKLARI BÖLÜMÜ */
        .partners {
            padding: 60px 20px;
            background-color: var(--acik-siyah);
            text-align: center;
            overflow: hidden;
        }

        .partners-title {
            font-size: 2rem;
            color: var(--beyaz);
            margin-bottom: 40px;
        }

        .partners-slider {
    overflow: hidden;
    width: 100%; /* Ekranı tam kaplasın */
    position: relative;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    width: max-content; /* İçeriğin genişliğine göre otomatik uzar */
    /* 10 logoluk mesafeyi kaydıracak animasyon */
    animation: scroll-partners 25s linear infinite;
}

.partner-logo {
    width: 200px; /* Her bir logonun genişliğini sabitledik */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* Ekran küçülünce logoların ezilmesini engeller */
    padding: 0 20px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px; /* Logoların yüksekliklerini hizalar */
    object-fit: contain;
    filter: grayscale(1); /* Kurumsal siyah/beyaz görünüm */
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0); /* Üzerine gelince renkli olur */
    transform: scale(10); /* Logoyu %20 oranında büyütür */
}

/* KUSURSUZ KAYDIRMA ANİMASYONU */
@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Formül: -[Logo Genişliği] * [Benzersiz Logo Sayısı] */
        /* Genişlik 200px, sende ilk sette 10 logo var. Yani -200px * 10 = -2000px */
        transform: translateX(calc(-200px * 10)); 
    }
}

        /* Sağ ve sol kenarlarda yumuşak geçiş (solma) efekti */
        .partners-slider::before,
        .partners-slider::after {
            content: "";
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
        }

        .partners-slider::before {
            left: 0;
            background: linear-gradient(to right, var(--acik-siyah) 0%, transparent 100%);
        }

        .partners-slider::after {
            right: 0;
            background: linear-gradient(to left, var(--acik-siyah) 0%, transparent 100%);
        }

        .partners-track {
            display: flex;
            width: calc(200px * 10); /* 5 logo * 2 (kopyası) = 10 adet için genişlik */
            animation: scroll-partners 25s linear infinite;
        }

        /* Fare ile üzerine gelince kayma dursun */
        .partners-track:hover {
            animation-play-state: paused; 
        }

        .partner-logo {
            width: 200px;
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            padding: 0 20px;
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            filter: grayscale(100%) opacity(0.6); /* Başlangıçta soluk ve siyah-beyaz */
            transition: filter 0.4s ease, transform 0.4s ease;
        }

        /* Logonun üzerine gelince orjinal rengine dönsün ve hafif büyüsün */
        .partner-logo img:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

        /* Sonsuz Döngü Animasyonu */
        @keyframes scroll-partners {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-200px * 5)); } 
        }

        /* İLETİŞİM BÖLÜMÜ */
        .contact {
            padding: 100px 20px;
            background-color: var(--acik-siyah); 
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info, .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .contact-info p {
            color: #ccc;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .contact-info ul {
            list-style: none;
        }

        .contact-info ul li {
            margin-bottom: 20px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-info ul li i {
            font-size: 1.5rem;
            color: var(--elektrik-yesili);
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 15px;
            background-color: var(--koyu-siyah);
            border: 1px solid #333;
            color: var(--beyaz);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        /* İletişim formundaki select kutusu için focus efekti */
        .contact-form select:focus {
            outline: none;
            border-color: var(--elektrik-yesili);
            box-shadow: 0 0 10px rgba(0, 255, 127, 0.2);
        }

        .contact-form input:focus, .contact-form textarea:focus {
            outline: none;
            border-color: var(--elektrik-yesili);
            box-shadow: 0 0 10px rgba(0, 255, 127, 0.2);
        }

        .btn-block {
            width: 100%;
            text-align: center;
            font-size: 1.2rem;
            padding: 15px;
        }

        /* SABİT BUTONLAR (WhatsApp ve Yukarı Çık) */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 35px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
        }

        .back-to-top {
            position: fixed;
            bottom: 100px; /* WhatsApp butonunun hemen üstünde */
            right: 35px;
            background-color: var(--acik-siyah);
            color: var(--elektrik-yesili);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border: 2px solid var(--elektrik-yesili);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--elektrik-yesili);
            color: var(--koyu-siyah);
        }

        /* FOOTER */
        footer {
            text-align: center;
            padding: 20px;
            background-color: #0a0a0a;
            font-size: 0.9rem;
            color: #666;
        }
/* DAKTİLO (TYPEWRITER) İMLEÇ EFEKTİ */
.typewriter-text {
    color: var(--elektrik-yesili);
    border-right: 3px solid var(--elektrik-yesili);
    padding-right: 5px;
    animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {
    from, to { border-color: transparent; }
    50% { border-color: var(--elektrik-yesili); }
}
/* --- GECE/GÜNDÜZ MODU (LIGHT THEME) AYARLARI --- */

body.light-mode {
    --koyu-siyah: #f4f7f6; /* Açık gri arkaplan */
    --acik-siyah: #ffffff; /* Temiz beyaz kartlar ve menü */
    --elektrik-yesili: #00a650; /* Beyazda net okunan koyu elektrik yeşili */
    --beyaz: #222222; /* Yazılar artık koyu renk */
}

/* Gündüz modunda gri yazıları okunaklı hale getir */
body.light-mode .service-desc,
body.light-mode .about-text p,
body.light-mode .contact-info p,
body.light-mode .ref-card p,
body.light-mode .stat-item p {
    color: #555555; 
}

/* Form alanlarını ve sınırları aydınlat */
body.light-mode .contact-form input,
body.light-mode .contact-form textarea {
    border-color: #ddd;
    background-color: #fff;
    color: #222;
}

body.light-mode .ref-card, 
body.light-mode .stats {
    border-color: #e0e0e0;
}

/* İstisna: Ana ekran (Hero) fotoğrafı karanlık olduğu için oradaki yazılar hep beyaz kalmalı */
body.light-mode .hero h1,
body.light-mode .hero p,
body.light-mode .hero .typewriter-text {
    color: #f4f4f4;
}
/* ZAMAN ÇİZELGESİ (TIMELINE) */
.timeline {
    padding: 100px 20px;
    background-color: var(--koyu-siyah);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.timeline-item {
    padding: 20px;
    position: relative;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background-color: var(--acik-siyah);
    border: 2px solid var(--elektrik-yesili);
    color: var(--elektrik-yesili);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.timeline-item:hover .timeline-icon {
    background-color: var(--elektrik-yesili);
    color: var(--koyu-siyah);
    transform: scale(1.1);
}

.timeline-item h3 {
    margin-bottom: 10px;
    color: var(--beyaz);
}

.timeline-item p {
    font-size: 0.9rem;
    color: #888;
}
/* PROJELER / REFERANSLAR (OVERLAY KART YAPISI) */
.projeler-bolumu {
    padding: 80px 20px;
    background-color: var(--koyu-siyah);
}

.proje-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Kartın Ana Çerçevesi */
.proje-kart {
    position: relative;
    height: 350px; /* Kartın yüksekliği */
    border-radius: 10px;
    overflow: hidden; /* Büyüyen görselin dışarı taşmasını engeller */
    cursor: pointer;
}

/* 1. KATMAN: Arka Plan Görseli */
.proje-arkaplan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görseli kutuya tam sığdırır */
    background-color: #fff; /* PNG logoların arkası beyaz görünsün diye */
    transition: transform 0.6s ease; /* Büyüme animasyonunun süresi */
    z-index: 1;
}

/* 2. KATMAN: Siyah Gradient (Yazıları okunur yapar) */
.proje-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17,17,17, 1) 0%, rgba(17,17,17, 0.3) 50%, rgba(17,17,17, 0) 100%);
    transition: background 0.5s ease;
    z-index: 2;
}

/* 3. KATMAN: Yazılar ve Buton */
.proje-bilgi {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    transform: translateY(20px); /* Normalde biraz aşağıda durur */
    opacity: 0.8; /* Normalde hafif soluktur */
    transition: all 0.4s ease;
}

.proje-bilgi h3 {
    color: var(--elektrik-yesili);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.proje-bilgi p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-detay {
    display: inline-block;
    color: var(--koyu-siyah);
    background-color: var(--elektrik-yesili);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    opacity: 0; /* Buton normalde gizlidir */
    transform: translateY(15px); /* Buton biraz daha aşağıdadır */
    transition: all 0.4s ease;
}


/* --- İMLEÇ KARTIN ÜZERİNE GELDİĞİNDE (HOVER) OLACAKLAR --- */

/* 1. Görsel (Logo/Arkaplan) Büyür */
.proje-kart:hover .proje-arkaplan {
    transform: scale(1.15); /* Görseli %15 oranında yakınlaştırır */
}

/* 2. Siyah geçiş koyulaşır ki yazılar iyice parlasın */
.proje-kart:hover .proje-overlay {
    background: linear-gradient(to top, rgba(17,17,17, 1) 0%, rgba(17,17,17, 0.7) 60%, rgba(17,17,17, 0.2) 100%);
}

/* 3. Yazılar yukarı kayarak tam belirgin (opacity 1) olur */
.proje-kart:hover .proje-bilgi {
    transform: translateY(0);
    opacity: 1;
}

/* 4. Buton aşağıdan yukarı doğru kayarak ortaya çıkar */
.proje-kart:hover .btn-detay {
    opacity: 1;
    transform: translateY(0);
}
/* --- KARTIN ÜZERİNE GELİNCE ÇİZİLEN YEŞİL ŞERİTLER (ÇERÇEVE ANİMASYONU) --- */

/* Şeritlerin altyapısını oluşturuyoruz */
.proje-kart::before,
.proje-kart::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    z-index: 4; /* Overlay'in üstünde, yazıların etrafında olsun */
    pointer-events: none; /* Şeritler butonlara tıklamayı engellemesin diye */
}

/* Üst ve Alt Yeşil Şeritler */
.proje-kart::before {
    border-top: 3px solid var(--elektrik-yesili);
    border-bottom: 3px solid var(--elektrik-yesili);
    transform: scaleX(0); /* Başlangıçta yatayda gizli */
    transition: transform 0.5s ease; /* Çizilme hızı */
}

/* Sağ ve Sol Yeşil Şeritler */
.proje-kart::after {
    border-left: 3px solid var(--elektrik-yesili);
    border-right: 3px solid var(--elektrik-yesili);
    transform: scaleY(0); /* Başlangıçta dikeyde gizli */
    transition: transform 0.5s ease; /* Çizilme hızı */
}

/* Fareyle kartın üzerine gelindiğinde şeritlerin çizilmesi (tam boyuta ulaşması) */
.proje-kart:hover::before {
    transform: scaleX(1);
}

.proje-kart:hover::after {
    transform: scaleY(1);
}
