body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #111;
}

header {
    background: #0a3d62;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    background: #1e90ff;
    border-radius: 5px;
}

.banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../img/arka-plan.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    color: white;
    padding: 100px 20px;
}

.banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner p {
    font-size: 20px;
}

section {
    padding: 50px 20px;
    text-align: center;
}

section h2 {
    color: #edeff0;
    margin-bottom: 20px;
}

.hakkimizda {
    background: #222;
    line-height: 1.6;
}

.bolgeler {
    background: #0a3d62;
}

.bolge-listesi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.bolge {
    background: white;
    color: #000;
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1 1 200px;
    max-width: 200px;
}

.iletisim {
    background: #222;
}

form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
}

button {
    background: #1e90ff;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #0a74da;
}

footer {
    background: #0a3d62;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 1.8rem;
    }
    nav {
        flex-direction: column;
    }
}

/* ================== HİZMETLER ================== */
.hizmetler {
    background: #111;
    padding: 50px 20px;
    text-align: center;
}

.hizmetler h2 {
    color: #1e90ff;
    margin-bottom: 30px;
    font-size: 2rem;
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.hizmet-kutu {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hizmet-kutu:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

/* ---- İKON STİLLERİ ---- */
.hizmet-kutu i {
    color: #1e90ff;
    font-size: 60px;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.hizmet-kutu:hover i {
    color: #ffcc00
}

.hizmet-kutu h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.hizmet-kutu p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.5;
}

nav {
    display: flex;
    justify-content: space-between; /* Logo sola, menü sağa */
    align-items: center;            /* Dikeyde ortalar */
    background-color: #00334d;
    padding: 10px 40px;
}

nav img.logo {
    height: 100px;   /* Daha büyük logo */
    width: auto;
    margin-right: 40px; /* Menüyle araya boşluk */
    object-fit: contain; /* Logonun orantılı görünmesini sağlar */
}



nav a:hover {
    color: #00bfff;
}




