
    :root {
      --primary: #1e3a5f;
      --secondary: #2c4496;
      --accent: #f0f4f8;
      --text: #333;
      --white: #fff;
    }

    * {
      box-sizing: border-box;
      transition: all 0.3s ease;
    }

    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      background: var(--accent);
      color: var(--text);
    }

    header {
      
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

header h1 {
    font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  margin: 0;
  font-size: 3.5rem;
  font-weight: 700;
  z-index: 2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

   header img.logo {
      position: absolute;
      left: -30px;
      height: 200px;
      z-index: 2;

    }

    header::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
      opacity: 0.1;
      animation: rotate 20s linear infinite;
      z-index: 1;
    }

    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shine 5s infinite;
  z-index: 1;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}
header h1:hover {
  transform: scale(1.05);
}


  nav {
  
  background: rgba(51, 95, 152, 0.9); /* yarı saydam mavi tonu */
  padding: 12px 24px;
  display: flex;
  align-items: center; /* dikey hizalama */
  gap: 16px; /* butonlar arasında boşluk */
  flex-wrap: wrap; /* mobil uyumlu */
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25); /* daha belirgin gölge */
  backdrop-filter: blur(10px) saturate(120%); /* blur + renk doygunluğu */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* alt çizgi */
  transition: background 0.3s ease, box-shadow 0.3s ease;
  
 
}


/* Scroll sonrası efekti için (JS ile aktif edilebilir) */
nav.scrolled {
  
  background: rgba(30, 58, 95, 0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background-color:rgba(30, 58, 95, 0.95);
  backdrop-filter: blur(3px);   
}
nav::after {
  
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #00b4d8, #48cae4, #90e0ef);
  animation: slideLight 4s linear infinite;
  
}


nav::after::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, #00b4d8, #48cae4, #90e0ef);
  animation: slideLight 4s linear infinite;
}
.navbar-wrapper {
  position: relative;

}

.glow-line {
  position: relative;
  width: 100%;
  height: 4px;
  overflow: hidden; /* taşmayı engelle */
  pointer-events: none;
}

.glow-line::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(to right, transparent, #00f, #0ff, transparent);
  animation: slideLight 3s linear infinite;
}

@keyframes slideLight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}


.dropbtn {
  background: linear-gradient(135deg, #0077b6, #00b4d8); /* ikili mavi gradyan */
  color: var(--white);
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: background 0.3s ease, transform 0.2s ease;
}



.dropbtn:hover {
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}


    

    .dropdown {
       position: relative;
  display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      border: 1px solid #ccc;
      border-radius: 5px;
      min-width: 200px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      padding: 10px;
z-index: 999;
  pointer-events: auto;
  
    }
.dropdown:hover .dropdown-content {
  display: block;
}


    .submenu {
      position: relative;
    }
.submenu-title {
  display: block;
  padding: 10px;
  color: var(--primary);
  cursor: pointer;
  font-weight: 400; /* ya da kaldır tamamen, varsayılan olur */
}
 
.neden-biz {
  text-align: center;
  padding: 60px 20px;

}

.neden-biz h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1e3a5f;
}

.neden-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.neden-kart {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 20px;
  width: 220px;
  text-align: center;
  transition: transform 0.3s;
}

.neden-kart:hover {
  transform: translateY(-5px);
}

.neden-kart i {
  font-size: 2rem;
  color: #1e3a5f;
  margin-bottom: 15px;
}

.neden-kart p {
  font-size: 1rem;
  color: #333;
}

    .submenu-content {
      display: none;
      position: absolute;
      left: 100%;
      top: 0;
      background: var(--white);
      border: 1px solid #ccc;
      border-radius: 5px;
      min-width: 180px;
      z-index: 999;
    }

    .submenu:hover > .submenu-content {
      display: block;
    }

    .dropdown-content a {
      text-decoration: none;
      color: var(--primary);
      padding: 8px 12px;
      display: block;
      border-radius: 4px;
    }

    .dropdown-content a:hover {
      background: #f0f0f0;
    }

    .container {
      max-width: 1000px;
      margin: auto;
      padding: 20px;
    }

   .carousel {
  width: 100%;
  max-width: 1200px; /* ekran boyutuna göre büyüyebilir */
  margin: 40px auto;
  padding: 0 60px; /* sağ ve soldan boşluk */
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
 
}

.carousel img {
  position: absolute;
  transition: all 0.9s ease;
  max-height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0;
   aspect-ratio: 16 / 9;
  object-fit: cover;
  
}
.carousel img.left {
  transform: translateX(-220px) scale(0.75);
  opacity: 0.5;
  filter: blur(3px);
  z-index: 2;
}

.carousel img.right {
  transform: translateX(220px) scale(0.75);
  opacity: 0.5;
  filter: blur(3px);
  z-index: 2;
}

