
* {
  font-family: 'Archivo', sans-serif;
}

html,body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Archivo', sans-serif;
}

/* Konsolide responsive bloklar aşağı taşındı */
/* Menü açılınca scroll kilidi */
body.menu-open { overflow: hidden; }

.container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

header {
  width: 100%;
  background-color: #ffffff;
  
}

/* NAVBAR */




/* BUTONLAR */
.nav-buttons {
  display: flex;
  gap: 24px;
}



.btn-secondary:hover {
  background-color: #002944;
  color: white;
}


.btn-primary:hover {
  background-color: #00539C;
}

.icon-chevron {
  font-size: 12px;
}
.dropdown {
  position: relative;
  z-index: 1001;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #002944;
  min-width: 116px;
  display: none;
  z-index: 1000;
  margin-top: 2px;
 
}

.dropdown-menu a {
  display: block;
  text-align: center;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  
}

.dropdown-menu a:hover {
  background-color: #00539C;
}

/* Dropdown menü görünür olduğunda */
.dropdown-menu.show {
  display: block;
}





/* Hamburger açıkken X ikonuna dönüşsün */
.hamburger.open span:nth-child(1) { transform: translateY(16px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-16px) rotate(-45deg); }



/* Menü için temel stil */
/* Menü başlangıçta sağda gizli olacak */
/* Masaüstü/Tablet: Eski overlay menü davranışı */
/* Eski overlay slide menü yapısı */
/* Masaüstü/Tablet: menü hamburger çizgilerinin altında, içerik kadar yükseklik */
.mobile-menu {
  position: absolute;
  top: calc(var(--mobile-menu-top, 100%) + 12px);
  left: 50px;
  right: 50px;
  width: auto;
  max-width: 520px;
  margin: 0 auto;
  height: auto;
  max-height: 70vh;
  overflow-y: auto;
  background-color: #002944;
  color: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 1000;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }

/* 768px üstü için menü açılınca içerikler aşağı kaysın */
@media (min-width: 769px) {
  body.menu-open .hero { margin-top: 150px; transition: margin-top 0.3s ease; }
}

.mobile-menu a {
  margin-bottom: 35px; /* Aralarındaki boşluk */
  font-size: 30px; /* Yazı boyutu */
  font-family: 'Archivo', sans-serif; /* Yazı tipi */
  font-weight: 400; /* Yazının kalınlığı */
  color: white; /* Yazı rengi */
  text-decoration: none; /* Altı çizili olmayacak */
  text-transform: uppercase; /* Büyük harf yapar */
  letter-spacing: 1px; /* Harfler arasındaki mesafe */
  margin-top: 50px;
  text-align: center; /* Yazıları merkezler */
}

.mobile-menu a:hover {
  padding-left: 10px;
  text-decoration: underline; /* Altına çizgi ekler */
  text-decoration-color: #FB8E56;
}

/* Fotoğrafların alt alta sıralanması */
.photos {
  display: flex;
  justify-content: space-between;
 max-width: 100px;
  margin-top: auto;
  gap: 20px;
  margin-left: -10px;
}

.photos img {
  width:33px; /* Genişlik 33px */
  height: 33px;; /* Yükseklik 33px */
  object-fit: cover; /* Görüntünün oranını bozmadan kapsama yapılır */
  border-radius: 8px; /* Kenarlara yuvarlaklık ekler */
}
/* MOBİL RESPONSİVE (max 768px ve altı) */
/* 768px ve altı için tüm responsive düzenlemeler dosyanın sonunda toplandı */

  /* Mobil menü: hamburger çizgilerinin ALTINDA, içerik kadar yükseklik */
  .mobile-menu {
    position: absolute;
    top: calc(var(--mobile-menu-top, 100%) + 12px);
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    height: auto;
    max-height: 70vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    padding: 16px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
  }
  .mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

  /* Menü açılınca içerikler aşağı kaysın, navbar ile menü bölümü kadar */
  body.menu-open .hero { 
    margin-top: 360px; 
    transition: margin-top 0.3s ease; 
  }
  
  /* Mobil hamburger X dönüşümü */
  .hamburger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }




/* 769px ve üstü: masaüstü tasarımını koru */
@media (min-width: 769px) { 
  .container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 40px; 
    position: static;
    left: auto;
    transform: none;
  }
}


