﻿@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
* {
    box-sizing: border-box;
}

:root {
    --black-overlay: rgba(29, 124, 88, 1);
    --green-with-black: rgba(15, 62, 44, 0.1); /* Siyah ile karışık yeşil */
    --black-overlay: #1B4D3E; /* %10 siyah katmanı */
    /*--black-overlay:  #1B4D3E; %10 siyah katmanı */
}
/*#1d7c58*/
html, body {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 30px;
    margin: 55px !important;
    text-align: center;
    color: var(--black-overlay);
}
h2 {
    color: var(--black-overlay);
}

a:link, a:visited, a:active {
    color: var(--black-overlay) !important;
}

a:hover {
    background-color: white;
}

.header {
    background-color: transparent;
    transition: background-color 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-family: "Orbitron", sans-serif;
}

    .logo img {
        height: 60px;
        margin-left: 100px; /* Add some left margin to the logo */
    }

.navbar {
    display: flex;
    justify-content: flex-end; /* Changed to align the navbar to the right */
    align-items: center;
    margin-right: 20px; /* Add some right margin to the navbar */
}

    .navbar .nav {
        list-style: none;
        display: flex;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    .navbar .nav-link {
        position: relative;
        display: inline-block;
        background-color: transparent;
        text-decoration: none;
        color: white !important;
        font-weight: 800;
        transition: color 0.3s ease;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
    }

        .navbar .nav-link:hover {
            color: white;
        }

        .navbar .nav-link::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: white;
            transform-origin: bottom right;
            transition: transform 0.3s ease-out;
        }

        .navbar .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }


    .navbar .dropdown-menu {
        background-color: #fff; /* Drop-down arka plan rengini beyaz yapar */
    }

    .navbar .dropdown-item {
        color: var(--black-overlay); /* Drop-down öğe rengini siyah yapar */
        transition: background-color 0.3s ease;
    }

        .navbar .dropdown-item:hover {
            background-color: var(--black-overlay); /* Hover üzerinde arka plan rengini değiştirir */
            color: white !important; /* Hover üzerinde yazı rengini beyaz yapar */
        }

header .navbar-nav .nav-item {
    margin-right: 18px !important;
}

.navbar-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* İkon ve metinlerin ortalanması */
}

    .navbar-nav .nav-item .nav-link {
        display: flex;
        flex-direction: column; /* İkonlar metnin üzerinde olacak şekilde düzenler */
        align-items: center;
        text-align: center;
        padding: 5px 0;
    }

.navbar-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* İkonun stil ayarları */
/* İkonların etrafında yarım çember oluşturma */
/* İkonların etrafında beşgen oluşturma */
/* İkonların etrafında altıgen oluşturma */
.icon-hexagon {
    position: relative;
    width: 55px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-overlay); /* Altıgenin arka plan rengi */
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); /* Altıgen şekli */
    margin-bottom: 5px; /* İkon ile yazı arasındaki boşluk */
    transition: background-color 0.3s ease;
}

    /* İkonun stil ayarları */
    .icon-hexagon i {
        font-size: 20px; /* İkon boyutu */
        color: #fff; /* İkon rengi */
        position: relative;
        z-index: 2; /* İkonun altıgenin üzerinde görünmesini sağlar */
    }

/* Hover durumunda altıgenin rengini değiştirmek */
.navbar-nav .nav-link:hover .icon-hexagon {
    background-color: #145939; /* Altıgenin arka plan rengini hover durumunda değiştirir */
}

.navbar-nav .nav-item .nav-link span {
    font-size: 14px; /* Yazı boyutunu ayarlar */
}

.header.scrolled {
    background-color: var(--black-overlay);
}

/* Hero section */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    color: white;
    text-align: center;
    background: url("arge-7.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
}

    #hero .hero-text {
        font-size: 2.2em;
        background-color: var(--black-overlay);
        color: white;
        position: absolute;
        bottom: 0; /* h2 elementini sayfanın altından 800px yukarıya yerleştirir */
        left: 50%;
        transform: translateX(-50%); /* Ortalamak için */
        margin: 0;
        padding: 10px; /* Gerekirse biraz iç boşluk ekleyebilirsin */
        text-align: center;
        border-radius:10px;
        padding:5px 25px;
    }

  



/* Section styling */
.section {
    padding: 50px 0;
    text-align: center;
}

    .section h2 {
        margin-bottom: 20px;
        font-size: 2em;
    }