.carousel img.center {
  transform: scale(1);
  opacity: 1;
  z-index: 3;
}


/* Diğerlerini gizle */
.carousel img.hidden {
  display: none;
}

.hakkimizda {
  padding: 60px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

.hakkimizda .container {
  max-width: 680px;
  width: 90%;
  margin: 0 auto;
}

.hakkimizda h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1e3a5f;
}

.hakkimizda p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}
.faq-section {
  
  color: #1e3a5f;
  padding: 60px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.faq-box {
   
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:first-child {
  border-top: none;
}

.faq-question {
   background: #1e3a8a;
 
  color: #fff;
  text-align: left;
  padding: 16px 24px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {

  background-color: #fff;
  color: #1e3a8a; /* Yazıyı mavi yapar */
  
}

.faq-answer {

  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0 24px;
  font-size: 0.95rem;
  color: #eee;

}
.faq-answer:hover {
    background-color: #fff;
  color: #1e3a8a;
}
.faq-item.active .faq-answer {
     background: #1e3a8a;
  max-height: 200px;
  padding: 12px 24px 20px;
  
  
}

.faq-item.active .faq-answer:hover {
     background-color: #fff;
  max-height: 200px;
  padding: 12px 24px 20px;
  }

  .iletisim-bolumu {
  padding: 50px 20px;
  background: #f4f7fa;
  text-align: center;
}
.section-kutu {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.section-kutu h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.bilgi-paragrafi {
  font-size: 1rem;
  color: #444;
  margin-bottom: 25px;
}

.iletisim-bilgileri {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.iletisim-satiri {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #1e3a8a;
}

.iletisim-satiri i {
  font-size: 1.2rem;
}

.iletisim-satiri a {
  color: #1e3a8a;
  text-decoration: none;
}

.iletisim-satiri a:hover {
  text-decoration: underline;
}


    .iletisim, .hakkimizda, .nedenbiz, .yorumlar, .sikcasorulanlar {
      margin-top: 60px;
      background: var(--white);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .iletisim a {
      color: var(--primary);
    }
/* Modal Genel */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: flex-start; /* Ortalamak yerine üste sabitle */
  justify-content: center;
  overflow-y: auto; /* Modal taşarsa scroll çalışsın */
  z-index: 9999;
  padding-top: 30px; /* Ekranın üstünden biraz boşluk */
  box-sizing: border-box;
}


/* İçerik kutusu */
.modal-content {
  background-color: #fff;
  width: 90%;
  max-width: 1200px;
  overflow-y: auto;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  animation: slideDown 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Galeri içindeki görsel */
.modal-gallery img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* Butonlar (isteğe bağlı tasarla) */
.modal-gallery .controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.modal-gallery button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
}

.modal-gallery button:hover {
  background-color: #0056b3;
}

.hidden{
  display: none;
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.modal-content h2 {
  font-size: 32px;
  margin-top: 0;       
  margin-bottom: 20px;
}

.modal-content p {
  font-size: 20px;       /* Paragraf metni */
  line-height: 1.6;
}
@media (max-width: 768px) {
  .modal-content h2 {
    font-size: 24px;
  }

  .modal-content p {
    font-size: 16px;
  }
}

/* WhatsApp Link */
.whatsapp-link {
  display: inline-block;
    font-size: 18px;
  padding: 16px 30px;
  margin-top: 20px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.whatsapp-link:hover {
  background-color: #1ebe5b;
}
li a#pvcLink {
  list-style: none;
  text-decoration: none;
}

/* VEYA li'deki nokta için */
li {
  list-style: none;
}
.slider-wrapper {
  position: relative;
  max-width:  100%;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
}
.slider-wrapper img {
  width: 100%;
  height: 400px;          /* Veya daha büyük istiyorsan örn. 500px */
  object-fit: cover;
  border-radius: 12px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 50%;
  z-index: 10;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}


    footer {
      background: #222;
      color: var(--white);
      text-align: center;
      padding: 20px;
      margin-top: 40px;

}

@media (max-width: 768px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
  }

  header .logo {
    max-width: 130px;    /* Mobilde netlik korumak için daha az küçültüyoruz */
    height: auto;
    object-fit: contain; /* Netlik bozulmasın */
    margin: 0 auto;
    display: block;
  }

  header h1 {
    font-size: 18px;
    line-height: 1.3;
  }

  header h1 span {
    font-size: 14px !important;
  }
}
@media (max-width: 768px) {
  .dropbtn {
    font-size: 15px;
    padding: 4px 8px;
    margin: 3px;
    border-radius: 4px;
    width: auto;
    white-space: nowrap;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: left;
    gap: 4px;
    padding: 6px;
  }

  .dropdown-content li a {
    font-size: 15px;
    padding: 5px 8px;
  }

  .submenu-title {
    font-size: 15px;
    padding: 5px 6px;
  }

  .dropdown {
    position: relative;


}
}