
/* Genel Ayarlar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

    }


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Kapsayıcı */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* === Top Bar (aynı kalabilir) */
.topbar {
  background-color: #222; /* koyu gri */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  font-size: 14px;
}

.topbar-left span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.topbar-right a {
  color: white;
  margin-left: 12px;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid white;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 13px;
  transition: 0.3s;
}

.topbar-right a:hover {
  background: white;
  color: #222;
}

/* === Header & Logo */
.main-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 20px 15px 0;
}

.logo-center img {
  max-height: 80px;
  width: auto;
  margin-bottom: 20px;
}

/* === Menü ve Buton Satırı */
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Menü */
.menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.menu a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu a.active,
.menu a:hover {
  color: #ddb770;
}

/* Buton */
.quote-btn a {
  background-color: #ddb770;
  color: #fff;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.quote-btn a:hover {
  background-color: #caa24f;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-row {
    flex-direction: column;
    align-items: center;
  }

  .quote-btn {
    margin-top: 10px;
  }
}
/* ------ Menü ------ */
.main-menu ul{
  list-style:none;
  margin:35px 0 0;
  padding:0;
  display:flex;
  justify-content:center;
  gap:55px;                         /* maddeler arası mesafe */
  flex-wrap:wrap;
}

.main-menu a{
  position:relative;                /* alt çizgi için */
  font-size:15px;
  font-weight:600;
  letter-spacing:.5px;
  text-decoration:none;
  color:#000;
  transition:color .25s ease;
}

/* Alt çizgi (pseudo-element) */
.main-menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;                      /* metnin hemen altı */
  width:0;
  height:2px;
  background:#c6943e;               /* orijinal altın tonu */
  transition:width .45s ease;       /* yavaş soldan sağa */
  transform-origin:left center;
}

/* Hover & Active durumları */
.main-menu a:hover,
.main-menu a.active{
  color:#c6943e;
}

.main-menu a:hover::after,
.main-menu a.active::after{
  width:100%;
}

/* --------- Responsive küçük ekran dokunuşu --------- */
@media(max-width:768px){
  .main-menu ul{gap:25px}
  .logo-wrap img{max-height:90px}
}



/* Header */
.header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  float: left;
}

.header nav {
  float: right;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.nav-list li a:hover {
  color: #007bff;
}



/* ==== HERO BÖLÜMÜ ==== */
.hero-section {
  position: relative;
  height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2); /* hafif karartma */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
}

