body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
}

.header-top {
    background-color: white;
    color: black;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    max-width: 120px;
    height: auto;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item img {
    width: 60px;
    height: 60px;
}

nav {
    background-color: #8b0000;
    color: white;
    padding: 15px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
/*yeni*/
.hero {
    position: relative;
    height: 600px; /* Masaüstü için */
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin kaymasını ve taşmasını önler */
}



/* Küçük yuvarlak butonlar */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10; /* Düğmelerin üstte olmasını sağlar */
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fff;
}

/* Mobil uyum için */
@media (max-width: 768px) {
    .hero {
        height: 250px; /* Mobilde daha küçük olsun */
    }
}


/*Yeni eklendi 3,02,25*/

.statistics {
    background: url('arkaplan.jpg') no-repeat center center/cover;
    padding: 40px 0;
    color: white;
}

.statistics h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    padding: 20px;
    max-width: 200px;
}

.stat-icon {
    width: 100px;
    height: 100px;
}

.stat h3 {
    font-size: 24px;
    margin: 10px 0;
}

.stat p {
    font-size: 16px;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px;
}

.card i {
    font-size: 48px;
    color: #8b0000;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 20px;
    color: #333;
}

.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.whatsapp-btn:hover { /* Mause gelince renk değiş */
    background-color: #949494;
}

footer {
    background-color: #8b0000;
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

footer nav ul li {
    margin: 0 15px;
}

footer nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Yukarıya çıkma butonu */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #8b0000; /* Aynı renk tonu */
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    display: none; /* Başlangıçta görünmez */
}

.scroll-to-top:hover {
    background-color: #555;
}

.center {
    text-align: center;
    margin: 0 auto;
    display: block;
}

.center p {
    margin: 0 auto;
    max-width: 800px; /* Yazı alanının genişliğini sınırlandırabilirsiniz */
}

.hosgeldin2 h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto Slab', serif; /* Başlıklar için serif fontu */
    font-size: 36px; /* Daha büyük bir yazı boyutu */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Hafif gölge efekti */
    margin: 0; /* Varsayılan margin kaldırıldı */
    line-height: 1.2; /* Satır yüksekliği ayarı */
}

.hosgeldin2 .kumsal-nakliyat {
    color: #e74c3c; /* Daha canlı kırmızı ton */
    font-weight: bold; /* Kalın yazı tipi */
    margin-right: 5px; /* Araya boşluk eklemek için */
}

.hosgeldin2 .separator {
    color: #848686; /* Daha açık gri ton */
    font-weight: bold; /* Kalın yazı tipi */
    margin-right: 5px; /* Araya boşluk eklemek için */
}

.hosgeldin2 .hos-geldiniz {
    color: #3498db; /* Daha canlı mavi ton */
    font-weight: bold; /* Kalın yazı tipi */
    font-family: 'Roboto', sans-serif; /* Daha modern bir sans-serif fontu */
}

.email-btn {
    display: inline-block;
    background-color: #e74c3c; /* E-mail butonu için kırmızı renk */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.email-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.email-btn:hover { /*mause renk değiştirme*/
    background-color: #949494;
}

.call-button {
    display: inline-block;
    background-color: #0077ff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.call-button i {
    margin-right: 10px;
    font-size: 20px;
}

.call-button:hover { /*mause renk değiştirme*/
    background-color: #949494;
}

/* Mobil Cihazlar için Uyumluluk */
@media (max-width: 768px) {
    .header-container, .stats-container, .grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        flex-direction: column;
    }

    .card {
        width: 100%;
        max-width: 300px;
    }

    .hero {
        height: 250px;
    }

    .hero-image {
        height: 100%;
    }

    .scroll-to-top {
        bottom: 10px;
        right: 10px;
    }
}


/* WhatsApp butonu için stil */
.whatsapp-float {
    position: fixed;
    bottom: 70px; /* Yukarı çıkma butonunun üstüne gelecek şekilde konumlandırıldı */
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #25d366;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    display: none; /* Başlangıçta görünmez */
}

.whatsapp-float:hover {
    background-color: #128c7e;
}


#neden-biz {
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .image-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }
  
  .image-container img.feature-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
  }
  
  .text-container {
    flex: 1;
    padding: 20px;
  }
  
  .text-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .text-container p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .feature {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .feature img.feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain; /* İkonların oranını koruyarak sığdırır */
    display: block; /* Tarayıcı uyumluluğu için */
    margin: 0 auto 15px; /* Ortalama ve alttan boşluk */
  }
  
  .feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .feature p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
  }

  .testimonial-container {
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Yorumlar */
/* Yorumlar kısmı */
.testimonial {
    display: none;
    padding: 20px;
    transition: opacity 0.5s ease-in-out;  /* Yavaşça geçiş için efekt */
    margin-top: 50px; /* Yorumlar kısmının üstüne boşluk ekleyelim */
}

/* Aktif yorum */
.active { 
    display: block; 
    opacity: 1;  /* Görünür */
}

/* Yıldızlar */
.stars {
    color: gold;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
}

.stars span { 
    padding: 2px; 
}

/* Daireler (noktalara tıklanabilir alan) */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Noktaların stilizasyonu */
.dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    background-color: gray;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s; /* Yavaş renk değişimi */
}

/* Aktif nokta */
.dot.active { 
    background-color: black; 
}

.profile-pic {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Hizmetler kısmı */
.hizmetler2 {
    padding: 0px 20px;
    text-align: center;
    overflow: hidden;
}

.hizmetler-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.hizmetler-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hizmet-kart {
    width: calc(33.333% - 30px);
    min-width: 280px;
    height: auto;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.hizmet-kart img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.hizmet-kart h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #333;
}

.hizmet-kart p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* Buton tasarımı */
.hizmet-kart button {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.hizmet-kart button:hover {
    background-color: #0056b3;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .hizmetler-container {
        flex-direction: column;
        align-items: center;
    }

    .hizmet-kart {
        width: 90%;
    }
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: auto; /* Butonu alt kısma yapıştırır */
}

button:hover {
    background-color: #0056b3;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hizmet-kart {
        width: 50%; /* Kartları mobilde tam genişlikte yapalım */
        height: auto; /* Yükseklik sabit olmasın */
    }

    .hizmetler-wrapper {
        display: block; /* Sadece dikey sıralama */
        padding: 0px 10px;
    }
}





.fiyat-hesaplama-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center; /* Ortalamayı sağlıyoruz */
    align-items: center;
    overflow: hidden;
}

/* Resmi pencereye tam sığacak şekilde ayarlıyoruz */
.hesaplama-resmi {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Resmi deforme etmeden sığdır */
}

/* Butonu sarı alanda, yazıların altında konumlandır */
.hesapla-btn {
    position: absolute;
    left: 29.3%; /* Butonu yatayda ortalıyoruz */
    bottom: 25%; /* Butonun alt kısmı */
    transform: translateX(-50%); /* Butonu tamamen ortalamak için */
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #ff5733;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

/* Buton Hover Efekti */
.hesapla-btn:hover {
    background-color: #c57361;
}

/* Küçük ekranlar için buton ayarı */
@media (max-width: 768px) {
    .hesapla-btn {
        padding: 12px 24px;
        font-size: 16px;
        bottom: 10%;
    }
}