@import url('css/bootstrap-grid.css');
@import url('css/bootstrap-grid.min.css.map');
@import url('css/bootstrap.min.css');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden; /* Yatay kaydırmayı önler */
  font-family: 'Roboto', sans-serif !important;
}

.efect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Karartma efekti */
  z-index: 1000;
  display: flex; /* Flexbox ile ortalamayı sağlar */
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Tıklanabilirliği engellemeden görsel etkisi sağlar */
  opacity: 0; /* Başlangıçta görünmez */
  transition: opacity 0.5s ease; /* Geçiş süresi ve efekti */
}
.efect.visible {
  opacity: 1;
}
.loader {
  border: 8px solid #f3f3f3; /* Arka plan rengi */
  border-top: 8px solid #727e86; /* Spinner rengi */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite; /* Döndürme animasyonu */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}




:root {
  --background: #ffffff;
  --foreground: #24292e;
  --card: #ffffff;
  --card-foreground: #24292e;
  --popover: #ffffff;
  --popover-foreground: #24292e;
  --primary: #1f2937;
  --primary-foreground: #ffffff;
  --secondary: #e5e7eb;
  --secondary-foreground: #1f2937;
  --muted: #e5e7eb;
  --muted-foreground: #6b7280;
  --accent: #e5e7eb;
  --accent-foreground: #1f2937;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #d1d5db;
  --input: #d1d5db;
  --ring: #1f2937;
  --radius: 0.5rem;
}
.dark {
  --background: #1f2937;
  --foreground: #f9fafb;
  --card: #1f2937;
  --card-foreground: #f9fafb;
  --popover: #1f2937;
  --popover-foreground: #f9fafb;
  --primary: #f9fafb;
  --primary-foreground: #1f2937;
  --secondary: #374151;
  --secondary-foreground: #f9fafb;
  --muted: #374151;
  --muted-foreground: #a1a1aa;
  --accent: #374151;
  --accent-foreground: #f9fafb;
  --destructive: #b91c1c;
  --destructive-foreground: #f9fafb;
  --border: #374151;
  --input: #374151;
  --ring: #d1d5db;
}

.text-muted-foreground {
  font-size: 13px !important;
}
.contactusSemibold {
  color: white;
  font-weight: 900;
}
.bg-card {
  background-color: var(--card);
}
.border-border {
  border-color: var(--border);
}
.bg-secondary {
  background-color: var(--secondary);
}
.text-secondary-foreground {
  color: var(--secondary-foreground);
}
.hover\:bg-secondary\/80:hover {
  background-color: rgba(229, 231, 235, 0.8);
}

.loadMore {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 0;
  border: 2px solid #986667;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  width: 15%;
  text-align: center;
  background-color: #986667;
}
.loadMore::after {
  content: '';
  display: inline-block;
  width: 10px; /* İkonun genişliği */
  height: 10px; /* İkonun yüksekliği */
  background-image: url('../assets/loadMoreIcon.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px; /* İkon ile metin arasındaki boşluk */
  vertical-align: middle; /* Metin ile hizalama */
}
.navbar-toggler {
  position: fixed; 
  top: 5px;     
  right: 10px;    
  z-index: 1050;  
}
.navbar-brand {
  margin-left: 5%;
}
#navbarDiv {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  justify-content: space-between; 
  align-items: center; 
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Sol ve sağ hizalama için öğeleri ayırır */
  padding: 0 20px; /* Logo ve sağdaki öğeler arasındaki boşluk için padding */
}

.navbar-right-elements {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.navbar-right-elements img {
  margin: 0 10px;
}

.navbar-nav .nav-item {
  margin: 0 10%; /* Aralığı artırdık */
  display: flex;
  align-items: center;
} 

.nav-item .nav-link {
  color: white; /* Yazıları beyaz yap */
  text-decoration: none;
}

.nav-item:hover .nav-link {
  color: #a9a9a9 !important; /* Üzerine gelince karart */
}

.searchItem{
  margin-left: auto; /* Sağ tarafa çeker */
  display: flex;
  align-items: center;
  gap: 50px; /* ENG ve Arrow ile Contact arasında boşluk ekler */
} 

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px; /* ENG ile aşağı ok arasında boşluk */
  cursor: pointer;
  position: relative;
} 

.language-selector .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 5px); /* Dropdown'u tam okun altına getirir, 5px boşluk ekler */
  left: 0; /* Dropdown'u okun hizasına dayar */
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  z-index: 1000;
  border-radius: 5px;
}

