/* Genel Ayarlar ve Resetler */
:root {
  --primary-color: #2e86de; /* Mavi tonu, renovasyon ve güveni çağrıştırır */
  --secondary-color: #f39c12; /* Vurgu rengi, enerji ve dinamizm için */
  --text-color: #34495e; /* Koyu gri tonu */
  --light-text-color: #7f8c8d; /* Açık gri metin */
  --background-light: #f9f9f9; /* Açık arka planlar için */
  --white-color: #ffffff;
  --border-color: #ecf0f1;
}
/* Akıcı kaydırma için */
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white-color);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* =================================================== */
/* 1. ANNOUNCEMENT BAR (DUYURU ÇUBUĞU) STİLLERİ       */
/* =================================================== */
/* Anons Bar – Mavi Beyaz Tema ve Canlı Vurgu */
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  /* Mavi tonlarda degrade arka plan */
  background: linear-gradient(90deg, #0077cc, #33b5ff);
  color: #ffffff;

  padding: 8px 16px;
  width: 100%;
  min-height: 35px;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

  transition: opacity 0.1s ease;
  position: relative;
  z-index: 1001;
}

.announcement-bar:hover {
  background: linear-gradient(90deg, #0066b3, #2aa5e0);
}

/* Vurgu kelimeleri (yüzde, indirim, promosyon vs.) */
.announcement-bar .highlight {
  color: #ffeb3b; /* parlak sarı / altın sarısı ton */
  font-weight: bold;
}

/* İkon stili (emoji ya da grafik ikon olabilir) */
.announcement-bar .icon {
  font-size: 16px;
  opacity: 0.9;
}
.announcement-bar.hide {
  opacity: 0;
  visibility: hidden;
  /*alanınıdakapatır*/
  transition: 0;
}
.stat-item .stat-number {
  color: #ffa500; /* Turuncu */
  font-weight: 700;
}
/* ÖNEMLİ DEĞİŞİKLİK: Konteyneri sola hizalamak */
.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* max-width: 1200px;  <-- Bu satırı kaldırıyoruz */
  /* margin: 0 auto;     <-- Bu satırı kaldırıyoruz (Ortalamayı yapan buydu) */
  width: 100%; /* Sayfanın tamamını kapla */
  padding: 0 10px; /* Soldan ve sağdan boşluk bırakarak içeriğin kenara yapışmasını engelle */
}
/* Sol Grubu (İletişim + İstatistikler) */
.topbar-left-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* align-items: flex-start;  <-- Zaten varsayılanı bu, bu yüzden gerek yok */
  padding-right: 20px;
}
.topbar-left {
  display: flex;
  gap: 25px;
}
.topbar-right-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.topbar-stats {
  display: flex;
  gap: 35px;
}
/* ... Diğer stiller (topbar-left, topbar-stats, topbar-right-group vb.) aynı kalabilir. ... */
/* --- Header Stilleri --- */
.main-header {
  background-color: var(--white-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  position: sticky;
  left: 0;
  top: 35px;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s ease-in-out;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
}
/* 2. JS sınıfı eklendiğinde Header'ı en üste çek */
.main-header.scrolled {
  position: fixed; /* JS bu sınıfı eklediğinde fixed olacak */
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Küçük ekranlarda elemanların alt satıra geçmesini sağlar */
  gap: 15px; /* Elemanlar arası genel boşluk */
}
.logo {
  margin-right: 18px;
}
.logo img {
  max-height: 70px;
  width: auto;
  display: block;
}

.main-nav {
  flex-grow: 1; /* Navigasyonun mümkün olduğunca yer kaplamasını sağlar */
  text-align: center; /* Menü öğelerini ortalar (flex-grow ile) */
}

.main-nav .nav-list {
  display: flex;
  justify-content: center; /* Menü öğelerini yatayda ortalar */
  gap: 19px;
}

.nav-link {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  /* Toggle butonunun her zaman en sağda olması için */
  order: 3;
}

.contact-info .phone-number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.contact-info .phone-number:hover {
  color: var(--secondary-color);
}

.contact-info .phone-number svg {
  min-width: 20px;
  height: 20px;
  stroke: var(--primary-color);
  transition: stroke 0.3s ease;
}

.contact-info .phone-number:hover svg {
  stroke: var(--secondary-color);
}

/* Container */
.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Buton */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent; /* navbar ile uyumlu */
  color: white; /* navbar yazı rengi */
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
}

.lang-btn:focus {
  outline: none;
}

/* Bayrak (butonda) */
.lang-flag img {
  width: 24px;
  height: 16px;
  object-fit: cover;
}

/* Açılan menü */
.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #002b36; /* navbar rengi */
  color: white;
  border-radius: 4px;
  min-width: 140px;
  padding: 4px 0;
  list-style: none;
  margin: 0;
  z-index: 1000;
}

/* Gösterme sınıfı */
.lang-menu.show {
  display: block;
}

/* Menü öğeleri */
.lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
}

.lang-item img {
  width: 18px;
  height: 12px;
  object-fit: cover;
}

