.custom-slider-container {
    position: relative;
    width: 100%;

    border-radius: 7px;
    overflow: hidden;
}
.custom-slider {
	  width: 100%; /* عرض برابر با والد */
    height: 100%; /* ارتفاع برابر با والد */
    display: flex;
    transition: transform 1s ease-in-out;
}
.custom-slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}
.custom-slide img {
    width: 100%;
    height: 100%; /* پر کردن ارتفاع والد */
    object-fit: cover; /* برش تصویر به‌صورت center-crop */
    object-position: center; /* مرکز کردن تصویر */
    border-radius: 7px;
}
.custom-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px; /* نازک‌تر کردن نوار */
    background-color: #ff6600;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.6); /* سایه جذاب */
    animation: progress 6s linear infinite;
}
@keyframes progress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