.language-selector:hover .dropdown {
  display: block;
}

.language-selector .dropdown a {
  color: black;
  text-decoration: none;
  display: block;
  padding: 5px 10px;
}

.language-selector .dropdown a:hover {
  background-color: #f0f0f0;
}

.nav-item img {
  margin: 0 5px; 
}

.nav-item .searchItem .nav-link {
  margin: 0 5px; 
}

.contactBtn {
  border: 1px solid white;
  color: white;
  display: none;
  padding: 7px 43px;
  border-radius: 10px;
  margin-right: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-wrap: nowrap;
}

.contactBtn:hover {
  background-color: white; /* Arka plan rengini beyaz yap */
  color: black; /* Yazı rengini siyah yap */
}


#language-selector {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  gap:20px
}

#language-selector img {
  margin-left: 8px;
}

.nav-item {
  position: relative;
}

#language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 100;
  background-color: rgba(33, 37, 41, 0.8);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 120px;
  z-index: 1000;
}


#language-dropdown li {
  list-style: none;
  padding: 8px 16px;
}

#language-dropdown li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  display: block;
  transition: background-color 0.3s ease;
}

#language-dropdown li:hover {
  background-color: #24292e;
  opacity: 1;
}

/* Hover animasyonu */
#language-dropdown.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
      opacity: 1;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-item {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center; /* Menüler ve ENG hizalanır */
  }

 

  .language-selector {
    margin-left: 25%;
    align-items: center;
    display: flex;
    justify-content: flex-start;
  }
}

.full-height {
  min-height: 100vh; /* Sayfanın tamamını kapsar */
  display: flex;
  flex-direction: column; /* Dikey düzenleme */
  justify-content: center; /* Merkezi hizalama */
  align-items: center; /* Merkezi hizalama */
  padding-top: 90px; /* Üstten boşluk ekleyin */
  box-sizing: border-box; /* Padding'in yüksekliği etkilemesini sağlar */
  color: rgb(255, 255, 255);
  text-align: center; /* Metni ortala */
}

.full-height p:first-child {
  font-weight: bold;
  font-size: 6em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0px;
  line-height: 1.1;
  width: 100%;
  margin-bottom: 3%;
}

.full-height p.sub-paragraph {
  font-weight: bold;
  font-size: 4.5em; /* Boyutu biraz küçült */
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  margin: 0; /* Margin'i sıfırlama */
  line-height: 1.1; /* Satır yüksekliğini ayarlama */
}

.full-height p.paragraph {
  font-size: 1.3em;
  margin: 20px 0;
  line-height: 1.5;
  width: 45%;
  margin-left: 27%;
}

.btn-container {
  display: flex;
  gap: 20px; /* Butonlar arasındaki boşluğu ayarlama */
  align-items: center; /* Yatayda ortala */
  justify-content: center; /* Tam ortala */
  margin-top: 20px; /* Yazının üst kısmından boşluk ekleme */
}
.link-container{
  cursor:pointer
}
.btn-container #discoverMore,
.btn-container #ourService {
  font-size: 1em;
  padding: 10px 20px;
  width: 150px;
  height: 57px;
  text-align: center; /* Metni yatayda ortala */
  line-height: 57px; /* Metni dikeyde ortalamak için yükseklikle eşleşir */
  overflow: hidden; /* Taşan metni gizle */
  white-space: nowrap; /* Metni tek satırda tutar */
  text-overflow: ellipsis; /* Taşan metni üç nokta ile gösterir */
  cursor: pointer;
  display: flex; /* İçeriği merkezleme için flexbox kullanımı */
  align-items: center; /* Dikeyde ortalama */
  justify-content: center; /* Yatayda ortalama */
  border: 2px solid white; /* Kenar çizgisi */
  border-radius: 4px; /* Kenarları yuvarlatma */
  color: #fff; /* Metin rengi */
  text-decoration: none; /* Metin alt çizgiyi kaldırır */
  font-weight: bold; /* Metni kalın yapar */
}

