.custom-slider-container {
    display: flex;
    flex-direction: column;
    max-width: 950px;
    margin: 0 auto;
    align-items: center;
}

/* Image Slider */
.mySwiper {
    width: 100%;
    max-width: 950px;
    overflow: hidden;
}

.mySwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s ease-in-out;
}

.mySwiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
}

/* Bottom Navigation */
.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: #E0E0E0;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-btn img {
    height: 50px !important;
    transition: transform 0.3s ease;
}

.nav-btn span {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 600;
}

.nav-btn.active {
    color: #ffffff;
}

.nav-btn.active img {
    /* transform: scale(1.1); */
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-btn span {
        font-size: 12px;
    }
    .slider-navigation {
        gap: 0px;
    }
}