/* 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;
    }
}