.btn-container #ourService {
  background-color: transparent;
  border-color: white;
}

.btn-container #discoverMore {
  background-color: #986667;
  border-color: white;
}

/* Çizgiler ve ikinci bölüm için CSS */
.lines-container {
  position: relative;
  width: 100%;
  height: 20vh; /* Ekran yüksekliğinde */
  display: flex;
  flex-direction: column;
  margin-top: 3%;
  align-items: center; /* Çizgileri ortalar */
  pointer-events: none; /* Çizgilerin üzerine tıklamayı engelle */
}

.line {
  width: 100%;
  height: 4px;
  background-color: #d4a5a5;
  margin: 7px 0;
}
/* Genel Stiller */


.paragraphText-Container,
.subscribe,
.yapıTelText {
  flex: 1 1 30%; /* Genişlik, büyüme ve küçülme ayarları (Daha geniş alan) */
  min-width: 300px; /* Minimum genişlik */
  box-sizing: border-box; /* Padding ve border ile birlikte genişliği hesapla */
}

.paragraphText-Container {
  margin-left: 0; /* Margin kaldırıldı, gerektiğinde yeniden ayarlayın */
}

.yapıTelText {
  max-width: 1200px; /* Maksimum genişlik */
  padding: 20px; /* İç boşluk */
  background-color: #fff; /* Arka plan rengi */
  border: 1px solid #ddd; /* Kenarlık rengi */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Gölgelendirme */
  border-radius: 8px; /* Köşe yuvarlaklığı */
  width: 100%; /* Genişlik ayarı */
  box-sizing: border-box; /* Padding ve border ile birlikte genişliği hesapla */
}

.information {
  font-size: 1.125em; /* Paragraf boyutu */
  line-height: 1.6; /* Satır yüksekliği */
  margin-bottom: 16px;
  color: #333; /* Metin rengi */
  text-align: justify; /* Metni iki kenar hizalayarak düzenler */
  padding: 24px; /* İç boşluğu kaldır */
}

.p-4 {
  padding: 16px; /* Padding 4 birimi (16px) */
  float: left;
}

.list {
  list-style-type: none; /* Liste işaretlerini kaldırır */
  padding: 0;
  margin: 0;
}

.list-item {
  font-size: 1rem; /* Liste öğesi boyutu */
  color: #6b7280; /* Metin rengi (Tailwind'deki text-muted-foreground rengi) */
  margin-bottom: 8px; /* Liste öğeleri arasındaki boşluk */
}



.social-icons {
  display: flex; /* İkonları yan yana hizalar */
  gap: 30px; /* İkonlar arasındaki boşluk */
}



.social-icons img {
  width: 20px; /* İkon boyutu */
  height: 20px; /* İkon boyutu */
  object-fit: contain; /* İkonun kutu içinde tam görünmesini sağlar */
}
#titleText {
  font-size: 1rem !important;
}

.social-icon:hover img {
  filter: brightness(0.8); /* Hover efekti */
}

.contact-information-container {
  max-width: 1200px; /* Maksimum genişlik */
  margin: 0 auto; /* Merkezi hizalama */
}

.contact {
  font-size: 2rem; /* Başlık boyutu */
  font-weight: bold;
  margin-bottom: 16px;
}

.contactIcon {
  display: flex;
  flex-direction: column; /* İkonları dikey hizalar */
  align-items: center; /* İçeriği ortalar */
  gap: 20px; /* İkonlar arasındaki boşluk */
}

.infoMail,
.infoPhone {
  font-size: 1rem; /* İletişim bilgisi boyutu */
  margin: 0; /* Margin kaldırıldı */
}
/* Genel Stil */

#section4 h1 {
  text-align: left;
  font-size: 3.5rem;
  margin-bottom: 35px;
}

#section4 .sidebar {
  float: left;
  width: 20%;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  position: relative;
  padding-left: 20px; 
  margin-bottom: 10px;
  font-size: 1em; 
  color: #C2C7D6; 
  transition: color 0.3s, border-left 0.3s; 
  cursor:pointer
}
.all{
  font-weight: bolder;
  color: #986667 !important; 
}
.all::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px; 
  height: 100%; 
  background-color: transparent; 
  transition: background-color 0.3s;
  background-color: #986667;
}

