body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;

    font-family: 'Orbitron', sans-serif;
    /* İstersen arka plan siyah yapabilirsin */
    color: white;
    /* Yazı rengi beyaz */
    font-weight: 700;

}

.conteiner {
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: 100%;
    justify-content: center;
   

}

.ust {
    display: flex;
}

.kutu {
    width: 100%;
    height: 60px;
    background-color: rgb(0, 0, 0);
}

.asistlogo {
    width: 10%;
    height: 60px;

}

.link {
    list-style-type: none;
    color: rgb(255, 255, 255);
    text-decoration: none;
    display: flex;
    gap: 2px;
    text-align: center;

}

.linkler {
    background-color: rgb(0, 0, 0);
margin: 10px;
    width: 40%;
    height: 60px;
   
    
   

}

ul {
    list-style: none;
    display: flex;
    gap: 50px;


}

.gorsel {
    background-image:
        linear-gradient(rgba(0, 0, 0, 5), rgba(255, 255, 255, 0.5)),

        url(3d-tarama-tersine-muhendislik-1-1.gif);
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    /* Başlangıçta görünmez */
    animation: fadeIn 2s ease-in-out forwards;
    /* 2 saniyede görünür */

    background-position: center;
    position: relative;
    /* EKLENDİ */
    overflow: hidden;
    /* EKLENDİ */

}

.yazi {
    color: rgb(255, 255, 255);

    text-align: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    /* Yukarıdan %50 konum */
    left: 50%;
    /* Soldan %50 konum */
    transform: translate(-50%, -50%);
    /* Tam ortalama */
    gap: 10px;
    width: 20%;
    animation: yaziMerkez 2.5s ease-out forwards;
    /* yazı animasyonu */
    /* 2.5s → animasyon süresi */



}

@keyframes yaziMerkez {

    from {
        transform: translate(-50%, 50%);
        /* yazı merkez noktasının ALTINDA başlar */
        opacity: 0;
        /* görünmez başlar */
    }

    to {
        transform: translate(-50%, -50%);
        /* yazı tam merkeze oturur */
        opacity: 1;
        /* tamamen görünür olur */
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}








.bolum-baslik {
    text-align: center;
    /* ortalı */
    color: rgb(255, 255, 255);
    font-size: 36px;
    /* başlık boyutu */
    letter-spacing: 6px;
    /* TASARIM HİSSİ */
    font-weight: 600;
    margin: 0px 0 40px;
    position: relative;
}

/* Alt çizgi efekti */
.bolum-baslik::after {
    content: "";
    width: 1000px;
    height: 2px;
    background-color: rgb(255, 255, 255);
    display: block;
    margin: 20px auto 0;
    opacity: 0.6;

}

.linkler li a:hover {
    color: rgb(58, 58, 78);
}

/* Sosyal Medya Açılır Menü Ayarları */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    /* Menü bandı siyah olduğu için siyah yaptık */
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
    z-index: 999;
    list-style: none;
    padding: 10px 0;
    top: 100%;
    /* Tam altına açılması için */
    left: 0;
}

.dropdown-content li {
    padding: 8px 15px;
}

.dropdown-content li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: block;
    transition: 0.3s;
}

.dropdown-content li a:hover {
    color: #0056b3;
    /* Üzerine gelince mavi olur */
}

/* Üzerine gelince menüyü aç */
.dropdown:hover .dropdown-content {
    display: block;
}

/* İkili Hizmet Bölümü Ana Kapsayıcı */
.ana-hizmetler-bolumu {
    display: flex;
    width: 100%;
    height: 550px;
    /* Yüksekliği buradan değiştirebilirsin */
    background-color: #000000;
    overflow: hidden;
}

/* Her bir hizmet kutusu */
.hizmet-kutu {

    margin: 50px;
    flex: 1;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ARKA PLAN GÖRSELLERİ */
.hizmet-kutu img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi kutuya tam sığdırır, bozmaz */
    transition: transform 0.6s ease, opacity 0.4s ease;
    /* Başlangıçta yazıların okunması için resim biraz sönük durur */
    z-index: 1;
}

/* Fare üzerine geldiğinde resim efekti */
.hizmet-kutu:hover img {
    transform: scale(1.1);
    /* Resim hafifçe büyür */
    opacity: 0.8;
    /* Resim biraz daha netleşir */
}

/* Görselin üzerindeki yazı (Span) */
.hizmet-kutu span {
    position: relative;
    z-index: 2;
    /* Yazıyı resmin önüne çıkarır */
    color: white;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid white;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.395);
    /* Yazının arkasında hafif bir gölge */
    transition: 0.4s;
}

/* Fare üzerine geldiğinde yazı efekti */
.hizmet-kutu:hover span {
    background-color: white;
    color: black;
}

.ana-hizmetler-bolumu {
    display: flex;
    width: 100%;
    height: 550px; 
    position: relative; /* İçindeki resmin konumlanması için şart */
    background-color: #000000; /* Resim soluklaştığında arkadan görünecek ana renk */
    overflow: hidden;
    padding: 50px; 
    align-items: center;
    z-index: 1;
}

/* ÇOK SOLUK ARKA PLAN RESMİ KATMANI */
.ana-hizmetler-bolumu::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-image: url(araba\ tarama.jpeg); /* RESMİNİ BURAYA YAZ */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    /* ŞEFFAFLIK AYARI BURADA */
    opacity: 0.15; /* 0.1 ile 0.2 arası yaparsan çok soluk, hayalet gibi olur */
    
    z-index: -1; /* Resmin kutuların arkasında kalmasını sağlar */
}