.lang-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Mobil Menü Butonu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  order: 10; /* Mobil görünümde sağa gitmesi için */
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-color);
}
/* Masaüstü: normal nav içindeki versiyon */
.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.mobile-lang-switcher {
  display: none; /* Bu kural medya sorgusu dışında olmalı */
}
/* --- Responsive Ayarlamalar (Tablet: Max-Width 992px) --- */
@media (max-width: 992px) {
  /* Orta boy ekranlar ve tabletler */
  .announcement-bar {
    display: none;
  }
  /* 1. Navigasyonun Temel Durumu (Gizli) */
  .main-nav {
    display: none;
  }
  .lang-dropdown {
    display: none;
  }

  /* 2. Menü Toggle Butonu */
  .menu-toggle {
    display: block; /* Hamburger menüyü göster */
    display: block;
    position: absolute;
    /* DİKEY ORTALAMA İÇİN DÜZELTME */
    top: 50%;
    transform: translate(
      -50%,
      -50%
    ); /* Hem yatay (-50%) hem dikey (-50%) ortalar */

    left: 50%; /* Yatayda ortalanması için */
    z-index: 3500;
  }
  /* Header Düzeni */
  .header-container {
    justify-content: space-between;
    gap: 0;
  }

  .logo {
    margin-right: auto;
  }

  .logo img {
    max-height: 55px;
  }

  /* Contact Info / Yeni Buton Düzenlemeleri */
  .contact-info {
    display: none;
  }

  .contact-info .phone-number {
    display: none;
  }
  /* Dil butonu sola değil sağa hizalansın diye */
  .mobile-lang-switcher {
    display: inline-flex !important;
    /* DÜZELTME: Ekranın sağ üstünde sabit kalması için FIXED olmalı */
    position: fixed;
    top: 25px;
    right: 15px;
    flex-direction: column;
    align-items: flex-end;
    z-index: 3001; /* En yüksek z-index, her şeyin üstünde kalmalı */
  }
  /* 3. Menü Açılma Durumu (MOBİL STİL KOPYALANDI) */
  .main-nav.active {
    display: block !important;

    position: absolute; /* Header'a göre konumlanır */
    top: 100%; /* Header'ın hemen altında başlar */

    /* ORTALAMA İÇİN: Hamburger ikonu ortalandığı için menüyü de ortalayalım */
    left: 50%;
    right: auto;
    transform: translateX(
      -50%
    ); /* Kendi genişliğinin yarısı kadar sola kaydır */

    width: 300px; /* Sabit genişlik */
    height: auto;

    background-color: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2500;

    overflow-y: auto;
    padding: 0; /* İç padding'i nav-list'e bırakıyoruz */
    text-align: center;
  }

  /* 4. Navigasyon Listesi ve Linkler */
  .main-nav.active .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 0;
  }

  .main-nav.active .nav-list li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .main-nav.active .nav-link {
    color: var(--text-color);
    font-size: 15px; /* Daha küçük puntolar */
    font-weight: 500;
    padding: 10px 20px;
    display: block;
    width: 100%;
  }

  .main-nav.active .nav-link:hover {
    background-color: var(--background-light);
  }

  .btn-header-cta {
    padding: 8px 15px;
    font-size: 13px;
  }

  .mobile-lang-switcher .lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 43, 54, 0.9); /* hafif şeffaf koyu arka plan */
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
  }
  .mobile-lang-switcher .lang-flag img {
    width: 24px;
    height: 16px;
    object-fit: cover;
  }
  .mobile-lang-switcher .lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #002b36;
    color: white;
    border-radius: 4px;
    min-width: 140px;
    padding: 4px 0;
    list-style: none;
    margin: 4px 0 0;
    z-index: 2001;
  }

  .mobile-lang-switcher .lang-menu.show {
    display: block;
  }

  .mobile-lang-switcher .lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
  }

  .mobile-lang-switcher .lang-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-lang-switcher .lang-item img {
    width: 18px;
    height: 12px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  
  /* Header her zaman tepede ve sabit yükseklik */
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px; /* isteğe göre 56-64px arası */
    z-index: 3000;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    box-sizing: border-box;
  }

  /* Header container: 3 sütunlu grid */
  .header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    gap: 8px;
  }

  /* Logo solda */
  .logo {
    justify-self: start;
    display: flex;
    align-items: center;
  }

  /* Hamburger ortada */
  .menu-toggle {
    justify-self: center;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
  }

  /* Dil seçici sağda */
  .mobile-lang-switcher {
    justify-self: end;
    display: flex;
    align-items: center;
  }
  .mobile-lang-switcher .lang-btn {
    display: flex;
    align-items: center; /* icon + caret dikey ortada */
    justify-content: center;
    height: 100%; /* header yüksekliğine uyumlu */
    padding: 0 6px; /* opsiyonel */
  }
  .mobile-lang-switcher .lang-flag img {
    vertical-align: middle;
    max-height: 40px; /* header yüksekliğine göre ayarla */
  }

  .mobile-lang-switcher .lang-caret {
    line-height: 1;
  }
  /* NAV ve contact info mobilde gizlensin */
  .main-nav,
  .contact-info {
    display: none !important;
  }

  /* Scroll sonrası boşluk kalmasın */
  .announcement-bar {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    visibility: hidden !important;
  }
  .main-nav .lang-dropdown {
    display: none !important;
  }
  .main-nav {
    display: none !important;
  }

  .main-nav.active {
    display: block !important;

    position: fixed; /* Header'a göre konumlanır */
    top: 60px; /* Header'ın hemen altında başlar */
    left: 50%;
    right: auto; /* Sağ ayarını iptal et */
    width: 250px; /* Menünün sabit bir genişliği olsun */
    height: auto;
    transform: translateX(-50%);

    background: var(--white-color); /* Açık renk arka plan */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2500;

    overflow-y: auto; /* İçerik taşarsa scroll çıksın */
  }

  .main-nav.active .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    text-align: center;
  }
  /* DÜZELTME: Navigasyon Linkleri */
  .main-nav.active .nav-list li {
    width: 100%;
    border-bottom: 1px solid #eee; /* Hafif bir ayırıcı */
  }
  .main-nav.active .nav-link {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    display: block;
    width: 100%;
  }
}

/* --- Hizmetler Bölümü Stilleri --- */
.services-section {
  background-color: var(--background-light); /* Açık gri arka plan */
  text-align: center; /* Başlık ve alt başlığı ortalar */
  padding-bottom: 80px;
}

.section-title {
  font-size: 38px;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 18px;
  color: var(--light-text-color);
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(280px, 1fr)
  ); /* Duyarlı grid yapısı */
  gap: 30px; /* Kartlar arası boşluk */
  justify-content: center; /* Kartları merkezler */
}

.service-card {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center; /* İçeriği ortalar */
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px); /* Hafif yukarı kalkma efekti */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Gölge artışı */
}

.service-icon {
  width: 80px; /* İkonun kapsayıcı boyutu */
  height: 80px;
  /*background-color: var(--primary-color); /* İkon arka plan rengi */
  border-radius: 50%; /* Daire şekli */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(
    --secondary-color
  ); /* Hover'da ikon arka plan rengi değişimi */
}

