﻿.stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .stepper .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: none !important;
        border: none !important;
        position: relative;
        padding: 0 2rem;
    }

    .stepper .step-circle {
        width: 80px;
        height: 80px;
        background-color: var(--white);
        color: var(--black);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-bottom: 0.5rem;
        border: 3px solid var(--secondary-lighter);
        transition: background 0.3s, border 0.3s;
    }

        .stepper .step-circle svg {
            color: var(--black);
        }

    .stepper .nav-link.active .step-circle {
        background-color: var(--primary);
        border-color: #7a9c32;
        color: var(--white);
    }

        .stepper .nav-link.active .step-circle svg {
            color: var(--white);
        }

    .stepper .step-label {
        font-size: 14px;
        text-align: center;
        font-weight: 600;
        color: #333;
    }

    .stepper .nav-item:not(:last-child) .nav-link:after {
        content: '';
        position: absolute;
        top: 40px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: #b8d075;
        z-index: -1;
    }

.card-hover-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    height: 100%;
    width: 100%;
    color: #FFFFFF;
    padding: 30px;
}

.three-ways-card{
    width: 100%;
    max-width: 550px !important;
    width: 550px;
}

.scroll-reveal-item {
    min-height: 300px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

#text-slider .splide__slide {
    border-left: 4px solid transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center
}

    #text-slider .splide__slide.is-active {
        opacity: 1;
        background: #f8f9fa;
    }

.splide__pagination {
    display: none;
}

.splide__arrows {
    display: none;
}

.steps-content-slides {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.steps-slide-dots {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 15px;
    position: absolute;
    right: -20px;
    gap: 10px;
}

    .steps-slide-dots .step-slide-dot {
        height: 8px;
        width: 8px;
        border-radius: 45px;
        background: var(--secondary-lighter);
        border: var(--secondary-light);
    }

        .steps-slide-dots .step-slide-dot.active {
            height: 16px;
            width: 8px;
            border-radius: 45px;
            background: var(--primary);
            border: var(--primary);
        }