 @font-face {
  font-family: sitefontRegular;
  src: url(fonts/GeovaTrial-Regular.ttf);
}

@font-face {
  font-family: sitefontLight;
  src: url(fonts/GeovaTrial-Light.ttf);
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: sitefontRegular;
  scroll-behavior: smooth;
  width: 100%;
  /* Bu sihirli satır scroll efektini verir */
  /* display: flex;
  flex-direction: column; */
}


img {
  width: 100%;
}

section {
  padding: 100px 0;
  /*background: #585656;*/
}

section-title {
  margin-bottom: 30px;
}

section-title h2 {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 30px;
  transition: all .5s ease-in-out;
}

header {
  top: 0;
  left: 0;
  background: transparent;
  /*#7c7c7cde*/
  /*2d4771*/
  /*23395D*/
  z-index: 10;
  background: #ffffff;
  /* border-bottom: 1px solid rgba(238, 238, 238, 0.801); */
  position: fixed;
  /* aşağı yukarı yapksa bile hep üstte sabit kalması fixed*/
  width: 100%;
  /* height: 116.6px; */
  height: 0;
  /*z-index: 5;  z index pozitif olan propertyler daha belirgin ve önde olmasını sağlar. 5 */
  margin-top: 0;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 97%;
  height: 100%;
  padding: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}



.main_index_section {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
}

/* .navbar2{
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 auto;
width: 80%;
padding: 25px;
max-width:fit-content;
margin-left: auto;
margin-right: auto;
} */

.nav_links {
  margin-top: 0;
  display: flex;
  float: right;
  height: 50px;
}

/*antrasit-grey --> #383E42*/
.nav_links li a {
  margin-left: 5px;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 5px;
  transition: all .5s ease-in-out;
  /* üzerine mouse ile gelip çektiğimizde animasyonun hemen kaybolmaması için */
}

.nav_links li a:hover {
  font-family: sitefontRegular;
  /* background: #bc1f1f7c; */
  /* color: white; */
}

/* alttaki 3 özellik nav_links alt çizgi animasyonu için */

.nav_links li a {
  display: inline-block;
  padding-bottom: 0.25rem;
  position: relative;
}

.nav_links li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.5s ease-out;  
}

.nav_links li a:hover::before {
  width: 100%;

}


/*dropdown menü css*/

.dropbtn {
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

/* Menü içerik */
.dropdown-content {
  display: none;
  position: absolute;  /* Mutlak konumlandırma */
  top: 100%;           /* Üst öğenin hemen altına yerleşmesi için */
  left: 0;             /* Menü soldan başlayacak şekilde hizalanacak */
  border-radius: 10px;
  justify-content: center;
  background-color: #4f4f4f;
  min-width: 200px;
  width: 100%;         /* Menü genişliği %100, tam olarak hizalı */
  align-items: center;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown:hover > .dropdown-content {
  display: block;
}

.dropdown>.dropdown-content a {
  color: rgb(169, 169, 169);
  text-decoration: none;
  display: block;
  width: 100%;
  height: 40px;
  right: 5px;
  transition: background-color 2s ease, color 2s ease;
}

.dropdown-content a:hover {
  background-color: rgb(188, 188, 188);
  color: rgb(79, 79, 79);
  right: 5px;
}

.dropdown-left > .dropdown-content {
  right: 0;  /* Sağdan açılmayı engellemek için */
  left: auto; /* sol hizalama yapılacak */
}

.dropdown-left>.dropdown-content a{
  color: rgb(169, 169, 169);
  text-decoration: none;
  display: block;
  width: 100%;
  height: 40px;
  transition: background-color 2s ease, color 2s ease;
}

.dropdown-left>.dropdown-content a:hover{
  background-color: rgb(188, 188, 188);
  color: rgb(79, 79, 79);
}





/* .dropdown:hover .dropbtn {background-color: #1120c5;} */

/*dropdown menü css*/


/* 
.line_navbar{
background-color:#d62323;
height: 1px;
width: 50%;
margin-top: 45px;
} */


.logo h2 a {
  color: #ffffff96;
  font-size: 20px;

}

.logo h2 a img {
  color: #fff;
  max-width: 300px;
  max-height: 75px;
}

/* Hakkımızda kısmı grid içi button tasarımı */

.button {

  display: inline-block;
  border-radius: 8px;
  background-color: #ff0800;
  border: none;
  color: #ffffff;
  text-align: center;
  font-size: 10px;
  padding: 10px;
  width: 100px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

/* GRID CARD BAŞLANGIÇ */
/*
.column-grid {
  display: flex;
  justify-content: center;
  align-items: stretch; 
  padding: 0 10px;
  margin-top: 10px;
  margin-bottom: 10px;

}

.row-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content:center;
  margin: 0 5px;
  min-height: 200px;
  margin-top: 50px;
  width: 70%;
  margin-right: 200px;
  margin-left: 200px;
}
*/

.row-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 50px auto;
  width: 100%;
  max-width: 1200px; 
  padding: 0 20px;
}

.column-grid {
  flex: 1 1 280px; 
  max-width: 50%; 
  display: flex;
  justify-content: center;
  
}



.row-grid:after {
  content: "";
  display: table;
  clear: both;
}

.row-grid>.column-grid>.card-grid img {
  object-fit: cover;
  max-width: 300px;
  max-height: 150px;
}

.row-grid>.column-grid>.card-grid p {
  margin-top: 5px;
  color:white;
}

.card-grid {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  width: 280px;
  min-height: 180px; /*220*/
  max-height:240px;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
	  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-grid:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); 
  transform: translateY(-5px);                
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1;
  border-radius: 12px;
}

.content {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
}

.content h4, .content p {
  margin: 0 0 10px 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8); /* daha görünür yazı */
}

