.custom-slider-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Aap apne hisab se change kar sakte hain */
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide-img {
    width: 100%;
    flex-shrink: 0;
    cursor: pointer;
    object-fit: cover;
}

/* Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
}
.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots-container {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}
.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}
.active-dot { background-color: #fff; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 5px;
}
.close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 24px;
    background: #e74c3c;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}