/* Hero Section */
.hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    /* Align perfectly with header */
}

.hero-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .slide img {
        height: auto;
        min-height: 150px;
    }
}