#home-section {
    margin-top: 60px;
    overflow: hidden;
}

.slider {
    margin: 5px;
    position: relative;
    max-width: 100%;
    height: 50vh;
    overflow: hidden;
}

.image-container {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}

/* Dots */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dots span {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    opacity: 0.5;
}

.dots .active {
    opacity: 1;
    background: #007bff;
}