.service-icon img {
  width: 45px; /* İkon boyutu */
  height: 45px;
  /*filter: invert(100%) sepia(0%) saturate(7483%) hue-rotate(159deg) brightness(109%) contrast(105%); /* SVG'yi beyaza çevirir */
  /* Veya direkt SVG kodunu kullanıyorsanız fill="white" yapın */
}

.service-title {
  font-size: 22px;
  color: var(--text-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.service-description {
  font-size: 15px;
  color: var(--light-text-color);
  line-height: 1.7;
}

/* --- Responsive Ayarlamalar --- */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(
      auto-fit,
      minmax(250px, 1fr)
    ); /* Daha küçük kartlar */
    gap: 20px;
  }
  .service-card {
    padding: 25px;
  }
  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
  .service-icon img {
    width: 40px;
    height: 40px;
  }
  .service-title {
    font-size: 20px;
  }
  .service-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .services-grid {
    grid-template-columns: 1fr; /* Tek sütun */
  }
}

/* Genel Buton Stilleri */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent; /* Varsayılan şeffaf kenarlık */
  white-space: nowrap; /* Metnin tek satırda kalmasını sağlar */
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color); /* Hover'da ikincil renge geçiş */
  border-color: var(--secondary-color);
  transform: translateY(-3px); /* Hafif yukarı kalkma efekti */
}

.btn-secondary {
  background-color: transparent;
  color: var(--white-color);
  border-color: var(--white-color);
}

.btn-secondary:hover {
  background-color: var(--white-color);
  color: var(--primary-color); /* Hover'da birincil renge geçiş */
  transform: translateY(-3px);
}

/* === HERO Responsive Ayarlamalar (Tek blok halinde) === */
@media (max-width: 1200px) {
  .hero-carousel,
  .hero-section {
    height: 600px;
  }

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

  .hero-subtitle {
    font-size: 22px;
  }

  .btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .hero-carousel,
  .hero-section {
    height: 550px;
  }

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

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

  .hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
    flex-wrap: nowrap;
  }

  .btn {
    width: 100%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .hero-carousel,
  .hero-section {
    height: 500px;
    padding: 0 15px;
  }

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

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .btn-primary {
    font-size: 13px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .hero-carousel,
  .hero-section {
    height: 450px;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

/* Masaüstünde gizle */
.mobile-lang-switcher {
  display: none;
}

/* Mobilde sağ üst köşeye sabitle */
@media (max-width: 768px) {
  .mobile-lang-switcher {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  }

  .mobile-lang-switcher img {
    width: 24px;
    height: auto;
    display: block;
  }
}

/* --- Hakkımızda / Neden Biz Bölümü Stilleri --- */
.about-us-section {
  padding: 40px 0; /* Üstten ve alttan boşluk */
  background-color: var(--white-color); /* Beyaz arka plan */
}

.about-us-container {
  display: flex;
  align-items: center; /* Dikeyde ortalama */
  justify-content: space-between;
  gap: 50px; /* İçerik ve görsel arası boşluk */
  flex-wrap: wrap; /* Küçük ekranlarda alt alta geçiş */
}

.about-us-content {
  flex: 1; /* Esnek genişlik */
  min-width: 300px; /* Minimum genişlik */
  text-align: left; /* Metin sola hizalı */
}

.section-tagline {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mevcut section-title'ın metin hizalamasını geçersiz kılar */
.section-title.text-left {
  text-align: left;
  font-size: 38px;
  margin-bottom: 25px;
}

.about-us-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--light-text-color);
  margin-bottom: 30px;
}

.about-us-advantages {
  list-style: none;
  margin-bottom: 40px;
}

.about-us-advantages li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}

.about-us-advantages li svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-color);
  margin-right: 15px;
  flex-shrink: 0; /* SVG'nin daralmasını engeller */
}

.about-us-image {
  flex: 1; /* Esnek genişlik */
  min-width: 350px; /* Minimum görsel genişliği */
  max-width: 550px; /* Maksimum görsel genişliği */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-us-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Görselin kapsayıcıya sığmasını sağlar */
}

/* --- Responsive Ayarlamalar --- */
@media (max-width: 992px) {
  .about-us-container {
    flex-direction: column; /* Tabletlerde alt alta */
    text-align: center;
  }
  .about-us-content {
    text-align: center; /* İçerik ortada */
    min-width: unset; /* Minimum genişliği kaldır */
    width: 100%; /* Tam genişlik */
  }
  .section-title.text-left {
    text-align: center; /* Tablette başlığı ortala */
    font-size: 34px;
  }
  .about-us-advantages {
    padding-left: 0; /* Listeyi sıfırla */
    display: flex;
    flex-direction: column;
    align-items: center; /* Avantajları ortala */
  }
  .about-us-image {
    margin-top: 40px; /* Görselin üstüne boşluk */
    min-width: unset;
    max-width: 100%; /* Görselin tam genişlikte olmasını sağlar */
  }
}

@media (max-width: 768px) {
  .about-us-section {
    padding: 60px 0;
  }
  .section-title.text-left {
    font-size: 30px;
  }
  .about-us-description {
    font-size: 16px;
  }
  .about-us-advantages li {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .about-us-advantages li svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .section-title.text-left {
    font-size: 26px;
  }
  .about-us-description {
    font-size: 15px;
  }
  .about-us-advantages li {
    font-size: 15px;
  }
}

/* --- Yapılan Projeler Bölümü Stilleri --- */
.projects-section {
  padding: 100px 0;
  background-color: var(--background-light); /* Açık gri arka plan */
}

/* Mevcut section-tagline ve section-title sınıflarının hizalamasını düzenler */
.text-center {
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(320px, 1fr)
  ); /* 3 sütunlu duyarlı grid */
  gap: 30px;
  margin-top: 50px; /* Başlık ve grid arası boşluk */
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.project-card img {
  width: 100%;
  height: 300px; /* Tüm resimlerin yüksekliğini sabitle */
  object-fit: cover; /* Resmi kapsayıcıya sığdırırken orantıyı koru */
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.05); /* Hover'da resmi hafifçe büyüt */
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0)
  ); /* Alttan üste doğru koyulaşan gradyan */
  color: var(--white-color);
  padding: 20px;
  transform: translateY(100%); /* Başlangıçta gizli */
  transition: transform 0.4s ease;
  opacity: 0; /* Başlangıçta şeffaf */
}

