body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: rgb(255, 255, 255);
    font-family: 'Bebas Neue', sans-serif;
 font-size: large;
scrollbar-width: thin; /* Firefox için */
    scrollbar-color: #131c17 #01422c; /* Firefox için */
 
}




body::-webkit-scrollbar {
    width: 12px; /* WebKit tabanlı tarayıcılar için */
}

body::-webkit-scrollbar-thumb {
    background-color: #999; /* Kaydırma çubuğu rengi */
    border-radius: 10px;
}

body::-webkit-scrollbar-track {
    background-color: #f0f0f0; /* Kaydırma çubuğu yolu rengi */
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 3, 3, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* En üstte olmasını sağlar */
}

.spinner {
    border: 8px solid #51ff00;
    border-top: 8px solid #082925;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
 

#question-container {
    text-align: center;
    padding: 20px;
    color: white; /* Soru metin rengini beyaz yap */
}

#button-container {
    margin-top: 20px;
}

button {
    margin: 5px;
    padding: 10px;
    font-size: 16px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
}

button:hover {
    background-color: white;
    color: black;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    z-index: 2; /* Menüyü videonun üzerine getir */
    font-family: 'Bebas Neue', sans-serif;
}

.logo img {
    width: 120px; /* Logo genişliği */
    height: auto;
}







.menu {
    display: flex;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 10px;
    margin-right: 50px;
    
    border-radius: 5px;
}

.menu a:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


/* ... (diğer CSS kodları) ... */
.menu-icon {
    display: none;
    cursor: pointer;
    position: fixed; /* Sabit bir pozisyon */
    top: 10px; /* Üstten 10 piksel mesafe */
    right: 10px; /* Sağdan 10 piksel mesafe */
    z-index: 1000; /* Diğer öğelerin üzerine çıkarma */
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
}





@media screen and (max-width: 768px) {
    .menu a {
        display: none !important; /* Menü bağlantılarını gizle */
    }

    .menu-icon {
        display: block; /* Menü simgesini göster */
    }
}

 

.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    display: block;   /* img görünür olsun */
}


.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1; /* Metinleri videonun üzerine getir */
}

.overlay-text h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.overlay-text p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2980b9;
}

.overlay1 {
    position: absolute;
    top: 50;
    left: 50;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Siyah ve %50 saydam */
    display: none;
    z-index: 3; /* Video ve metinlerin üzerine getir */
}

.video-container:hover .overlay {
    display: block;
}
/* ... (diğer CSS kodları) ... */
/* ... (diğer CSS kodları) ... */

.overlay-panel {
    position: fixed;
    top: 0;
    right: -100%; /* Başlangıçta sağdan gelmesi için */
    width: 50%; /* Panele istediğiniz genişliği verebilirsiniz */
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Yarı saydam siyah arkaplan */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: right 0.5s ease; /* Animasyon süresi ve geçiş efekti */
}



.overlay-panel2 {
    position: fixed;
    top: 0;
    right: -100%; /* Başlangıçta sağdan gelmesi için */
    width: 100%; /* Tam ekran genişliği */
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Yarı saydam siyah arkaplan */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: right 0.5s ease; /* Animasyon süresi ve geçiş efekti */
}

.show-panel2 {
    right: 0; /* Sağdan gelme animasyonuyla görünür yapma */
}




.show-panell {
    right: 0; /* Sağdan gelme animasyonuyla görünür yapma */
}

.showlogin {
    right: 0;
    animation: slideInFromRight 0.5s ease-in-out;
}

@keyframes slideInFromRight {
    0% {
        right: -100%; /* Sağdan kayarak gelmeye başladığı nokta */
    }
    100% {
        rightt: 0; /* Sağdan kayarak tam görünür hale geldiği nokta */
    }
}

.typing-container {
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid white;
    animation: typing 3s steps(30) forwards;
    text-align: center; /* Yazıyı ortala */
}

 
      /* Hamburger menü stil */
.menu-btn {
    display: none; /* Başlangıçta gizli */
    cursor: pointer;
    z-index: 2000; /* Üstte olsun */
    position: fixed;
    top: 20px;
    right: 20px;
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}

.overlay-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1500; /* Menü üstte */
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    text-align: center;
}

.overlay-menu .menu {
    display: block; /* Flex yerine block, yatay hizalamayı kaldır */
    width: 100%;
}

.overlay-menu a {
    display: block !important; /* Inline stilleri ez, alt alta kesin */
    padding: 15px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    transition: 0.3s;
    margin-bottom: 10px;
}

.overlay-menu a:hover {
    color: #818181;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: white;
    z-index: 1600;
}

