/* Ahmet Ekledi  */

:root {
  --color-primary: #2e2b24;
  --color-dark: #2e2b24;
  --color-light: #fdfaf3;
  --color-light-gray: #c6c5c3;
  --color-medium-gray: #8c8889;
  --color-dark-gray: #292c33;
}

.header-mobile {
  z-index: 93;
}

/* Genel stil */
.section.slider-section-02 {
  position: relative !important;
}

.single-slider {
  position: relative !important;
  width: 100% !important;
  height: 100vh !important; /* Slider'ın yüksekliğini ekran yüksekliğine eşitleyin */
  overflow: hidden !important;
}

.single-slider img {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: fill !important; /* Resmi kapsayıcıya sığdır */
  z-index: -1;
}

@media (max-width: 767px) {
  .single-slider img {
    object-fit: cover !important; /* Resmi kapsayıcıya sığdır */
    object-position: center !important;
  }
}

.stats-banner {
  position: relative;
  height: 250px;
  background-color: var(--color-dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
}

.stats-banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: var(--color-light);
  z-index: 1;
}

.stat-card {
  background-color: var(--color-primary);
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Kart gölgesi */
  transition: transform 0.3s ease-in-out; /* Hover efekti için geçiş */
}

.stat-card:hover {
  transform: translateY(-10px); /* Hoverda kart yükselir */
}

.stat-count {
  font-size: 50px;
  font-weight: 700;
  color: var(--color-light);
}

.stat-char {
  font-size: 36px;
  font-weight: 400;
  color: var(--color-light);
}

.stat-text {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-light-gray);
  margin-top: 10px;
}

.catalog-banner {
  position: relative;
  height: 250px;
  background-color: #46423f;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
}

.catalog-banner-two {
  position: relative;
  height: 250px;
  background-color: #363636;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
}

.catalog-banner-three {
  position: relative;
  height: 250px;
  background-color: #2e2b24;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
}

.catalog-banner-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-light);
  z-index: 1;
}

.catalog-banner-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.catalog-banner-img {
  max-width: 80%;
  height: 450px;
  object-fit: contain;
  z-index: 0;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding-left: 30px;
}

.about-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-dark); /* Yazı rengi ayarlandı */
  margin-bottom: 20px;
  text-align: left;
}

.about-text {
  font-size: 20px;
  color: var(--color-dark); /* Yazı rengi ayarlandı */
}

.single-benefit {
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px 20px !important;
  transition: all 0.3s ease;
}

.single-benefit h3 {
  color: var(--color-dark-gray) !important;
}

.single-benefit p {
  color: var(--color-medium-gray) !important;
}

.single-benefit:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-widget-title {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.widget-social {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.widget-social span {
  border: 1px var(--color-dark) solid;
  width: 40px;
  height: 40px;
  padding: 10px;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.widget-social span i {
  color: var(--color-dark);
}

.widget-social span:hover {
  color: var(--color-light);
  background-color: var(--color-dark);
}

.widget-social span:hover i {
  color: var(--color-light);
}

@media (max-width: 767px) {
  /* Hakkımızda bölümü */
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    padding-left: 0;
    padding-top: 20px;
  }

  .about-title {
    font-size: 28px;
    text-align: center !important;
  }

  .about-text {
    font-size: 14px;
  }

  /* Service Cards - Mobilde kartların sıralanması ve boyutu */
  .single-benefit {
    height: auto;
    margin-bottom: 20px; /* Kartlar arasına boşluk eklemek */
  }

  /* Catalog Banner - Görselin uyumlu olması için */
  .catalog-banner {
    height: 500px !important;
  }

  .catalog-banner-title {
    margin-top: 20px !important;
  }

  .catalog-banner-content {
    flex-wrap: wrap !important;
    height: 100% !important;
    width: 100% !important;
  }

  .catalog-banner-img {
    width: 100% !important;
    height: auto !important;
  }

  /* Stats Banner - İstatistik kartlarının görünümü */
  .stats-banner {
    height: 650px !important;
  }

  .stats-banner-content {
    height: 100% !important;
    flex-direction: column;
  }

  /* Stat Count Font Size */
  .stat-count {
    font-size: 30px;
  }

  .stat-text {
    font-size: 14px;
  }
}