.project-card:hover .project-overlay {
  transform: translateY(0); /* Hover'da görünür */
  opacity: 1;
}

.project-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.project-category {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 15px;
}

.project-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color); /* Vurgu rengi */
  border: 1px solid var(--secondary-color);
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.project-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.mt-50 {
  margin-top: 50px;
}

/* --- Responsive Ayarlamalar --- */
@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(
      auto-fit,
      minmax(280px, 1fr)
    ); /* Daha küçük kartlar */
    gap: 25px;
  }
  .project-card img {
    height: 250px; /* Resim yüksekliğini küçült */
  }
  .project-name {
    font-size: 18px;
  }
  .project-category {
    font-size: 14px;
  }
  .project-link {
    padding: 7px 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 80px 0;
  }
  .projects-grid {
    grid-template-columns: 1fr; /* Tek sütunlu görünüm */
    gap: 20px;
  }
  .project-card img {
    height: 280px; /* Tek sütunda biraz daha büyük olabilir */
  }
}

@media (max-width: 480px) {
  .projects-section {
    padding: 60px 0;
  }
  .project-card img {
    height: 220px;
  }
  .project-name {
    font-size: 17px;
  }
  .project-category {
    font-size: 13px;
  }
}

/* --- Ekibimiz Bölümü Stilleri --- */
.team-section {
  padding: 50px 0;
  background-color: var(--white-color); /* Beyaz arka plan */
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(280px, 1fr)
  ); /* 3 sütunlu duyarlı grid */
  gap: 30px;
  margin-top: 50px;
  justify-content: center; /* Kartları yatayda ortala */
}

.team-member-card {
  background-color: var(--background-light); /* Açık gri kart arka planı */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-photo {
  width: 150px; /* Fotoğrafın genişliği */
  height: 150px; /* Fotoğrafın yüksekliği */
  border-radius: 50%; /* Daire şekli */
  overflow: hidden;
  margin: 0 auto 25px auto; /* Ortala ve alttan boşluk */
  border: 4px solid var(--primary-color); /* Ana renkli çerçeve */
  box-shadow: 0 0 0 5px rgba(var(--primary-color-rgb, 46, 134, 222), 0.2); /* Hafif dış gölge */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover .member-photo {
  border-color: var(--secondary-color); /* Hover'da çerçeve rengini değiştir */
  box-shadow: 0 0 0 5px rgba(var(--secondary-color-rgb, 243, 156, 18), 0.2);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Resmi kesmeden sığdır */
  display: block;
}

.member-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 5px;
}

.member-title {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.member-education {
  font-size: 15px;
  color: var(--light-text-color);
  margin-bottom: 20px;
  min-height: 45px; /* Eğitim alanı için minimum yükseklik, metin uzunluğuna göre ayarlayın */
  display: flex; /* İçeriğin dikeyde ortalanması için */
  align-items: center;
  justify-content: center;
}

/* Team Bölümü - Instagram Linki */
.instagram-link {
  text-decoration: none; /* Altı çizgi kaldırma */
  color: #000; /* Metin rengi siyah */
  font-weight: bold; /* Metni kalın yapma */
  display: inline-block; /* Elementin düzgün davranmasını sağlar */
  margin-top: 5px; /* İsim ile arasında küçük bir boşluk bırakır */
}

/* RGB değerleri değişkenlere aktarma, eğer ihtiyacınız olursa */
:root {
  /* ... (Diğer renk değişkenleri) ... */
  --primary-color-rgb: 46, 134, 222; /* primary-color'ın RGB değeri */
  --secondary-color-rgb: 243, 156, 18; /* secondary-color'ın RGB değeri */
}

/* --- Responsive Ayarlamalar --- */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(
      auto-fit,
      minmax(250px, 1fr)
    ); /* Daha küçük kartlar */
    gap: 25px;
  }
  .member-photo {
    width: 130px;
    height: 130px;
  }
  .member-name {
    font-size: 20px;
  }
  .member-title {
    font-size: 15px;
  }
  .member-education {
    font-size: 14px;
    min-height: 40px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 80px 0;
  }
  .team-grid {
    grid-template-columns: 1fr; /* Tek sütunlu görünüm */
    gap: 20px;
  }
  .team-member-card {
    max-width: 350px; /* Tek sütunda kart genişliğini sınırla */
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 60px 0;
  }
  .member-photo {
    width: 120px;
    height: 120px;
  }
  .member-name {
    font-size: 19px;
  }
  .member-title {
    font-size: 14px;
  }
  .member-education {
    font-size: 13px;
    min-height: 35px;
  }
}

/* --- Blog Bölümü Stilleri --- */
.blog-section {
  background-color: var(--background-light); /* Açık gri arka plan */
  padding-bottom: 20px;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* 3 veya 4 sütunlu duyarlı grid */
  gap: 30px;
  margin-top: 50px;
  justify-content: center;
}

.blog-post-card {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden; /* Resmin dışarı taşmasını engeller */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-image-wrapper {
  position: relative;
  height: 220px; /* Resim yüksekliğini sabitler */
  overflow: hidden;
}

.post-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Resmi kapsayıcıya sığdırırken orantıyı koru */
  display: block;
  transition: transform 0.5s ease;
}

.blog-post-card:hover .post-image-wrapper img {
  transform: scale(1.05); /* Hover'da resmi hafifçe büyüt */
}

.post-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1; /* Resmin üzerinde kalmasını sağlar */
}

.post-content {
  padding: 25px;
}

.post-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.post-title a {
  color: var(--text-color);
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: var(--primary-color);
}

