/* Genel ayarlar */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

/* Header stili */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #ffffff;
    border-bottom: 2px solid #d3d3d3;
}

.logo img {
    width: 170px;
    height: 106px;
}

/* Menü stili */
nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #003366;
    text-decoration: none;
    padding: 10px;
    display: block;
}

nav ul li a:hover {
    background: #f4f4f4;
    border-radius: 5px;
}

/* Dropdown menü stili */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #003366;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.dropdown-content a img {
    margin-right: 10px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #555;
}

/* Hamburger menü stili */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #003366;
    margin: 4px;
    border-radius: 2px;
}

/* Mobil uyumlu tasarım */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        background: #ffffff;
        padding: 10px 0;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .menu-active ul {
        display: flex;
    }

    .logo img {
        width: 170px;
        height: 106px;
    }
}
  /* Body Ayarları */
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #000; /* Arka planı siyah yap */
      color: white; /* Metin rengini beyaz yap */
    }
/* Preloader */
    .preloader {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.9);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .loader {
      border: 16px solid #f3f3f3;
      border-top: 16px solid #3498db;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      animation: spin 2s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Hero Section */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .hero-image {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 100%; /* Başlangıç konumu sağda */
      opacity: 0; /* Başlangıçta görünmez */
      animation: slideIn 12s infinite; /* Animasyon süresi */
    }

    @keyframes slideIn {
      0%, 10% {
        opacity: 0; /* İlk %10 görünmez */
        left: 100%; /* Sağda başla */
      }
      10%, 30% {
        opacity: 1; /* %10 ile %30 arasında görünür */
        left: 0; /* Ortaya kaydır */
      }
      30%, 40% {
        opacity: 1; /* %30 ile %40 arasında görünür */
      }
      40%, 50% {
        opacity: 0; /* %40 ile %50 arasında kaybolur */
        left: -100%; /* Solda kaybol */
      }
    }

    /* Her resme farklı animasyon süreleri vererek geçiş efektini ayarlıyoruz */
    .hero-image:nth-child(1) {
      animation-delay: 0s;
    }
    .hero-image:nth-child(2) {
      animation-delay: 4s; /* 4 saniye sonra başlar */
    }
    .hero-image:nth-child(3) {
      animation-delay: 8s; /* 8 saniye sonra başlar */
    }

    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 1; /* Metnin ön planda görünmesi için */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Gölgelendirme ekleniyor */
      padding: 20px; /* Yazının etrafına boşluk ekleniyor */
      background: rgba(0, 0, 0, 0.5); /* Yazının arkasına yarı saydam siyah arka plan ekleniyor */
      border-radius: 10px; /* Köşeleri yuvarlama */
    }

    .hero-text h1 {
      font-size: 3em;
      font-weight: bold;
    }

    .hero-text p {
      font-size: 1.5em;
    }

    .cta-button {
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #ff69b4; /* Buton rengi (pembe tonlarında) */
      color: white;
      text-decoration: none;
      font-size: 1.2em;
      border-radius: 5px;
    }

    .cta-button:hover {
      background-color: #ff1493; /* Hover durumu için daha koyu pembe */
    }

    /* Mobil ve Masaüstü için Farklı Ayarlar */
    @media only screen and (max-width: 768px) {
      .hero {
        height: 50vh; /* Mobil için yükseklik */
      }

      .hero-image {
        height: 50vh; /* Mobil için resim yüksekliği */
      }

      .hero-text h1 {
        font-size: 2em; /* Mobil için başlık boyutu küçültüldü */
      }

      .hero-text p {
        font-size: 1.2em; /* Mobil için alt yazı boyutu küçültüldü */
      }

      .cta-button {
        font-size: 1em; /* Mobil için buton boyutu */
        padding: 8px 16px; /* Mobil için buton padding */
      }
    }
    
    @media only screen and (max-width: 480px) {
      .hero-text h1 {
        font-size: 1.5em; /* Daha küçük ekranlar için başlık boyutu */
      }

      .hero-text p {
        font-size: 1em; /* Daha küçük ekranlar için alt yazı boyutu */
      }
      
      .cta-button {
        font-size: 0.9em; /* Daha küçük ekranlar için buton boyutu */
        padding: 6px 12px; /* Daha küçük ekranlar için buton padding */
      }
    }
	  .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .whatsapp-button img {
            width: 80px;
            height: 80px;
        }
		  body {
            margin: 0;
            padding: 0;
        }

        .social-media-icons {
            position: fixed;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }

        .social-media-icons a {
            display: block;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.1);
        }
		
		
		
		
		
		.container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 sütun */
    gap: 10px; /* Bölümler arası boşluk */
    padding: 20px; /* Dış alan */
    background-color: white; /* Arka plan beyaz */
}

.section {
    background-color: white; /* İç kısım beyaz */
    border: 2px solid #E0E0E0; /* Dış kenar açık gri */
    display: flex;
    align-items: center;
    justify-content: center; /* Metni ortalamak için */
    padding: 15px; /* İç alan */
    border-radius: 8px; /* Kenarları yuvarlatmak için */
    height: 50px; /* Sütun yüksekliği */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}

/* Mobil uyum için medya sorgusu */
@media (max-width: 768px) {
    .container {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
        gap: 10px; /* Bölümler arası boşluk */
    }

    .section {
        height: 60px; /* Sütun yüksekliğini mobil için ayarlıyoruz */
        padding: 10px; /* İç alanı biraz azaltıyoruz */
    }
}

@media (max-width: 480px) {
    .container {
        grid-template-columns: 1fr; /* Tek sütun */
    }

    .section {
        height: 50px; /* Daha küçük yükseklik mobil için */
        padding: 10px; /* İç alan */
    }
}

.icon {
    width: 30px;
    height: 30px;
    margin-right: 10px; /* Resim ile metin arasında boşluk */
}

.text {
    font-size: 18px; /* İstediğin boyutta ayarlayabilirsin */
    color: #333333; /* Yazı rengi koyu gri */
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}









body {
    font-family: Arial, sans-serif;
}

.promo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
}

@media (min-width: 768px) {
    .promo-section {
        flex-direction: row;
    }
}

.promo-image img {
    width: 100%;  /* Genişliği %100 yaparak responsive olmasını sağlıyoruz */
    max-width: 600px; /* Maksimum genişlik ayarı */
    height: auto; /* Yüksekliği otomatik ayarlıyoruz */
    border-radius: 8px;
    object-fit: cover; /* Resmi kırpmadan sabit kare boyutuna sığdırır */
}

.promo-content {
    margin-top: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .promo-content {
        margin-left: 20px;
        text-align: center;
    }
}

.promo-content h2 {
    color: #333;
    font-size: 30px;
}

.promo-content p {
    color: #666;
    font-size: 20px;
    margin-top: 10px;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
}