/* SOL TARAF */
.hero-text {
  flex: 1 1 500px;
  color: #fff;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.shop-btn {
  background: #ddb770;
  color: #000;
  padding: 12px 25px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.shop-btn:hover {
  background: #caa24f;
}

/* SAĞ FORM ALANI */
.hero-form {
  flex: 1 1 420px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.hero-form h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-form input {
  flex: 1;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.hero-form button {
  margin-top: 10px;
  padding: 13px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-form button:hover {
  background: #333;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .form-row {
    flex-direction: column;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
}

.btn {
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.btn-outline {
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
  padding: 10px 25px;
  margin-left: 10px;
  text-decoration: none;
  border-radius: 5px;
}

.btn-outline:hover {
  background: #007bff;
  color: white;
}

/* Quote Form */
/* Quote Form */
.quote-form {
  background: white;
  color: #333;
  padding: 30px;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.quote-form h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.quote-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%; /* taşmayı engelle */
  box-sizing: border-box;
}

.quote-form button {
  background-color: #007bff;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.quote-form button:hover {
  background-color: #0056b3;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .quote-form {
    padding: 20px;         /* iç boşlukları küçült */
    margin: 20px auto;     /* üst boşluğu azalt */
    width: 90%;            /* ekrana daha iyi otursun */
  }

  .quote-form h2 {
    font-size: 1.3rem;
    text-align: center;
  }

  .quote-form input,
  .quote-form button {
    font-size: 0.95rem;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .quote-form {
    padding: 15px;
    width: 95%;           /* çok küçük ekranlarda kenarlara yaslanmasın */
  }

  .quote-form h2 {
    font-size: 1.1rem;
  }

  .quote-form input,
  .quote-form button {
    font-size: 0.9rem;
    padding: 9px;
  }
}
/* === HERO SECTION ===================================== */
.hero{
  position:relative;
  min-height:650px;                  /* masaüstü rahat görünüm */
  background:url('22.webp') center/cover no-repeat;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
}

/* yarı saydam koyu perde—arkayı hafif karartmak istersen */
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.25);       /* %25 karartma */
}

/* içerikleri tutan flex */
.hero-inner{
  position:relative;                /* pseudo-overlay’den ayrı katman */
  display:flex;
  gap:60px;
  width:100%;
  max-width:1280px;
  flex-wrap:wrap;
  z-index:2;
}

/* Sol metin bölümü */
.hero-text{
  flex:1 1 420px;
  max-width:540px;
}

.hero-text h1{
  font-size:2.6rem;
  margin-bottom:25px;
}

.hero-text p{
  font-size:1.15rem;
  line-height:1.6;
  margin-bottom:35px;
  max-width:520px;
}

.btn-shop{
  display:inline-block;
  background:#d8b35b;               /* sarı-altın ton */
  color:#000;
  padding:14px 36px;
  font-weight:600;
  border-radius:4px;
  text-decoration:none;
  letter-spacing:.5px;
  transition:background .25s ease;
}
.btn-shop:hover{background:#caa244}

/* Sağ form kutusu */
.quote-box{
  flex:1 1 420px;
  max-width:520px;
  background:rgba(0,0,0,.75);       /* yarı saydam siyah */
  padding:35px 40px 45px;
  border-radius:22px;
  backdrop-filter:blur(3px);
}

.quote-box h2{
  font-size:1.4rem;
  font-weight:600;
  text-align:center;
  margin-bottom:25px;
}

/* Form elemanları */
.quote-box form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.quote-box input{
  padding:13px 16px;
  font-size:1rem;
  border:none;
  border-radius:6px;
}

.quote-box button{
  margin-top:10px;
  padding:14px;
  font-size:1rem;
  font-weight:600;
  background:#d8b35b;
  color:#000;
  border:none;
  border-radius:8px;
  cursor:pointer;
  transition:background .25s ease, box-shadow .25s ease;
}
.quote-box button:hover{
  background:#caa244;
  box-shadow:0 0 0 3px #ffffff33;
}

/* === Responsive === */
@media(max-width:992px){
  .hero-inner{gap:40px}
  .hero-text h1{font-size:2.2rem}
}

@media(max-width:768px){
  .hero{
    padding:80px 20px 100px;
    background-position:center right; /* mobilde önemli kısmı göster */
  }
  .hero-inner{flex-direction:column;align-items:center;text-align:center}
  .quote-box{max-width:100%}
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* === TEMEL SATIR === */
.about-section {
  display: flex;
  align-items: stretch;
  gap: 30px;
  padding: 60px 20px;
  max-width: 1280px;         /* genişliği sınırla */
  margin: 0 auto;            /* ortala */
  justify-content: center;   /* içerikleri ortala */
}

/* === SOL 2 FOTO (otomatik yarı-yarıya bölünür) === */
.left-images{
  display:flex;
  flex-direction:column;
  gap:20px;                 /* iki resim arası boşluk  */
  flex:0 0 300px;           /* genişlik sabit, yükseklik sağ tarafa uyar */
}
.left-images img{
  flex:1 1 0;               /* kalan yüksekliği eşit paylaş */
  width:100%;
  object-fit:cover;
  border-radius:12px;
}

/* === ORTADAKİ DİKEY FOTO === */
.center-image{
  flex:0 0 300px;           /* genişlik sabit */
  display:flex;
}
.center-image img{
  width:100%;
  height:100%;              /* sağ kolon kadar uzar  */
  object-fit:cover;
  border-radius:12px;
}

/* === SAĞ METİN BLOĞU === */
.right-text{
  display:flex;
  flex-direction:column;    /* promo-box da bu kolonun içinde */
  max-width:500px;
}

.right-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.right-text p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #555;
}

.buttons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.btn {
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.dark {
  background-color: #1d1d1d;
  color: white;
}

.btn.dark:hover {
  background-color: #000;
}

.btn.yellow {
  background-color: #f4c16e;
  color: white;
}

.btn.yellow:hover {
  background-color: #e2a84f;
}

/* Alt kutu */
.promo-box {
  display: flex;
  background: #1d1d1d;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  align-items: center;
}

.promo-box img {
  width: 110px;
  height: auto;
  border-radius: 8px;
  margin-right: 15px;
}

.promo-text h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.promo-text p {
  font-size: 0.95rem;
  color: #ccc;
}

/* ====== Global kayma önleyici ve görsel korumalar ====== */
html, body { overflow-x: hidden; max-width: 100%; }
img, video { max-width: 100%; height: auto; display: block; }
* { min-width: 0; } /* flex içinde taşmaları azaltır */

/* Flex kapsayıcıların taşmasını önle */
.hero-container,
.hero-inner,
.about-section { min-width: 0; }

/* Buton/metinlerin satır kırabilmesi */
.hero-text, .right-text, .promo-text { overflow-wrap: anywhere; }

/* ====== Tablet ve altı düzenlemeler ====== */
@media (max-width: 992px) {
  /* Kahraman alanı: boşlukları azalt, sığdır */
  .hero-section,
  .hero { padding: 40px 16px; }

  .hero-container,
  .hero-inner {
    gap: 24px;         /* 50–60px boşluklar dar ekranda fazla olabilir */
    flex-wrap: wrap;   /* yan yana sığmazsa alta geçsin */
  }

  /* Soldaki metin ve sağdaki formun esnekleşmesi */
  .hero-text,
  .hero-form,
  .quote-box {         /* (quote-box kullanan varyant için de) */
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Başlıkları biraz küçült */
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text p  { font-size: 1rem; max-width: 100%; }
}

/* ====== Telefon düzeni (tek kolon, sabit genişlikleri kaldır) ====== */
@media (max-width: 768px) {
  /* HERO */
  .hero-section {
    height: auto;           /* 65vh sabiti yerine içeriğe göre uzasın */
    min-height: 60vh;       /* çok kısa kalmasın */
  }
  .hero-overlay { padding: 24px 14px; }
  .hero-container { flex-direction: column; text-align: center; }

  .form-row { flex-direction: column; gap: 12px; }

  .hero-form {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.12);
    margin: 0;              /* dış boşluklar taşma hissini artırmasın */
  }

  /* HERO (arka planlı .hero/.hero-inner varyantı) */
  .hero { padding: 56px 16px 72px; background-position: center right; }
  .hero-inner { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .quote-box { max-width: 100%; padding: 22px 18px 24px; border-radius: 16px; }

  /* ABOUT SECTION */
  .about-section {
    flex-direction: column;     /* üçlü yapıyı tek kolona indir */
    align-items: stretch;
    gap: 18px;
    padding: 28px 14px;
  }

  /* Soldaki iki görsel bloğu esnekleşsin */
  .left-images {
    flex: 1 1 auto;
    gap: 12px;
  }
  .left-images img {
    width: 100%;
    height: auto;               /* oranı koru, taşmayı önle */
    border-radius: 12px;        /* senin stili korur; istersen 0 yapabilirsin */
  }

  /* Orta görsel tam genişlikte, yüksekliği doğal */
  .center-image {
    flex: 1 1 auto;
    min-width: 0;
  }
  .center-image img {
    width: 100%;
    height: auto;               /* sabit 100% yükseklik taşırabilir; mobile auto */
    border-radius: 12px;
  }

  /* Sağ metin bloğu tam genişlik */
  .right-text { max-width: 100%; }
  .right-text h2 { font-size: 1.6rem; line-height: 1.25; }
  .right-text p  { font-size: .98rem; }

  /* Butonlar alt alta kırılabilsin ve ortalansın */
  .buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 16px 0;
  }
  .btn { padding: 10px 18px; font-size: .9rem; }

  /* Alt promo kutusu: kolona dönsün */
  .promo-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
  }
  .promo-box img {
    width: 90px;
    margin: 0;
  }
  .promo-text h3 { font-size: 1.05rem; }
  .promo-text p  { font-size: .92rem; }
}

/* ====== Çok küçük telefonlar için minik rötuşlar ====== */
@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.8rem; }
  .hero-text p  { font-size: .95rem; }

  .quote-box { padding: 18px 14px 20px; border-radius: 14px; }

  .promo-box img { width: 80px; }
}

/* ====== ABOUT SECTION: Mobil/Duyarlı Düzen ====== */

/* 1) Küçük taşmaları globalde kesmek için (opsiyonel ama faydalı) */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* 2) Tablet ve altı: boşlukları azalt, kırılmaya hazırla */
@media (max-width: 992px) {
  .about-section {
    gap: 20px;
    padding: 40px 16px;
    flex-wrap: wrap; /* yan yana sığmazsa aşağı insin */
  }

  /* Sabit 300px genişlikler dar ekranda taşma yapmasın */
  .left-images,
  .center-image,
  .right-text {
    flex: 1 1 320px;     /* daha esnek davran */
    max-width: 100%;
  }

  .right-text h2 {
    font-size: 1.8rem;
  }
}

/* 3) Telefonlar: tek kolona geç, görsellerin oranını koru */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column; /* tek sütun */
    align-items: stretch;
    gap: 18px;
    padding: 28px 14px;
  }

  /* Sol iki görsel: sabit yükseklik yerine oran kullan */
  .left-images {
    flex: 1 1 auto;
    gap: 12px;
  }
  .left-images img {
    width: 100%;
    height: auto;
    /* Eğer sabit bir yükseklik istiyorsan:
       aspect-ratio: 4 / 3;  object-fit: cover;  ekleyebilirsin. */
  }

  /* Orta dikey görsel: tam genişlik, makul yükseklik */
  .center-image {
    flex: 1 1 auto;
    min-width: 0;           /* taşma koruması */
  }
  .center-image img {
    width: 100%;
    height: auto;           /* doğal oran */
    /* Daha dik görünüm istersen:
       aspect-ratio: 3 / 4; object-fit: cover; */
  }

  /* Sağ metin bloğu: tam genişlik + okunabilirlik */
  .right-text {
    max-width: 100%;
  }
  .right-text h2 {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .right-text p {
    font-size: 0.98rem;
  }

  /* Butonlar: alt alta kırılabilsin ve ortalansın */
  .buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  /* Alt promo kutusu: kolona dön, görseli küçült */
  .promo-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
  }
  .promo-box img {
    width: 90px;
    margin: 0;              /* sağdaki boşluğu kaldır */
  }
  .promo-text h3 {
    font-size: 1.05rem;
  }
  .promo-text p {
    font-size: 0.92rem;
  }
}