.post-meta {
  font-size: 14px;
  color: var(--light-text-color);
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.post-excerpt {
  font-size: 15px;
  color: var(--light-text-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  transition: color 0.3s ease;
  display: inline-block; /* Alttan ok görünümü için */
}

.read-more:hover {
  color: var(--secondary-color);
}

/* --- Responsive Ayarlamalar --- */
@media (max-width: 992px) {
  .blog-posts-grid {
    grid-template-columns: repeat(
      auto-fit,
      minmax(280px, 1fr)
    ); /* Daha küçük kartlar */
    gap: 25px;
  }
  .post-image-wrapper {
    height: 200px;
  }
  .post-title {
    font-size: 18px;
  }
  .post-meta,
  .post-excerpt,
  .read-more {
    font-size: 14px;
  }
  .post-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 80px 0;
  }
  .blog-posts-grid {
    grid-template-columns: 1fr; /* Tek sütunlu görünüm */
    gap: 20px;
  }
  .post-image-wrapper {
    height: 250px; /* Tek sütunda daha büyük görsel */
  }
  .blog-post-card {
    max-width: 400px; /* Kart genişliğini sınırla */
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 60px 0;
  }
  .post-image-wrapper {
    height: 200px;
  }
  .post-title {
    font-size: 17px;
  }
  .post-meta,
  .post-excerpt,
  .read-more {
    font-size: 13px;
  }
  .post-content {
    padding: 15px;
  }
  .post-category {
    font-size: 12px;
    padding: 4px 10px;
  }
}

/* --- İletişim Bölümü Stilleri --- */
.contact-section {
  padding: 40px 0;
  background-color: var(--white-color); /* Beyaz arka plan */
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* İçeriği yukarı hizala */
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px; /* Harita ile arası boşluk */
}

.contact-form-wrapper {
  flex: 1;
  min-width: 350px; /* Formun minimum genişliği */
  max-width: 600px; /* Formun maksimum genişliği */
}

.contact-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--light-text-color);
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 16px;
  color: var(--text-color);
  background-color: var(--background-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb, 46, 134, 222), 0.2);
}

.contact-form textarea {
  resize: vertical; /* Sadece dikeyde boyutlandırma */
  min-height: 120px;
}

.btn-submit {
  width: auto;
  padding: 15px 40px;
  font-size: 18px;
  cursor: pointer;
}

.contact-info-wrapper {
  flex: 1;
  min-width: 300px; /* Bilgi kartlarının minimum genişliği */
  display: grid;
  grid-template-columns: 1fr; /* Bilgi kartlarını alt alta hizala */
  gap: 30px;
  margin-top: 50px; /* Mobil görünümde formdan boşluk */
}

.info-card {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* İçeriği sola hizala */
  text-align: left;
}

.info-card svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary-color);
  margin-bottom: 15px;
}

.info-card h4 {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 16px;
  color: var(--light-text-color);
  line-height: 1.6;
}

.info-card a {
  color: var(--light-text-color); /* Link rengi */
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: var(--primary-color);
}

.map-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 450px; /* Haritanın sabit yüksekliği */
  border: 0;
}

/* --- Footer Stilleri --- */
.main-footer {
  background-color: var(--text-color); /* Koyu gri/lacivert arka plan */
  color: var(--white-color);
  padding: 80px 0 20px 0; /* Üstten daha fazla, alttan az boşluk */
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  ); /* Duyarlı sütunlar */
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col img {
  max-height: 70px; /* Logo yüksekliği */
  margin-bottom: 20px;
  filter: brightness(0) invert(1); /* Eğer logoda koyu renk varsa beyaza çevirir */
}

.footer-col p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px; /* Alt çizgi genişliği */
  height: 3px;
  background-color: var(--primary-color);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-col p a {
  color: rgba(255, 255, 255, 0.8); /* İletişim bilgilerindeki linklerin rengi */
  transition: color 0.3s ease;
}
.footer-col p a:hover {
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-color);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  stroke: var(--white-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

/* --- Responsive Ayarlamalar --- */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-form-wrapper {
    min-width: unset;
    width: 100%;
    max-width: 500px; /* Form genişliğini sınırlar */
  }
  .section-title.text-left {
    /* İletişim bölümü başlığı ortalama */
    text-align: center;
  }
  .contact-info-wrapper {
    grid-template-columns: repeat(
      auto-fit,
      minmax(250px, 1fr)
    ); /* Tabletlerde 2 sütun */
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    justify-content: center;
  }
  .info-card {
    align-items: center; /* Kart içi öğeleri ortala */
    text-align: center;
    padding: 25px;
  }
  .footer-content {
    grid-template-columns: repeat(
      auto-fit,
      minmax(200px, 1fr)
    ); /* Daha az sütun */
  }
  .footer-col {
    /* Sütun içindeki metinleri ve öğeleri ortala */
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%; /* Başlık ortalandığında alt çizgiyi de ortala */
    transform: translateX(-50%);
  }
  .footer-col.logo-col {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-section,
  .main-footer {
    padding: 60px 0;
  }
  .contact-info-wrapper {
    grid-template-columns: 1fr; /* Tek sütun */
  }
  .map-container iframe {
    height: 350px;
  }
  .footer-content {
    grid-template-columns: 1fr; /* Tek sütun */
  }
  .footer-col {
    /* Sütun içindeki metinleri ve öğeleri ortala */
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .contact-section,
  .main-footer {
    padding: 40px 0;
  }
  .btn-submit {
    width: 100%;
  }
  .map-container iframe {
    height: 250px;
  }
  .footer-col {
    /* Sütun içindeki metinleri ve öğeleri ortala */
    text-align: center;
  }
  .footer-col h4 {
    font-size: 18px;
  }
  .footer-col p,
  .footer-col ul li a {
    font-size: 14px;
  }
  .footer-social a {
    width: 35px;
    height: 35px;
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
  }
}

/* Header logosu */
.header .logo img {
  /* Mevcut değerleriniz */
  /* max-height: 70px; */
  /* max-width: 200px; */

  /* Örnek olarak değerleri artırabiliriz */
  max-height: 90px; /* Belki biraz daha yüksek */
  max-width: 280px; /* Genişliği artır */

  width: auto; /* Oranı koru */
  display: block;
}

/* Footer logosu */
.main-footer .footer-col.logo-col img {
  /* Mevcut değerleriniz */
  /* max-height: 70px; */
  /* max-width: 200px; */

  /* Örnek olarak değerleri artırabiliriz */
  max-height: 90px;
  max-width: 280px;

  width: auto;
  margin-bottom: 20px;
  /* filter: brightness(0) invert(1); */
}

/* Mobil görünüm için logo boyutunu ayarla */
@media (max-width: 768px) {
  .header .logo img {
    /* max-height: 50px; */
    /* max-width: 150px; */

    max-height: 70px; /* Mobilde de biraz büyüt */
    max-width: 220px;
  }
}

/* Çok küçük mobil ekranlar için */
@media (max-width: 480px) {
  .header .logo img {
    /* max-height: 40px; */
    /* max-width: 120px; */

    max-height: 50px;
    max-width: 180px;
  }
}

.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5000;
}

.floating-contact .fc-btn {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}

.floating-contact .fc-btn img {
    width: 30px;
    height: 30px;
}

.floating-contact .fc-btn:hover {
    transform: scale(1.1);
}

/* Tooltip balon */
.floating-contact .fc-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, right 0.25s ease;
}