/* Services section */
.services {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.service {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition:0.3s;
}

    .service h3 {
        margin-top: 0;
    }

    .service p {
        color: #666;
    }
    .service:hover {
        transform: translateY(-10px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  
    }

/* Contact section */
#contact ul {
    list-style: none;
    padding: 0;
}

    #contact ul li {
        margin-bottom: 10px;
    }

/* Footer */
footer {
    background-color: var(--black-overlay);
    color: white;
    text-align: center;
    padding: 20px 0;
}

    footer p {
        margin: 0;
    }

/* Media queries for responsive design */
@media (max-width: 700px) {
    .navbar .nav {
        flex-direction: column;
        gap: 10px;
    }

    .services {
        flex-direction: column;
    }

    .service {
        width: 100%;
    }
}

.iletisim {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.Marka {
    color: var(--black-overlay);
    box-shadow: 0px 4px 10px var(--black-overlay);
    background-color: #fff;
    padding: 20px;
    font-weight: bold;
    font-size: 20px;
    width: 25%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Added to display "Cebat" on top and "Teknoloji" below */
    text-align: center; /* Center align the text */
    font-family: "Orbitron", sans-serif;
}

    .Marka .top {
        font-size: 34px; /* Larger font size for "Cebat" */
        margin-bottom: 5px; /* Small margin between "Cebat" and "Teknoloji" */
    }

    .Marka .bottom {
        font-size: 24px; /* Smaller font size for "Teknoloji" */
        font-style: italic; /* Italicize "Teknoloji" for emphasis */
    }

.iletisim .Fabrika i, .Ofis i {
    margin-right: 8px;
}

.kalin {
    color: VAR(--black-overlay);
}

.Fabrika, .Ofis {
    color: var(--black-overlay);
    box-shadow: 0px 4px 10px var(--black-overlay);
    background-color: #fff;
    padding: 20px;
    width: 35%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    transition: background-color 1.5s ease, color 1.5s ease, box-shadow 1.5s ease;
}

    .Fabrika:hover, .Ofis:hover {
        color: #fff;
        background-color: var(--black-overlay);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Hover durumunda box-shadow artışı */
    }
    

    .Fabrika div, .Ofis div {
        font-weight: bold;
        margin-bottom: 10px;
    }

    .Fabrika p, .Ofis p {
        margin: 5px 0;
    }

@keyframes buzz {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-2px);
    }

    40% {
        transform: translateX(2px);
    }

    60% {
        transform: translateX(-2px);
    }

    80% {
        transform: translateX(2px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Buzz hover efekti */
.buzz:hover {
    animation: buzz 0.2s linear 2; /* 0.2 saniyede iki kez titrer */
}

@keyframes slideRight {
    0% {
        transform: translateX(0); /* Başlangıçta orijinal pozisyon */
        opacity: 1;
    }

    100% {
        transform: translateX(600px); /* Sağa 20px kayar */
        opacity: 0;
    }
}

/* Hover sırasında sağa kayma efekti */
.slide-right:hover i {
    animation: slideRight 0.8s ease forwards; /* Sağa kayma animasyonu */
}

strong{
    color:var(--black-overlay)
}
.fiz-container{
    display:flex;
   box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
  margin-top:30px;

}
.img-con{
    width:100%;
    background:url("fizibilite-2.jpg");
    background-size:cover;

    
}
.text-con {

    width: 100%;
    padding:10px;
}

.emn-con {
    background-color: black;
    margin: 30px 0;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
    .emn-con h2 {
        color: white;
        margin-bottom: 20px;
    }

.emn-btn {
    padding: 10px 20px;
    background-color: white;
    color: var(--black-overlay);
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

    .emn-btn:hover {
        background-color: #ddd;
    }
.con-container {
    display: flex;
    text-align: center;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-around;
 
}

.con-kutu {
    height: 400px;
    color: white;
    width: 33%;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  
}
.ilet-cont {
    background-color: var(--black-overlay);
    height: 55px;
    width: 100%;
    display:flex;
    text-align:center;
    align-items:center;
    justify-content:center;
}
    .con-kutu a {
        text-decoration: none; /* Alt çizgiyi kaldırır */
        color: white !important; /* Metin rengini beyaz yapar */
        margin-top: auto;
        padding: 15px;
        font-size:21px;
        font-weight:700;
        
    }
.con-kutu a:hover {
background-color:transparent;

}
.anl-con{
    display:flex;
    height:400px;
    margin-bottom:50px;
   
}
.anl-img{
    width:60%;
}

.ayrac {
    height: 5px; /* Yüksekliği içerik boyutuna göre ayarla */
    width: 100%;
    background-color: var(--black-overlay);
    display: flex;
    justify-content: center; /* Resmi yatayda ortalar */
    align-items: center; /* Resmi dikeyde ortalar */
    margin-top: 180px;
    margin-bottom: 80px;
}

    .ayrac img {
        height: 50px; /* Resmin yüksekliği artırıldı */
        margin: 0 10px; /* Resmin sağ ve sol tarafına boşluk */
        background-color: white; /* Resim çevresindeki çizgiyi görebilmek için */
    }

.check-list {
    list-style: none;
    padding-left: 0;
}

    .check-list li {
        margin-bottom: 10px;
        font-size: 18px;
        display: flex;
        align-items: center;
    }

    .check-list i {
        color: #1d7c58;
        margin-right: 10px;
        font-size: 22px;
    }

.analitik-title {
    font-size: 24px;
    font-weight: bold;
    color: #1d7c58;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

    .analitik-title i {
        margin-right: 10px;
        font-size: 26px;
        color: #1d7c58;
    }


.anl-con {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-radius: 15px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    background: #fff;
}

.anl-txt {
    flex: 1 1 300px;
    padding: 32px 30px 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to bottom, #e7f7ee 0%, #f9fdfb 100%);
}

.anl-title {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: #1d7c58;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

    .anl-title i {
        font-size: 30px;
        margin-right: 12px;
        color: #1d7c58;
    }

.anl-txt p {
    font-size: 18px;
    color: #244131;
    line-height: 1.6;
    margin-bottom: 0;
}

.anl-img {
    flex: 1 1 330px;
    min-height: 220px;
    background-position: center;
    background-size: cover;
}

@media (max-width: 900px) {
    .anl-con {
        flex-direction: column;
    }

    .anl-img {
        min-height: 160px;
    }

    .anl-txt {
        padding: 22px 16px;
    }

    .anl-title {
        font-size: 22px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.poppins-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-family: 'Poppins', Arial, sans-serif;
}

    .poppins-checklist li {
        position: relative;
        padding-left: 34px;
        margin-bottom: 14px;
        font-size: 17px;
        color: #224933;
        font-weight: 500;
        line-height: 1.6;
        background: none;
        letter-spacing: 0.02em;
        transition: color 0.2s;
    }

        .poppins-checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 21px;
            color: #1d7c58;
            font-weight: 700;
            font-family: 'Poppins', Arial, sans-serif;
            text-shadow: 1px 2px 6px rgba(29,124,88,0.09);
        }
.headline-with-img {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

    .headline-with-img h2,
    .headline-with-img h3 {
        margin: 0;
        font-family: 'Poppins', Arial, sans-serif;
        font-weight: 700;
        color: #1d7c58;
        font-size: 28px;
    }

    .headline-with-img .headline-icon {
        height: 32px;
        width: auto;
        filter: drop-shadow(0 2px 6px rgba(29,124,88,0.07));
        opacity: 0.92;
    }







@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

.modern-tech-title {
    text-align: center;
    margin: 60px auto 32px auto;
    position: relative;
    z-index: 3;
}

    .modern-tech-title h1 {
        font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
        font-size: 2.1rem;
        font-weight: 700;
        color: #1d7c58;
        margin: 0;
        line-height: 1.25;
        letter-spacing: 1px;
     
        background: linear-gradient(90deg, #121f1b 10%, #1d7c58 65%, #28df99 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .modern-tech-title i {
        font-size: 38px;
        color: #1d7c58;
        background: #e6fff5;
        border-radius: 50%;
        padding: 16px;
        box-shadow: 0 2px 16px rgba(29,124,88,0.11);
        margin-bottom: 10px;
        animation: pulse 1.7s infinite;
    }

    .modern-tech-title .tech-divider {
        height: 6px;
        width: 100%;
        margin: 24px auto 0;
        border-radius: 8px;
        background: linear-gradient(90deg, #1d7c58 10%, black 80%);
        box-shadow: 0 2px 18px 0 #28df9975;
        animation: gradmove 3s linear infinite;
    }

@keyframes gradmove {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #28df9960;
    }

    70% {
        box-shadow: 0 0 10px 20px #28df9918;
    }

    100% {
        box-shadow: 0 0 0 0 #28df9960;
    }
}

