.kurumsal-buttons {
    display: flex; /* Alt menü elemanlarının düzeni */
    flex-direction: column; /* Dikey hizalama */
    background-color: #fff; /* Arka plan rengi */
    border: 1px solid #ddd; /* Kenar çizgisi */
    padding: 10px; /* İçerik boşluğu */
}
.kurumsal-buttons button {
    width: 100%; /* Buton genişliği */
    padding: 10px; /* İçerik boşluğu */
    margin-bottom: 5px; /* Butonlar arası boşluk */
    text-align: left; /* Yazının hizası */
    border: none; /* Kenarlık yok */
    background-color: #f7f7f7; /* Varsayılan arka plan rengi */
    cursor: pointer; /* İmleç değişimi */
}
.kurumsal-buttons button:hover {
    background-color: #ddd; /* Hover durumu */
}
.nav-link:hover + .kurumsal-buttons {
    display: block; /* Alt menüyü görünür yap */
}
.kurumsal-buttons {
    display: none; /* Varsayılan olarak gizli */
    position: absolute; /* Konumunu sabitle */
    z-index: 10; /* Üstte görünmesini sağla */
}

@media (max-width: 768px) {
    .kurumsal-buttons {
        position: static; /* Mobilde tam genişlik */
        width: 100%; /* Tam genişlik */
    }
    .kurumsal-buttons button {
        text-align: center; /* Ortala */
    }
}
/* Ana menü hover durumunda alt menü görünsün */
.nav-link:hover + .kurumsal-buttons,
.kurumsal-buttons:hover {
    display: block;
}

.gallery {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.gallery img {
    width: 600  px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.view-all-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #198754;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
}

.view-all-btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.view-all-btn:hover {
    background-color: #198754;
}
.kurumsal-buttons {
    
display: flex; /* Alt menü elemanlarının düzeni */
flex-direction: column; /* Dikey hizalama */
background-color: #fff; /* Arka plan rengi */
border: 1px solid #ddd; /* Kenar çizgisi */
padding: 10px; /* İçerik boşluğu */
}
.kurumsal-buttons button {
width: 100%; /* Buton genişliği */
padding: 10px; /* İçerik boşluğu */
margin-bottom: 5px; /* Butonlar arası boşluk */
text-align: left; /* Yazının hizası */
border: none; /* Kenarlık yok */
background-color: #f7f7f7; /* Varsayılan arka plan rengi */
cursor: pointer; /* İmleç değişimi */
}
.kurumsal-buttons button:hover {
background-color: #ddd; /* Hover durumu */
}
.nav-link:hover + .kurumsal-buttons {
display: block; /* Alt menüyü görünür yap */
}
.kurumsal-buttons {
display: none; /* Varsayılan olarak gizli */
position: absolute; /* Konumunu sabitle */
z-index: 10; /* Üstte görünmesini sağla */
}

@media (max-width: 768px) {
.kurumsal-buttons {
    position: static; /* Mobilde tam genişlik */
    width: 100%; /* Tam genişlik */
}
.kurumsal-buttons button {
    text-align: center; /* Ortala */
}
}
/* Ana menü hover durumunda alt menü görünsün */
.nav-link:hover + .kurumsal-buttons,
.kurumsal-buttons:hover {
display: block;
}

/* Genel Ayarlar */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Footer */
  .footer {
    background: #000000;
    color: white;
    padding: 40px 20px;
  }
  
  .footer-header {
    margin-bottom: 40px;
    color: white;
  }
  
  .footer-header h2 {
      color: white;
    font-size: 1.5rem;
    margin: 0;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-about {
    flex: 1 1 300px;
    margin-bottom: 20px;
    color: rgb(255, 255, 255);
  }
  
  .footer-logo {
    width: 100px;
    margin-bottom: 20px;
  }
  
  .footer-about p {
      color: rgb(255, 255, 255);
    margin: 10px 0;
  }
  
  .footer-links
   {
      color: white;
    display: flex;
    flex-wrap: wrap;
    flex: 2 1 600px;
    justify-content: space-between;
  }
  
  .link-column {
      color: white;
    flex: 1;
    margin-right: 20px;
  }
  
  .link-column h3 {
      color: white;
  
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 2px solid white;
    display: inline-block;
  }
  
  .link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .link-column ul li {
    margin-bottom: 10px;
  }
  
  .link-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .link-column ul li a:hover {
    text-decoration: underline;
  }
  
  /* Footer Alt */
  .footer-bottom {
  text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
  }
  
  .footer-bottom p {
    margin: 5px 0;
    font-size: 0.8rem;
  }

  