#section4 .project-grid {
  float: right;
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#section4 .project-card {
  background-color: #986667;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  width: calc(100% - 20px);
  position: relative; /* Important for positioning the .soon text */
}

#section4 .project-card img {
  width: 100%;
  height: auto;
  display: block;
}

#section4 .project-card .title {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 10px;
  background-color: #986667;
  color: white;
}

#section4 .project-card .description {
  padding: 10px;
  color: white;
}

#section4 .project-card .soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-align: center;
  /* Optional: adds a background behind the text for better visibility */
  padding: 10px 20px; /* Optional: adds some padding around the text */
  border-radius: 5px; /* Optional: adds rounded corners */
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.next-prev {
  background-color: #65b2b2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 40%;
  
}

.page-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-number {
  width: 10px;
  height: 10px;
  background-color: #f1f1f1;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.page-number.active {
  background-color: #986c6c;
}

.page-number:hover {
  background-color: #cccccc;


}


/* 5. Bölüm: News & Articles */
#section5 {
  padding: 40px 0;
  clear: both;
}

#section5 h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 35px;
}

#section5 .grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 6%;
}



#section5 .bg-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

#section5 .bg-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#section5 .p-4 {
  padding: 16px;
}

#section5 .text-lg {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

#section5 .text-muted-foreground {
  color: #6c757d;
  margin-bottom: 8px;
}

#section5 .text-primary {
  color: #986667 !important;
  text-decoration: none;
}

#section5 .text-primary:hover {
  text-decoration: underline;
}

.texts {
  width: 50%;
  margin-left: 13%;
}

.subtitle {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 8px;
}

.heading h1 {
  font-size: 1.5em;
  margin-bottom: 16px;
}

.submit-button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #0056b3;
}


/* Mobil ekranlar için stil düzenlemesi */

/* Genel Stil */
.section-two {
  background-color: #ffffff;
  color: #333;
  padding: 2% 12%;
  text-align: justify;
}

.aboutTitle {
  margin-top: 3%;
  text-align: left;
  font-size: 1em;
  color: #66B2B2;
  margin-bottom: 20px;
  font-weight: 900;

}

.media-container {
  display: flex;
  flex-direction: column; /* Ekran küçükse dikey hizalama */
  align-items: center; /* Orta hizalama */
  gap: 30px; /* Boşlukları ayarla */
  margin-top: 30px;
}

.image-container {
  display: flex;
  flex-direction: column; /* Ekran küçükse dikey hizalama */
  gap: 20px;
}

.image-item img {
  width: 100%; /* Ekran boyutuna göre genişlik */
  height: auto;
}

#aboutImage2 {
  margin-top: 2rem;
}

.paragraph-container {
  flex: 1;
  text-align: center;
}

.paragraph-container h2 {
  margin-top: 0;
  font-size: 3rem;
}

.paragraph-container p {
  margin-bottom: 31px;
  margin-top: 30px;
  line-height: 40px;
  width: 100%;
  color: #686868;
text-align: justify;
}



#haveAProject {
  background-color: #986667;
  border-color: white;
  font-size: 1em;
  padding: 10px 20px;
  width: 25%;
  text-align: center;
  line-height: 170%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  margin-top: 3rem;
}

/* Genel Stil Ayarları */
.section-three {
  background-color: #ffffff;
  color: #333;
  padding: 0% 8%;
  line-height: 188%;
}

.section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr; /* Küçük ekranlarda tek sütun */
  gap: 20px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: justify;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-text {
  color: #555;
  margin-bottom: 20px;
  font-size: 1rem;
}

.card-link {
  font-weight: 600;
  color: #986667;
  text-decoration: underline;
}

.card-link:hover {
  text-decoration: black;
}

.text-center {
  text-align: center;
  margin-top: 40px;
}

.explore-button {
  background-color: #986667;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  line-height: 170%;
  text-decoration: none;
  display: inline-block;
}

