/* Genel Sıfırlama ve Font Ayarları */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
  .navbar-nav .nav-link.active {
    color: #d35133 !important;
    font-weight: 600; /* biraz vurgulu olsun */
  }
  .navbar-nav .nav-link:hover {
    color: #d35133;
  }


.navbar-brand img {

  width: 50%;
  height: auto
}

.nav-item {
  list-style: none !important;
}
/* Sadece mobilde geçerli olsun */

.call_icon {
  width: 5% !important;
}

.nav-item a {
  font-size: 1.3rem;
}

p {
  line-height: 1.6;
  color: #444444;
  font-size: 16px;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 1.1rem;
}


.fixed-logo {
  position: absolute;
  top: 5%;
  left: 20%;

  transform: translateX(-50%);
  z-index: 3;


}


.fixed-logo img {
  width: 50%;

}


.fixed-button {
  position: absolute;
  bottom: 40px;
  left: 50%;

  transform: translateX(-50%);
  z-index: 3;


}


.fixed-button .btn {
  background-color: #fafafa !important;
}

.fixed-button a {
  color: #000000;
  font-weight: bold;
  padding: 0.5rem 3rem;
}



.slider_alan {
  width: 100%;
  height: 100% !important
}

.carousel-item {
  position: relative;
  height: 90vh !important;
  /* Slider'ın yüksekliği ekran yüksekliğine göre ayarlandı */
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  /* Yazı rengi beyaz olarak ayarlandı */

}

.carousel-caption h5 {
  font-size: 3.5rem !important;
  /* Başlık boyutunu buradan ayarlayabilirsiniz */
  font-weight: bold;
  width: 100% !important
}

.carousel-caption p {
  font-size: 1.25rem;
  /* Metin boyutunu buradan ayarlayabilirsiniz */
  color: #fafafa64;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Resimlerin tam olarak alanı kaplamasını sağlar */
}

