
/*========================================== FOR THE CAUROSEL FOR PROJECT , REVIEWS =========================================   */

.custom-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.custom-slider .slick-dots li {
    width: 50px;
    height: 5px;
    background: #ddd !important;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.custom-slider .slick-dots li button {
    display: none !important;
}

.custom-slider .slick-dots li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #2765F5;
}

.custom-slider .slick-dots li.slick-active::after {
    animation: progressBar 4s linear forwards;
}

@keyframes progressBar {
    from { width: 0%; }
    to { width: 100%; }
}


/*===================================================================================END=================================================== */