.explore-button:hover {
  background-color: #774f50;
  color: rgb(173, 170, 170);
  text-decoration: underline;
}


.contact-form h2 {
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: bold;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}



.contact-form button:hover {
    background-color: #75463f;
}


.text-container h3 {
  font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
}










.contact-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  padding: 40px 0;
  clear: both;
  overflow: hidden; /* Bu, içeriğin dışarı taşmasını engeller */
}
.contactUsTitle{
    text-align: left;
    font-size: 1em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 900;
}
.background-image {
  position: absolute;
  top: 10px;
  right: 0;
  width: 100%;
  height: 75%;
  background-image: url(../assets/contactUsImage.png);
  background-size: cover;
  background-position: center;
  filter: brightness(70%);

}

.flex{
  display: flex
  ;
      align-items: flex-start;
      margin-top: 5%;
      gap: 2%;
}

.contact-form-container {
  position: relative;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  width: 80%;
  margin:10%
}

.contact-form h2 {
  margin-bottom: 25px;
  font-size: 26px;
  font-weight: bold;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  
}

.contact-form button {
  width: 38%;
  padding: 12px;
  background-color: #8B5E57;
  color: white;
  border: none;
  border-radius: 6%;
  font-size: 16px;
  cursor: pointer;
  line-height: 126%;
}

.contact-form button:hover {
  background-color: #75463f;
}

.text-container {
  position: relative;
  max-width: 45%;
  color: white;
  padding-left: 0px;
  margin-bottom: 14%;
  margin-right: 13%;
  
}

.text-container h3 {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 20px;
}

.text-container p {
  font-size: 22px;
  line-height: 2.1;
}

/* Mevcut tasarım korunuyor */

/* Responsive Design */
@media (max-width: 1200px) {






  .text-container {
    max-width: 100%; /* İçerik genişliği sınırlandırıldı */
    margin: 20px auto;
    text-align: center; /* Küçük ekranlarda ortalanmış metin */
  }


}





