@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
  --main-color: #443547;
  --second-color: #dac4af;
  --third-color: #a5abab;
  --fourth-color: #f1f1f1;
  --fifth-color: #f1f1f1;
  --sixth-color: #f1f1f1;
  --dark-color: #222222;
  --light-color: #f1f1f1;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Bembo Infant";
  src: url("../font/font.ttf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

.body-padding {
  padding-top: 76px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bembo Infant", sans-serif;
}

.main-page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
  background-size: cover;
  background-position: center;
}

.architecture-page {
  height: 100vh;
  display: flex;
  justify-content: start;
  align-items: start;
  background-color: #f1f1f1;
  background-size: cover;
  background-position: center;
}

.main-bg-img {
  background-image: url(../img/main-page-bg.jpg);
}

.architecture-bg-img {
  background-image: url(../img/architecture-bg.jpg);
}

.opacity-bg {
  background-color: rgba(0, 0, 0, 0.5);
  width: 70%;
  height: 70%;
  position: absolute;
  border-radius: 10px;
}

a.select-service {
  height: 100px;
  width: 200px;
  background-color: var(--second-color);
  color: var(--dark-color);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  font-weight: bold;
  border: 4px solid #f1f1f1;
  text-decoration: none;
}

a.select-service:hover {
  background-color: var(--main-color);
  color: var(--light-color);
  transition: 0.5s;
}