/* ===== NAVBAR (>=769px) – eskistyle.css ile eşleştirildi ===== */
@media (min-width: 769px) {
  header {
    width: 100%;
    background-color: #ffffff;
  }

  .navbar {
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: auto;
      width: 100%;
      height: 136px;
      margin: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0px 50px;
      box-sizing: border-box;
      position: relative;
      z-index: 1001;
      
      
    
  }

  .logo img{
    width: 200px;
    height: 200px;
    object-fit: fill;
    margin: 0;
    margin-left: -280px;
  }

  .nav-buttons { 
    display: flex; 
    gap: 24px; 
    align-items: center;
    height: 60px;
    margin-right: -150px;
  }

  .btn-secondary {
    width: 145px;
    height: 48px;
    padding: 0 18px;
    border: 1.33px solid #002944;
    background-color: transparent;
    color: #002944;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.3s ease;
    margin: 0;
  }

  .btn-secondary:hover { background-color: #002944; color: white; }

  .btn-primary {
    width: 80px;
    height: 48px;
    padding: 0 18px;
    background-color: #002944;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10.67px;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
    margin: 0;
    font-family: 'Archivo', sans-serif;
  }

  .btn-primary:hover { background-color: #00539C; }

  .icon-chevron { font-size: 16px; }
  .dropdown { position: relative; }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #002944;
    min-width: 116px;
    display: none;
    z-index: 1000;
    margin-top: 2px;
  }

  .dropdown-menu a {
    display: block;
    text-align: center;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
  }

  .dropdown-menu a:hover { background-color: #00539C; }
  
  /* Dropdown menü görünür olduğunda */
  .dropdown-menu.show {
    display: block;
  }

  .hamburger {
    width: 64px;
    height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
  }

  .hamburger span {
    background-color: #002944;
    border-radius: 0;
    width: 64px;
    height: 3px; 
    border: 4px;
  }
}

/* ===== 786px ÜSTÜ HAMBURGER MENÜ DÜZENLEMESİ ===== */
@media (min-width: 786px) {
  /* Hamburger menü sağa dayalı ve daha küçük */
  .hamburger {
    width: 48px;
    height: 48px;
    margin-left: auto;
    margin-right: 0;
  }

  .hamburger span {
    width: 48px;
    height: 3px;
  }

  /* Mobil menü sağa dayalı ve daha küçük */
  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 10%;
    left: auto;
    transform: none;
    width: 508px;
    max-width: 708px;
    min-height: 400px;
    background: linear-gradient(135deg, #00345D 0%, #004080 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 15px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    border-radius: 0px;
    margin-top: 10px;
    
  }

  .mobile-menu.open { 
    opacity: 1; 
    transform: translateY(0); 
    pointer-events: auto; 
  }

  /* Menü linkleri daha küçük */
  .mobile-menu a {
    margin-bottom: 25px;
    font-size: 24px;
    margin-top: 30px;
  }

  /* Fotoğraflar daha küçük */
  .photos {
    max-width: 80px;
    gap: 15px;
  }

  .photos img {
    width: 28px;
    height: 28px;
  }
}
@media (width: 1024px) {

  .logo img{
    width: 200px;
      height: 200px;
      object-fit: fill;
      margin: 0;
    margin-left: -100px;
  }
  .nav-buttons { 
    display: flex; 
    gap: 24px; 
    align-items: center;
    height: 60px;
    margin-right: 100px;
  }
  }
  @media (width: 1440px) {

    .logo img{
      width: 200px;
        height: 200px;
        object-fit: fill;
        margin: 0;
      margin-left: -140px;
    }
    .nav-buttons { 
      display: flex; 
      gap: 24px; 
      align-items: center;
      height: 60px;
      margin-right: 50px;
    }
    }
/* ===== KONSOLİDE RESPONSIVE (AŞAĞIDA TOPLANDI) ===== */
/* Konsolide responsive bloklar dosya sonunda tekrar yerleştirildi */

  
  /* HERO */
/* HERO */
.hero {
  width: 100%;
  min-height: 100vh;
  padding: 72px 169px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  box-sizing: border-box;
}

.hero-left {
  max-width: 572px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-subtitle {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  color: #FB8E56;
  padding: 8px 12px;
  width: fit-content;
  margin-top: -40%;
  
}

.hero-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 125%;
  color: #002944;
  
}

.hero-description {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: #002944;

}

.hero-right img {
  max-width: 100%;
  height: auto;
  margin-top: -50%;
}

/* KAYDIR BUTONU (Scroll Section) */
.scroll-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 169px;
  gap: 12px;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, #889ABB 134.55%);
  box-sizing: border-box;
  margin-top: -280px;
}

.scroll-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 21px;
  text-align: center;
  color: #003D5C;
  margin-bottom: 20px;
}

.image-button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.image-button img {
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease;
}

.image-button:hover img {
  transform: scale(1.1);
}

/* HERO mobil responsive kuralları alta taşındı */

  
.about-section {
  width: 100%;
  padding: 72px 169px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  box-sizing: border-box;
}

.about-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 150%;
  color: #002944;
  background-color: #ffffff;
  padding: 20px 0;
  text-align: center;
  margin: 0 auto 48px auto;
  width: 100%;
  max-width: 1103px;
}

.about-text-block {
  width: 100%;
  max-width: 1103px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-eskoyazisi {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 24px;
  background: #ffffff;
  color: #FB8E56;
  display: inline-block;
  vertical-align: middle;
  line-height: 150%;
}

.about-eskoyazisi2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 24px;
  background: #ffffff;
  color: #161616;
  display: inline-block;
  vertical-align: middle;
  line-height: 150%;
}

.about-paragraph {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 24px;
  background: #ffffff;
  color: #161616;
  line-height: 150%;
}