/* Tooltip oku */
.floating-contact .fc-btn::before {
    content: "";
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0,0,0,0.85);
    opacity: 0;
    transition: opacity 0.25s ease, right 0.25s ease;
}

/* Hover görünürlük */
.floating-contact .fc-btn:hover::after,
.floating-contact .fc-btn:hover::before {
    opacity: 1;
    right: 60px;
}

/* Renkler */
.floating-contact .whatsapp {
    background: #25D366;
}

.floating-contact .telegram {
    background: #0088cc;
}
/* Nabız Animasyonu Tanımlaması */
@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); /* Halkanın genişleyip kaybolması */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mevcut WhatsApp class'ına animasyonu entegre ediyoruz */
.floating-contact .whatsapp {
    background: #25D366;
    /* Animasyon: İsim, Süre, Sonsuz Döngü */
    animation: pulse-green 2s infinite; 
}

/* Hover durumunda animasyonu durdurmak isterseniz (Opsiyonel) */
.floating-contact .whatsapp:hover {
    animation: none;
    transform: scale(1.1); /* Hover olunca hafif büyük kalsın */
}

/* Telegram İçin Mavi Nabız Animasyonu */
@keyframes pulse-blue {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7); /* Telegram Mavisi */
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(0, 136, 204, 0); /* Halkanın genişleyip kaybolması */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0);
    }
}

/* Telegram Butonuna Uygulama */
.floating-contact .telegram {
    background: #0088cc;
    /* Animasyon süresi 2s, sonsuz döngü */
    animation: pulse-blue 2s infinite;
    
    /* ÖNEMLİ DOKUNUŞ: Animasyonu 1 saniye gecikmeli başlatıyoruz. 
       Böylece WhatsApp ve Telegram sırayla yanıp sönüyor gibi görünür. */
    animation-delay: 1s;
}

/* Hover durumunda animasyon durur ve buton hafif büyük kalır */
.floating-contact .telegram:hover {
    animation: none;
    transform: scale(1.1);
}
/* --- Hakkımızda Sayfası Stilleri (page-specific) --- */

/* Sayfa Başlığı / Hero Banner */
.page-hero-banner {
  background-color: var(--primary-color); /* Ana renk arka plan */
  color: var(--white-color);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* İsterseniz buraya sayfanıza özel bir arka plan görseli ekleyebilirsiniz */
  /* background: url('assets/images/about-page-bg.jpg') no-repeat center center/cover; */
}

.page-hero-banner h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-hero-banner p {
  font-size: 20px;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* Genel İçerik + Görsel Yapısı */
.content-with-image {
  padding: 100px 0;
}

.about-us-detailed-container,
.regional-expertise-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap; /* Küçük ekranlarda alt alta geçiş */
}

.about-us-detailed-section .content-text,
.regional-expertise-section .content-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.about-us-detailed-section .content-image,
.regional-expertise-section .content-image {
  flex: 1;
  min-width: 350px;
  max-width: 550px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-us-detailed-section .content-image img,
.regional-expertise-section .content-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-us-detailed-section .section-title,
.regional-expertise-section .section-title {
  margin-bottom: 20px;
}

.about-us-detailed-section p,
.regional-expertise-section p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--light-text-color);
  margin-bottom: 20px;
}

.regional-expertise-section ul {
  list-style: none;
  margin-top: 25px;
  margin-bottom: 20px;
}

.regional-expertise-section ul li {
  font-size: 17px;
  color: var(--text-color);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
}

.regional-expertise-section ul li::before {
  content: "\2022"; /* Unicode kurşun işareti */
  color: var(--primary-color);
  font-size: 22px;
  position: absolute;
  left: 0;
  top: 0px;
}

.regional-expertise-section .region-name {
  font-weight: 700;
  color: var(--primary-color);
}

/* Görselin metin tarafında, metnin görsel tarafında olmasını sağla */
.regional-expertise-container {
  flex-direction: row-reverse; /* Görseli sağdan sola al */
}

