/* Bootstrap Wellness Section */
.wellness-section-bootstrap {
    background: linear-gradient(135deg, #f0f8f5 0%, #f5faf8 100%);
    padding: 70px 0;
    margin: 40px 0;
}

.wellness-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.wellness-card-bootstrap {
    transition: all 0.3s ease;
    cursor: pointer;
}

.wellness-card-bootstrap:hover {
    transform: translateY(-15px);
}

.wellness-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.12);
    transition: all 0.3s ease;
}

.wellness-card-bootstrap:hover .wellness-circle {
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.25);
    transform: scale(1.08);
}

.wellness-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wellness-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d6a4f;
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.wellness-card-bootstrap:hover .wellness-name {
    color: #52b788;
}

@media (max-width: 1200px) {
    .wellness-section-title {
        font-size: 2.2rem;
    }

    .wellness-circle {
        width: 140px;
        height: 140px;
    }

    .wellness-name {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .wellness-section-bootstrap {
        padding: 50px 0;
    }

    .wellness-section-title {
        font-size: 2rem;
        margin-bottom: 45px;
    }

    .wellness-circle {
        width: 130px;
        height: 130px;
    }

    .wellness-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .wellness-section-bootstrap {
        padding: 40px 0;
        margin: 30px 0;
    }

    .wellness-section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .wellness-circle {
        width: 120px;
        height: 120px;
    }

    .wellness-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .wellness-section-bootstrap {
        padding: 30px 0;
        margin: 20px 0;
    }

    .wellness-section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .wellness-circle {
        width: 110px;
        height: 110px;
    }

    .wellness-name {
        font-size: 0.85rem;
    }
}
/* MOBILE HORIZONTAL SLIDER */
@media (max-width: 576px) {

    .wellness-slider {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .wellness-slider::-webkit-scrollbar {
        display: none;
    }

    .wellness-slider > div {
        flex: 0 0 auto;
        width: 25%; /* controls card width */
        min-width: 130px;
        scroll-snap-align: center;
    }

    .wellness-card-bootstrap {
        margin: 0 auto;
    }
}
/* MOBILE SCROLL INDICATOR */
.slider-indicator {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.slider-indicator-track {
    width: 120px;
    height: 3px;
    background: #d8f3dc;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.slider-indicator-thumb {
    width: 35%;
    height: 100%;
    background: #2d6a4f;
    border-radius: 10px;
    position: absolute;
    left: 0;
    transition: transform 0.15s linear;
}