/* HAKKIMIZDA CARD CSS BAŞLANGIÇ */

.card-shell-style {
  background: #1e1e1e;
  flex-direction: column;
  padding: 0;
  align-items: stretch;
  min-height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%; 
  max-width: 100%;
}

.card-shell-style:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-shell-style img {
  min-height: 40%; /* veya 280px gibi sabit de verebilirsin */
  min-width: 100%;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.content-shell {
  height: 60%;
  padding: 20px;
  color: white;
  background-color: #3C3C3C; /*12343b, 8B0000 , 003153 , 132257 , 960018 , 1A1A1A , 3C3C3C*/
  display: flex;
  flex-direction: column;
  /*flex-grow: 1;*/
  justify-content: space-between;
  max-height:480px;

}

.content-shell h4 {
  margin: 0 0 6px 0;
  font-size: 1.2rem;
}

.content-shell p {
  margin: 0;
  font-size: 1rem;
  color: #ddd;
}


.content-shell button {
  align-self: flex-end;
  padding: 10px 16px;
  background-color: transparent; /* Arka planı kaldırdın, burada isteğe göre eklenebilir */
  border: 1px solid #C0C0C0;
  color: #C0C0C0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.content-shell-baslik{
border-bottom: 1px solid #050000;
  width: 100%;
  padding-bottom: 10px;
}

.content-shell button:hover {
  background-color: #C0C0C0;
  color: #12343b;
  font-weight: bold;
}


.arrow-button {
  background-color: #E69B00;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.arrow-button:hover {
  background-color: #E69B00;
}

.arrow-button svg {
  fill: white;
}


@media (max-width: 768px) {
  .card-shell-style {
    height: 100vw; /* ekran genişliği kadar yüksek kart */
  }

  .card-shell-style img {
    height: 40%;
  }

  .content-shell {
    height: 60%;
  }
}

/* HAKKIMIZDA CARD CSS BİTİŞ */

/* GRID CARDS END */

/* NEW GRİD */

#grid {
  height: 70vh;
  width: 50%;
  justify-content: center;
  margin: auto;
  transition: 500ms;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  background: crimson;
}

:where(.left, .center, .right) {
  background: navajowhite;
  transition: 300ms;
}

:where(.left, .center, .right):hover {
  background-image: url("../img/IMG-20241115-WA0017.jpg");
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

#grid:has(.left:hover) {
  grid-template-columns: 2fr 0.5fr 0.5fr;
}

#grid:has(.center:hover) {
  grid-template-columns: 0.5fr 2fr 0.5fr;
}

#grid:has(.right:hover) {
  grid-template-columns: 0.5fr 0.5fr 2fr;
}


/* NEW GRİD */

.content {
  width: 1000px;
  margin: -60px auto 0 auto;
  position: relative;
}

.content h1 {
  width: 531px;
  height: 25px;
  /* background:(../images/title.png) no-repeat; */
  padding: 20px 450px 15px 15px;
  font-size: 17px;
  color: #000000;
  margin: 0;
  z-index: 0
}

.content_ic {
  width: 1016px;
  margin-top: 35px;
  margin-left: -6px;
  z-index: 1
}

.content_ic .top {
  width: 1016px;
  /* background:url(../images/middle_top.png) no-repeat; */
  height: 43px;
}

.content_ic .middle {
  width: 966px;
  /* background:url(../images/middle_middle.png) repeat-y; */
  min-height: 250px;
  padding: 10px 25px;
  line-height: 18px
}

.content_ic .bottom {
  width: 1016px;
  height: 47px;
  /* background:url(../images/middle_bottom.png) no-repeat; */
}

.footer {
  position: relative;
  margin-top: 150px;
  padding-top: 20px;
  padding: 0px;
  bottom: 0;
  width: 100%;
  height: 60vh;
  background-color: #24262b;
  color: white;
  font-size: 30px;
}

