html, body {
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
}


/* ------------------------ */
/* GENEL SIFIRLAMA */
/* ------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Padding ve border, kutunun dışında değil içinde sayılır */
}

html {
  scroll-behavior: smooth; /* Sayfa içi linklerde yumuşak kaydırma */
}


body::before{
   content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* Noktalı grid arka plan */
  background-image:
    url("data:image/svg+xml;utf8,<svg width='30' height='30' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='1' cy='1' r='1' fill='white' fill-opacity='0.25'/></svg>");
  background-repeat: repeat;
  background-size: auto;
  z-index: -1;
}

body {
  font-family: 'Segoe UI', sans-serif; /* Modern bir yazı tipi */
  background-color: #000;              /* Siyah arka plan */
  color: #fff;                         /* Yazılar beyaz */
  line-height: 1.6;                    /* Satırlar arası boşluk */
  opacity: 1;                          /* Varsayılan olarak görünür */
  transition: opacity 0.5s ease;       /* Yumuşak geçiş */
}

/* JavaScript yüklendiğinde ekstra smooth geçiş için */
body.loaded {
  opacity: 1;                          /* Yüklendiğinde görünür */
}

/* ------------------------ */
/* SABİT ÜST MENÜ (HEADER) */
/* ------------------------ */
.header {
  width: 100%;
  padding: 20px 0;                           /* Üst-alt boşluk */
  display: flex;                             /* Logo ve menü yan yana */
  justify-content: space-between;           /* Aralarında boşluk */
  align-items: center;                      /* Dikeyde ortala */
  position: fixed;                          /* Sayfada sabit kalsın */
  top: 0;
  background-color: #000;                   /* Arka plan siyah */
  z-index: 999;                             /* En üst katmanda */
}

/* Header dış kutu */
.main-header {
  display: flex;
  justify-content: center;         /* İçeriği ortalamak için */
  margin-top: 50px;                /* Sayfanın üstünden 70px boşluk */
}

/* İçerik kutusu (1356x76 boyutlarında) */
.header-inner {

font-family: 'Inter', sans-serif;
  font-weight: 400;
  width: 1356px;
  height: 76px;
  background-color: #ffffff;       /* Beyaz zemin */
  border-radius: 32px;             /* Yuvarlatılmış köşeler */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 55px;                 /* Sağdan ve soldan içerik boşluğu */
  box-sizing: border-box;
}

/* Logo alanı */
.logo {
  margin-top: 0px;          /* Header'a göre yukarıdan 7px boşluk */
  margin-bottom: 21px;       /* Aşağıdan 4px boşluk */
  margin-right: 33px;       /* Sağdan 33px boşluk (header'ın bitişiyle hizalanır) */
}

/* Logo Fotoğraf */
.logo img {
  width: 202px;
  height: 66px;
  display: block; /* alt boşlukları (inline space) engeller */
}
/* Menü yazıları */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 37px;                       /* Menü öğeleri arası boşluk */
  height: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 500;                /* Medium */
  font-size: 16px;
  color: #000000;                  /* Siyah yazı */
}

.nav-menu a {
  display: inline-block;                   /* Kutu davranışı */
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;

  height: 70px;                            /* Header yüksekliği kadar */
  line-height: 76px;                       /* Dikeyde ortalamak için */
  
  margin-left: 20px;                       /* Solunda boşluk (gerekirse ayarla) */
  margin-right: 20px;                      /* Sağında boşluk (gerekirse ayarla) */
  
  transition: all 0.3s ease;               /* Smooth geçiş efekti */
}

.nav-menu a:hover {
  color: #3AC2BB;                          /* Hover rengi */
  transform: translateY(-2px);             /* Hafif yukarı hareket */
}

.nav-menu a:focus {
  outline: 2px solid #3AC2BB;              /* Focus outline */
  outline-offset: 2px;                     /* Outline boşluğu */
  border-radius: 4px;                      /* Yuvarlatılmış köşeler */
}


.logo {
  height: 40px;                             /* Logo yüksekliği */
}

nav ul {
  display: flex;
  gap: 25px;                                /* Menü öğeleri arası boşluk */
  align-items: center;
  list-style: none;                         /* Nokta simgelerini kaldır */
}

