.hero-section {
    margin-top: -56px; /* Navbar yüksekliği kadar negatif margin */
}

/* Tablet ve mobil cihazlar için */
@media (max-width: 991.98px) {
    .hero-section {
        margin-top: -72px; /* Mobilde navbar biraz daha yüksek olabilir */
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.hero-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-controls button {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-controls button:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-controls .prev {
    left: 20px;
}

.hero-controls .next {
    right: 20px;
}

.hero-controls i {
    color: white;
    font-size: 24px;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}