footer {
  background-color: #fff;
  padding: 40px 0;
}
.social-links {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.company-info img.footerBrand {
  width: 150px;
  margin-bottom: 15px;
}

.footer-container {
  align-items: flex-start;
  max-width: 1500px;
  margin: 0 auto;
  gap: 7%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}
.footer-column .links{
  text-align: center;

}
.footer-column {
  margin: 20px;
}

.footer-column h2,
.footer-column h3 {
  color: #686868;
  margin-bottom: 15px;
  font-weight: bolder;
  font-size: 1em;
  text-transform: uppercase;
}

.footer-column p {
  color: #686868;
  font-size: 14px;
  line-height: 2.5;
  width: 130%;
}
.company-info {
  flex: 1;
  min-width: 20%;
}
 .links{
padding-left: 30%;
text-align: left;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start; 
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  color: #92BFB1;
  font-size: 18px;
  text-decoration: none;
  margin-bottom: 28px;
  width: 32px;
  height: 32px;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links ul li {
  margin-bottom: 32%;
}

.links ul li a {
  color:  #686868;
  text-decoration: none;
}

.links ul li a:hover {
  color: #B49792;
}

.subscribe input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.subscribe button {
  width: 30%;
  padding: 10px;
  background-color: #92BFB1;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.footer-bottom {
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 20px;
  align-items: flex-start;
  margin: 0% 10%;
  position: relative;
}
.footer-bottom p {
  margin-bottom: 10px;
  color: #666;
  position: absolute;
  left: 8%;
  transform: translateX(-50%);
  font-size: 1rem;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 0;
}

.footer-bottom ul li {
  display: inline;
  margin-left: 20px;
  margin: 0 10px;
}

.footer-bottom ul li a {
  color: #333;
  text-decoration: none;
  color: #555;
}

.footer-bottom ul li a:hover {
  color: #B49792;
}
.footerBrand{
  margin-bottom: 10px;
}

.news-information, .news-date {
  color: #986667;
  font-size: 1rem; /* İhtiyaca göre ayarlayın */
  font-weight: bolder;
}
.news-date {
  color: #686868;
  margin-left: 6.9rem; /* Aralarındaki boşluğu ayarlamak için */
}
.card-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}









 /* Ana kapsayıcı */
 .main-container {
  background-color: #ffebd2;
  width: 700px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  /* Başlangıçta gizlenmesi için */
  position: relative;
  /* Ortalamak için gerekli ayarlama */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Başlık */
header h1 {
  font-size: 52px;
  color: #a36256;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
  /* Başlığı ortalamak */
}

/* Navigasyon Sekmeleri */
.navigation-tabs {
  display: flex;
  justify-content: space-around;
  margin: 40px 0;

}

.navigation-tab {
  background-color: transparent;
  padding: 10px;
  font-size: 18px;
  color: #a36256;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.3s ease;
  /* Hover'da yumuşak geçiş */
}

.navigation-tab:hover {
  color: #8b4f45;
  /* Hover rengini değiştirdim */
}

.active-tab {
  border-bottom: 2px solid #a36256;
  font-weight: bold;
  margin-bottom: -1px;
}

/* İçerik konteyneri (scroll aktif olacak) */
.scrollable-content-wrapper {
  max-height: 150px;
  overflow-y: auto;
  padding-right: 10px;
  border: 1px solid #ffebd2;
  /* Çerçeve ekledim */
  border-radius: 5px;
}

/* İçerik */
.scrollable-content {
  text-align: left;
  font-size: 16px;
  color: #6b4b3b;
  line-height: 1.5;
  padding-right: 20px;
}

/* Düğmeler */
.action-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

button {
  border: none;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-allow-all {
  background-color: #a36256;
  color: white;
}

.btn-allow-all:hover {
  background-color: #8b4f45;
}

.btn-save {
  background-color: transparent;
  border: 1px solid #a36256;
  color: #a36256;
}

.btn-save:hover {
  background-color: #f7e5d6;
  border: 1px solid #a36256;
}

.btn-reject-all {
  background-color: transparent;
  color: #a36256;
  border: 1px solid #a36256;

}

.btn-reject-all:hover {
  background-color: #e6b99c;
}

/* Kaydırma çubuğu özelleştirmesi (WebKit Tarayıcıları için) */
.scrollable-content-wrapper::-webkit-scrollbar {
  width: 8px;
  /* Kaydırma çubuğunun genişliği */
}

.scrollable-content-wrapper::-webkit-scrollbar-track {
  background: #f0d1be;
  /* Arka plan rengi (scrollbar track) */
  border-radius: 10px;
}

.scrollable-content-wrapper::-webkit-scrollbar-thumb {
  background-color: #a36256;
  /* Kaydırma çubuğu rengi */
  border-radius: 10px;
  /* Yuvarlatılmış köşeler */
  border: 2px solid #f0d1be;
}

.scrollable-content-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #8b4f45;
}

.scrollable-content-wrapper::-webkit-scrollbar-thumb:active {
  background-color: #6b4b3b;
}

/* Logo */
.imgLogo {
  width: 19%;
  height: 19%;
  display: block;
}
.navbar {
  -webkit-user-select: none; /* Chrome, Safari ve Opera */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Standart destek */
}
/* Mobil cihazlar (320px - 480px) */
@media only screen and (max-width: 480px) {
  .main-container {
    width: 90%;
    padding: 20px;
    top: 32% !important;
  }

  header h1 {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .navigation-tab {
    font-size: 14px;
  }

  .scrollable-content {
    font-size: 14px;
  }

  button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .imgLogo {
    width: 35%;
    height: 35%;
  }
}

/* Tabletler (481px - 768px) */
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .main-container {
    width: 80%;
    padding: 30px;
   
  }

  header h1 {
    font-size: 42px;
  }

  .navigation-tab {
    font-size: 16px;
  }

  .scrollable-content {
    font-size: 15px;
  }

  button {
    padding: 12px 25px;
    font-size: 15px;
   
  }

  .imgLogo {
    width: 25%;
    height: 25%;
  }
}

/* Küçük Laptoplar (769px - 1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .main-container {
    width: 75%;
    padding: 35px;
  }

  header h1 {
    font-size: 48px;
  }

  .navigation-tab {
    font-size: 18px;
  }

  .scrollable-content {
    font-size: 16px;
  }

  button {
    padding: 14px 28px;
    font-size: 16px;
  }

  .imgLogo {
    width: 22%;
    height: 22%;
  }
}

/* Büyük Ekranlar (1025px ve üstü) */
@media only screen and (min-width: 1025px) {
  .main-container {
    width: 700px;
  }

  header h1 {
    font-size: 52px;
  }

  .navigation-tab {
    font-size: 18px;
  }

  .scrollable-content {
    font-size: 16px;
  }

  button {
    padding: 15px 30px;
    font-size: 16px;
  }

  .imgLogo {
    width: 19%;
    height: 19%;
  }
}
@media (max-width: 1665px) {
  html, body {
    overflow-x: hidden !important;
  }
}
@media (max-width: 1024px) {
  .loadMore {
      width: 25%; /* Orta boyutlu ekranlar için genişlik */
      padding: 0.6rem 1.2rem; /* Padding'i küçült */
      font-size: 0.9rem; /* Font boyutunu küçült */
  }
  .loadMore::after {
      width: 8px; /* İkonun genişliğini küçült */
      height: 8px; /* İkonun yüksekliğini küçült */
  }
}

@media (max-width: 768px) {
  .loadMore {
      width: 40%; 
      padding: 0.5rem 1rem; 
      font-size: 0.8rem; 
  }
  .loadMore::after {
      width: 7px; 
      height: 7px; 
  }
  .navbar{
    padding: 0.5rem 2rem !important;
  }
}

@media (max-width: 480px) {
  .loadMore {
      width: 60%; 
      padding: 0.4rem 0.8rem;
      font-size: 0.7rem; 
  }
  .loadMore::after {
      width: 6px; 
      height: 6px; 
  }
    .navbar{
    padding: 0.5rem 2rem !important;
  }
}
@media (max-width: 1024px) {
  .news-information, .news-date {
      font-size: 0.9rem; 
  }
  .news-date {
      margin-left: 7rem; 
  }
}

@media (max-width: 768px) {
  .news-information, .news-date {
      font-size: 0.8rem; 
  }
  .news-date {
      margin-left: 5rem;
  }
}

@media (max-width: 480px) {
  .news-information, .news-date {
      font-size: 0.7rem; 
  }
  .news-date {
      margin-left: 2rem; 
  }
}
@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    margin-bottom: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .links{
    padding-left: 0%;
  }
  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom p {
    position: static;
    transform: none;
    margin-bottom: 20px;
  }

  .footer-bottom ul {
    position: static;
    margin-top: 10px;
  }

  .footer-bottom ul li {
    margin-left: 10px;
    margin-right: 10px;
  }
  .footer-column p{
    width: 93%;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 10px;
  }

  .subscribe button {
    width: 100%;
  }

  .social-icons a {
    margin-right: 10px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 5px;
  }

  .footer-column {
    min-width: 100%;
  }

  .social-icons a {
    margin-right: 8px;
  }

  .footer-bottom ul li {
    margin-left: 5px;
    margin-right: 5px;
  }
}
@media (max-width: 1200px) {
  .contact-form-container {
    width: 35%;
    margin-top: 2%;
    margin-left: 10%;
    height: auto;
  }

  .text-container {
    max-width: 45%;
    margin-right: 10%;
  }

  .text-container h3 {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .contact-section {
    gap: 1%;
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .contact-form-container {
    width: 90%;
    margin-top: 9%;
  }

  .text-container {
    max-width: 80%;
    margin-right: 0;
    text-align: center;
  }

  .text-container h3 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .background-image {
    width: 100%;
    height: 50%;
  }

  .contact-form-container {
    width: 90%;
    margin: auto;
    padding: 20px;
  }

  .text-container {
    padding-left: 0;
    text-align: center;
    color: black;
  }

  .text-container h3 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .contact-form-container {
    width: 95%;
    padding: 20px;
  }

  .text-container {
    max-width: 100%;
  }

  .text-container h3 {
    font-size: 19px;
  }

  .text-container p {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .contact-section {
    flex-direction: column;
    height: auto;
  }

  .contact-form-container {
    width: 100%;
    padding: 15px;
    margin-top: 5%;
  }

  .text-container {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
    color: black;
  }

  .text-container h3 {
    font-size: 13px;
  }

  .text-container p {
    font-size: 11px;
    line-height: 1.3;
  }
}


/* Medya Sorguları */
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Tablet ve üzeri ekranlarda iki sütun */
  }

  .section-title {
    font-size: 3em; /* Orta ve büyük ekranlarda başlık font boyutunu artır */
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr); 
  }

  .section-title {
    font-size: 3.5em; 
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2em; 
  }

  .card-title {
    font-size: 1rem; 
  }

  .card-text {
    font-size: 0.875rem;
  }

  .explore-button {
    padding: 8px 16px;
    font-size: 0.875rem; 
  }
  .paragraph-container p {
    margin-bottom: 1rem;
    margin-top: 1rem;
    line-height: 2.2rem; 
    font-size: 1rem;
    hyphens: auto;
    
  }
}

/* Medya Sorguları */

/* Tablet Boyutu */
@media (min-width: 768px) {
  .media-container {
    flex-direction: row; /* Yatay hizalama */
  }
  #haveAProject{
    width: 50%;
  }
  .image-container {
    flex-direction: row; /* Yatay hizalama */
  }

  .paragraph-container {
    text-align: left; /* Yatay ekranda sola hizala */
  }

  .paragraph-container h2 {
    font-size: 4rem; /* Büyük ekranlarda daha büyük font boyutu */
  }

}

