/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #c8d3dd;
    color: #fff;
    position: relative; /* Ensure the body can position the pseudo-element */
    z-index: 1; /* Stack content above the blurred background */
}

body::before {
    content: '';
    position: fixed; /* Fixed positioning to cover the entire viewport */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(10px); /* Apply blur effect */
    z-index: -1; /* Ensure the background stays behind all content */
    opacity: 0.7; /* Optional: Add transparency if needed */
}

/* Header */
header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background-color: #000000;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

header .logo span {
    color: red;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Main Section */
main {
    text-align: center;
    margin: 40px auto;
}

/* Call to Action */
.call-to-action{
    margin-top: 80px;
    max-width: 650px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.call-to-action h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #000000;
}

.call-to-action p {
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #000000;
    font-weight: 800;
    font-family: roboto, sans-serif;
    font-size: 16px;
}

.call-to-action button {
    padding: 10px 20px;
    background-color: #2f26e3;
    color: #ffffff; /* Buton yazısını beyaz yapar */
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 8px;
}
/* Hizmetlerimiz Section */
.hizmetlerimiz {
    margin-top: 30px;
}

.hizmetlerimiz h2 {
    margin-top: 60px;
    padding: 10px;
    display: inline-block;
    margin-bottom: 20px;
    color: #000000;
}

.services-grid {
    margin: 50px auto;  /* Üst ve alt boşlukları küçültme, merkezleme */
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* Her satırda 3 kolon */
    gap: 15px; /* Aradaki boşlukları küçültme */
    justify-items: center;
    max-width: 1200px;  /* Grid yapısının genişliğini sınırlama */
}

.service-box {
    height: 280px; /* Sabit yükseklik biraz küçültüldü */
    background-color: #fff;
    border-radius: 10px;  /* Köşeleri yuvarlama */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);  /* Gölgeyi biraz daha belirgin yapma */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px; /* İç boşluğu artırma */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover animasyonu için geçiş ekleme */
}

.service-box:hover {
    transform: scale(1.05);  /* Hover olduğunda biraz büyütme efekti */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  /* Hover olduğunda gölgeyi büyütme */
}

.service-img {
    width: 100%;
    height: 200px; /* Resimlerin boyutunu biraz küçültme */
    object-fit: cover;
    border-radius: 8px;
}

.service-description {
    color: #060f1e;
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px; /* Yazı boyutunu biraz büyütme */
}

.kombi-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

.kombi-text {
    width: 50%;
    color: #000000;
    font-family: monospace;
}

.kombi-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.kombi-text p {
    font-size: 18px;
    line-height: 1.6;
}

.kombi-image {
    width: 40%;
}

.kombi-image img {
    width: 100%;
    border-radius: 8px;
}
.search-button {
    background-color: #007BFF; /* Mavi bir buton */
    color: white; /* Beyaz metin */
    padding: 10px 20px; /* Butonun iç dolgu boşluğu */
    font-size: 16px; /* Buton metni boyutu */
    border: none; /* Kenarlık yok */
    border-radius: 5px; /* Köşeleri yuvarlak */
    cursor: pointer; /* Fare ile üzerine gelindiğinde gösterge değişir */
    display: inline-block;
    transition: background-color 0.3s ease; /* Hover animasyonu için */
    margin-top: 20px;
}
/* Gizlilik Politikası Sayfası */
.privacy-section {
    max-width: 800px;  /* Maksimum genişlik */
    margin: 20px auto; /* Ortada hizalama */
    padding: 40px; /* İç boşluk */
    background-color: #f9f9f9; /* Arka plan rengi */
    border-radius: 10px; /* Kenarları yuvarlatma */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Gölgelendirme */
    font-family: 'Roboto', sans-serif; /* Yazı tipi */
}

.privacy-section h1, 
.privacy-section h2, 
.privacy-section h3 {
    font-size: 32px; /* Başlık boyutu */
    color: #000; /* Yazı rengi siyah */
    margin: 15px 0; /* Üst ve alt boşluk */
    text-align: left; /* Sol hizalama */
}

