.hero-section {
  width: 100%;
  height: calc(100vh - 111px);
  background: linear-gradient(165deg, #022b77, #000000d0);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.content-section {
    margin-top: 0; /* Üst boşluğu sıfırla */
    padding-top: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
      margin-bottom: 0; /* Alt boşluğu sıfırla */
    padding-bottom: 0;
}
h1, h2, h3, p {
    margin-top: 0;
}
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Video tam ekran kaplasın */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Yeni eklenen yarı saydam degrade katman */
.hero-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, #ffae00b4, #1f1c18);
  opacity: 0.7; /* İstersen 0.5 yap, daha şeffaf olur */
  z-index: 1;
}

/* Yazılar her şeyin üstünde */
.hero-slide h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  z-index: 5;
}

.hero-slide p {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 30px; 
  z-index: 5;
}

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 5;
}

.btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
  z-index: 5;
}

.btn-yellow {
  background-color: #ffc107;
  color: #000;
}

.btn-yellow:hover {
  background-color: #e0a800;
}

.btn-dark {
  background-color: #333;
  color: #fff;
}

.btn-dark:hover {
  background-color: #111;
}
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
    z-index: 5;
}

.hero-dots .dot {
  width: 14px;
  height: 14px;
  border: 2px solid white;
  border-radius: 50%;
  background: transparent;
  transition: background 0.3s;
  cursor: pointer;

}

.hero-dots .dot.active {
  background: white;
  z-index: 5;
}

/* Animasyon başlangıç */
.feature-box {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover efekti */
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

/* Fade-up animasyonu */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
