/* 
  ============================================
  SLIDER GENEL ALANI
  ============================================
*/
.slider-section {
  background-color: #eaf6ff; /* Hafif bir mavi ton */
  /* Header ile slider arasındaki boşluğu tamamen kaldırmak için padding sıfır */
  padding: 0; 
}

/* Slider içindeki metinler */
.slider-title {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 20px;
}

.slider-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.slider-btn {
  background-color: #f8a828;
  border: none;
  color: #fff;
}

/* 
  ============================================
  RESİMLER KAPSAYICISI
  ============================================
*/
.slider-images {
  position: relative;
  width: 100%;
  min-height: 200px;
  /* Dilerseniz position: relative; vererek resimleri serbest konumlandırabilirsiniz */
}

/* Örnek konumlandırmalar (kendi isteğinize göre düzenleyebilirsiniz) */
.slider-images .macbook {
  width: 150px;
  position: absolute;
  top: 0;
  right: 20%;
}

.slider-images .phone {
  width: 80px;
  position: absolute;
  top: 40%;
  right: 35%;
}

.slider-images .speaker {
  width: 60px;
  position: absolute;
  bottom: 0;
  right: 10%;
}

.slider-images .hand {
  width: 120px;
  position: absolute;
  top: 10%;
  right: 0;
}

/* 
  ============================================
  RESPONSIVE DÜZEN
  ============================================
*/
@media (max-width: 768px) {
  .slider-images .macbook,
  .slider-images .phone,
  .slider-images .speaker,
  .slider-images .hand {
    position: static;
    display: inline-block;
    margin: 10px;
  }
}

/* 
  ============================================
  EK ÖZELLEŞTİRMELER
  ============================================
*/

/* Carousel içindeki resimlerin margin ve padding'ini sıfırla */
.carousel-inner img {
  margin: 0;
  padding: 0;
}

/* Carousel kontrol butonlarının kapsayıcıları */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 25px; /* Daha yuvarlak buton */
}

/* Sol-sağ ok ikonlarının görünümü */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
}

/* 
  ============================================
  HEADER - ORANGE BAR ALT BOŞLUĞUNU SIFIRLAMA
  ============================================
*/
.orange-bar,
.orange-nav {
  margin-bottom: 0;
  padding-bottom: 0;
}