.privacy-section h2 {
    font-size: 28px; /* İkinci başlık boyutu */
}

.privacy-section h3 {
    font-size: 24px; /* Üçüncü başlık boyutu */
}

.privacy-section p {
    font-size: 18px; /* Paragraf yazı boyutu */
    line-height: 1.6; /* Satır yüksekliği */
    color: #000; /* Yazı rengi siyah */
    margin: 10px 0; /* Üst ve alt boşluk */
    text-align: left; /* Sol hizalama */
}

/* Link Stilleri */
a {
    color: #07094b; /* Link rengi */
    text-decoration: none; /* Altı çizili kaldır */
}

a:hover {
    text-decoration: underline; /* Üzerine gelindiğinde altı çizili */
}

/* Mobil Ayarlamalar */
@media (max-width: 768px) {
    .privacy-section {
        padding: 20px; /* Mobil için iç boşluk */
    }

    .privacy-section h1 {
        font-size: 28px; /* Mobil başlık boyutu */
    }

    .privacy-section h2 {
        font-size: 24px; /* Mobil alt başlık boyutu */
    }

    .privacy-section h3 {
        font-size: 22px; /* Mobil alt başlık boyutu */
    }

    .privacy-section p {
        font-size: 16px; /* Mobil paragraf yazı boyutu */
    }
}



.search-button:hover {
    background-color: #0056b3; /* Buton hover rengini daha koyu yapar */
}

/* Responsive düzenleme: Mobilde 1 kolon, tabletlerde 2 kolon olacak */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;  /* Tek kolon */
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);  /* İki kolon */
    }
}

/* Servis Bölgeleri Section */
.servis-bolgeleri {
    margin-top: 40px;
    text-align: center;
}

.servis-bolgeleri h2 {
    padding: 10px;
    display: inline-block;
    margin-bottom: 20px;
    color: #000;
}

.bolge-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* Her satırda 3 kolon */
    gap: 20px;
    justify-items: center;
    max-width: 1200px;  /* Maksimum genişlik */
    margin: 0 auto;  /* Ortalamak için */
}

.bolge-buttons button {
    width: 350px;
    padding: 15px 0;
    border: none;
    background-color: #e40000;
    border-radius: 4px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    font-size: 18px;
    text-transform: uppercase;

}

.bolge-buttons button:hover {
    background-color: #c30000;  /* Hover için daha koyu kırmızı */
}

/* Dropdown Menüsü Stil Ayarları */
.city-dropdown {
    margin-top: 20px;
}

.city-dropdown label {
    font-size: 24px;
    color: #000000;
    margin-right: 10px;
}

.city-dropdown select {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align-last: center;
    width: 200px;
    transition: all 0.3s ease;
}

/* Hover ve Focus Efektleri */
.city-dropdown select:hover,
.city-dropdown select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    background-color: #fff;
    outline: none;
    cursor: pointer;
}

