.goal-card {
    /*width:220px;
    height:220px; */
    width: 90%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    object-fit: cover;

    border-radius : 50%;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
    margin-left : 3rem;
    margin-right : 3rem;
}

.goal-progress {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 650px;
}

.goal-progress-step {
    position: relative;
    flex: 1;
    text-align: center;
    color: #adb5bd;
}

/* Connecting line */
.goal-progress-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 17px;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: #dee2e6;
    z-index: 0;
}

.goal-progress-step.completed:not(:last-child)::after {
    background-color: var(--bs-success);
}

.goal-progress-dot {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    border: 3px solid #dee2e6;
    border-radius: 50%;
    background-color: var(--bs-body-bg);
    font-size: 0.85rem;
    font-weight: 600;
}

.goal-progress-step.completed {
    color: var(--bs-success);
}

.goal-progress-step.completed .goal-progress-dot {
    border-color: var(--bs-success);
    background-color: var(--bs-success);
    color: white;
}

.goal-progress-step.current {
    color: var(--bs-primary);
    font-weight: 600;
}

.goal-progress-step.current .goal-progress-dot {
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
    color: white;
    box-shadow: 0 0 0 5px rgba(var(--bs-primary-rgb), 0.15);
}

.goal-progress-label {
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    .goal-progress-label {
        font-size: 0.72rem;
    }

    .goal-progress-dot {
        width: 30px;
        height: 30px;
    }

    .goal-progress-step:not(:last-child)::after {
        top: 14px;
    }
}

/* Slider */
.time-range {
    position: absolute;
    bottom: 0.5rem;
    background-color: rgba(27,0,0,0.5);
}

/* Goal Wall */
.goal-wall 
{
    background-image: url("/Images/home/brickwall.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 80vh;
}

.goal-wall-card {
    position: absolute;
    width : 240px;
    height: 180px;
    background-color: rgba(255,255,255,0.9);
    overflow: hidden;
    transition: all 0.5s;
    z-index: 1000;
}

.goal-wall-card .text-lead {
    font-family: "Caveat", cursive;
    font-size: 1.25rem;
}

.goal-wall-card:hover {
    background-color:#FFFFFF;
    scale:1.1;
    transform: none;
    z-index: 2000;
}
    