/* Değerlerimiz Bölümü */
.our-values-section {
  padding: 100px 0;
  background-color: var(--background-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  justify-content: center;
}

.value-item {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-item svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-color);
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.value-item p {
  font-size: 16px;
  color: var(--light-text-color);
  line-height: 1.6;
}

/* --- Responsive Ayarlamalar (Hakkımızda Sayfasına Özel) --- */
@media (max-width: 992px) {
  .page-hero-banner h1 {
    font-size: 40px;
  }
  .page-hero-banner p {
    font-size: 18px;
  }

  .about-us-detailed-container,
  .regional-expertise-container {
    flex-direction: column; /* Tabletlerde alt alta */
    text-align: center;
    gap: 40px;
  }
  .about-us-detailed-section .content-text,
  .regional-expertise-section .content-text {
    min-width: unset;
    width: 100%;
    text-align: center; /* Metin ortada */
  }
  .about-us-detailed-section .content-image,
  .regional-expertise-section .content-image {
    min-width: unset;
    max-width: 100%; /* Görsel tam genişlikte */
    margin-top: 20px; /* Metinden boşluk */
  }
  .about-us-detailed-section .section-title.text-left,
  .regional-expertise-section .section-title.text-left {
    text-align: center;
  }
  .regional-expertise-section ul {
    padding-left: 0;
    text-align: left; /* Listeler yine sola hizalı kalsın */
    max-width: 450px; /* Listeyi ortalamak için */
    margin-left: auto;
    margin-right: auto;
  }
  .regional-expertise-section ul li::before {
    left: 0; /* Liste maddeleri mobilde de solda kalır */
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
  .value-item {
    padding: 25px;
  }
  .value-item h3 {
    font-size: 20px;
  }
  .value-item p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-hero-banner {
    padding: 60px 0;
    margin-top: 60px;
  }
  .page-hero-banner h1 {
    font-size: 36px;
  }
  .page-hero-banner p {
    font-size: 16px;
  }

  .content-with-image,
  .our-values-section,
  .regional-expertise-section {
    padding: 60px 0;
  }

  .values-grid {
    grid-template-columns: 1fr; /* Tek sütunlu görünüm */
    gap: 20px;
  }
  .value-item {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-hero-banner {
    padding: 40px 0;
  }
  .page-hero-banner h1 {
    font-size: 30px;
  }
  .page-hero-banner p {
    font-size: 14px;
  }

  .content-with-image,
  .our-values-section,
  .regional-expertise-section {
    padding: 40px 0;
  }
  .about-us-detailed-section p,
  .regional-expertise-section p,
  .regional-expertise-section ul li {
    font-size: 15px;
  }
  .value-item h3 {
    font-size: 18px;
  }
  .value-item p {
    font-size: 14px;
  }
}

/* --- Projeler Sayfası Stilleri (page-specific) --- */

/* Proje Filtreleme */
.project-filters {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.filter-btn {
  background-color: var(--background-light);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(var(--primary-color-rgb, 46, 134, 222), 0.3);
}

/* Projeler Grid */
.projects-gallery-section {
  padding: 100px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* Duyarlı sütunlar */
  gap: 30px;
  margin-top: 50px;
}

.project-card {
  display: block; /* Linkin tüm kartı kaplamasını sağlar */
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden; /* Görselin köşeleri için */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; /* Link alt çizgisini kaldır */
  color: inherit; /* Metin rengini miras al */
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px; /* Sabit görsel yüksekliği */
  overflow: hidden;
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Görseli alanı kaplayacak şekilde ölçekle */
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image-wrapper img {
  transform: scale(1.08); /* Hover'da hafif zoom efekti */
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    var(--primary-color-rgb, 46, 134, 222),
    0.7
  ); /* Şeffaf mavi overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.overlay-text {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-info {
  padding: 25px;
  text-align: left;
}

.project-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-color);
}

.project-info p {
  font-size: 16px;
  color: var(--light-text-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.project-category-tag,
.project-location-tag {
  display: inline-block;
  background-color: var(--secondary-color); /* Vurgu rengi */
  color: var(--white-color);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 5px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}
.project-location-tag {
  background-color: var(--primary-color);
}

/* Sayfalama (Pagination) */
.pagination {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.page-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.page-link:hover,
.page-link.active {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

/* --- Responsive Ayarlamalar (Projeler Sayfasına Özel) --- */
@media (max-width: 992px) {
  .projects-gallery-section {
    padding: 80px 0;
  }
  .project-filters {
    margin-bottom: 40px;
    gap: 10px;
  }
  .filter-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  .project-image-wrapper {
    height: 220px;
  }
  .project-info h3 {
    font-size: 20px;
  }
  .project-info p {
    font-size: 15px;
  }
  .project-category-tag,
  .project-location-tag {
    font-size: 12px;
    padding: 5px 10px;
  }
}

@media (max-width: 768px) {
  .projects-gallery-section {
    padding: 60px 0;
  }
  .project-filters {
    flex-direction: column; /* Mobil ekranlarda butonları alt alta al */
    align-items: center;
  }
  .filter-btn {
    width: 80%; /* Buton genişliğini ayarla */
    max-width: 300px;
  }
  .projects-grid {
    grid-template-columns: 1fr; /* Tek sütun */
    gap: 20px;
  }
  .project-image-wrapper {
    height: 200px;
  }
  .project-info {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .projects-gallery-section {
    padding: 40px 0;
  }
  .project-image-wrapper {
    height: 180px;
  }
  .project-info h3 {
    font-size: 18px;
  }
  .project-info p {
    font-size: 14px;
  }
  .project-category-tag,
  .project-location-tag {
    font-size: 11px;
    padding: 4px 8px;
  }
  .page-link {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}
/* --- Blog Listeleme Sayfası Stilleri --- */

.blog-list-section {
  padding: 100px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column; /* İçeriği dikey sırala */
  text-decoration: none; /* Link alt çizgisini kaldır */
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-image-wrapper {
  width: 100%;
  height: 220px; /* Sabit görsel yüksekliği */
  overflow: hidden;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.05);
}

.blog-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Alttaki "Devamını Oku" butonu için esneklik */
}

.blog-category-tag {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-date {
  display: inline-block;
  font-size: 14px;
  color: var(--light-text-color);
  margin-bottom: 10px;
}

.blog-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-color);
  line-height: 1.3;
}

.blog-info h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.blog-info h3 a:hover {
  color: var(--primary-color);
}

.blog-info p {
  font-size: 16px;
  color: var(--light-text-color);
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1; /* Açıklama yazısının esnek büyümesini sağlar */
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto; /* En alta hizala */
}

.read-more-btn:hover {
  color: var(--secondary-color);
}

.read-more-btn svg {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  stroke: var(--primary-color);
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.read-more-btn:hover svg {
  stroke: var(--secondary-color);
  transform: translateX(3px);
}

/* --- Responsive Ayarlamalar (Blog Listeleme Sayfasına Özel) --- */
@media (max-width: 992px) {
  .blog-list-section {
    padding: 80px 0;
  }
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  .blog-image-wrapper {
    height: 200px;
  }
  .blog-info {
    padding: 20px;
  }
  .blog-info h3 {
    font-size: 20px;
  }
  .blog-info p {
    font-size: 15px;
  }
  .blog-category-tag,
  .blog-date {
    font-size: 11px;
    padding: 4px 8px;
  }
}

@media (max-width: 768px) {
  .blog-list-section {
    padding: 60px 0;
  }
  .blog-grid {
    grid-template-columns: 1fr; /* Tek sütun */
    gap: 20px;
  }
  .blog-image-wrapper {
    height: 180px;
  }
  .blog-info {
    padding: 15px;
  }
  .blog-info h3 {
    font-size: 18px;
  }
  .blog-info p {
    font-size: 14px;
  }
}
/* --- Blog Detay Sayfası Stilleri --- */

.blog-detail-hero {
  background-color: var(--background-light); /* Hafif bir arka plan */
  padding: 80px 0 40px 0;
  text-align: center;
}

.blog-meta-info {
  margin-bottom: 15px;
}

.blog-detail-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.2;
}

.blog-detail-hero .blog-excerpt {
  font-size: 18px;
  color: var(--light-text-color);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-content-section {
  padding: 60px 0 100px 0;
}

.blog-detail-container {
  max-width: 850px; /* Blog içeriği için daha dar bir genişlik */
  margin: 0 auto;
}

.blog-main-image {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-main-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.image-caption {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--light-text-color);
  margin-top: 10px;
}

.blog-article-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-color);
}

.blog-article-body p {
  margin-bottom: 20px;
}

.blog-article-body h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.blog-article-body h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-article-body ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.blog-article-body ul li {
  margin-bottom: 8px;
}

.blog-image-inline {
  width: 100%;
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.blog-image-inline img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-article-body blockquote {
  background-color: var(--background-light);
  border-left: 5px solid var(--primary-color);
  padding: 25px 30px;
  margin: 30px 0;
  font-style: italic;
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.6;
}

.blog-article-body blockquote p {
  margin-bottom: 10px;
}

.blog-article-body blockquote footer {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: right;
  margin-top: 10px;
}

.more-blogs-link {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed #ddd;
}

.more-blogs-link a {
  color: #2e86de;
  font-weight: bold;
  text-decoration: none;
}

.more-blogs-link a:hover {
  text-decoration: underline;
}

/* İlgili Yazılar / CTA Bölümü */
.related-posts-cta {
  padding: 20px 0;
}
.related-posts-cta .section-title {
  margin-bottom: 15px;
}
.related-posts-cta .section-subtitle {
  margin-bottom: 30px;
}

/* --- Responsive Ayarlamalar (Blog Detay Sayfasına Özel) --- */
@media (max-width: 992px) {
  .blog-detail-hero {
    padding: 60px 0 30px 0;
  }
  .blog-detail-hero h1 {
    font-size: 36px;
  }
  .blog-detail-hero .blog-excerpt {
    font-size: 16px;
  }
  .blog-content-section {
    padding: 40px 0 80px 0;
  }
  .blog-detail-container {
    padding: 0 20px; /* Kenar boşlukları */
  }
  .blog-article-body {
    font-size: 16px;
  }
  .blog-article-body h2 {
    font-size: 28px;
  }
  .blog-article-body h3 {
    font-size: 22px;
  }
  .blog-article-body blockquote {
    font-size: 16px;
    padding: 20px 25px;
  }
  .related-posts-cta {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .blog-detail-hero h1 {
    font-size: 30px;
  }
  .blog-detail-hero .blog-excerpt {
    font-size: 15px;
  }
  .blog-content-section {
    padding: 30px 0 60px 0;
  }
  .blog-main-image {
    margin-bottom: 30px;
  }
  .blog-article-body h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .blog-article-body h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .blog-article-body ul {
    margin-left: 15px;
  }
  .blog-image-inline {
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .blog-detail-hero {
    padding: 30px 0 20px 0;
  }
  .blog-detail-hero h1 {
    font-size: 26px;
  }
  .blog-detail-hero .blog-excerpt {
    font-size: 14px;
  }
  .blog-content-section {
    padding: 20px 0 40px 0;
  }
  .blog-article-body {
    font-size: 15px;
  }
  .blog-article-body h2 {
    font-size: 20px;
    margin-top: 25px;
    padding-left: 10px;
  }
  .blog-article-body h3 {
    font-size: 18px;
  }
  .blog-article-body blockquote {
    font-size: 15px;
    padding: 15px 20px;
  }
  .related-posts-cta {
    padding: 40px 0;
  }
}

/* ------------------------------ */
/* HERO CAROUSEL V2 STİLLERİ */
/* ------------------------------ */

.hero-carousel-v2 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  opacity: 0;
  transform: scale(1.05); /* Başlangıçta biraz büyük */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  filter: brightness(0.9) contrast(0.95) saturate(0.95);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1); /* Normal boyuta geçiş */
  filter: brightness(1) contrast(1) saturate(1);
  z-index: 1;
}

/* Overlay: Görselin üzerine koyu bir filtre */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Siyah yarı saydam katman */
  z-index: 1;
}

/* İçerik: Başlık, metin, buton */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Kontrol Butonları (Oklar) */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s;
}

.carousel-control-prev {
  left: 20px;
}
.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Slayt Noktaları (Dotlar) */
.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
  background-color: #ffffff;
}


/* --- Scroll Animasyonları (Başlangıç) --- */

/* Animasyonlanacak tüm öğelerin başlangıç durumu */
.reveal-animation {
    opacity: 0;
    transform: translateY(50px);
    /*50pxaşağıdabaşla*/transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /*Yumuşakgeçiş*/will-change: opacity, transform;
    -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -ms-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Öğe görünür olduğunda alacağı durum */
.reveal-animation.active {
    opacity: 1;
    transform: translateY(0);
}

/* İsteğe bağlı: Mobilde animasyon mesafesini biraz kısaltalım */
@media (max-width: 768px) {
    .reveal-animation {
        transform: translateY(30px);
    }
}