
  
  
  
  .slide-box {
    flex: 1 1 300px;
    height: 500px;
    min-width: 400px;
     width: 1100px;
  display: flex;
  justify-content: center;
  }
  
  .description-box {
    flex: 2 1 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Mobil uyum */

  
  html, body {
  overflow: auto;
  height: 100%;
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* Internet Explorer / eski Edge */
}



:root {
  --navbar-height: 70px;
}


body {
  padding-top: 70px !important;
}

.custom-carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
   margin: 100px auto 0 auto; /* Üstten 50px boşluk */

  overflow: hidden;
  border-radius: 10px;
}

.custom-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.custom-slide {
  min-width: 100%;
  display: none;
}

.custom-slide.active {
  display: block;
}

.custom-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.custom-caption {
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  margin-top: -5px;
  font-size: 20px;
}

.custom-prev, .custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 25px;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
}

.custom-prev { left: 10px; }
.custom-next { right: 10px; }
 
.referans-button-container {
  position: absolute;
  top: calc(100px + 20px); /* Navbar yüksekliği + 20px boşluk */
  left: 20px; /* Sol kenardan uzaklık */
  z-index: 999;
}

.referans-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000; /* Mavi arka plan */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.referans-button:hover {
  background-color: #000000;
}