/* Masaüstü Boyutu */
@media (min-width: 1024px) {
  .media-container {
    gap: 80px; /* Daha geniş boşluklar */
  }

  #haveAProject{
    width: 22%;
  }
  .image-item img {
    width: 100%; /* Sabit genişlik */
  }

  .paragraph-container {
    text-align: left; /* Yatay ekranda sola hizala */
  }
}

/* Mobil Boyut */
@media (max-width: 480px) {
  #section4 h1 {
    font-size: 2rem;
  }
  #haveAProject{
    width: 50%;
    font-size: 0.8em;
  }
  #section4 .project-card {
    width: 100%;
  }

  #section4 .project-card .title {
    font-size: 1rem;
  }

  #section4 .pagination button {
    padding: 8px 12px;
    font-size: 0.875rem;
  }
}


@media (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .full-height p:first-child,
  .full-height p.sub-paragraph
  {
    font-size: 14vw;/* Küçük ekranlarda font boyutunu artır */
  }
  .full-height p.paragraph{
    font-size: 3vw;
    width: 100%;
    margin: auto;
  }

  .btn-container #discoverMore,
  .btn-container #ourService {
    font-size: 4vw; /* Küçük ekranlarda buton font boyutunu artır */
    width: 100px; /* Buton genişliğini küçült */
    height: 40px; /* Buton yüksekliğini küçült */
  }
  .section-two {
    padding: 4% 4%;
}
}
@media (min-width: 768px) {
  #section5 .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Responsive adjustments */
@media (max-width: 1024px) {
  #section4 .project-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  #section4 .project-card {
    width: 100%;
  }
}


/* Medya Sorguları */

/* Tablet Boyutu */
@media (max-width: 768px) {
  #section4 .sidebar {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }

  #section4 .project-grid {
    float: none;
    width: 100%;
  }

  #section4 .project-card {
    width: 100%;
  }

  #section4 .pagination {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .contactBtn {
    margin-right: 10px; /* Daha küçük ekranlarda sağ boşluğu azaltın */
  }
}
@media (min-width: 1200px) {
  .contactBtn {
    display: block;
  }
}

@media (max-width: 768px) {
  .contactBtn {
    padding: 8px 15px; /* Daha küçük ekranlarda iç boşlukları küçültün */
    font-size: 14px; /* Yazı boyutunu küçültün */
    margin-right: 5px; /* Sağ boşluğu daha da azaltın */
  }
}

@media (max-width: 576px) {
  .contactBtn {
    padding: 6px 10px; /* Daha da küçültün */
    font-size: 12px; /* Daha küçük yazı boyutu */
    margin-right: 0; /* Sağ boşluğu kaldırın */
  }
}
@media (max-width: 768px) {
  .displayNone{
    display:  none;
  }
}