/* 4) Çok küçük ekranlar için birkaç ince ayar */
@media (max-width: 480px) {
  .about-section {
    padding: 24px 12px;
    gap: 14px;
  }
  .right-text h2 {
    font-size: 1.45rem;
  }
  .promo-box img {
    width: 80px;
  }
}

    /* ---------- Bölümler ---------- */
    .choose-style {
      position: relative;
      background: url('deneme.png') center/cover no-repeat;
      padding: 5rem 1rem 8rem;
      color: #fff;
      overflow: hidden;
    }
    .choose-style::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 1;
    }
    .choose-style .container {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    .choose-style h2 {
      font-size: 2.75rem;
      margin-bottom: 1rem;
    }
    .choose-style p {
      max-width: 800px;
      margin: 0 auto 1rem;
      font-size: 1rem;
      opacity: 0.9;
    }

    /* ---------- Kartlar ---------- */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
    }

    /* —— Resim konteyneri —— */
    .card-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .card:hover .card-image img {
      transform: scale(1.05);
    }

    /* —— İçerik —— */
    .card-content {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .card-content h3 {
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
      color: #222;
    }
    .card-content p {
      flex-grow: 1;
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1.25rem;
    }
    .card-content .btn {
      display: inline-block;
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      background: #dcb25f;
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      text-transform: uppercase;
      transition: background 0.3s;
    }
    .card-content .btn:hover {
      background: #c5a052;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 640px) {
      .choose-style {
        padding: 3rem 1rem 6rem;
      }
      .choose-style h2 {
        font-size: 2rem;
      }
      .cards {
        grid-template-columns: 1fr;
      }
    }


.testimonial-section {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #111;
}

.testimonial-section p {
  color: #555;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial-card {
  background: #f7f7f7;
  padding: 2rem;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  margin: 0;
  font-weight: bold;
  font-size: 1.1rem;
  color: #222;
}

.testimonial-card small {
  color: #888;
  display: block;
  margin: 4px 0 8px;
}

.stars {
  color: #f1c40f;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #333;
}

.rating-summary {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #333;
}


.latest-jobs {
  padding: 4rem 1rem;
  text-align: center;
  background: #fff;
  color: #111;
  font-family: 'Poppins', sans-serif;
}
.latest-jobs h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.latest-jobs p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: #555;
}
.carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1rem;
}

