﻿.carousel-image {
    width: 100%;
    height: 700px;
    filter: blur()brightness(30%);
    object-fit: cover;
}

.carousel_text {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    align-items: center;
}

.slide {
    height: 700px;
}

.we_help {
    padding-top: 0px;
}

@media only screen and (max-width: 768px) {
    .carousel_text p {
        font-size: 13px;
    }

    .carousel-image {
        height: 700px;
    }

    .slide {
        height: 700px;
    }

    .carousel_text {
        position: absolute;
        top: 45%;
        padding: 0 20px;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    .we_help {
        padding-top: 50px;
    }
}



.bi-arrow-up-right-circle-fill {
    font-size: 45px;
    color: #CBD5E0;
}

    .bi-arrow-up-right-circle-fill:hover {
        color: #016D85;
    }

.popular_courses:hover {
    box-shadow: 0 2px 7px rgba(0,0,0,0.2);
}


@keyframes appear {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.block {
    animation: appear 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 1%;

}


/*for support*/
.stepper-wrapper {
    width: 80%;
    margin: 30px auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 2%;
    right: 2%;
    height: 4px;
    background-color: #ddd;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

    .progress-line::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background-color: #0d6974;
        animation: progress 1s ease-in-out forwards;
    }


    .progress-line:hover {
        background-color: #0d6974;
        box-shadow: 0 0 10px #0d6974, 0 0 20px #0d6974;
    }

.step-circle {
   
    width: 40px;
    height: 40px;
    background-color: #ddd;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    animation: stepHighlight 1s ease-in-out forwards;
}

    .step-circle:nth-child(1) {
        animation-delay: 0s;
    }

    .step-circle:nth-child(2) {
        animation-delay: 0.33s;
    }

    .step-circle:nth-child(3) {
        animation-delay: 0.66s;
    }


    .step-circle:hover {
        transform: scale(1.2);
        box-shadow: 0 0 10px #0d6974, 0 0 20px #0d6974;
    }

.mobile-c {
    display: none;
}

/* Animations */
@keyframes progress {
    to {
        width: 100%;
    }
}

@keyframes stepHighlight {
    to {
        background-color: #0d6974;
    }
}

.h {
    padding-right: 90px;
}

.p {
    padding-right: 90px;
}

@media (max-width: 768px) {
    .stepper-wrapper {
        display: none;
    }

    .mobile-c {
        display: inline-flex;
        padding: 6px 14px;
        border-radius: 100px;
        background-color: #0d6974;
        color: white;
    }

        .mobile-c:hover {
            background-color: #0d6974;
            box-shadow: 0 0 10px #0d6974, 0 0 20px #0d6974;
        }

    .h {
        padding-right: 0;
    }

    .p {
        padding-right: 0;
    }
}