.about-image {
  width: 100%;
  height: 340px;
  background: linear-gradient(0deg, rgba(1, 77, 111, 0) 0%, rgba(1, 77, 111, 0.5) 100%), url('images/gokdelenler.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Yumuşak kaydırma */
html {
  scroll-behavior: smooth;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ----------------------------------------------------------- */
/*  MOBİL UYUMLU TASARIM - Media Queries  */
/* ----------------------------------------------------------- */

/* ABOUT SECTION responsive kuralları alta taşındı */

/* Ekip Üyeleri Konteyneri */
.team-container {
  width: 100%;
  max-width: 1103px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.team-member {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card {
  width: 100%;
  background-color: #ffffff;
}

.photo-info-wrapper {
  display: flex;
  width: 100%;
  height: 380px; /* üst çakışmayı azaltmak için biraz büyütüldü */
  background-color: #00345D;
  overflow: hidden;
  transition: all 0.3s ease;
}

.photo-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: width 0.3s ease;
}

.photo {
  width: 237.298583984375px;
  height: 360px;
  object-fit: cover;
}

.info-hover {
  width: 0;
  background-color: #00345D;
  color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  transition: width 0.3s ease, padding 0.3s ease;
  text-align: center;
}

.team-member:hover .photo-container {
  width: 50%;
}

.team-member:hover .info-hover {
  width: 50%;
  padding: 20px;
}

.name {
  font-size: 35px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  margin: 0;
  margin-left: -20px;
  margin-top: -30px;
}

.title {
  font-size: 24px;
  font-family: 'Archivo', sans-serif;
  color: #FB8E56;
  margin: 5px 0;
  margin-left: -20px;
}

/* 769px üstünde metin taşması sorununu düzelt */
@media (min-width: 769px) {
  .name {
    margin-left: 0;
    
    line-height: 1.2;
    
  }
  
  .title {
    margin-left: 0;
    line-height: 1.2;
  }
  
  .info-item img {
    margin-left: 0;
    
  }
  
  /* info-hover içindeki tüm elementleri ortala */
  .info-hover {
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    font-size: 14px;
  }
  
  .info-item span {
    margin-left: 6px;
    word-break: break-word;
  }
  
  .name {
    margin: 0 0 8px 0;
    font-size: 28px;
    line-height: 1.1;
  }
  
  .title {
    margin: 0 0 12px 0;
    font-size: 18px;
    line-height: 1.1;
  }
  
}



.info-item img {
  width: 24px;
  height: 24px;
  margin-left: -20px;
  margin-top: 5px;
}

.bio-container {
  width: 100%;
  height: 84px;
  background-color: #E6E6E6;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  box-sizing: border-box;
  gap: 46px; /* İçeride başlık ile buton arası boşluk */
  
}


.bio-title {
  font-family: 'Archivo', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #002944;
  margin: 0;
}

.image-button2 {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.image-button2 img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}


.image-button2:hover img {
  transform: scale(1.1);
}

.team-member.active .image-button2 img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.bio-expanded {
  width: 100%;
  background-color: #E6E6E6;
  color: #161616;
  padding: 10px 20px; /* sağ-sol 20px iç boşluk */
  box-sizing: border-box; /* padding toplam genişliğe dahil olsun */
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  line-height: 150%;
  display: none;
  border-radius: 0 0 8px 8px; /* Sadece alt köşeler yuvarlak */
}

/* Biyografi Açıkken */
.team-member.active .bio-expanded {
  display: block;
}
/* TEAM mobile kuralları alta taşındı */

.team-paragraph {
  width: 100%;
  max-width: 1103px;
  background-color: #ffffff;
  padding: 24px;
  margin: 40px auto; /* Ortala */
  text-align: left;
  color: #161616;
  font-family: 'Archivo', sans-serif;
  font-size: 24px;
  line-height: 150%;
  box-sizing: border-box;
}

/* TEAM PARAGRAPH responsive kuralları alta taşındı */




.video-blok {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 714px;
  margin: 0 auto;
  overflow: hidden;
}

/* Arka plan SVG'si (Aynı kalıyor) */
.svg-arka-plan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  z-index: 1; /* Arka planda kalması için */
}

.svg-arka-plan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video elementi (Yeni Konumlandırma) */
.video-elementi {
  position: absolute;
  z-index: 2; /* Arka planın üstünde olması için */
  
  /* Videoyu dikey ve yatayda tam ortalamak için: */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* Videonun boyutları */
  width: 70%; /* Genişliği ekranın %70'i kadar yap (ayarlanabilir) */
  max-width: 960px; /* Ama 960px'den de geniş olmasın */

  /* Estetik dokunuşlar */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  overflow: hidden; /* Köşelerin düzgün görünmesi için */
}

.video-elementi video {
    width: 100%;
    height: 100%;
    display: block;
}

/* VIDEO SECTION responsive kuralları alta taşındı */




/* Hizmetlerimiz Bölümü */
.hizmetler-alani {
  width: 100%; /* Sayfa genişliğini tamamen kapla */
  height: 1100px;
  gap: 48px;
  padding-top: 96px;
  padding-right: 169px;
  padding-bottom: 96px;
  padding-left: 169px;
  background: #002944;
  box-sizing: border-box; /* Padding'in içerik alanına dahil olmasını sağlar */
}

/* Hizmetlerimiz Başlığı */
.hizmetler-baslik {
  width: 100%; /* Başlık, sayfa genişliğini tamamen kaplayacak */
  height: 80px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 125%;
  letter-spacing: 0%;
  background: #002944;
  color: #FFFFFF;
  padding: 20px 0;
  text-align: left;
  margin-bottom: 48px;
  
}

/* Hizmetlerimiz İçeriği */
.hizmetler-icerik {
  width: 100%; /* İçeriğin tüm sayfayı kaplamasını sağlar */
  height: 616px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Yazılar üstte hizalanacak */
  background: #002944;
  padding: 20px;
  border-radius: 10px;
}

/* Sol ve Sağ Kısımlar */
.hizmetler-sol, .hizmetler-sag {
  width: 48%; /* Her iki taraf da eşit genişlikte olacak */
  display: flex;
  flex-direction: column;
  gap: 20px; /* Her yazı arasında boşluk olacak */
}

/* Yazılar */
.hizmetler-yazi {
  font-family: 'Archivo', sans-serif;
  width: 480px;
  height: 86px;
  max-width: 480px;
  padding: 16px 16px 16px 1px;
  background: #002944;
  color: white;
  font-size: 20px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Yazıları sola hizala */
  position: relative; /* Pop-up için position reference */
  transition: background 0.3s ease;
  border-radius: 1px;
  cursor: pointer;
  text-align: left; /* Yazıları sola dayalı yap */
  border-bottom: 3px solid #FB8E56; /* Çizgi ekle */
  text-decoration: none;
  
}

/* Son yazılara çizgi eklenmesin */
.hizmetler-yazi.son-yazi {
  border-bottom: none; /* Son yazılarda çizgi eklenmesin */
}

/* Yazının Üzerine Gelince Pop-up */
.hizmetler-yazi:hover::before {
  content: attr(data-popup); /* Pop-up metnini yazıdan alır */
  width: 373px;
  height: 32px;
  opacity: 0.94;
  gap: 4px;
  padding: 16px;
  background: #FFFFFF;
  color: #000;
  position: absolute;
  top: 80%; /* Yazının biraz altında */
  left: 40%;
  transform: translateX(-50%); /* Ortaya hizalar */
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 14px;
  z-index: 10;

  font-family: 'Archivo', sans-serif;
  color: #e07b4b;
  font-size: 20px;
  display: flex; /* Flexbox kullanarak içeriği hizalamak */
  align-items: center;
  font-weight: bold;

}

/* Yazıların Hover Durumu */
.hizmetler-yazi:hover {
  background: #002944;
  /* Hover durumunda renk değişimi */
  display: inline-block; /* İçerik etiketini inline-block yaparak hizalar */
  text-align: left; /* Yazıyı sola hizalar */
  width: 100%; /* İçeriğin tam genişlikte olmasını sağlar */
}

.btn-incele {
  font-family: 'Archivo', sans-serif;
  width: 91px;
  height: 48px;
  gap: 10.67px;
  padding-right: 18px;
  padding-left: 18px;
  background: #FB8E56;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
  margin-top: -20px;
  text-decoration: none;
}

.btn-incele:hover {
  background: #e07b4b; /* Hover efektini ekleyebiliriz */
}
/* HİZMETLER mobil responsive kuralları alta taşındı */



.Yayin_alani{
  width: 100%;
  height:1070.79px;
}

.Yayin_basligi{
  font-family: 'Archivo', sans-serif;
  width: 700px;
  height:70px;
  font-size: 64px;
  color: #002944;
  margin-left:150px ;
  margin-top:100px;
}

.publication-section {
  width: 100%;
  padding: 72px 169px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.slider {
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease-in-out;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 0;
}

.card {
  min-width: 370px;
  height:380px;
  border-radius: 0px;
  box-shadow: 0 2px 6px rgba(255,255,255,0);
  padding: 0;
  margin: 0;
  background-color: transparent;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card:hover {
  transform: scale(1.06);/* Kartı %4 büyüt ve yukarıya doğru kaydır */
  z-index: 1; /* Hover'da kartın ön planda olmasını sağla */
}
.card img {
  width: 370px;
  height: 250px;
  object-fit: cover;
  display: block; /* boşluk kalmaması için */
  border-radius: 0
}

.card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #002944;
  padding: 16px;
  line-height: 150%;
}

.card-button {
  font-family: 'Archivo', sans-serif;
  display: block;
  margin-right: 190px;
  padding: 1px 0; /* Yalnızca yatayda padding yok, dikeyde yazının etrafında biraz boşluk olacak */
  text-align: left;
  color: #0070BA; /* Yazı rengi */
  
  text-align: center;
  text-decoration: none;
  background-color: transparent; /* Arka planı şeffaf yap */
  border: none; /* Kenarlıkları kaldır */
  font-weight: 500;
  cursor: pointer; /* Fare üzerine geldiğinde el simgesi görünsün */


}

.card-button:hover {
  color: #00539C; /* Hover durumunda renk değişimi */
}




.slider-button {
  background-color: #002944;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}



.slider-button img {
  width: 36px;
  height: 36px;
}

.slider-button.left {
  margin-right: 16px;
}

.slider-button.right {
  margin-left: 16px;
}

#slider {
  overflow-x: hidden; /* Yatay kaydırma çubuğunu gizler */
}


/* Yayınlar Alanı */
.publication-section {
  width: 100%;
  padding: 72px 169px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  position: relative;  /* İçerik kaydırıldığında kalacak şekilde */
}

/* Yayınlar Alanı */
.Yayin_alani {
  width: 100%;
  height: 105%;
  padding: 0 169px;
  background-color: #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;

}

/* Yayın Başlığı */
.Yayin_basligi {
  font-family: 'Archivo', sans-serif;
  font-size: 64px;
  font-weight: bold;
  margin-left: -500px;
  text-align: center;
  height: 70px;
}

/* Slider Container */
.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: -170px;
 
}

/* Hepsini Gör Butonu Sol Alt */
/* Hepsini Gör Butonu Sol Alt */
/* Hepsini Gör Butonu Sol Alt */
.hepsini-gor-container {
  width: 100%;
  display: flex;
  justify-content: flex-start; /* Sol hizalama */
  margin-top: -120px;
  margin-left: 130px; /* Sol kenara mesafe verir */
  position: relative;
  border: none;
 
}

.primary-button {
  font-family: 'Archivo', sans-serif;
  width: 120px;
  height: 50px;
  gap: 10.67px;
  padding-right: 18px;
  padding-left: 18px;
  background: #002944;
  color: white;
  border: none;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: block;
  margin: 0;
  text-align: center;
  line-height: 48px; /* Butonun dikeyde ortalanması */
  z-index: 10; /* Butonu ön planda tut */
  text-decoration: none;
}

.primary-button:hover {
  background: #00539C;
  text-decoration: none;
}
.primary-button:visited,
.primary-button:active,
.primary-button:hover {
  text-decoration: none;
}

/* E-posta ve Abone Ol Butonu */
.email-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 15px;
  background-color: white;
  color: #BDB6B3;
  position: relative;
  top: -60px;

}

.email-input {
  font-family: 'Archivo', sans-serif;
  width: 317px;
  height: 48px;
  background: #ffffff;
  border: none;
  font-size: 15px;
  padding: 0 10px;
  color: #333;
  border-bottom: 2px solid #FB8E56; /* Border sadece yazının altında olacak */
}

.email-input:focus {
  outline: none;
  border-bottom-color: #FB8E56; /* Focus durumunda border rengi */
 

}

.subscribe-button {
  font-family: 'Archivo', sans-serif;
  width: 150px;
  height: 60px;
  gap: 12px;
  padding-right: 24px;
  padding-left: 24px;
  background: #FB8E56;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin-left: 5px;
}

.subscribe-button:hover {
  background: #F87E3C;
}
/* YAYINLAR/SLIDER mobil responsive kuralları alta taşındı */





/* Contact Section Styles */
.contact-section {
  width: 100%;
  height: 1111.7734375px;
  gap: 64px;
  padding-top: 96px;
  padding-right: 169px;
  padding-bottom: 96px;
  padding-left: 169px;
  background-image: url('images/arka_plan.png');
  background-size: auto;
  position: relative;
  color: white;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 
}

.contact-title {
  width: 1103px;
  height: 80px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  background: transparent;
  padding: 50px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  margin-top: -20px;
  margin-left: 6px;
}

.contact-container {
  display: flex;
  gap: 400px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  margin-left: 50px;
  padding-top: 50px;
}

.contact-form {
  width: 491px;
  height: 775px;
  gap: 36px;
  padding: 32px;
  background: #002944;
  display: flex;
  flex-direction: column;
  margin-right: -100px;
  margin-top: -80px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-baslik {
  width: 292px;
  height: 50px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 125%;
  margin-bottom: 80px;
  margin-top: 20px;
  color: #ffffff;
  margin-left: 38px;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Archivo', sans-serif;
  width: 379px;
  height: 47px;
  padding: 5px;
  margin-bottom: 50px;
  border: 1px solid #ccc;
  border-radius: 1px;
  margin-left: 0;
}

.contact-form button {
  font-family: 'Archivo', sans-serif;
  width: 103px;
  height: 48px;
  padding: 15px;
  background: #FB8E56;
  color: #fff;
  border: none;
  border-radius: 1px;
  cursor: pointer;
  margin-right: 276px;
}

.contact-info {
  width: 700px;
  height: 775px;
  padding: 0;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-left: -100px;
  justify-content: space-between;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 40px;
  margin-bottom: -10px;
  width: 100%;
  padding: 20px 10px;
  height: 400px;
  margin-top: -130px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  width: 280px;
  gap: 12px;
  font-size: 16px;
  margin-top: 20px;
  
}

.info-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.info-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-content {
  text-align: center;
  width: 100%;
  padding: 10px 0 10px 0;
}

.info-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}

.info-content p {
  color: #ffffff;
  line-height: 1.5;
  padding: 0 10px;
}

.map-container {
  width: 700px;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: -20px;
  margin-left: 0;

 
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* CONTACT responsive kuralları alta taşındı */

footer {
  width: 100%;
  background-color: #002944;
  padding: 60px 0 0 0;
  margin: 0;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 169px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1;
}

.footer-section:nth-child(1) {
  flex: 2;
}

.footer-section:nth-child(2),
.footer-section:nth-child(3) {
  flex: 1;
}

.footer-section:nth-child(4) {
  flex: 0.8;
}

.footer-section h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-section p,
.footer-section a {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  margin: 8px 0;
  display: block;
  line-height: 1.5;
}

.footer-section a:hover {
  color: #FB8E56;
}

.footer-bottom {
  width: 100%;
  background-color: #003D5C;
  margin-top: 40px;
}

.footer-bottom-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 15px 169px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-content span {
  color: #ffffff;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
} 
/* CONTACT + FOOTER mobil kuralları alta taşındı */


/* Bildirim Kutusu Stilleri */
.notification-box {
    display: none; /* Varsayılan olarak gizli */
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    opacity: 0; /* Başlangıçta şeffaf */
    /* Animasyon için geçiş */
    transition: opacity 0.5s ease-in-out, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.notification-box.show {
    opacity: 1; /* Görünür olduğunda tamamen opak */
}

.notification-box.success {
    background-color: #d4edda; /* Açık yeşil arka plan */
    color: #155724; /* Koyu yeşil metin */
    border: 1px solid #c3e6cb;
}

.notification-box.error {
    background-color: #f8d7da; /* Açık kırmızı arka plan */
    color: #721c24; /* Koyu kırmızı metin */
    border: 1px solid #f5c6cb;
}

/* GENEL 1024/480/orientation kuralları alta taşındı */


/* 768px ve altı düzenleme */

/* ===== Konsolide Responsive (üstten taşındı) ===== */
@media (max-width: 1441px) {
  .contact-section {
    width: 100%;
    height: 1111.7734375px;
    gap: 64px;
    padding-top: 96px;
    padding-right: 10px;
    padding-bottom: 96px;
    padding-left: 169px;
    background-image: url(images/arka_plan.png);
    background-size: auto;
    position: relative;
    color: white;
}
  .container { position: relative; left: 50%; transform: translateX(-50%); }
  .contact-container { gap: 200px; margin-left: 0; padding-top: 30px; }
  .contact-form { margin-right: 0;.contact-form {
    width: 491px;
    height: 775px;
    gap: 36px;
    padding: 32px;
    background: #002944;
    display: flex
;
    flex-direction: column;
    margin-right: -100px;
    margin-top: -80px;
} }
  .contact-info { width: 100%; max-width: 700px; margin-left: 0; height: auto; }
  .info-grid { height: auto; gap: 50px 30px; }
}



@media (max-width: 1024px) {
  /* About */
  .about-section { padding: 60px 40px; }
  .about-title { font-size: 48px; }
  .about-eskoyazisi, .about-eskoyazisi2, .about-paragraph { font-size: 20px; }
  .about-image { height: 300px; }



  /* Video */
  .video-blok { height: 600px; }
  .svg-arka-plan { height: 600px; }
  .video-cercevesi { left: 10%; width: 80%; height: 550px; }
  .video-elementi { width: 100%; height: auto; top: 300px; }

  /* Genel */
  .container { max-width: 1000px; padding: 0 30px; position: relative; left: 50%; transform: translateX(-50%); }
  .navbar { padding: 0 30px; }
  .hero { padding: 60px 40px; }
  .hero-title { font-size: 48px; }
  .hero-description { font-size: 20px; }
  .scroll-section { padding: 30px 40px; }
  .hizmetler-alani { padding: 60px 40px; }
  .Yayin_basligi { margin-left: 40px; font-size: 48px; }
  .publication-section { padding: 60px 40px; }
  
  
}

@media (max-width: 480px) {
  .container { width: 100%; padding: 0; margin: 0 auto; }
  .navbar { padding: 10px 15px; }
  .logo { text-align: center; width: 100%; }
  .logo img { width: 160px; height: 160px; display: inline-block; margin: 0; }
  .btn-secondary, .btn-primary { padding: 0 8px; font-size: 10px; height: 28px; }
  .hamburger { width: 28px; height: 28px; }
  .hamburger span { width: 20px; }
  .hero-title { font-size: 28px; }
  .hero-description { font-size: 14px; margin-bottom: 5px; }
  .hero-left { margin-bottom: 0; }
  .hero-right { margin-top: -15px; }
  .about-title { font-size: 24px; }
  .hizmetler-baslik { font-size: 35px; }
  .Yayin_basligi { font-size: 24px; }
  .contact-title { font-size: 24px; }
  .card { min-width: 250px; height: 320px; }
  .card img { height: 180px; }
}
@media (max-width: 768px) {

  /* ===== CONTAINER VE GENEL DÜZEN ===== */
  .container { 
    width: 100%; 
    margin: 0 auto; 
    padding: 0; 
    box-sizing: border-box; 
  }

  /* ===== NAVBAR VE LOGO ===== */
  .navbar {
    padding: 12px 16px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1001;
    width: 100%;
    overflow: visible;
    background: white;
  }
  
  /* Logo navbar içinde ortalı - 768px altında */
  .logo { 
    width: 100%;
    text-align: center;
    order: 1;
    margin: 0;
    padding: 0;
  }
  
  /* Logo img - 768px altında */
  .logo img {
    width: 180px; 
    height: 180px; 
    display: inline-block;
    margin: 0;
  }
  
  /* Butonlar logo altında yan yana */
  .nav-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    flex-wrap: nowrap;
    height: 50px;
    padding: 0 15px;
    order: 2;
  }
  
  /* aynı yükseklikte hizalama için satır yüksekliği sabitle */
  .btn-secondary, .btn-primary, .hamburger { 
    line-height: 28px; 
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* İletişime Geç butonu */
  .btn-secondary { 
    height: 32px; 
    padding: 0 12px; 
    font-size: 11px; 
    margin: 0;
    flex-shrink: 0;
    border-radius: 4px;
 
    border: 1.33px solid #002944;
    background-color: transparent;
    color: #002944;
    text-decoration: none;
    font-weight: 600;
    
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.3s ease;
    margin: 0;



  }
  
  /* Çeviri dropdown */
  .dropdown { 
    height: 32px; 
    font-size: 11px; 
    margin: 0;
    flex-shrink: 0;
  }
  
  /* Çeviri butonunu küçült */
  .dropdown > button,
  .dropdown > a {
    height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }
  
  .btn-primary { 
    height: 32px; 
    padding: 0 12px; 
    font-size: 11px; 
    margin: 0; 
    width: auto; 
    min-width: 80px;
    flex-shrink: 0;
    border-radius: 4px;


    
    background-color: #002944;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10.67px;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
    margin: 0;
    font-family: 'Archivo', sans-serif;


  }
  
  /* Dropdown menü - buton genişliğinde */
  .dropdown-menu { 
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #002944;
    min-width: 116px;
    display: none;
    z-index: 9999;
    margin-top: 2px;
    border-radius: 0px;
    width: 100%;
    min-width: 80px;
  }
  
  /* Menü açıldığında dropdown düzeni */
  body.menu-open .dropdown-menu { 
    position: absolute; 
    margin-top: 32px;
    width: 100%;
    left: 0;
    z-index: 1600;
  }
  
  /* Hamburger menü */
  .hamburger { 
    width: 64px;
    height: 64px; 
    padding: 6px 0; 
    z-index: 1002; 
    gap: 10px; 
    
    flex-shrink: 0;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  .hamburger span { 
    
    transition: all 0.3s ease;
    background-color: #002944;
    border-radius: 0;
    width: 64px;
    height: 3px; 
    border: 4px;
  }


  /* ===== MOBILE MENU - sabit konumda navbar altında ===== */
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 350px;
    min-height: 250px;
    background: linear-gradient(135deg, #00345D 0%, #004080 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    border-radius: 8px;
    
    margin-top: 10px;
  }

  .mobile-menu.open { 
    opacity: 1; 
    transform: translateX(-50%) translateY(0); 
    pointer-events: auto; 
  }
  /* Menü açıldığında satır yapısı korunur - çeviri aşağı kaymaz */
  body.menu-open .nav-buttons { 
    flex-wrap: nowrap;
    height: 50px;
    gap: 8px;
    justify-content: center;
  }
  
  /* Çeviri butonu sabit kalır */
  body.menu-open .dropdown {
    height: 32px;
    position: relative;
  }

  /* Menü açıldığında kayma iptal edildi */

  .hamburger.open span:nth-child(1) { 
    transform: translateY(10px) rotate(45deg); 
  }
  
  .hamburger.open span:nth-child(2) { 
    opacity: 0; 
    transform: scaleX(0); 
  }
  
  .hamburger.open span:nth-child(3) { 
    transform: translateY(-10px) rotate(-45deg); 
  }

  /* Çizgiler yerine X görünümü için kalınlığı artır ve köşe yuvarla */
  .hamburger.open span { 
    height: 3px; 
    border-radius: 2px;
    background-color: #002944;
  }



  /* ===== HERO SECTION ===== */
  .hero {
    flex-direction: column;
    height: auto;
    margin-top: 120px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    min-height: unset;
  }

  .hero-left {
    max-width: 100%;
    
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 20px;
    margin-bottom: 8px;
    ;
  }

  .hero-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .hero-right {
    
    margin-bottom: -10px;
  }
  
  .hero-right img {
    max-width: 100%;
    height: auto;
    margin: 0;
    
  }

  .scroll-section {
    margin-top: 20px;
    text-align: center;
  }

  .scroll-label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .image-button img {
    width: 40px;
    height: 40px;
  }

  /* ===== ABOUT SECTION ===== */
  .about-section {
    padding: 40px 20px;
  }

  .about-title {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
  }

  .about-text-block {
    margin-bottom: 20px;
  }

  .about-eskoyazisi,
  .about-eskoyazisi2 {
    font-size: 20px;
    line-height: 1.6;
  }

  .about-image {
    width: 100%;
    height: 200px;
    margin: 0 auto 20px auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
  }

  /* ===== TEAM SECTION 768px ALTI - YENİ DÜZEN ===== */
  .team-container { 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 10px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .team-member { 
    width: calc(100% - 20px);
    max-width: 500px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }
  
  .team-card {
    width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  
  .photo-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .photo-container img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
  }

  .info-hover {
    width: 100%;
    padding: 20px;
    text-align: center;
    background: rgb(0, 52, 93);
  }
  
  .name {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin: 10px 0 5px 0;
    line-height: 1.2;
  }
  
  .title {
    font-size: 16px;
    color: rgb(251, 142, 86);
    margin: 0 0 15px 0;
    line-height: 1.3;
  }

  .info-item {
    flex-direction: column;   /* İkon üstte, yazı altta */
    align-items: center;      /* Ortala */
    text-align: center;       /* Yazıyı ortala */
    gap: 8px;                  /* İkon ile yazı arası boşluk */
    margin-top: 15px;          /* Öğeler arası boşluk */
    width: auto;               /* 280px sabit genişlik kaldırıldı */
    padding: 10px 0; 
    font-size: 14px;         
  }
  @media (max-width: 375px) {
    .info-hover { padding: 16px; }
    .info-item  { font-size: 11px; }
    .name       { font-size: 20px; }
    .title      { font-size: 18px; }
  }
  
  .bio-expanded {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
    display: none;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
  }

  /* Yukarıdaki team mobil kuralları geçerli */



  .bio-container {
    flex-direction: column;
    padding: 5px;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
  }

  .bio-expanded {
    width: 100%;
    font-size: 15px;
    padding: 15px;
    box-sizing: border-box;
    word-wrap: break-word;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  /* ===== TEAM PARAGRAPH ===== */
  .team-paragraph {
    font-size: 17px;
    line-height: 1.6;
    margin: 20px 0;
    text-align: center;
    padding: 0 20px;
  }

  /* ===== VIDEO SECTION ===== */
  .video-blok {
    height: auto; /* mobilde sabit yüksekliği kaldır */
    aspect-ratio: 16 / 9; /* yüksekliği otomatik oranla belirle */
  }

  .svg-arka-plan {
    opacity: 0.25;
    z-index: 1;
  }

  .video-elementi {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* Mobil boyut */
    width: 90%;
    max-width: 360px;
    
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }

  .video-elementi video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* taşmadan sığsın */
  }
  

  /* ===== HİZMETLER SECTION ===== */
  /* ≤768px mobil düzen */

  .hizmetler-alani {
    height: auto;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
  }

  .hizmetler-baslik {
    margin: 0 auto 24px;
    text-align: center;
  }

  .hizmetler-icerik {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    flex: 1;
    padding-left: 0;
    margin-left: 0;
  }

  .hizmetler-sol,
  .hizmetler-sag {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-left: 0;
    margin-left: 0;
  }

  .hizmetler-yazi {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border-bottom: 2px solid #FB8E56;
    overflow-wrap: break-word;
    white-space: normal;
    justify-content: center;
  }

  .btn-incele {
    font-size: 12px;
    padding: 8px 16px;
    margin-top: 10px;
  }



  /* ===== YAYINLAR SECTION ===== */
  /* Kapsamlı mobile uyarlama - tasarım korunarak */
  
  .Yayin_alani {
    padding: 32px 16px; /* Daha kompakt */
    height: auto; /* Sabit yükseklik kaldır */
  }

  .Yayin_basligi {
    font-size: 30px; /* Biraz küçült */
    margin-bottom: 20px; /* Daha az boşluk */
    margin-top: -10px; /* Yukarı çıkart */
    text-align: center;
  }

  .publication-section {
    padding: 16px; /* Daha kompakt */
  }

  .slider-container {
    max-width: 100%;
    height: auto; /* Sabit yükseklik kaldır */
    overflow: visible ;
    margin-top: 0px;
  }

  .slider {
    gap: 12px; /* Kartlar arası boşluk */
    padding: 0 8px; /* Yan boşluklar */
    scroll-snap-type: x mandatory; /* Kart kart geçiş */
    scroll-behavior: smooth; /* Yumuşak geçiş */
  }

  .card {
    min-width: 280px; /* Mobile için ideal boyut */
    max-width: 320px; /* Max genişlik */
    height: 350px; /* Sabit yükseklik korundu */
    margin: 0 auto; /* Ortala */
    flex: 0 0 calc(50% - 6px); /* 768px'e kadar 2 kart */
    scroll-snap-align: start; /* Kart kart geçiş için */
    justify-content: center;
  }

  .card img {
    width: 100%; /* Tam genişlik */
    height: 180px; /* Optimize edilmiş yükseklik */
    object-fit: cover; /* Orantılı sığdır */
  }

  .card-title {
    font-size: 10px;
    margin-bottom: 10px;
    padding: 0px;
    line-height: normal;
    
    
  }

  .card-button {
    font-size: 12px;
    padding: 8px 16px;
    align-items: center;
    display: flex;
    

  }

  .slider-button {
    width: 32px; /* Küçültüldü */
    height: 32px;
    bottom: 10px; /* Alt kenara yakın */
  }

  .slider-button.left {
    left: 8px; /* Kenara yakın */
  }

  .slider-button.right {
    right: 8px; /* Kenara yakın */
  }

  .slider-button img {
    width: 18px; /* Uyumlu boyut */
    height: 18px;
  }

  /* 425px altı - sadece 1 kart */
  @media (max-width: 425px) {
    .card {
      flex: 1 1 100%; /* Tek kart tam genişlik */
      width: 100%;
      min-width: 280px; /* Min sınır */
      margin: 0 auto;
    }
    
    .slider {
      padding: 0 20px; /* Daha fazla yan boşluk */
      scroll-snap-type: x mandatory; /* Kart kart geçiş */
    }
    
    .card {
      scroll-snap-align: center; /* Her kart ortada dursun */
    }
    
    /* 425px altında card title daha büyük */
    .card-title {
      font-size: 14px !important; /* Daha büyük font */
      line-height: 1.4;
      padding: 8px 16px;
      font-weight: 600;
    }
  }

  .hepsini-gor-container {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    margin-left: 0px;
  }

  .primary-button {
    font-size: 14px;
    padding: 10px 20px;
    margin: 0 auto; /* Ortalı konumlandırma */
    display: block; /* Block element olarak ortala */
    width: auto; /* Sabit genişlik */
    justify-content: center;
    
  }

  .email-container {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px; /* Daha aşağı konumlandır */
  }

  .email-input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }

  .subscribe-button {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    justify-content: center;
    margin-left: 0px;
    
  }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    padding: 40px 20px;
    height: auto;
    background-size: cover;
    background-position: center;
  }

  .contact-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    margin-left: 0;
    
    box-sizing: border-box;
  }

  .contact-container {
    flex-direction: column;
    gap: 30px;
    margin-left: 0;
    padding-top: 0;
    align-items: center;
    width: 100%;
    display: flex;               /* flex-direction yazmışsın; display'i garanti edelim */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .contact-form {
    width: 80%;
    
    height: auto;
    padding: 20px;
    margin: 0;
    box-sizing: border-box;
  }

  .contact-baslik {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    margin-left: 0;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    padding: 12px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }

  .contact-form textarea {
    height: 100px;
    resize: vertical;
  }

  .contact-form button {
    width: 100%;
    max-width: 150px;
    margin: 10px auto 0 auto;
    display: block;
    padding: 12px;
    font-size: 14px;
  }

  .contact-info {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: auto;
    gap: 30px;
    margin: 0 auto;
  }

  .info-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
  }

  .info-item {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    margin: 0 auto;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px auto;
    flex-shrink: 0;
  }

  .info-content {
    width: 100%;
    text-align: center;
  }

  .info-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
  }

  .info-content p {
    font-size: 14px;
    padding: 0 5px;
    text-align: center;
    word-wrap: break-word;
    line-height: 1.4;
  }

  .map-container {
    width: 100%;
    max-width: 100%;
    height: 250px;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
  }

  

  /* ===== FOOTER ===== */
  footer {
    padding: 40px 0 0 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    padding: 0 20px;
    max-width: 100%;
  }

  .footer-section {
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .footer-section:nth-child(1),
  .footer-section:nth-child(2),
  .footer-section:nth-child(3),
  .footer-section:nth-child(4) {
    flex: none;
    width: 100%;
  }

  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
  }

  .footer-section p,
  .footer-section a {
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
    text-align: center;
    color: #ffffff;
    word-wrap: break-word;
    padding: 0 5px;
  }

  .footer-section a:hover {
    color: #FB8E56;
    text-decoration: underline;
  }

  .footer-bottom {
    margin-top: 30px;
    padding: 20px 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 0 20px;
    align-items: center;
  }

  .footer-bottom-content span {
    font-size: 13px;
    text-align: center;
    margin-bottom: 10px;
  }

  .social-links {
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }

  .social-links img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
  }

  .social-links img:hover {
    transform: scale(1.1);
  }

  /* ===== LANDSCAPE ORIENTATION ===== */
  @media (orientation: landscape) {
    .hero {
      min-height: 100vh;
      flex-direction: row;
      gap: 20px;
    }

    .hero-left {
      max-width: 50%;
    }

    .hero-right {
      max-width: 50%;
    }

    .hero-title {
      font-size: 28px;
    }

    .hero-description {
      font-size: 14px;
    }
  }
}