/* Responsive Ayarlar */
@media (max-width: 767px) {
    .nav_tel{
        display:flex;
    }
    
    .navbar-brand img {

  width: 40%;
  height: auto
}
    
  .slider_alan {}

  .carousel-caption h5 {
    font-size: 1.5rem;
    /* Küçük ekranlarda başlık boyutu */

  }

  .carousel-caption p {
    font-size: 1rem;
    /* Küçük ekranlarda metin boyutu */
  }

  .carousel-item {
    height: 300px;
    /* Küçük ekranlar için yükseklik */
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .carousel-caption h5 {
    font-size: 2rem;
    /* Orta boyutlu ekranlarda başlık boyutu */
  }

  .carousel-caption p {
    font-size: 1.25rem;
    /* Orta boyutlu ekranlarda metin boyutu */
  }

  .carousel-item {
    height: 500px;
    /* Orta boyutlu ekranlar için yükseklik */
  }
}

@media (min-width: 992px) {
    
    
  .carousel-item {
    height: 600px;
    /* Büyük ekranlar için yükseklik */
  }
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
}

.logo img {
  width: 20% !important;
  /* Logo boyutunu buradan ayarlayabilirsiniz */
  height: auto;
}

@media (max-width: 600px) {


 .navbar-collapse {
    background: rgba(255, 255, 255, 0.95); /* %95 opak beyaz */
    padding: 1rem;
    border-radius: 0 0 10px 10px; /* alt köşeleri yuvarlatma (opsiyonel) */
    backdrop-filter: blur(5px);   /* hafif blur efekti (destekleyen tarayıcılarda) */
  }

  .carousel-item {
    position: relative;
    height: 50vh !important;
    /* Slider'ın yüksekliği ekran yüksekliğine göre ayarlandı */
  }

  .carousel-caption h5 {
    letter-spacing: 0.3rem !important;
  }



  .logo img {
    width: 50% !important;
    /* Küçük ekranlar için logo boyutu */
  }

  .carousel-caption {
    width: 80%;
    position: absolute;
    top: 60%;
  }

  .carousel-caption h5 {
    font-size: 1rem !important;
    /* Başlık boyutunu buradan ayarlayabilirsiniz */
    font-weight: bold;
    width: 100% !important
  }
}

@media (min-width: 992px) {
  .carousel-item {
    height: 600px;
    /* Büyük ekranlar için yükseklik */
  }

  .logo img {
    width: 100px;
    /* Büyük ekranlar için logo boyutu */
  }
}


/* Banner Alanı */
.banner {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/banner_11zon.webp');
  background-position: center 65%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.banner .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  color: #fff;
}

.banner .content p {
  color: #fff;
}

.banner .content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.banner .content .text {
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

/* Mobil uyum */
@media (max-width: 576px) {
  .banner {
    height: 70vh;                       /* Mobilde daha kısa */
    background-attachment: scroll;      /* fixed mobilde sorun çıkarıyor */
    background-position: center top;    /* Resim üstten hizalansın */
  }


  .banner .content  {
   position:relative;
   top:5rem;
  }

  .banner .content h1 {
    font-size: 28px;
    margin-top:0.5rem;
  }

  .banner .content .text {
    font-size: 14px;
  }
}



/* Hakkımızda Bölümü */
.about {
  width: 100%;
  padding: 5rem 2rem;
  background-color: #006D5B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fafafa;
}


.about h1 {
  font-size: 2.2rem;
  color: #fafafa;
}


.about p {
  font-size: 1rem;
  text-align: justify;
  color: #fafafa;
}







.about_content a {
  background-color: #574656;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.3s;
}

.about_content a:hover {
  background-color: #433748;
  transform: translateY(-3px);
}


p {
  font-size: 18px !important;
}




/*servisler*/
.services {
  width: 100%;
  padding: 5rem 2rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.services_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  padding: 5rem 2rem;
  flex-wrap: wrap;
}



.services_content .kart {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #fafafa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: auto;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: justify;
  font-size: 1.2rem;
}


.services_content .kart  h5{
color:#d35133;
font-weight: bold;
}


.services .paket_baslik {
  ;
  font-size: 5rem;

}



@media screen and (max-width: 768px) {
  .services .paket_baslik {
    ;
    font-size: 2rem;
  }

  .services_content .kart {
    flex: 1 1 280px;
    width: 18rem;
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: justify;
  }

}










/* ek servisler*/
.ekhizmet {
  width: 100%;
  padding: 5rem 2rem;
  background-color: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.ekhizmet_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  padding: 5rem 2rem;
  flex-wrap: wrap;
}



.ekhizmet_content .kart {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #fafafa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 35dvh;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: justify;
}










/*neden biz*/



/*servisler*/
.nedenbiz {
  width: 100%;
  padding: 5rem 2rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: justify;
}


.nedenbiz_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;

  flex-wrap: wrap;
}



.nedenbiz_content .alanbir {
  width: 100%;
  background-color: #fafafa;
  padding: 5rem 2rem;
  border-radius: 0.3rem;
}



.nedenbiz_content .alaniki {
  width: 100%;
  background-color: #fafafa;
  padding: 5rem 2rem;
  border-radius: 0.3rem;
}


.info {
  width: 100%;
  padding: 5rem 2rem;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: justify;

}



.info h4 {
  font-size: 2rem;
}

.info h5 {
  font-size: 1.5rem;
  padding: 10px;
}

.info p {
  font-size: 1rem;
  text-align: justify;
  padding: 10px;
}


/**/

.info_2 {
  width: 100%;
  padding: 5rem 2rem;
  background-color: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;

}


.info_2 h6 {
  font-size: 2rem;
}



.info_2 p {
  font-size: 1rem;
  text-align: justify;
  padding: 10px;
}





/**/

.info_3 {
  width: 100%;
  padding: 5rem 2rem;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;

}
/* Blog Ana Kapsayıcı */
.info_blog {
  width: 100%;
  padding: 5rem 2rem;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

/* Blog İçerik Kutusu */
.info_blog_content {
  width: 100%;
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  text-align: left;
}

/* Başlıklar */
.info_blog_content h2, 
.info_blog_content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #574656;
  font-weight: 700;
  text-align: center;
}

.info_blog_content h4 {
  margin-top: 2rem;
  font-size: 1.3rem;
  color: #444;
  border-left: 4px solid #574656;
  padding-left: 10px;
}

/* Paragraflar */
.info_blog_content p {
  font-size: 1rem;
  text-align: justify;
  padding: 10px 0;
  color: #333;
  line-height: 1.7;
}

/* Liste Elemanları */
.info_blog_content ul, 
.info_blog_content ol {
  margin: 15px 0 20px 20px;
}

.info_blog_content ul li, 
.info_blog_content ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}

/* Vurgular */
.info_blog_content strong {
  color: #3276b1;
}

/* Accordion */
.accordion-button {
  background: #3276b1;
  color: #fff;
  font-weight: 600;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: #3276b1;
  color: #fff;
}
.accordion-body {
  background: #f9f9f9;
  font-size: 0.95rem;
  color: #444;
}


.info_3 p {
  font-size: 1rem;
  text-align: justify;
  padding: 10px;
}

.detay {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: row;
}


@media screen and (max-width: 768px) {
  .detay {
    display: flex;
    align-items: start;
    justify-content: start;
    text-align: justify;
    flex-direction: column;
    font-size: 1rem;
  }
}




/*galeri*/


.galeri {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  padding: 2rem 0;
  background-color: #fff;
  margin-top: 5rem;


}

.galeri_icerik {
  width: 65%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
}

.galeri_kutu {
  overflow: hidden;
  width: 18rem;
  height: 35dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  cursor: pointer;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.galeri_kutu img {}


.galeri_kutu img {

  width: auto;
  height: 35dvh;

}



/*iletişim formu*/


/*iletişim*/
/* Genel İletişim Alanı */
.iletisim {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  height: auto;
  background-color: #fafafa;
}

/* İçerik Alanı: Kartlar Yan Yana */
.iletisim_icerik {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  gap: 2rem;
  text-align: justify;
  flex-direction: row;
  flex-wrap: wrap;
}

/* Sol Kart - Metin Bilgileri */
.iletisim_kart_1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 45%;
  gap: 2rem;
  text-align: justify;
}