.hizmet-kutu {
    max-width: 730px;
    flex: 1;
    height: 100%;
    margin: 0 25px; 
    position: relative;
    text-decoration: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Kutuları öne çıkarmak için hafif gölge */
    background-color: white; /* Kutuların arkası boş kalmasın */
}
.hizmet-kutu {
    flex: 1;
    margin: 0 25px;
    /* Senin verdiğin 50px marjini sağ ve sol olarak paylaştırdım */
    position: relative;
    text-decoration: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    /* Köşeleri biraz yumuşatırsan arkadaki resimle daha şık durur */
}











/* 1. Sayfa genelindeki tüm gizli boşlukları sıfırlayalım */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Genişlik hesaplamalarını sabitler, kaymayı önler */
}


/* 5. En Alttaki Siyah Bandı Tam Yapıştırma */
.alt-iletisim-bandi {
    width: 100%;
    margin: 0;
    padding: 60px 20px;
    background-color: #0c0c0c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.8;
}




/* TARAMA SAYFASI HERO BÖLÜMÜ */







@media (max-width: 768px) {
    /* 1. Üst Bant (Header) Düzeni */
    .ust {
        display: flex !important;
        flex-direction: row !important; /* Logo ve menü yan yana */
        justify-content: space-between !important; /* Biri sola, biri sağa */
        align-items: center !important;
        height: 70px !important;
        padding: 0 15px !important;
        background-color: black !important;
        position: relative !important;
    }

    /* 2. Logo Ayarı */
    .asistlogo {
        height: 38px !important; /* İletişim sayfasındaki gibi net */
        width: auto !important;
    }

    /* 3. Menü Linkleri (Hakkımızda, Sosyal Medya, İletişim) */
    .linkler ul {
        display: flex !important;
        flex-direction: row !important; /* Yan yana dizilim */
        gap: 12px !important; /* Linkler arası boşluk */
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .link, .dropbtn {
        color: white !important;
        text-decoration: none !important;
        font-size: 13px !important;
        font-weight: bold !important;
        text-transform: uppercase !important; /* Profesyonel görünüm için büyük harf */
        background: none !important;
        border: none !important;
        padding: 0 !important;
        cursor: pointer !important;
    }

    /* 4. Sosyal Medya Açılır Menüsü (Dropdown) */
    .dropdown {
        position: relative !important;
    }

    .dropdown-content {
        display: none;
        position: absolute !important;
        right: 0 !important; /* Sağ tarafa yasla */
        top: 40px !important; /* Yazının hemen altı */
        background-color: #111 !important;
        min-width: 130px !important;
        border: 1px solid #333 !important;
        z-index: 9999 !important;
    }

    /* Tıklayınca/Üstüne gelince açılması için */
    .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        display: block !important;
    }

    .dropdown-content a {
        display: block !important;
        padding: 10px !important;
        color: white !important;
        font-size: 12px !important;
        text-align: left !important;
        border-bottom: 1px solid #222 !important;
    }

    /* 5. Kare Kutular (3D Tarama vb.) */
    .ana-hizmetler-bolumu {
        flex-direction: column !important;
        height: auto !important;
        padding: 40px 10% !important;
        gap: 30px !important;
        background-color: rgba(0, 0, 0, 0.385) !important;
    }

    .hizmet-kutu {
        width: 100% !important;
        aspect-ratio: 1 / 1 !important; /* TAM KARE */
        height: auto !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        border-radius: 15px !important;
    }
}


/* Hakkımızda sayfasında yazının görünmesini sağlar */


/* Mobilde yazının kaybolmasını engellemek için */
@media (max-width: 768px) {
    .ust {
        padding: 0 15px !important;
    }
    .link {
        font-size: 14px !important;
    }
}

/* 1. Tüm linklerin altındaki çizgiyi ve mavi rengi zorla kaldırır */
.linkler a, 
.dropdown-content a, 
.link, 
.dropbtn {
    text-decoration: none !important; /* Alt çizgiyi siler */
    color: white !important;          /* Rengi beyaza sabitler */
    border: none !important;          /* Varsa çerçeveleri siler */
    outline: none !important;         /* Tıklayınca çıkan çerçeveyi siler */
}

/* 2. Ziyaret edilmiş olsa bile rengin değişmesini engeller */
.linkler a:visited, 
.dropdown-content a:visited {
    color: white !important;
}

/* 3. Mouse üzerine gelince istersen rengini hafif gri yapabilirsin (Opsiyonel) */
.linkler a:hover, 
.dropdown-content a:hover {
    color: #ccc !important; 
    text-decoration: none !important;
}

/* İletişim Formu Özel Düzenlemesi */
.iletisim-alani {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    background-color: #f4f4f4; /* Arka planı belirginleştirdik */
}

.form-konteynir {
    width: 100%;
    max-width: 600px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-grup {
    display: block !important; /* Yan yana gelmesini engeller */
    margin-bottom: 20px !important;
    width: 100% !important;
}

.form-grup label {
    display: block !important;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-grup input, 
.form-grup textarea {
    width: 100% !important; /* Kutuları tam genişlik yapar */
    padding: 12px !important;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    display: block !important;
}

.gonder-butonu {
    width: 100% !important;
    padding: 15px !important;
    background-color: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer;
    font-size: 18px !important;
    font-weight: bold;
}

.gonder-butonu:hover {
    background-color: #333 !important;
}





