body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color:white;
}
/* Masaüstü Tasarım */
@media (min-width: 768px) {
	
/* Blok Tasarım */
.block-section {
	display: flex;
	justify-content: center;
	padding: 30px;
	gap: 40px;
}

.block {
  flex: 1;
  max-width: 25%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.block-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.block-content {
  padding: 20px;
  text-align: center;
}

.block-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.block-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.block-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #15284b;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.block-button:hover {
  background-color: #0056b3;
}

/* Blok Tasarım */

/* Ana Container */
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hizmetdevami a {
	display: flex;
	justify-content: center;
    width: 150px;
	background-color:#15284b;
	border:1px solid #15284b;
	padding: 11px 27px;
	margin:0 auto;
    font-size: 19px;
	border-radius:8px;
	text-align:center;
	text-decoration:none;
	color:white;
	margin-bottom:50px;
}

.hizmetdevami a:hover{
	background-color:white;
	text-decoration:none;
	color:#15284b;
}

/* İçerik Kutuları */
.content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 20px;
}

/* Resim Alanı */
.content-image {
  flex: 0 0 650px;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Görseli düzgün ölçeklendirir */
}

/* Yazı Alanı */
.content-text {
  flex: 1; /* Yazı alanı geri kalan boşluğu kaplar */
  padding: 20px;
}

.content-text h2 {
  font-size: 2rem;
  color: #15284b;
  margin-bottom: 20px;
}

.content-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-button:hover {
  background: linear-gradient(to right, #003f7f, #0056b3);
  transform: scale(1.05);
}

/* Reverse Layout (İkinci Bölüm) */
.content-box.reverse {
  flex-direction: row-reverse;
}

/* HAKKIMIZDA */
.center-containers{
	padding: 30px 20%;
}

.info-sections h1 {
	text-align:center; 
	font-family: 'Beau Rivage', serif; 
	font-size:2.5rem;
	color:white;
}

.info-sections p {
	color:white;
}
/* HAKKIMIZDA */

/* Galeri Genel Ayarları */
.gallery-container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-container h1 {
	text-align:center;
	font-size:2rem;
}

/* Masaüstü Galeri */
.desktop-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Dinamik sütunlar */
  gap: 20px;
}

.desktop-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Görsellerin düzgün boyutlanması */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.desktop-gallery img:hover {
  transform: scale(1.05); /* Hover efekti */
}

/* Mobil Galeri */
.mobile-gallery {
  display: none; /* Varsayılan olarak gizli */
}


/* iso bölümü Genel Stilleri */
.iso-gallery {
	display: flex;
	gap: 20px;
	max-width: 80%;
	margin: 0 auto;
	padding: 20px;
	margin-top:20px;
}

/* Satırlar */
.iso-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* ISO Belgeleri */
.iso-item {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.iso-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    filter: contrast(1) brightness(1);
  width: 100%;
  height: auto;
}

.iso-item:hover {
  transform: scale(1.05); /* Hover efekti */
}

/* Modal (Tam Ekran Büyütme) */
.modal {
  display: none; /* Başlangıçta görünmez */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Çarpı Butonu */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s;
}

.close:hover {
  color: red; /* Hover efekti */
}
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .content-box {
    flex-direction: column;
    text-align: center;
  }

  .content-box.reverse {
    flex-direction: column;
  }


  .content-text {
    padding: 10px;
  }

  .desktop-gallery {
    display: none; /* Masaüstü galeriyi mobilde gizle */
  }

  .mobile-gallery {
    display: block; /* Mobil galeriyi etkinleştir */
  }

  .swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  /* Blok Tasarım */
.block-section {

	padding: 30px;
	gap: 40px;
}

.block {
  flex: 1;
  max-width: 100%;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.block-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.block-content {
  padding: 20px;
  text-align: center;
}

.block-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.block-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.block-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #15284b;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.block-button:hover {
  background-color: #0056b3;
}

/* Blok Tasarım */


/* Ana Container */
.content-section {
	max-width: 100%;
	margin: 0 auto;
	padding: 10px;
}

.hizmetdevami a {
	display: flex;
	justify-content: center;
    width: 150px;
	background-color:#15284b;
	border:1px solid #15284b;
	padding: 11px 27px;
	margin:0 auto;
    font-size: 19px;
	border-radius:8px;
	text-align:center;
	text-decoration:none;
	color:white;
	margin-bottom:50px;
}

.hizmetdevami a:hover{
	background-color:white;
	text-decoration:none;
	color:#15284b;
}

/* İçerik Kutuları */
.content-box {
  margin-bottom: 50px;
  gap: 20px;
}

/* Resim Alanı */
.content-image {
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Görseli düzgün ölçeklendirir */
}

/* Yazı Alanı */
.content-text {
  flex: 1; /* Yazı alanı geri kalan boşluğu kaplar */
  padding: 0px;
}

.content-text h2 {
  font-size: 2rem;
  color: #15284b;
  margin-bottom: 20px;
}

.content-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-button:hover {
  background: linear-gradient(to right, #003f7f, #0056b3);
  transform: scale(1.05);
}

/* Reverse Layout (İkinci Bölüm) */
.content-box.reverse {
  flex-direction: row-reverse;
}
/* Ana Container */


/* HAKKIMIZDA */
.center-containers{
	padding: 30px 5%;
}

.info-sections h1 {
	text-align:center; 
	font-family: 'Beau Rivage', serif; 
	font-size:3.5rem;
	color:white;
}

.info-sections p {
	color:white;
}
/* HAKKIMIZDA */

/* Galeri Genel Ayarları */
.gallery-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Masaüstü Galeri */
.desktop-gallery {
  display: none; /* Mobilde masaüstü galeriyi gizle */
}

.mobile-gallery {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden; /* Taşmaları gizle */
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

.swiper-slide {
  width: 100%; /* Her görsel tam genişlikte */
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: 300px; /* İstediğiniz bir yükseklik */
  object-fit: cover;
  border-radius: 10px;
}

/* Swiper Butonları */
.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.6;
  border-radius: 50%;
  margin: 0 4px;
  transition: opacity 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007bff;
}
/* Galeri Genel Ayarları */


/* iso bölümü Genel Stilleri */
.iso-gallery {
	display: flex;
	gap: 20px;
	max-width: 90%;
	margin: 0 auto;
	margin-top:20px;
}

/* Satırlar */
.iso-row {
  display: grid; /* Grid yapısını kullanıyoruz */
  grid-template-columns: repeat(2, 1fr); /* İki sütun oluşturur */
  gap: 20px; /* Elemanlar arasındaki boşluk */
}

/* ISO Belgeleri */
.iso-item {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.iso-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1) brightness(1);
  width: 100%;
  height: auto;
}

.iso-item:hover {
  transform: scale(1.05); /* Hover efekti */
}

/* Modal (Tam Ekran Büyütme) */
.modal {
  display: none; /* Başlangıçta görünmez */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Çarpı Butonu */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s;
}

.close:hover {
  color: red; /* Hover efekti */
}
/* iso bölümü Genel Stilleri */
}