
.yoga-hero {
    background: #f4f6f3;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.yoga-card {
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(
        90deg,
        #dfe3dc 0%,
        #f5f6f2 60%,
        #ffffff 100%
    );
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}


/* LEFT CONTENT */
.yoga-content {
    max-width: 520px;
}

.ai-badge {
    display: inline-block;
    background: #2f3e2e;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.small-title {
    font-size: 30px;
    font-weight: 500;
    color: #4a5b43;
}

.main-title {
    font-size: 56px;
    font-weight: 700;
    color: #2f3e2e;
}

.yoga-content p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #5a6654;
}


.healing-actions {
    display: flex;
    gap: 16px;
}

.btn-heal {
    background: #2e7d6f;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

.btn-heal:hover {
    background: #25695d;
}

.btn-outline-heal {
    border: 1px solid #2e7d6f;
    color: #2e7d6f;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

.btn-outline-heal:hover {
    background: #2e7d6f;
    color: #fff;
}


/* RIGHT IMAGE */
.yoga-image {
    text-align: center;
}

.yoga-image img {
    max-width: 700px;
    width: 100%;
    object-fit: contain;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
@media (max-width: 992px) {
    .yoga-hero {
        padding: 60px 16px;
    }

    .yoga-card {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .yoga-content {
        max-width: 100%;
        margin: auto;
    }

    .healing-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .yoga-image img {
        max-width: 420px;
        margin: auto;
    }
}
@media (max-width: 767px) {
    .yoga-hero {
        padding: 40px 12px;
    }

    .yoga-card {
        padding: 30px 20px;
        border-radius: 16px;
        gap: 28px;
    }
    .small-title {
        font-size: 18px;
    }
    .main-title {
        font-size: 30px;
        line-height: 1.15;
    }
    .yoga-content p {
        font-size: 14px;
    }
    .btn-heal {
        padding: 8px 20px;
    }
    .btn-outline-heal {
        padding: 8px 20px;
    }


    .yoga-image img {
        max-width: 300px;
        margin-top: 30px;
    }
}
@media (max-width: 450px) {
    .yoga-card {
        padding: 20px 15px;
        gap: 20px;
    }
    .main-title {
        font-size: 24px;
    }
    .small-title {
        font-size: 16px;
    }
    .yoga-content p {
        font-size: 12px;
    }
    .btn-heal {
        padding: 4px 20px;
        font-size: 12px;
    }
    .btn-outline-heal {
        padding: 4px 20px;
        font-size: 12px;
    }

    .yoga-image img {
        max-width: 250px;
        margin-top: 20px;
    }
}



.healing-section {
    background: #f8fbfa;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #1f3d36;
}

.section-subtitle {
    color: #555;
    max-width: 700px;
    margin: auto;
}

.healing-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    height: 100%;
}

.healing-card h4 {
    color: #2f6f63;
    margin-bottom: 12px;
}

.healing-card ul {
    padding-left: 18px;
}













