.banner {
    margin: 0;
    padding: 0;
    width: 100%;
}

.baneer1 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0px;
    position: relative;
}

.baneer1 div {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.baneer1 img {
    width: 100%;
    flex-shrink: 0;
}

/* Fade Mode */
.baneer1.fade div {
    display: block;
    position: relative;
}

.baneer1.fade img {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    width: 100%;
}

.baneer1.fade img.active {
    opacity: 1;
    position: relative;
}

/* Dots Style */
.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}
