/* Genel sayfa stilleri */
body {
    font-family: "Montserrat", sans-serif;
    background-color: #F2FAFF; /* Hafif gri arka plan */
    color: #212529;
}
/* 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);
    }
  }
.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;
  }
  .btn {
    transition: all 0.4s ease-in-out;
  }
  .navbar .btn:hover{
    color: #fff;
    background-color: #8ECFFF;     
    border-color: #8ECFFF;          
  }
  .navbar nav-link span:hover {
    color:black; /* Example hover color */
}

/* Animated Underline */
.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 */
}
/* Sayfa başlığı */
.machine-heading {
    color: #8ECFFF; /* Koyu gri başlık rengi */
    font-size: 2.5rem;
    font-weight:600;
    text-align: center;
    margin-top: 8vh;
    padding-bottom: 5vh;
}

/* Tablo stilleri */
.machine-table {
    border-radius: 10px;
    overflow: hidden; /* Kenar yuvarlatma için gereklidir */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Hafif gölgelendirme */
}

.machine-table thead th {
    background-color: #fff; /* Başlık arka plan rengi */
    color: #495057;
    font-weight: bold;
}

.machine-table tbody td {
    color: #343a40;
}
.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;
  }
  
    /* 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;
    }
    }
  /* 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);
  }
    