.progress-container {
    position: relative;
    height: 50px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 65px 0px 0px 35px;
    width:700px;
    max-width: 100%;
}
.right-progress {
    padding-left: 75px;
}
.stage-labels {
    display: flex;
    justify-content: space-between;
    width: 83%;
    position: absolute;
    top: -50px;
    left: 0;
    font-weight:bold;
}

.stage-label {
    position: absolute;
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

    .stage-label:nth-child(1) {
        left: 0%;
        transform: translateX(-50%);
    }

    .stage-label:nth-child(2) {
        left: 33.33%;
        transform: translateX(-50%);
    }

    .stage-label:nth-child(3) {
        left: 66.66%;
        transform: translateX(-50%);
    }

    .stage-label:nth-child(4) {
        left: 100%;
        transform: translateX(-50%);
    }

.progress-bar {
    position: relative;
    width: 83%;
    height: 30px;
    background-color: #555;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    font-weight: bold;
    color: white;
    font-size: 14px;
    margin-top: 50px;
    flex-wrap:wrap;
}

.progress-fills {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;

    background-color: #1AD4CD;
    border-radius: 15px;
    z-index: 0;
}

.progress-text {
    position: relative;
    z-index: 1;
}

#progress-percentage {
    margin-left: auto;
}

.stage-line {
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: white;
}

    .stage-line:nth-child(1) {
        left: 0%;
    }

    .stage-line:nth-child(2) {
        left: 26.3%;
    }

    .stage-line:nth-child(3) {
        left: 53.7%;
    }

    .stage-line:nth-child(4) {
        left: 83%;
    }

/* Responsive styling */
@media (max-width: 768px) {
    .progress-container {
        height: 40px;
        /*width: 100%;*/
    }

    .stage-label {
        font-size: 0.85rem;
    }

    .progress-bar {
        height: 25px;
        font-size: 0.85rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .progress-container {
        height: 35px;
        width: 100% !important;
        margin-top: 25px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 0;
    }
    #progress-number{
        font-size:15px !important;
    }
    .stage-label span{
        font-size:14px !important;
    }
    .home1-banner-section .banner-wrapper {
        padding: 45px 0 !important;
    }

    .stage-labels {
        top: -20px;
    }

    .stage-label {
        font-size: 0.75rem;
    }

    .progress-bar {
        height: 20px;
        font-size: 0.75rem;
        padding: 0 5px;
    }

    #progress-number, #progress-percentage {
        text-align: center;
    }
}

.countdown {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    /*justify-content: left;*/
    position: relative;
}

.time-box {
    text-align: center;
    font-size: 58px;
    color: white;
    display: flex;

}

    .time-box span {
        display: flex;
        font-size: 16px;
        align-items: center;
    }

@media (min-width: 576px) and (max-width: 767.98px) {
    .home1-banner-section .banner-wrapper {
        padding: 40px 0;
    }

    .banner-wrapper .row {
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 1450px) {
    .home1-banner-section .banner-wrapper {
        padding: 20px 0;
    }

    .banner-wrapper .row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .stage-label {
        font-size: 0.8rem;
    }

    .progress-bar {
        height: 25px;
    }

    .progress-text {
        font-size: 12px;
    }

    .time-box {
        font-size: 40px;
    }

        .time-box span {
            font-size: 14px;
        }
}

@media (max-width: 480px) {
    .progress-bar {
        height: 20px;
    }

    .progress-text {
        font-size: 10px;
    }

    .stage-label {
        font-size: 0.7rem;
    }

    .time-box {
        font-size: 30px;
    }

        .time-box span {
            font-size: 12px;
        }
}


@media (max-width: 768px) {
    .countdown {
        margin-left: 0;
        gap: 15px;
        padding: 15px;
    }

    .time-box {
        font-size: 50px;
    }

        .time-box span {
            font-size: 14px;
        }
}

/* Mobile screens */
@media (max-width: 480px) {
    .countdown {
       /* margin-left: 50px;*/
        gap: 10px;
        padding: 1px;
        padding-left: 1px;
        justify-content: left !important;
        padding-left: 5px;
    }

    .time-box {
        font-size: 35px;
    }

        .time-box span {
            font-size: 12px;
        }
}



@media only screen and (min-width: 360px) and (max-width: 600px) {

}