.carousel-item {
  flex: 0 0 auto;
  width: calc(100% / 4);
  display: flex;
  flex-direction: column;
}

.carousel-item img {
  width: 100%;
  aspect-ratio: 4 / 3; /* Genişlik-yükseklik oranı */
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.carousel-dots {
  margin-top: 1rem;
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}

/* Tablet görünüm (2 görsel) */
@media (max-width: 992px) {
  .carousel-item {
    width: calc(100% / 2);
  }
}

/* Mobil görünüm (1 görsel) */
@media (max-width: 600px) {
  .carousel-item {
    width: 100%;
  }
}




    .footer {
  background: #191919;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 2rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.feature-box {
  display: flex;
  gap: 1rem;
  max-width: 250px;
  flex: 1;
}
.feature-number {
  font-size: 2.5rem;
  color: #eab85b;
  font-weight: bold;
}
.feature-content strong {
  display: block;
  color: #fff;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0;
  flex-wrap: wrap;
  text-align: left;
  gap: 2rem;
}
.footer-col {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
}
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #eab85b;
}
.footer-col .tag {
  background-color: #eab85b;
  color: #111;
  padding: 0 5px;
  border-radius: 5px;
  font-size: 0.7rem;
  margin-left: 5px;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-col img {
  max-width: 100px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .footer-top, .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feature-box {
    max-width: 100%;
    justify-content: center;
  }
  .footer-col {
    padding: 0.5rem;
  }
}
@media (max-width: 768px) {
  .logo-col {
    display: flex;
    justify-content: center;  /* yatayda ortala */
    align-items: center;      /* dikeyde ortala */
    flex-direction: column;
    text-align: center;
  }
}
.social-fixed {
  position: fixed;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.social-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: white;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.social-fixed a:hover {
  background-color: #f2f2f2;
}

.social-fixed svg {
  width: 24px;
  height: 24px;
}