.slider-dots {  position: absolute;  bottom: 40px;  left: 50%;  transform: translateX(-50%);  z-index: 10;  display: flex;  gap: 12px;}.dot {  width: 12px;  height: 12px;  border-radius: 50%;  border: 2px solid rgba(255, 255, 255, 0.5);  cursor: pointer;  transition: 0.3s;  background: transparent;}.dot:hover {  background: rgba(255, 255, 255, 0.5);}.dot.active {  background: var(--primary);  border-color: var(--primary);  transform: scale(1.3);}/* =========================================           1. GENEL AYARLAR & RESET (CORE CSS)           ========================================= */:root {  --primary: #354cc5;  --primary2: #00c2ff;  /* Ana Turuncu Renk */  --dark: #111111;  --text-dark: #1a1a1a;  --text-gray: #666666;  --white: #ffffff;  --font-main: "Montserrat", sans-serif;  --container-width: 1200px;  --transition: all 0.4s ease;}* {  margin: 0;  padding: 0;  box-sizing: border-box;  outline: none;}html {  scroll-behavior: smooth;}body {  font-family: var(--font-main);  color: var(--text-dark);  line-height: 1.6;  overflow-x: hidden;}a {  text-decoration: none;  color: inherit;  transition: var(--transition);}ul {  list-style: none;}img {  max-width: 100%;  display: block;}.container {  max-width: var(--container-width);  margin: 0 auto;  padding: 0 20px;  position: relative;}/* Butonlar */.btn {  display: inline-flex;  align-items: center;  padding: 14px 25px;  font-weight: 700;  text-transform: uppercase;  font-size: 13px;  border: 2px solid transparent;  transition: var(--transition);  cursor: pointer;  gap: 10px;}.btn-primary {  background: var(--primary);  color: var(--white);}.btn-primary:hover {  background: transparent;  color: var(--primary);  border-color: var(--primary);}.btn-white {  background: var(--white);  color: var(--text-dark);}.btn-white:hover {  background: var(--primary);  color: var(--white);}.btn-link {  padding: 10px 0;  color: var(--dark);  border-bottom: 1px solid #ddd;}.btn-link:hover {  color: var(--primacry);  border-color: var(--primary);}.btn i {  margin-left: 10px;}.btn svg {  width: 20px;  height: 20px;  fill: #fff;}.btn:hover svg {  fill: var(--primary);}.btn-white svg {  fill: var(--primary);}/* =========================================           2. HEADER & NAVBAR CSS           ========================================= *//* --- LİSTE YAPISI --- */.header-top-dil {  list-style: none;  padding: 0;  margin: 0;  display: flex;  align-items: center;  gap: 20px;  /* Biraz daha geniş boşluk */  margin-left: 25px;}/* --- LİNK TASARIMI --- */.header-top-dil li a.diil {  text-decoration: none;  display: flex;  align-items: center;  gap: 10px;  padding: 5px 0;  /* Arka plan olmadığı için yan padding yok */  position: relative;  opacity: 0.7;  /* Varsayılan olarak hafif soluk */  transition: all 0.3s ease;}/* --- YAZI STİLİ --- */.header-top-dil li a.diil span {  font-size: 12px;  font-weight: 500;  color: #fff;  /* Koyu zemin için beyaz yazı */  letter-spacing: 0.5px;}/* --- BAYRAK İKONU --- */.header-top-dil .icon {  width: 24px;  height: 24px;  display: flex;  align-items: center;  justify-content: center;  border-radius: 50%;  border: 2px solid rgba(255, 255, 255, 0.2);  /* Bayrak etrafında ince halka */  transition: 0.3s;  overflow: hidden;  display: none !important;}.header-top-dil img {  width: 100% !important;  height: 100% !important;  object-fit: cover;}/* --- HOVER EFEKTLERİ --- */.header-top-dil li a.diil:hover {  opacity: 1;  /* Tam görünürlük */  transform: translateX(3px);  /* Hafif sağa kayma */}.header-top-dil li a.diil:hover .icon {  border-color: #fff;  /* Halka beyazlaşır */  transform: scale(1.1);  /* Bayrak büyür */}/* İsteğe bağlı: Aktif dilin altını çizme efekti */.header-top-dil li a.diil::after {  content: "";  position: absolute;  bottom: -2px;  left: 0;  width: 0;  height: 1px;  background: #fff;  transition: width 0.3s;}.header-top-dil li a.diil:hover::after {  width: 100%;}a.WhatsApp1 {  display: flex;  font-size: 18px;  background: #2eb843;  font-weight: 600;  width: 51px;  height: 51px;  position: fixed;  bottom: 20px;  left: 20px;  border-radius: 50%;  -webkit-transition: all 0.1s ease-out 0s;  -moz-transition: all 0.1s ease-out 0s;  -ms-transition: all 0.1s ease-out 0s;  -o-transition: all 0.1s ease-out 0s;  transition: all 0.1s ease-out 0s;  color: #fff;  align-items: center;  justify-content: center;  animation: whatsapp infinite 2s linear;  z-index: 9999;}@keyframes whatsapp {  0% {    box-shadow: 0 0 0 0 #2eb843;  }  50% {    box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);  }  100% {    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);  }}.WhatsApp1 svg {  width: 21px;  height: 21px;  fill: #fff;}.top-bar {  background: #0a0a0a4f;  color: #aaa;  padding: 10px 0;  font-size: 12px;  border-bottom: 1px solid rgba(255, 255, 255, 0.1);  backdrop-filter: blur(10px);  -webkit-backdrop-filter: blur(10px);  position: absolute;  top: 0;  z-index: 999;  width: 100%;}.top-bar .container {  display: flex;  align-items: center;  justify-content: space-between;}.top-bar .container div {  display: flex;  align-items: center;}.top-bar .container ul {  display: flex;  align-items: center;}.top-bar .container ul li {  display: flex;  align-items: center;}.top-bar .header-top-dil li:first-child {  display: block !important;}.top-bar .container ul li:first-child {  display: none;}.top-bar .container ul li:first-child:before,.top-bar .container ul li:nth-child(2):before {  display: none;}.top-bar .container ul li::before {  content: "";  position: relative;  display: block;  width: 1px;  height: 12px;  background: #ffffff29;  list-style: none;  margin: 0px 10px;}.top-bar .container ul li {  list-style: none;}.top-bar .container ul li a {  display: block;  font-size: 12px;  font-weight: 500;  color: #fff;  position: relative;  opacity: 0.7;  transition: all 0.3s ease;}.top-bar .container ul li a:hover {  opacity: 1;  transition: all 0.3s ease;}.top-bar .container ul li a::after {  content: "";  position: absolute;  bottom: -2px;  left: 0;  width: 0;  height: 1px;  background: #fff;  transition: width 0.3s;}.top-bar .container ul li a:hover::after {  width: 100%;}.top-bar li {  list-style: none;}.top-bar svg {  width: 13px;  height: 13px;  fill: #aaa;  margin-right: 8px;}header {  position: absolute;  top: 40px;  left: 0;  width: 100%;  z-index: 1000;  padding: 20px 0;  transition: all 0.4s;}header.sticky {  position: fixed;  top: 0;  background: rgba(17, 17, 17, 0.95);  backdrop-filter: blur(10px);  padding: 15px 0;  border: none;  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);}header .nav-wrapper {  display: flex;  justify-content: space-between;  align-items: center;}header .logo {  font-size: 26px;  font-weight: 800;  color: var(--white);  display: flex;  align-items: center;  gap: 10px;}header .logo img {  width: auto;  height:37px;}header .logo i {  color: var(--primary);}header .navbar {  margin-left: auto;}header .navbar ul {  display: flex;  gap: 20px;}header .navbar ul li:nth-child(1) {}header .navbar a {  color: #fff;  font-weight: 600;  font-size: 13px;  text-transform: uppercase;}header .navbar a:hover {  color: var(--primary2);}/* 1. Üst Menü Elemanını Konumlandırma */header .navbar ul li {  position: relative;}/* 2. Alt Menü (Dropdown) Kutusu */header .navbar ul li ul.alt-menu {  /* Başlangıçta Gizle (Animasyon için) */  opacity: 0;  visibility: hidden;  transform: translateY(15px);  /* Hafif aşağıdan gelsin */  transition: all 0.3s ease;  /* Konum ve Boyut */  position: absolute;  top: 100%;  left: 0;  min-width: 240px;  /* Genişlik */  z-index: 999;  /* Renk ve Tasarım */  background: #ffffff;  /* Arka plan BEYAZ */  border-top: 4px solid #354cc5;  /* Üst çizgi MAVİ */  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);  /* Hafif gölge */  border-radius: 0 0 5px 5px;  padding: 0;  /* İç boşluğu sıfırla */  display: block;}/* 3. Mouse Üzerine Gelince Görünme */header .navbar ul li:hover ul.alt-menu {  opacity: 1;  visibility: visible;  transform: translateY(0);}/* 4. Alt Menü Maddeleri (li) */header .navbar ul li ul.alt-menu li {  display: block;  margin: 0;  padding: 0;  border-bottom: 1px solid #f0f0f0;  /* Maddeler arası çok açık gri çizgi */}/* Son maddenin alt çizgisini kaldır */header .navbar ul li ul.alt-menu li:last-child {  border-bottom: none;}/* 5. Link Tasarımı (a) */header .navbar ul li ul.alt-menu li a {  display: block;  padding: 10px 20px;  /* İç boşluk */  color: #333;  /* Normal yazı rengi koyu gri (okunabilirlik için) */  text-decoration: none;  font-size: 12px;  font-weight: 500;  transition: all 0.2s ease-in-out;}/* 6. Hover Efekti (Üzerine Gelince) */header .navbar ul li ul.alt-menu li a:hover {  background-color: #354cc5;  /* Arka plan MAVİ olsun */  color: #ffffff;  /* Yazı rengi BEYAZ olsun */  padding-left: 25px;  /* Yazı hafif sağa kaysın */}header .header-btn {  margin-left: 20px;}header .mobile-toggle {  display: none;  color: white;  font-size: 24px;  cursor: pointer;}@media (max-width: 992px) {  :root {    --container-width: 100%;  }  /* Navbar Mobile */  .mobile-toggle {    display: block;    z-index: 1002;  }  .navbar {    position: fixed;    top: 0;    right: -100%;    width: 80%;    height: 100vh;    background: #111;    padding: 80px 30px;    transition: 0.4s;    z-index: 1001;  }  .navbar.active {    right: 0;  }  .navbar ul {    flex-direction: column;  }  header .logo img {    height: 30px;  }}@media (max-width: 1024px) {  header .header-btn svg {    display: none;  }  header .navbar ul {    gap: initial;    margin-top: 80px;  }}/* Masaüstü varsayılan ayarlar */.menu-toggle {  display: none;  /* Masaüstünde butonu gizle */  cursor: pointer;  background: none;  border: none;  flex-direction: column;  gap: 5px;}.menu-toggle .bar {  width: 25px;  height: 3px;  background-color: #fff;  display: block;  transition: 0.3s;}/* Mobil Ayarlar (768px ve altı için) */@media (max-width: 768px) {  /* Menü butonunu görünür yap */  .menu-toggle {    display: flex;    z-index: 1001;    /* Menünün üzerinde dursun */    margin-right: -10px;  }  /* Diğer mobile-toggle divini gizle (çakışmaması için) */  .mobile-toggle {    display: none !important;  }  /* Navbar'ı mobilde gizle ve şekillendir */  .navbar {    position: fixed;    top: 0;    right: -100%;    /* Ekranın sağında gizli başlasın */    width: 250px;    /* Menü genişliği */    height: 100vh;    background-color: #fff;    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);    flex-direction: column;    padding-top: 60px;    transition: 0.3s ease-in-out;    z-index: 1000;    overflow-y: auto;  }  .navbar ul {    flex-direction: column;    width: 100%;  }  .navbar ul li {    width: 100%;    text-align: left;    padding: 10px 20px;    border-bottom: 1px solid #eee;  }  .navbar ul li a {    color: white;  }  /* JavaScript ile 'active' sınıfı eklendiğinde menü gelsin */  .navbar.active {    right: 0;    /* Ekrana girsin */  }  /* Alt menüleri mobilde düzenle */  .navbar .alt-menu {    position: static;    box-shadow: none;    display: none;    /* Tıklayınca açılması için JS gerekebilir, şimdilik gizli */    padding-left: 20px;  }  .navbar ul li:hover .alt-menu {    display: block;  }}@media (max-width: 1024px) {  header .navbar ul li:hover ul.alt-menu {    display: none;  }}/* Header sticky olduğunda (aşağı inildiğinde) */header.sticky {  position: fixed;  top: 0;  left: 0;  width: 100%;  background: #000000;  /* Tam Siyah Arka Plan */  padding: 15px 0;  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);  z-index: 1000;  /* Aşağı doğru kayarak gelmesi için animasyon (Opsiyonel) */  animation: slideDown 0.3s ease-out;}@keyframes slideDown {  from {    transform: translateY(-100%);  }  to {    transform: translateY(0);  }}/* --- YENİ EKLENEN WRAPPER STİLİ --- */#site-header-wrapper {  position: absolute;  /* Başlangıçta slider üzerinde dursun */  top: 0;  left: 0;  width: 100%;  z-index: 1000;  transition:    background-color 0.4s ease,    transform 0.4s ease;}/* Scroll yapıldığında (Sticky Class'ı JS ile eklenince) */#site-header-wrapper.sticky {  position: fixed;  /* Ekrana sabitle */  background: rgba(17, 17, 17, 0.98);  /* Koyu Arka Plan */  backdrop-filter: blur(10px);  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);  animation: slideDown 0.3s ease-out;  /* Yukarıdan kayarak gelme efekti */}/* --- MEVCUT CSS DÜZELTMELERİ (Çakışmaları önlemek için) --- *//* Top bar artık wrapper içinde olduğu için absolute olmamalı */.top-bar {  position: relative;  /* Absolute'u kaldırdık */  top: auto;  background: transparent;  /* Wrapper rengi alacağı için transparan */  border-bottom: 1px solid rgba(255, 255, 255, 0.05);}/* Header artık wrapper içinde olduğu için absolute olmamalı */header {  position: relative;  /* Absolute'u kaldırdık */  top: auto;  /* 40px boşluğu kaldırdık, çünkü top-bar zaten yer kaplıyor */  padding: 15px 0;  background: transparent;  /* Wrapper rengi alacağı için transparan */  box-shadow: none;  /* Gölgeyi wrapper'a taşıdık */}/* Eski header.sticky kodlarını geçersiz kılıyoruz çünkü artık wrapper sticky oluyor */header.sticky {  position: relative;  background: transparent;  box-shadow: none;  animation: none;  padding: 15px 0;}/* Animasyon Tanımı */@keyframes slideDown {  from {    transform: translateY(-100%);  }  to {    transform: translateY(0);  }}/* --- 1. Wrapper ve Sticky Ayarları --- */#site-header-wrapper {  position: absolute;  top: 0;  left: 0;  width: 100%;  z-index: 1000;  /* Wrapper katmanı */  transition:    background-color 0.4s ease,    transform 0.4s ease;}#site-header-wrapper.sticky {  position: fixed;  background: rgba(17, 17, 17, 0.98);  backdrop-filter: blur(10px);  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);  animation: slideDown 0.3s ease-out;}/* Sticky iken header ve top-bar şeffaf olsun, rengi wrapper versin */#site-header-wrapper.sticky .top-bar,#site-header-wrapper.sticky header {  background: transparent;  box-shadow: none;}@keyframes slideDown {  from {    transform: translateY(-100%);  }  to {    transform: translateY(0);  }}/* --- 2. Mobil Menü (Navbar) Kritik Ayarlar --- */@media (max-width: 992px) {  /* Wrapper sticky olduğunda navbar onun üstüne çıkmalı */  .navbar {    position: fixed;    top: 0;    right: -100%;    /* Gizli konum */    width: 80%;    /* Menü genişliği */    max-width: 300px;    height: 100vh;    background: #111;    /* Menü arkaplanı */    z-index: 9999 !important;    /* Wrapper'dan daha üstte olmalı */    transition: right 0.4s ease;    /* Kayma efekti */    padding-top: 60px;    overflow-y: auto;    display: flex;    /* Flex yapısı */    flex-direction: column;    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);  }  .navbar.active {    right: 0 !important;    /* Açık konum */  }  /* Menü butonu görünürlüğü */  .menu-toggle {    display: flex !important;    z-index: 10000;    /* En üstte buton olmalı */    position: relative;  }  /* Eski toggle elementini gizle */  .mobile-toggle {    display: none !important;  }}.mobilicin {  display: none !important;}@media (max-width: 1024px) {  .mobilicin {    display: block !important;  }}html[lang="en"] header .navbar a {  font-size: 12px;  font-weight: 600;}html[lang="en"] header .navbar ul {  display: flex;  gap: 14px;}html[lang="en"] .btn {  padding: 14px 15px;  font-size: 12px;}@media(max-width:1024px){  a.WhatsApp1{    bottom: 60px;  }}