
.slider-container {
    width: 1000px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    width: 1000px;
    height: auto;
}

/* Bullet navigation styles */
.bullets {
    display: flex;
    justify-content: flex-start;  /* Align bullets to the left */
    margin-top: 10px;
    padding-left: 10px;  /* Add space on the left side */
}

.bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.bullet.active {
    background-color: #333;
}