.footer {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-right {
  height: 80%;
  width: 600px;
  float: right;
  margin: 15px;
  padding: 15px;
}

.footer-right-top {
  height: 45%;
  width: 100%;
  float: right;
  right: 0;
  margin: 0;
  padding: 0;
}

.footer-right-bottom {
  height: 45%;
  width: 100%;
  float: right;
  right: 0;
  margin: 0;
  padding: 0;
}


.footer-text {
  float: left;
  width: 600px;
  margin: 15px;
  padding: 15px;
}

.footer-text li {
  color: #c4bcbc;
  font-size: 12px;
  margin-bottom: 2px;
}

.footer-right li {
  color: #c4bcbc;
  font-size: 12px;
  margin-bottom: 2px;
  float: right;
}

.footer-right-top li {
  color: #c4bcbc;
  font-size: 12px;
  margin-bottom: 2px;
  float: right;
}

.footer-right-bottom li {
  color: #c4bcbc;
  font-size: 12px;
  margin-bottom: 2px;
  float: right;
}

/* -- SLAYT RESİMLERİ BÖLÜMÜ -- */

body {
  font-family: Verdana, sans-serif;
  margin: 0;
}

* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.row {
  display: grid;
  grid-template-columns: auto auto auto auto;
  height: 100%;
  gap: 10px;
  padding: 10px;
}

.row>.column {
  /* display: flex;
  justify-content: center;
  align-items: center;
  height: 300px; */
  display: grid;
  place-items: center;
  /* Hem yatay hem dikey ortalama */
  height: 300px;
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  min-width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  background-color: rgba(49, 46, 46, 0.8);
}

/* Modal Content (image) */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 5vh 0;  /* Üstten ve alttan mesafe bırakır */
  box-sizing: border-box;
}


.mySlides {
  display: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySlides img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  margin: auto;
  display: block;
  margin-top:auto;
}




/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 150px;
  font-size: 35px;
  font-weight: bold;
  z-index: 5000;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}




.cursor {
  cursor: pointer;
  margin-top: 50px;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  width: auto;
  height: auto;
  padding: 16px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  border: 2px solid rgb(35, 35, 35);
  background-color: rgba(129, 129, 129, 0.8);
}

/* Position the "next button" to the right */
.next {
  right: 200px;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 200px;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(247, 245, 245, 0.8);
  transition: all ease 2s;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  margin-top: 50px;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  margin-left:90px;
}

img {
  margin-bottom: -4px;
}

.caption-header {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.1;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.main_index_section .logo,
.main_index_section .logo h2,
.main_index_section .logo h2 a img {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* HTML dosyalarından taşınan ortak stiller */
.container-box {
  /* background-color: #435a7e; */
  /*display: flex;
  gap: 10px;
  justify-content: center;
  padding: 20px;
  padding-top: 100px;
  height: 500px;
  margin-top: 0;*/
  display: flex;
  margin-top: 0px;
  gap: 10px;
  justify-content: center;
  padding: 0px;
  padding-top: 20px;
  /*min-height: 5%; Sayfa yüksekliğini tam ekran yapar*/
  height: 500px;
}


.image-box {
  max-width: 200px;
  max-height: 200px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: 100px;
  border-radius: 10px;
  transition: transform 0.6s ease;
  /* ← 0.6 saniyelik geçiş */
}



.nav_links li a {
  font-family: sitefontRegular;
  /* background: #bc1f1f7c; */
  /* color: white; */
}


.image-box:hover {
  transform: scale(1.03);
  transition: width 0.25s ease-out;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Ortalar */
  align-items: flex-start;
  width: 100%;
  background-color: transparent;
  gap: 40px;
  padding: 20px;
  box-sizing: border-box;
}

.container_contact_left,
.container_contact_right {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 30px;
  flex: 0 1 45%; 
  min-width: 450px;
  max-width: 500px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  padding-bottom:40px;
	margin:auto;
}

@media screen and (max-width: 768px) {
.container_contact_left,
.container_contact_right {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 30px;
  flex: 0 1 45%; 
  min-width: 450px;
  max-width: 500px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  padding-bottom:40px;
  margin:auto;
  margin-top:75px !important;
  margin-bottom:75px !important;
}

.container_contact {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  background-color: transparent;
  gap: 70px;
  padding: 20px;
  box-sizing: border-box;
  flex-direction: column;
  gap: 30px;
}

}

.container_contact_left:hover,
.container_contact_right:hover {
  transform: translateY(-5px);
}

/* Başlık */
.container_contact h3 {
  font-size: 20px;
  color: #333;
  border-bottom: 2px solid gray;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: left;
}

/* Form elemanları */
.container_contact label {
  display: block;
  margin: 10px 0 5px;
  color: #444;
  font-weight: 500;
}

.container_contact input[type="text"],
.container_contact input[type="file"],
.container_contact textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  transition: border-color 0.3s;
  font-family: inherit;
}

.container_contact input[type="text"]:focus,
.container_contact textarea:focus {
  border-color: #007BFF;
  outline: none;
}

.container_contact textarea {
  resize: vertical;
}

/* Gönder butonu */
.container_contact input[type="submit"] {
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.container_contact input[type="submit"]:hover {
  background-color: #0056b3;
}

/* Harita iframe */
.center_location iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

/* iletişim map tab sekmeler*/

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  max-width:50%;
  margin:auto;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ccc; 
  color: #000;            
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

@media screen and (max-width: 600px) {
  .tab {
  	overflow: hidden;
  	border: 1px solid #ccc;
  	background-color: #f1f1f1;
  	max-width:90%;
  	margin:auto;
  }
	
  .tab button {
    flex: 1 1 100%;
    text-align: center;
    font-size: 14px;
  }

  .tabcontent {
    padding: 12px;
  }
}