@media (max-width: 768px) {
    .header .menu {
        display: none; /* Masaüstü menüyü mobilde gizle */
    }
    .menu-btn {
        display: block; /* Hamburger menüyü mobilde göster */
    }
}


html {
  scroll-behavior: smooth;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.random-messages p {
    cursor: pointer;
}

 
/* Add this style for the Industry 4.0 panel */
.industry-panel {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 70%;
max-width: 500px;
background-color: rgba(0, 0, 0, 0.7);
padding: 20px;
border-radius: 10px;
display: none;
z-index: 999;
color: #fff;
font-size: small;
font-family: Arial, Helvetica, sans-serif;
}

/* Add this style to show the Industry 4.0 panel */
.show-industry-panel {
display: block;
}

 
/* Add this style for the contact panel */
.contact-panel {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 70%;
max-width: 500px;
background-color: rgba(0, 0, 0, 0.7);
padding: 20px;
color: #fff;
border-radius: 10px;
display: none;
z-index: 999;
font-size: small;
font-family: Arial, Helvetica, sans-serif;
}

/* Add this style to show the contact panel */
.show-contact-panel {
display: block;
}

 
/* Add this style for the clipboard panel */
.clipboard-panel {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 70%;
max-width: 500px;
background-color: rgba(0, 0, 0, 0.7);
padding: 20px;
border-radius: 10px;
display: none;
z-index: 999;
font-size: small;
font-family: Arial, Helvetica, sans-serif;
}

/* Add this style to show the clipboard panel */
.show-clipboard-panel {
display: block;
}

/* Add this style for clipboard containers */
.clipboard-container {
margin-bottom: 10px;
}

/* Optionally, add specific styles for the text inside containers */
.clipboard-container p {
color: white;
}

 

/* Yeni stil kuralları */
.contact-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 500px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    display: none;
    z-index: 999;
    font-size: small;
    font-family: Arial, Helvetica, sans-serif;
}
.contact-panel2 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 500px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    display: none;
    z-index: 999;
    font-size: 17px; font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
}

 
    .showlogin {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        font-size: small;
            font-family: Arial, Helvetica, sans-serif;
    }
 
   
    body {
        margin: 0;
        padding: 0;
        font-family: 'Arial', sans-serif;
        background-color: #050e24;
        overflow-x: hidden;
    }

    .main-container {
        width: 70%;
        margin: auto;
        overflow: hidden;
        display: flex;
        max-width: 1200px;
        
    }
    .main-container2 {
        width: auto;
        margin: auto;
        display: flex;
        justify-content: center; /* Yatayda ortalama */
        align-items: center; /* Dikeyde ortalama */
        flex-direction: column; /* İçeriği dikey sıralamak için (isteğe bağlı) */
        max-width: 1200px;
        height: auto; /* Tüm görünüm yüksekliği boyunca ortalamak için */
        overflow: hidden;
    }
    

    .image-container {
        flex: 1;
        border-radius: 15px;
        overflow: hidden;
        margin-right: 20px;
        color: #c7c7c7;
        text-align: justify;
    }

    .image-container img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        
    }
   

    .text-container {
        flex: 1;
     text-align: justify;
        border-radius: 15px;
        padding: 20px;
        box-sizing: border-box;
    }

    .text-container h1 {
        color: #84ff00;
    }

    

    .text-container p {
        color: #ffffff;
    }

    .text-container h4 {
        color: #ffffff;
    }

    
 
.contact-container {
    color: white;
    text-align: center;
}
.contact-container2 {
    color: white;
    text-align: center;
}

.contact-container form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-container2 form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-container input,
.contact-container textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-container textarea {
    resize: vertical;
}

.contact-container2 input,
.contact-container2 textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-container2 textarea {
    resize: vertical;
}

.contact-container input:focus,
.contact-container textarea:focus {
    border-color: #3498db;
}

.contact-container button {
    width: 100%;
    background-color: #171818;
    color: #fff;  
    padding: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.contact-container2 button:hover {
    background-color: #242c31;
}

.contact-container2 button,
.contact-container2 form input,
.contact-container2 form textarea {
    margin-top: 10px;
}


.contact-container2 input:focus,
.contact-container2 textarea:focus {
    border-color: #3498db;
}

.contact-container2 button {
    width: 100%;
    background-color: #171818;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.contact-container2 button:hover {
    background-color: #242c31;
}

.contact-container2 button,
.contact-container2 form input,
.contact-container2 form textarea {
    margin-top: 10px;
}

.show-contact-panel {
    display: block;
}
.show-contact-panel2 {
    display: block;
}
 
.show-contact-panel2 {
display: block;
}
 