.iletisim_kart_1 a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
  font-size: 1.2rem
}

.iletisim_kart_1 a:hover {
  color: #00adee;

}

/* Sağ Kart - Form Alanı */
.iletisim_kart_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

/* Form */
.iletisim_kart_2 form {
  background-color: #006d5b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Form Başlık */
.iletisim_kart_2 form h2 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

/* Form Inputlar ve Textarea */
.iletisim_kart_2 form input,
.iletisim_kart_2 form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  text-align: center;
  outline: none;
  transition: all 0.3s ease;
  max-width: 400px;
}

.iletisim_kart_2 form input:focus,
.iletisim_kart_2 form textarea:focus {
  background-color: #e6f7ff;
  box-shadow: 0 0 0 2px #fff;
}

.iletisim_kart_2 form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Gönder Butonu */
.iletisim_kart_2 form button {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.iletisim_kart_2 form button:hover {
  background-color: #fafafa;
  transform: scale(1.03);
}

/* ----------- Mobil Uyum ------------- */
@media (max-width: 768px) {
  .iletisim_icerik {
    flex-direction: column;
    align-items: center;
    width: 95%;
  }

  .iletisim_kart_1,
  .iletisim_kart_2 {
    width: 100%;
  }

  .iletisim_kart_2 form {
    padding: 1.5rem;
  }

  .iletisim_kart_2 form h2 {
    font-size: 1.3rem;
  }

  .harita {
    width: 100%;
    height: 50vh !important;
    text-align: center;

  }

  .harita i {

    t
  }

}

.harita {
  width: 100%;
  height: 75dvh;
  text-align: center;
  background-color: #ffffff;
  padding: 5rem 2rem;

}




/*footer*/

.site-footer {
  width: 100%;
  background-color: #F8F9FA;
  /* Arkaplan rengi */
  color: #ffffff;
  /* Yazı rengi beyaz */
  padding: 100px 20px;
  /* Yükseklik için padding artırıldı */
  text-align: center;
  height: auto;
}

.site-footer p {
  margin: 0 0 15px;
  font-size: 16px;
  color: #000000;
  /* Linkler beyaz */
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: #000000;
  /* Linkler beyaz */
  /* Linkler beyaz */
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #5f5959c9;
  /* Üzerine gelince altın sarısı */
}





/* CSS */
.iletisim_icon {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px;
  background: white;
  /* arka plan istersen */
  z-index: 9999;
}

.iletisim_icon .sol,
.iletisim_icon .sag {
  display: flex;
  align-items: center;
  gap: 8px;
}
  

.iletisim_icon .sag a,
.iletisim_icon .sol a {
  text-decoration: none;
  color: #000000;
  display: flex;
  /* ikon + yazı yanyana hizalanır */
  align-items: center;
  /* dikey ortalama */
  gap: 8px;
  /* ikon ile yazı arasında boşluk */
}

.iletisim_icon img {
  max-width: 35px;
  /* en büyük boyutu 35px */
  width: 100%;
  /* bulunduğu alanı doldurur */
  height: auto;
  /* orantılı küçülür */
}

/* Küçük ekranlar için uyarlama */
@media (max-width: 600px) {
  .iletisim_icon img {
    max-width: 28px;
    /* mobilde biraz küçülür */
  }

  .iletisim_icon .sag a,
  .iletisim_icon .sol a {
    font-size: 0.9rem;
    /* mobilde yazı küçülür */
    gap: 6px;
    /* boşluk daralır */
  }
}












/* Hizmetler Bölümü */
/*
.services{
    width: 100%;
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.services h2{
    font-family: 'Montserrat', sans-serif;
    color: #574656;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.services_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    
}

.service_item{
    flex: 1 1 280px;
    max-width: 350px;
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service_item:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service_item h3{
    font-family: 'Montserrat', sans-serif;
    color: #3c4043;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service_item p{
    color: #555555;
    line-height: 1.6;
    font-size: 1rem;
}
*/
/* Hizmetler Butonu */
/*
.services button{
    width: 200px; 
    background-color: #574656; 
    color: #ffffff;
    padding: 10px 0;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    border: none;
}

.services button:hover{
    background-color: #433748;
    transform: translateY(-3px);
}
*/
/* Responsive Tasarım */
/*
@media screen and (max-width: 768px){
    .services_list{
        flex-direction: column;
        align-items: center;
    }

    .about_content{
        padding: 3rem 1.5rem;
    }

    .about_content h1{
        font-size: 1.8rem;
    }

    .about_content p{
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px){
    .about_content h1{
        font-size: 1.6rem;
    }

    .about_content p{
        font-size: 0.9rem;
    }

    .services button{
        width: 160px;
    }
}
*/