/* Aşağı Ok Simgesi için CSS */
.city-dropdown select {
   
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

/* Mobil uyumlu stil */
@media only screen and (max-width: 768px) {
    .city-dropdown select {
        width: 90%;
    }
}
.footer {
    background-color: #060f1e; /* Arka plan rengi */
    color: white;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: center; /* İçerikleri ortalamak için */
    font-family: 'Roboto', sans-serif; /* Yazı tipi */
}

.footer-section {
    flex: 1;
    margin: 15px; /* Boşlukları eşitlemek için */
    min-width: 200px; /* Her bölümün minimum genişliği */
    max-width: 250px; /* Her bölümün maksimum genişliği */
    text-align: center; /* Yazıları ortalamak için */
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 19px; /* Başlık boyutu */
    font-weight: 500; /* Başlık kalınlığı */
}

.footer-section p,
.footer-section li {
    margin: 15px 0; /* Yazılar arasındaki boşluk */
    font-size: 16px; /* Metin boyutu */
    font-weight: 300; /* Metin kalınlığı (daha ince) */
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

/* Linkler için genel ayarlamalar */
.footer-section a {
    color: white; /* Varsayılan link rengi */
    text-decoration: none; /* Altı çizili olmadan */
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Hover efekti geçişi */
}

/* Linklere hover efekti eklenmesi */
.footer-section a:hover {
    color: #7e8bc8; /* Üzerine gelindiğinde mor tonuna yakın bir renk */
    text-decoration: underline; /* Üzerine gelindiğinde altı çizili olacak */
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Üst kısımda ince bir çizgi */
    padding-top: 10px;
    font-size: 12px; /* Alt kısımda metin boyutu */
    font-weight: 400; /* Alt kısım kalınlığı */
}

.hamburger {
    display: none;
}
@media (max-width: 768px) {
    /* Header */
    header {
        position: relative;
        padding: 20px;
    }

    nav {
        display: none; /* Varsayılan olarak menüyü gizle */
        position: absolute; /* Menüyü header içinde konumlandır */
        top: 60px; /* Hamburger menü altında görünmesi için ayarla */
        left: 0;
        background-color: #09091e; /* Arka plan rengi */
        width: 100%; /* Tam genişlik */
        z-index: 100; /* Diğer içeriklerin üstünde görünmesi için */
    }

    nav.active {
        display: block; /* Hamburger menü tıklandığında göster */
    }

    .hamburger {
        font-size: 30px; /* Hamburger menü boyutu */
        cursor: pointer;
        color: white; /* Renk */
        display: block;
    }

    nav ul {
        flex-direction: column; /* Dikey hizalama */
        width: 100%; /* Tam genişlik */
        padding: 0; /* Padding'i sıfırla */
        display: none;
    }
    nav.active ul {
        display: flex; /* Menüyü açarken görünür hale getirmek */
    }
    nav ul li {
        margin: 0; /* Boşlukları kaldır */
        width: 100%; /* Menü öğelerini tam genişlikte yap */
    }

    nav ul li a {
        padding: 10px; /* Tıklanabilir alanı genişlet */
        display: block; /* Tıklanabilir alanı genişlet */
        text-align: left; /* Metni sola hizala */
    }

    /* Call to Action */
    .call-to-action {
        margin: 40px auto; /* Üst ve alt margin'i ayarla */
    }

    .call-to-action h1 {
        font-size: 24px; /* Başlık boyutunu azalt */
    }

    .call-to-action p {
        font-size: 14px; /* Yazı boyutunu azalt */
    }

    /* Hizmetlerimiz Section */
    .hizmetlerimiz h2 {
        font-size: 24px; /* Başlık boyutunu azalt */
    }

    .services-grid {
        grid-template-columns: 1fr; /* Tek kolon yap */
        margin: 20px; /* Margin'i azalt */
    }

    .service-box {
        height: auto; /* Yüksekliği otomatik yap */
        margin-bottom: 20px; /* Her kutu arasında boşluk bırak */
    }

    /* Servis Bölgeleri Section */
    .servis-bolgeleri h2 {
        font-size: 24px; /* Başlık boyutunu azalt */
    }

    .bolge-buttons {
        grid-template-columns: 1fr; /* Tek kolon yap */
        margin: 0 auto; /* Ortala */
    }

    .bolge-buttons button {
        padding-right: calc(var(--bs-gutter-x) / 2);
        padding-left: calc(var(--bs-gutter-x) / 2);
    }
}
/* Mobil cihazlar için (768px ve altındaki ekranlar) */
@media screen and (max-width: 768px) {
    .kombi-section {
        display: block; /* Blok düzende dizilecek */
        text-align: center; /* Ortalanmış düzen için */
        padding: 20px; /* Daha az padding */
    }

    .kombi-text, .kombi-image {
        width: 100%; /* Yüzdeyle tam genişlik veriyoruz */
        margin-bottom: 20px; /* Elemanlar arasında boşluk bırakıyoruz */
    }

    .kombi-text h1 {
        font-size: 28px; /* Daha küçük başlık */
    }

    .kombi-text p {
        font-size: 16px; /* Daha küçük metin */
        line-height: 1.4; /* Daha sıkı satır aralığı */
    }

    .kombi-image img {
        border-radius: 6px; /* Hafifçe küçültülen kenar yuvarlaması */
    }
}