nav li {
  font-size: 14px;
}

.phone {
  font-weight: bold;
}

/* ------------------------ */
/* ANA HERO ALANI */
/* ------------------------ */
.hero {
     margin-top: 0%; 
  display: flex;                             /* İçerik ve görsel yan yana */
  justify-content: space-between;
  align-items: center;
  padding-top: 44px;                        /* Header kadar yukarıdan boşluk */
  padding-bottom: 100px;
  min-height: 100vh;                         /* Tüm ekranı kapla */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Radial parlama efekti */
.hero::before {
  content: '';
  position: absolute;
  top: 37%;
  left: 26.33%;
  transform: translate(-50%, -50%);
  width: 1180px;
  height: 1380px;
  background: radial-gradient(79.89% 63.51% at 50% 50%, #000 7.37%, #3AC2BB 14.42%, transparent 30.77%);
  z-index: 0;
  pointer-events: none;
  will-change: transform; /* GPU hızlandırma */
}

.hero-content {
  text-align: center;
  flex: 1;
  max-width: 600px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: pre-line;
}

.hero-content h1 {
  max-width: 900px;
  max-height: 500px;
  color: #fff;
  position: absolute;
  top: -0;                        /* Radial’in optik merkezi */
  left: 83.5%;                       /* Sayfa ortası */
  transform: translate(-50%, -50%); /* Hem yatay hem dikey merkezleme */
  font-family: "Sora", sans-serif;
  font-style: normal;
  font-weight: 450;
  font-size: 85px;
  line-height: 90px;              /* Satırlar birbirine yapışsın */
  letter-spacing: -1px;           /* Harfler hafif sıkılaşsın */

  text-align: center;
  z-index: 2;
  white-space: normal;          /* <br> ile gelen satır boşluklarını dikkate al */
}

.button {   
  text-decoration: none;
  transform: translate(-0%, 300%);
  position: absolute;       /* Ürünler Butonu */
  top: 90%;                        /* Radial'in optik merkezi */
  left: 70%;    
  display: inline-block;
  background-color: white;
  color: black;
  padding: 16px 40px;              /* Daha büyük dokunma alanı */
  line-height: 1.5;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 44px;                /* Touch-friendly minimum yükseklik */
  min-width: 120px;                /* Touch-friendly minimum genişlik */
  cursor: pointer;
  user-select: none;               /* Metin seçimini engelle */
  -webkit-tap-highlight-color: transparent; /* iOS tap highlight'ı kaldır */
}

 .button { /* Stil */
  font-family: "Sora", sans-serif;
  font-size: 18px;
  text-align: center;


}
.button:hover {        /* Ürünler Butonu */
   background-color: #fff
}


.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
 right: -90px;
  -webkit-user-drag: none; /* Chrome için */
  pointer-events: none;    /* Mouse ile etkileşimi kapatır (seçilmesini önler) */
  user-select: none;      /* Metin/görsel seçimini engeller */
  -webkit-user-select: none; /* Safari için */
  -moz-user-select: none;    /* Firefox için */
  -ms-user-select: none;     /* Eski IE için */

}

.hero-image img {
  max-width: 100%; height: auto;
  height: auto;
  object-fit: contain;
  display: block;

}





/* HAKKIMIZDA KISMI */

/* HAKKIMIZDA BÖLÜMÜ GENEL */
.about-section {
  position: relative;
  margin-bottom: 0px;
  margin-top: -200px;
  background: url('../images/about-bg.jpg') no-repeat center top;
  background: cover;
  font-family: 'Space Grotesk', sans-serif;
  overflow: hidden;
}


/* Ana başlık */
.main-heading h2 {
  position: absolute;
  top: 250px;
  left: 90px;
  font-size: 80px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}

/* “2015” alt başlık */
.sub-heading {
  position: absolute;
  top: 480px;
  left: 90px;
  font-size: 48px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  color: white;
}

/* Paragraf metni */
.paragraph {
  position: absolute;
  top: 500px;
  left: 90px;
  width: 620px;
  font-size: 24px;
  line-height: 1.6;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
}

/* Sağ taraftaki vektör açıklamaları */
.vector-text-1 {
  position: absolute;
  top: 228px;
  right: 240px;
  width: 300px;
  font-size: 29px;
  text-align: left;
  color: white;
}

.vector-text-2 {
  position: absolute;
  top: 540px;
  right: 290px;
  width: 300px;
  font-size: 29px;
  text-align: right;
  color: white;
}

.vector-text-3 {
  position: absolute;
  top: 920px;
  right: 255px;
  width: 300px;
  font-size: 29px;
  text-align: left;
  color: white;
  line-height: 1.5;
}
.vector-text-4 {
  position: absolute;
  top: 1230px;
  right: 30px;
  width: 900px;
  font-size: 18px;
  text-align: center;
  color: white;
  line-height: 1.5;
}

/* Referanslar butonu */
.button2 {
  position: absolute;
  top: 1175px;
  left: 300px;
  background-color: black;
  color: white;
  padding: 24px 50px;
  border-radius: 32px;
  font-weight: bold;
  font-size: 26px;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  display: inline-block;
  text-decoration: none;
}



/* REFERANSLAR SAYFASI*/

.references-section {
  height: 1090px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1300px;
  background-color: #ffffff;
 box-shadow: inset 0px 4px 80px 80px rgba(0, 0, 0, 0.25);
}

.references-heading {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: -2.88px;
  color: #000;
  text-align: center;
  margin-bottom: 39px;
  margin-top: 55px;
}

.reference-container {
  width: 1801px;
  height: 871px;
  background-color: #000000;
  border-radius: 40px;
  padding: 46px 81px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  position: center;
  
 
}

.reference-row {
  display: flex;
  justify-content: space-between;
  gap: 89px; /* logolar arası yatay boşluk */
  margin-bottom: 31px; /* satırlar arası dikey boşluk */
}

.logo-box {
  width: 343px;
  height: 173px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Logo görselleri */
.logo-box img {
  object-fit: contain;
  transition: transform 0.3s ease;
  -webkit-user-drag: none; /* Chrome için */
  pointer-events: none;    /* Mouse ile etkileşimi kapatır (seçilmesini önler) */
  user-select: none;      /* Metin/görsel seçimini engeller */
  -webkit-user-select: none; /* Safari için */
  -moz-user-select: none;    /* Firefox için */
  -ms-user-select: none;     /* Eski IE için */
}

/* Her bir logo için özel boyut ve konum ayarı */

.box1 img { transform: scale(1) translate(0%, -3%); }    /* Jacobs */
.box2 img { transform: scale(1.05) translate(0%, 0%); }     /* Tchibo */
.box3 img { transform: scale(1.15) translate(0%, 0%); }    /* Kaave */
.box4 img { transform: scale(1.05) translate(0%, -5%); }   /* Kahveci */
.box5 img { transform: scale(0.9) translate(2%, 0%); }     /* Fiero */
.box6 img { transform: scale(1.0) translate(0%, 0%); }     /* Maxwell */
.box7 img { transform: scale(1.0) translate(0%, -2%); }     /* Coffedeon */
.box8 img { transform: scale(1.05) translate(0%, -2%); }   /* Novacopulus */
.box9 img { transform: scale(1.0) translate(0%, 0%); }    /* Mayna */
.box10 img { transform: scale(1.0) translate(1%, 0%); }    /* Bg Grup */
.box11 img { transform: scale(0.6) translate(3%, 0%); }  /* Ducat Coffee */
.box12 img { transform: scale(1.0) translate(0%, 0%); }    /* Napoli */
.box13 img { transform: scale(1.05) translate(1%, 8%); }   /* Cafeshots */
.box14 img { transform: scale(1.05) translate(3%, 8%); }  /* Cafe de Bon */
.box15 img { transform: scale(0.8) translate(5%, -8%); }    /* Lavi Gıda */

/* 16 kutuya özel arka plan renkleri */
.box1 { background-color: #006838; }         /* Jacobs */
.box2 { background-color: #003976; }         /* Tchibo */
.box3 { background-color: #ffffff; }         /* Kaave */
.box4 { background-color: #ffffff; }         /* Kahveci */
.box5 { background-color: #C4A867; }         /* Fiero */
.box6 { background-color: #002249; }         /* Maxwell */
.box7 { background-color: #ffffff; }         /* Coffedeon */
.box8 { background-color: #F3F3D7; }         /* Novacapulus */
.box9 { background-color: #ffffff; }         /* Mayna */
.box10 { background-color: #08233E; }        /* BG Grup */
.box11 { background-color: #ffffff; }        /* Ducat */
.box12 { background-color: #ffffff; }        /* Napoli */
.box13 { background-color: #ffffff; }        /* Cafeshots */
.box14 { background-color: #2c2c2c; }        /* Cafe de Bon */
.box15 { background-color: #ffffff; }        /* Lavi Gıda */
.box16 {background-color: #ffffff;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
}


                                                                   /* Sertifikalar genel alan */

/* Sertifikalar genel alan */
.certificates-section {
  background-color: #fff;
  padding: 100px 0 120px; /* Alt padding artırıldı */
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: inset 0px 4px 80px 80px rgba(0, 0, 0, 0.25); /* Shadow eklendi */
}


.certificates-heading {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 600;
  color: #000;
  margin-bottom: 60px;
  letter-spacing: -2.5px;
}

                                                                   /* Slider - Dış Alan */
.certificates-slider {
  width: 1800px;
  background-color: #000;
  border-radius: 50px;
  padding: 60px 40px;
  position: relative;
  display: flex;
  flex-direction: column; /* Dikey hizalama */
  align-items: center;
  box-shadow: inset 0px 4px 80px 80px rgba(0, 0, 0, 0.25);
  gap: 40px; /* içerik ve butonlar arası boşluk */
}


/* Slider - Sayfalar Arası Wrapper */
.certificates-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: max-content; /* içerik genişliği kadar */
  
}
/* Tek sayfa */
.certificates-page {
  flex: 0 0 100%; /* HER SAYFA EKRANIN TAMAMI KADAR OLSUN */
  display: flex;
  justify-content: center;
  gap: 40px;
}
/* Sertifika Görselleri */
.certificate-img {
  width: 330px;
  height: 480px;
  object-fit: cover;
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0px 10px 40px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
  user-select: none;
}

.certificate-img:hover {
  transform: scale(1.08);
}

/* Slider Okları */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #007AFF;
  border: none;
  font-size: 28px;
  cursor: pointer;
  border-radius: 25%;
  padding: 16px 26px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.slider-btn.left {
  left: 55px;
}

.slider-btn.right {
  right: 55px;
}

.slider-btn:hover {
  background-color: #c5c5c5;
}

                                                /* Modal Arka Plan */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}


/* Modal Loading */
.modal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Modal İçerik */
.modal-content {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(255,255,255,0.2);
  transform: scale(1.1);
  transition: transform 0.3s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 60px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

/* Modal Oklar */
.modal-controls {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(255, 255, 255);
  color: rgb(85, 159, 243);
  border: none;
  font-size: 28px;
  padding: 16px 26px;
  border-radius: 25%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

/* Sol ok: Görselin sol kenarında */
#prevPage {
  left: 55%;
  transform: translate(-580px, -50%);
}

/* Sağ ok: Görselin sağ kenarında */
#nextPage {
  right: 55%;
  transform: translate(580px, -50%);
}

.modal-arrow:hover {
  background-color: #b9b9b9;
}



                           /* İletişim Başlangıç */





                           /* Sertifikalar dış kutusu */
.certificates-slider {
  width: 1800px;
  background-color: #000;
  border-radius: 50px;
  padding: 60px 40px 100px 40px; /* alt padding artırıldı */
  position: relative;
  display: flex;
  flex-direction: column; /* okları alta almak için column yaptık */
  align-items: center;
  box-shadow: 0px 4px 80px 80px rgba(0, 0, 0, 0.25) inset;
}

/* İçerik (sayfalar) */


/* İletişim Arka Plan */
.contact-section {
  display: flex;
  justify-content: space-between; /* Sağ ve solu ayırır */
  align-items: center;            /* Dikey ortalama */
  height: 100vh;
  background: linear-gradient(
    90deg, #000 0.29%, 
    #A5CCA8 35.7%, 
    #5B935E 54.12%, 
    #1C411F 80.08%, 
    #000 88.58%
  );
  padding: 0 80px; /* Sağ ve soldan boşluk bırakır */
  box-sizing: border-box;
  position: relative;
}

/* Siyah Kutu (İletişim Kutusu) */
.contact-box {
  width: 491px;
  height: 647px;
  background-color: #000;
  border-radius: 20px;
  padding: 50px 40px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0px 4px 80px 80px rgba(0, 0, 0, 0.25) inset;
  box-sizing: border-box;
  
}

/* Başlık ve Alt Başlık */
.contact-title {
  font-size: 28px;                      /* Başlık boyutu büyütüldü */
  font-weight: 800;                     /* Extra bold yazı kalınlığı */
  margin-bottom: 10px;                 /* Alt boşluk */
}

.company-name {
  font-size: 24px;                      /* Firma adı boyutu büyütüldü */
  margin-bottom: 30px;                 /* Alt boşluk */
  color: #ccc;                          /* Gri renk tonu */
}

/* Bilgi Satırları */
.contact-item {
  display: flex;                        /* İkon ve metni yatay diz */
  align-items: center;                  /* Üst hizalama */
  gap: 20px;                            /* İkon ile yazı arası mesafe */
  margin-bottom: 22px;                 /* Bilgiler arası boşluk */
  font-size: 20px;                     /* Metin boyutu artırıldı */
  line-height: 1.4;                     /* Satır yüksekliği */

}

.contact-item img {
  width: 53px;                          /* İkon genişliği */
  height: 53px;                         /* İkon yüksekliği */
  object-fit: contain;                 /* Görselin oranını koruyarak sığdır */
  margin-top: 3px;                      /* Dikey hizalama için boşluk */
}

/* Sosyal Medya İkonları Alanı */
.social-icons {
  display: flex;                        /* Yatay dizilim */
  justify-content: flex-start;         /* Sola hizalama */
  align-items: flex-end;               /* Alta hizalama */
  margin-top: 95px;                    /* Kutuyla ikonlar arası boşluk */
  gap: 30px;                            /* İkonlar arası boşluk */
}

.social-icons a {
  display: flex;
  flex-direction: column;              /* Alt alta diz */
  align-items: center;
  text-decoration: none;               /* Altı çizili olmasın */
}

/* Instagram ve Alt Click İkonu Birlikte */
.icon-stack {
  position: relative;                  /* Üst üste bindirme için gerekli */
  width: 66px;                         /* Genişlik */
  height: 66px;                        /* Yükseklik (ikon + tıklama simgesi) */
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.icon-stack .social-icon {
  width: 66px;                         /* Instagram ikonu boyutu */
  height: 66px;
  position: relative;
  z-index: 2;                          /* Tıklama ikonunun altında kalmasın */
}

.icon-stack .tap-icon {
  position: absolute;
  top: 50px;       
  left: 25px;                    /* Instagram ikonu altına hizalanır */
  width: 50px;
  height: 50px;
  z-index: 1;
  opacity: 0.75;
  filter: brightness(0) invert(1);     /* Rengi tam beyaz yapar */
  color: white;
}

.icon-stack .tap-icon:hover {
  transform: scale(1.2);               /* Hover'da büyüme efekti */
}

/* Diğer Sosyal Medya İkonları */
.social-icons img {
  width: 66px;                          /* İkon genişliği büyütüldü */
  height: 66px;                         /* İkon yüksekliği */
  cursor: pointer;                     /* Üzerine gelince el simgesi */
  transition: transform 0.2s ease;     /* Hover geçişi */
}

.social-icons img:hover {
  transform: scale(1.1);               /* Hover'da büyütme efekti */
}

/* Harita Kutusu */
.map-container {
  position: relative;
  width: 1239px;                        /* Harita genişliği */
  height: 781px;                        /* Harita yüksekliği */
  border-radius: 20px;                 /* Köşeleri yuvarlat */
  overflow: visible;                    /* Taşmayı engelle */
  flex-shrink: 0;                      /* Küçülmeye izin verme */
  transform: translateX(40px);         /* Sağ tarafa 40px kaydır */
}


/* Wrapper boşluğu */
.contact-details-wrapper {
  margin-top: 90px;
}

        /* Harita üstündeki buton mavi */
.map-button {
  position: absolute;                 /* Harita kutusuna göre konumlandırma */
  top: -40px;                         /* Haritanın üst kısmının biraz yukarısına çıkar */
  left: 50%;                          /* Ortalamak için sola %50 hizala */
  transform: translateX(-50%);        /* Gerçek ortalamayı sağla */

  display: inline-flex;               /* Buton içeriğini hizalamak için */
  align-items: center;
  justify-content: center;

  padding: 24px 56px;                 /* İç boşluk (yukarı-aşağı / sağ-sol) */
  gap: 10px;                          /* Metin ve ikon arası boşluk */

  border-radius: 40px;                /* Oval köşeler */
  background: rgba(46, 137, 255, 0.95); /* Mavi tonlu arkaplan */

  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  text-decoration: none;

  z-index: 9999;                      /* Her şeyin üzerinde olsun */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Hafif gölge efekti */
  transition: transform 0.2s ease;

  pointer-events: auto;              /* Tıklamayı engellemesin */

  /* Gerekirse overflow'a izin ver (eğer üst kapsayıcıda görünmüyorsa) */
}


.map-button:hover {
  transform: translateX(-50%) scale(1.05);  /* Hover’da büyüme + merkez koruma */
}

/* El tıklama ikonu */
.map-tap-icon {
  position: absolute;         /* Butonla üst üste bindirmek için */
  top: 15px;                  /* Butonun biraz altına */
  left: 50%;                  /* Yatay ortalama */
  transform: translateX(-50%);/* Gerçek ortalama */
  
  width: 35px;
  height: 46px;
  opacity: 0.85;

  z-index: 9999;              /* Buton gibi üstte kalsın */
  pointer-events: none;       /* Tıklamaya engel olmasın */

  transition: transform 0.3s ease;
}

.map-button:hover + .map-tap-icon {
  transform: translateX(-50%) scale(1.05); /* Hover'da büyüsün */
}


                                                            /* Footer Genel */
.site-footer {
  width: 100%;
  background-color: #202020; /* Koyu gri arka plan */
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-logo img {
  width: 140px;
  margin-bottom: 30px;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  padding: 0;
}

.footer-nav li {
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.footer-nav li:hover {
  opacity: 0.7;
}

.footer-nav a {
  text-decoration: none;     /* Alt çizgi yok */
  color: inherit;            /* Yazı rengi sabit kalır */
  pointer-events: auto;      /* Tıklanabilir */
  transition: none;          /* Geçiş efekti yok */
}

.footer-nav a:hover {
  color: inherit;            /* Üzerine gelince renk değişmesin */
  text-decoration: none;     /* Alt çizgi gelmesin */
}

footer .copyright {
  font-size: 14px;
  color: #ccc;
}


.ouer-frame {
  max-width: 1801px;                 /* Sayfanın genişliği */
  margin: 0 auto;                    /* Ortalamak için */
  border-left: 40px solid #000;     /* Sol kenar çerçevesi */
  border-right: 40px solid #000;    /* Sağ kenar çerçevesi */
  box-sizing: border-box;           /* Padding ve border'ı dahil eder */
  background-color: #18072e;           /* Tüm sayfa arka planı beyaz kalır */
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}


/* Hamburger Menü Stilleri */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

                                        /* Mobil cihazlar için (örnek: max 768px) */

                                        
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
  
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 36px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-image {
    right: 0;
    margin-top: 20px;
  }

  .hero-image img {
    width: 80%;
    height: auto;
  }
  
  .button {
    position: relative;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
  }

  .about-section,
  .references-section,
  .certificates-section,
  .contact-section {
    padding: 20px;
  }

  .reference-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .logo-box {
    width: 80%;
  }

  .certificates-page {
    flex-direction: column;
    align-items: center;
  }

  .certificate-img {
    width: 90%;
    margin-bottom: 15px;
  }

  .contact-box,
  .map-container {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-nav li {
    font-size: 16px;
  }
}
