/* Ayurveda Card */
.ayurveda-card {
    position: relative;
    overflow: hidden;
    height: 354px; /* same height as your previous design */
}

.ayurveda-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text Overlay */
.ayurveda-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px 20px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    color: #ffffff;
    z-index: 2;
}

.ayurveda-overlay h5 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

.ayurveda-overlay p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
}