/* Flex row-center */
.dfacfc {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

/* Sosyal medya ikonları */
.social-medias {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 20px;
  flex-direction: row;
}

.social-medias .item {
  display: flex;
  align-items: center;
  color: var(--light-color);
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.social-medias .item .icon {
  display: flex;
  margin-right: 10px;
  font-size: 16px;
  background-color: var(--second-color);
  color: var(--dark-color);
  padding: 12px;
  border-radius: 8px;
}

.social-medias .item:hover .icon {
  background-color: var(--main-color);
  color: var(--light-color);
}

/* Responsive için medya sorgusu */
@media (max-width: 768px) {
  .mb-d-column {
    flex-direction: column;
    gap: 8px;
  }

  .opacity-bg {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
}

/* MENÜ STİLLERİ — BURAYI BÜYÜTTÜK */

ul.canvas-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0 auto; /* Yatayda ortalama sağla */
  padding: 0;
}

ul.canvas-menu li {
  margin: 0 10px 20px 10px; /* Alttan boşluk bıraktık ki birbirine yapışmasın */
}

ul.canvas-menu li a {
  color: var(--dark-color);
  font-size: 36px; /* Menü metnini büyüttük */
  font-weight: 600; /* Yazı kalınlığı */
  text-decoration: none;
  transition: 0.3s;
}

ul.canvas-menu li a:hover {
  color: var(--main-color);
  transition: 0.5s;
}

/* Dil seçimi dropdown */
.langDropdown {
  margin-right: 12px;
}

/* Hero section tam yüksekliği */
.hero-h100 {
  height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Kart tasarımları */
.m-card {
  background-color: var(--second-color);
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Services bölümü */
.services {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 32px 8px 40px 8px;
}

.services-items {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: row;
  background-color: var(--light-color);
  color: #000;
  padding: 12px;
  border-radius: 10px;
  margin-top: 24px;
}

.services-items.reverse {
  flex-direction: row-reverse;
}

.service-content {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  background-color: var(--light-color);
  color: #000;
  padding: 12px;
  border-radius: 10px;
  margin-top: 24px;
}

.service-content .item-head {
  font-size: 24px;
  font-weight: bold;
}

.service-content .item-body {
  font-size: 16px;
  font-weight: 300;
}

.services-img {
  aspect-ratio: 1/1;
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 10px;
  margin: 10px;
  cursor: pointer;
  transition: 0.5s;
}

.services-img:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.item-more a {
  display: flex;
  align-items: center;
  justify-content: start;
  color: var(--third-color);
  font-weight: thin;
  text-decoration: none;
  font-size: 12px;
  margin-top: 8px;
}

.item-more a:after {
  font-family: "bootstrap-icons";
  content: "\F138";
  margin-left: 4px;
}

/* Awards */
.awards {
  margin: 32px 0;
}

.awards-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #000;
  padding: 12px;
  border-radius: 10px;
  margin-top: 24px;
  border: 3px solid #f5f5f5;
  position: relative;
}

.award-img {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  height: 170px;
  height: auto;
}

.award-image {
  aspect-ratio: 16/9;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  margin: 10px;
  cursor: pointer;
  transition: 0.5s;
}

.award-image:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.award-content {
  margin-top: 150px;
}

/* İkinci font */
.second-font {
  font-family: "Playfair Display", serif !important;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 48px 0;
}

footer .nav .nav-link,
.social-icons a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

footer .nav .nav-link:hover,
.social-icons a:hover {
  color: var(--second-color);
  opacity: 1;
}

.social-icons {
  font-size: 1.5rem;
}

.nav-link {
  padding: 0.3rem 0;
}

/* Hero banner */
.hero-banner {
  position: relative;
  height: 60vh;
  background-image: url("../img/asd.jpeg");
  background-attachment: fixed; /* Sabit kalmasını sağlayan kritik kısım */
  background-size: cover;
  background-position: center;
  color: black;
  display: flex;
  align-items: center;
}

.hero-banner2 {
  position: relative;
  height: 60vh;
  background-attachment: fixed; /* Sabit kalmasını sağlayan kritik kısım */
  background-size: cover;
  background-position: center;
  color: black;
  display: flex;
  align-items: center;
}
.breadcrumb-custom {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  padding: 20px;
}

.breadcrumb-custom .breadcrumb-item a {
  color: var(--light-color);
  text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: var(--second-color);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  margin-bottom: 50px;
  color: var(--main-color);
}

/* İstatistik kartları */
.stats-card {
  /* background-color: var(--light-color); */
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.stats-icon {
  font-size: 2.5rem;
  color: var(--second-color);
  margin-bottom: 20px;
}

/* Core Value Card */
.core-value-card {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
  border: 3px solid #f5f5f5;
}

.core-value-card:hover {
  transform: translateY(-5px);
  border-color: var(--second-color);
}

.core-value-card h3 {
  color: var(--main-color);
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

.company-story {
  line-height: 1.8;
  color: var(--dark-color);
}

@media (max-width: 768px) {
  .hero-banner {
    height: 50vh;
    margin-top: 60px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .stats-card {
    margin-bottom: 20px;
  }

  .core-value-card {
    margin-bottom: 20px;
  }
}

/* Projeler sekmeleri */
.project-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

/* .project-tab {
  padding: 15px 30px;
  font-size: 18px;
  color: var(--dark-color);
  text-decoration: none;
  position: relative;
  margin: 0 15px;
} */
.project-tab {
  padding: 0px 30px;
  font-size: 16px;
  color: var(--dark-color);
  text-decoration: none;
  position: relative;
}

.project-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--second-color);
}

/* Proje kartları */
.project-card {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.project-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(68, 53, 71, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-img {
  transform: scale(1.1);
}

.project-title {
  color: white;
  font-size: 24px;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: transform 0.5s ease;
  text-align: center;
}

.project-category {
  color: var(--second-color);
  font-size: 16px;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.project-card:hover .project-title,
.project-card:hover .project-category {
  transform: translateY(0);
}

/* Proje detay */
.project-detail-header {
  /* background-color: var(--fourth-color); */
  padding: 50px 0;
}

.project-info-table {
  width: 100%;
  margin-bottom: 40px;
}

.project-info-table th {
  width: 200px;
  padding: 15px;
  /* background-color: var(--fourth-color); */
  background-color: radial-gradient(circle, #b3b3b3, #e6e6e6, #ffffff);
  color: var(--main-color);
  font-weight: 600;
}

.project-info-table td {
  padding: 15px;

  color: radial-gradient(circle, #b3b3b3, #e6e6e6, #ffffff);

  /* color: var(--dark-color); */
}

.project-gallery {
  margin: 50px 0;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .project-tab {
    padding: 10px 15px;
    font-size: 16px;
    margin: 0 5px;
  }

  .project-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .project-tabs a {
    display: block;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }

  .project-tabs a:last-child {
    border-bottom: none;
  }

  .opacity {
    display: none;
  }

  .project-img {
    height: 250px;
  }

  .project-title {
    font-size: 20px;
  }
}

/* İletişim formu */
.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.form-control {
  border: 1px solid #e0e0e0;
  padding: 12px;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--second-color);
  box-shadow: none;
}

.submit-btn {
  background-color: var(--second-color);
  color: var(--dark-color);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--main-color);
  color: var(--light-color);
}

/* İletişim bilgi kartı */
.contact-info-card {
  background-color: var(--fourth-color);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-info-icon {
  font-size: 2rem;
  color: var(--second-color);
  margin-bottom: 20px;
}

/* Harita kapsayıcı */
.map-container {
  height: 400px;
  width: 100%;
  background-color: var(--fourth-color);
  margin: 50px 0;
  border-radius: 10px;
  overflow: hidden;
}

.section-title {
  font-family: "Playfair Display", serif;
  color: var(--main-color);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero-banner {
    height: 50vh;
    margin-top: 60px;
  }

  .contact-form {
    margin-top: -50px;
    padding: 20px;
  }

  .contact-info-card {
    margin-bottom: 20px;
  }

  .map-container {
    height: 300px;
  }
}

.custom-offcanvas {
  background-color: rgba(115, 115, 115, 0.9) !important;
  color: black !important;
}
.custom-offcanvas a {
  color: black !important;
}
.canvas-menu a {
  color: black !important;
  font-size: 2rem !important;
  font-family: "Bembo Infant";
}
.canvas-menu a:hover {
  color: var(--second-color) !important;
}
/* .custom-offcanvas-body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bembo Infant";
} */

.custom-offcanvas-body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bembo Infant";
  height: 100vh; /* Offcanvas yüksekliğini tam ekran yap */
  flex-direction: column; /* İçeriği dikey olarak hizala */
}

.btn-close {
  background-color: white !important;
}

.deneme123 {
  background-color: white;
  /* background: linear-gradient(to bottom, #ffffff, #e6e6e6, #b3b3b3); */
  background: linear-gradient(to bottom, #ffffff, #e6e6e6, #d9d9d9);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  position: relative;
  z-index: 2;
  margin-left: 100px;
  margin-right: 100px;
}

.deneme124 {
  background-color: white;
  background: linear-gradient(to bottom, #ffffff, #e6e6e6, #d9d9d9);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 250px;
}

@media screen and (max-width: 768px) {
  .deneme124 {
    background: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }
}

@media screen and (max-width: 768px) {
  .deneme123 {
    background: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }
}

.dashess {
  width: 100%;
  margin-left: 15px;
  margin-top: 40px;
  margin-right: 50px;
}

.dashes {
  width: 50%;
  margin-left: 250px;
  margin-top: -10px;
}

.dashes div {
  border: 2px solid #000;
  opacity: 1;
  margin: 10px;
}

.dashess div {
  border: 2px solid #000;
  opacity: 1;
  margin: 10px;
}

.size1 {
  width: 80%;
  position: relative;
}
.size2 {
  width: 60%;
}
.size3 {
  width: 40%;
}
.size1::before {
  position: absolute;
  border: 10px solid #000;
  content: "";
  top: -10px;
  left: -22px;
}

.size1::after {
  position: absolute;
  border: 10px solid #000;
  content: "";
  top: -10px;
  right: -22px;
}

.awards .row {
  display: flex;
  align-items: stretch; /* Tüm kartları eşit yüksekte yapar */
  flex-wrap: wrap;
}

.awards-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  flex: 1 1 30%; /* 3 sütun yapısını korur */
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  height: 100%; /* Kartların aynı yükseklikte olmasını sağlar */
}

.award-img {
  width: 90%;
  height: 200px; /* Tüm resimleri aynı yükseklikte tutar */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Resmi kırpmadan sığdır */
  border-radius: 8px;
}

.award-content {
  flex-grow: 1; /* Açıklamanın eşit genişlemesini sağlar */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.award-content h3 {
  font-size: 20px;
  margin: 15px 0;
}

.award-content p {
  /* flex-grow: 1; 
  font-size: 14px;
  color: #555; */

  font-size: 14px;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Maksimum 5 satır olacak */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; /* Fazla metni ... ile göster */
}

.award-content .btn {
  align-self: start; /* Butonu aşağıya sabitler */
  margin-top: 10px;
}

/* Tablet ekranlar için 2 sütun */
@media (max-width: 992px) {
  .awards-item {
    flex: 1 1 45%; /* 2 sütun yapısı */
  }
}

/* Mobil ekranlar için 1 sütun */
@media (max-width: 768px) {
  .awards-item {
    flex: 1 1 100%; /* 1 sütun yapısı */
  }
}

/* Spinner Arkaplan */
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8); /* Hafif şeffaf arkaplan */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden; /* Başlangıçta gizli */
  opacity: 0;
  transition: 0;
}

/* Spinner Animasyonu */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.2);
  border-top: 5px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Spinner'ı Göster */
.spinner-overlay.show {
  visibility: visible;
  opacity: 1;
}

.custom-header {
  background-image: url("../img/breadcrumb-image.jpeg");

  background-size: cover; /* Resmi tam kaplama yap */
  background-position: center; /* Resmi ortala */
  background-repeat: no-repeat; /* Tekrar etmesin */
  width: 100%; /* Genişlik tam olsun */
  height: 80px; /* Header yüksekliği, isteğe göre artır */
}

.awards table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.awards th,
.awards td {
  padding: 12px 20px; /* İç boşluğu arttırarak genişlik sağlar */
  border-bottom: 1px solid #ddd; /* Hafif alt çizgi ekler */
}

.awards th {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px; /* Başlıkları daha ferah göstermek için */
}

.project-info {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.info-item:last-child {
  border-bottom: none;
}

.label {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 5px;
}

.value {
  font-size: 18px;
  font-weight: normal;
  color: #333;
}

.pagination {
  display: flex;
  justify-content: center; /* Yatayda ortala */
  align-items: center; /* Dikeyde ortala */
  gap: 15px; /* Butonlar arasına boşluk */
  margin-top: 20px; /* Üst boşluk */
  margin-bottom: 20px; /* Alt boşluk */
}

.pagination button {
  background-color: gray; /* Mavi buton */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px; /* Köşeleri yuvarla */
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination button:hover {
  background-color: black; /* Hover rengi */
}

.pagination button:disabled {
  background-color: #ccc; /* Pasif buton rengi */
  cursor: not-allowed;
}

#pageInfo {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.project-link {
  color: inherit; /* Metin rengini varsayılan olarak bırak (mavi yapma) */
  text-decoration: none; /* Altını çizme */
  cursor: pointer; /* Üzerine gelince el işareti çıksın */
}

.project-link:hover {
  color: inherit; /* Üzerine gelince de mavi olmasın */
  text-decoration: none; /* Altını çizme */
}

.header {
  display: flex;
  align-items: center; /* Dikeyde ortala */
  justify-content: start; /* Solda hizala */
  height: 60px; /* Header yüksekliğini sabit tut */
  padding: 10px 20px; /* İç boşluk ekleyerek sıkıştırmayı engelle */
}

.header-Logo {
  height: 90px; /* Logonun maksimum yüksekliği */
  width: auto; /* Oranları koru */
  max-height: 100%; /* Header içinde kalmasını sağla */
  object-fit: contain; /* Görsel bozulmadan küçült */
  margin-left: -20px; /* Logoyu sola kaydır */
}

.hidden {
  opacity: 0;
  pointer-events: none; /* Tıklamayı da engeller */
  transition: opacity 0.3s ease-in-out;
}

#imageModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  max-width: 50%;
  max-height: 80%;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #2b2a29;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.prev-btn {
  left: 20px;
}
.next-btn {
  right: 20px;
}

.prev-btn:hover,
.next-btn:hover {
  /* background: rgba(255, 255, 255, 0.5); */
}

.divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 140px; /* Çizginin toplam yüksekliği */
  position: relative;
}

.divider {
  display: flex;
  flex-direction: row; /* Yatay olarak hizalama */
  align-items: center;
  justify-content: center;
  gap: 18px; /* Noktalı ve düz çizgi arasındaki boşluk */
}

.dotted-line {
  width: 3px; /* Noktalı çizginin genişliği */
  height: 160px; /* Noktalı çizginin uzunluğu */
  background: repeating-linear-gradient(
    to bottom,
    black 0px,
    black 3px,
    transparent 3px,
    transparent 7px
  );
}

.solid-line {
  width: 4px; /* Orta çizginin genişliği */
  height: 240px; /* Orta çizginin uzunluğu */
  background-color: black;
}

.dfacfc1 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: auto;
}

.dfacfc2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: auto;
}

@media (max-width: 768px) {
  .main-page {
    height: auto;
    min-height: 100vh;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dfacfc1,
  .dfacfc2 {
    justify-content: center; /* Mobilde butonları ortala */
    margin-bottom: 15px;
  }

  a.select-service {
    width: 80%; /* Mobilde genişliği esnek yap */
    max-width: 250px;
    height: 80px;
    font-size: 18px;
  }

  @media (max-width: 768px) {
    .social-medias {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px; /* Boşluğu biraz daralttım */
      width: 100%;
      margin-top: 0px;
      padding: 10px 0;
    }

    .social-medias .item {
      display: flex;
      align-items: center;
      justify-content: flex-start; /* Metni sola hizaladım */
      width: 90%; /* Daha geniş alan kaplaması için */
      max-width: 300px; /* Mobil için uygun genişlik */
      padding: 8px 40px;
      border-radius: 12px;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .social-medias .item .icon {
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: 36px;
      min-height: 36px;
      font-size: 18px;
      background-color: var(--second-color);
      color: var(--dark-color);
      padding: 6px;
      border-radius: 8px;
      margin-right: 12px;
    }

    .social-medias .item .text {
      font-size: 14px;
      font-weight: bold;
      color: var(--light-color);
      flex: 1; /* Yazının daha dengeli yerleşmesini sağlar */
      text-align: left;
    }
  }

  .solid-line {
    width: 4px; /* Orta çizginin genişliği */
    height: 125px; /* Orta çizginin uzunluğu */
    background-color: black;
  }

  .dotted-line {
    width: 3px; /* Noktalı çizginin genişliği */
    height: 85px; /* Noktalı çizginin uzunluğu */
    background: repeating-linear-gradient(
      to bottom,
      black 0px,
      black 3px,
      transparent 3px,
      transparent 7px
    );
  }
}

/* Özgül Taşkın Başlık */
.main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  color: black;
  font-family: "abril Fatface";
}

/* Müteahhitlik Yazısı */
.sub-title {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  color: #cdc6c6;
  font-family: "abril Fatface";
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .main-title {
    font-size: 36px; /* Mobilde font küçültme */
  }

  .sub-title {
    font-size: 24px; /* Mobilde font küçültme */
    top: 56%; /* Mobilde hizalama düzeltme */
  }

  .dashes {
    width: 50%;
    margin-left: 150px;
    margin-top: 10px;
  }
}

.responsive-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* 🟢 320px: iPhone 5, iPhone SE (1. nesil), Eski Samsung Cihazları */
@media screen and (max-width: 320px) {
  .langDropdown {
    margin-right: 1px !important;
  }
}

/* 🟢 360px: Samsung Galaxy S5, Galaxy A50, S7, S8, S9, J7 */
@media screen and (max-width: 360px) {
  .langDropdown {
    margin-right: 3px !important;
  }
}

/* 🟢 390px: iPhone 12, iPhone 12 Pro */
@media screen and (max-width: 390px) {
  .langDropdown {
    margin-right: 4px !important;
    width: 110px !important;
  }
  .breadcrumb-custom.container {
    top: 150px !important;
  }
}

/* 🟢 375px: iPhone 6, 7, 8, X, 11, 12, 13, 13 Mini, Galaxy S20, S21 */
@media screen and (max-width: 375px) {
  .langDropdown {
    width: 100px !important;
    margin-right: 12px !important;
  }

  .breadcrumb-custom.container {
    top: 150px !important;
  }
}

/* 🟢 412px: Samsung Galaxy S22 Ultra, S23 Ultra, S24 Ultra, Pixel 4XL, Pixel 5 */
@media screen and (max-width: 412px) {
  .langDropdown {
    width: 98px !important;
    margin-right: 14px !important;
  }
}

/* 🟢 430px: iPhone 14 Pro Max, iPhone 15 Pro Max */
@media screen and (max-width: 430px) {
  .langDropdown {
    margin-right: 6px !important;
    width: 110px !important;
  }
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .offcanvas.offcanvas-end {
    width: auto !important; /* veya width: unset; */
  }
}

body.offcanvas-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .logo img {
    width: 30%;
    max-width: 250px;
    display: block;
    margin: 0 auto;
  }
}

.loader {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
