
body { 
    font-family: "Montserrat", sans-serif;
  }
  /* Ana yükleme ekranı katmanı */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F2FAFF; /* Beyaz arka plan */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Sayfadaki diğer her şeyin üstünde kalır */
    transition: opacity 0.5s ease-out;
  }
  
  /* Spinner'ın etrafındaki kapsayıcı */
  .spinner-container {
    position: relative;
    width: 50px;
    height: 50px;
  }
  
  /* Dönen animasyonun kendisi */
  .spinner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid #8ECFFF; /* Yarı şeffaf mavi halka */
    border-top-color: #6bb2e5; /* Üst kısım tam mavi olacak */
    animation: spin 2s linear infinite; /* Animasyon döngüsü */
  }
  
  /* Animasyonun anahtar kareleri */
  @keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
  }
  .about-bg{
    margin-top: -5vh;
    background: url(img/about-bg.png)no-repeat top center/cover;
    height: 180vh;
    background-attachment: fixed;
    z-index: 1;
  }
  .ust-bilgi{
    background-color: #8ECFFF;
    font-size: 0.7rem;
    font-weight: bold;
  }
  nav{
    background-color: #F2FAFF;
  }
   .navbar .navbar-brand img{
    height: 12vh;
    position: absolute;
 transform: translateY(-50%);
  }
  .navbar .nav-item .nav-link {
    color: black;
    position: relative;
    font-weight:500;
    padding: 13px;
  }
  .navbar .nav-item .btn{
    background-color: #F2FAFF;
    border-color: #8ECFFF;
    border-width: 0.11rem;
    border-radius: 25px;
    padding: 13px;
    padding-left: 19px;
    padding-right: 19px;
  }
  .navbar .nav-item .nav-link span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #8ECFFF;
    transition: width 0.3s ease-out;
}

.navbar .nav-item .nav-link span:hover::after {
    width: 100%; /* Expands to full width on hover */
}
.btn {
    transition: all 0.4s ease-in-out;
  }
  .navbar .btn:hover{
    color: #fff;
    background-color: #8ECFFF;     
    border-color: #8ECFFF;          
  }
/* Ana İletişim Bölümü */
.contact-hero-section {
    position: relative;
    height: 88vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

/* Arka Plan Görseli */
.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/contact-bg.png'); /* Buraya kendi görselinizin linkini ekleyin */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Karartma efekti */

}

/* İletişim İçeriği */
.contact-content-container {
    position: relative;
    z-index: 2;
}

/* Başlık Stilleri */
.contact-main-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2rem;
}

/* İletişim Kutucukları */
.contact-box {

    backdrop-filter: blur(5px);
    box-shadow: 0 0 80px #000000;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    padding: 5rem;
    height: 25rem;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
}
.contact-box:hover {
    transform: scale(1.05); /* %5 oranında büyütme */
    box-shadow: 0 0 20px #8ECFFF; /* Mavi gölge efekti */
    z-index: 10; /* Diğer elementlerin üzerine çıkar */
}
.box-icon {
    font-size: 3.4rem;
    color: #8ECFFF;
    margin-bottom: 1rem;
}

.box-title {
    font-size: 1.4rem;
    font-weight: bold;
}

.box-text {
    font-size: 1.1rem;
    color: #ddd;
}
/* Footer bölümü genel stilleri */
.footer-section {
    background: url("img/footer.png");
    position: relative;
    color: #fff;
    height: 45vh;
  }
  
  /* Tüm bölüm başlıkları */
  .section-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  /* Hakkımızda metin bloğu */
  .footer-about {
    text-align: left;
  }
  
  .footer-about p {
    color: #f2f9ff;
  }
  
  .about-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: width 0.3s ease-out;
  }
  
  /* Hizmetler listesi */
  .footer-service{
     text-align: start;
  padding-left: 120px;
  }
  .services-list li {
    list-style: none;
    margin-bottom: 8px;
    color: #fff;
    text-align: centers;
    display:flexbox; /* Bu satır en önemli değişikliktir */
    align-items:center; /* İçeriği en üste hizalar */
  }
  
  .services-list .list-arrow {
    font-size: 0.8rem;
    margin-right: 10px;
    color: #fff;
    margin-top: 5px; /* Ok simgesini metnin başına hizalar */
  }
  
  /* İletişim listesi */
  .contact-list li {
    list-style: none;
    margin-bottom: 8px;
    color: #fff;
    display: flex;
    align-items: flex-start; /* İçeriği en üste hizalar */
  }
  .fa-map-marker-alt{
  padding-left: 0.12rem;
}
  .contact-list i {
    font-size: 1rem;
    color: #fff;
    margin-top: 5px; /* İkonu metnin başına hizalar */
    padding-right: 1.5rem;
  }
  /* Harita Bölümü */
.map-section {
    position: relative;
    padding-top: 0;
   
  }
  
  .map-container {
    position: relative;
    width: 100%;
    height: 450px; /* Haritanın yüksekliğini ayarlayın */
    overflow: hidden;
  }
  
  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı şeffaf siyah arka plan */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2; /* İframe'in üstünde görünmesi için */
  }
  
  .map-link {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 10px 20px;
    border: 2px solid #8ECFFF;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .map-link:hover {
    background-color: #8ECFFF;
    color: #fff;
  }
    /* Mobil uyum */
    @media (max-width: 768px) {
    .footer-section{
      height: 95vh;
    }
    .footer-service{
      text-align: left;
      padding-left: 1vh;
    }
    .ust-bilgi{
      display: flex;
    flex-direction: column; /* Elemanları alt alta sırala */
    align-items: center; /* Elemanları sola hizala */
    text-align: center;
    }
      .contact-hero-section{
        height:157vh ;
      }
      .contact-box{
        height: 20rem;
      }
    }
  /* Varsayılan olarak tüm animasyonlu nesneler gizli ve yukarıda */
  .animated-element {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  }
  
  /* Görünür hale geldiğindeki durum */
  .animated-element.visible {
    opacity: 1;
    transform: translateY(0);
  }
    /* Animated element'in transform özelliğini hover'a uyumlu hale getirir */
.animated-element.contact-box.visible {
    transform: none; /* Animasyon bittiğinde transform özelliğini sıfırla */
    transition:transform 0.5s ease, box-shadow 0.5s ease, z-index 0s;
}

/* Hover efekti için */
.animated-element.contact-box.visible:hover {
    transform: scale(1.05); /* Büyüme efektini yeniden tanımla */
}