@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body {
    font-family: "Rubik", sans-serif !important;
    direction: rtl;
    background-color: #cdcdcd;
    margin: 0;
}

.slider-wrapper {
    aspect-ratio: 9 / 16; /* نسبت 1080x1920 */
    background-color: #f8f9fa;
    position: relative;
}


.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: contain;
    background-color: #f8f9fa; /* بک‌گراند خاکستری ملایم زیر عکس */
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.slider-img.active {
    opacity: 1;
    z-index: 2;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.1s;
}
.dot.active {
    background-color: #007bff;
}





