.skin-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: flex-end;
}

.inner-banner.image {
    background: url('../../assets/images/plant-extracts/plant-extract-hero-3.webp');
    background-size: cover !important;
    background-position: bottom !important;
    height: 95vh !important
}

.page-title-box {
    width: 100%;
    background: linear-gradient(180deg,
            rgba(190, 207, 178, 0.85) 0%,
            rgba(234, 255, 219, 0.85) 100%);
    padding: 20px 60px;
}

.hero-badge {
    display: inline-block;
    background: #DDEFE3;
    color: #2F6B4F;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #6B4E3D;
}

.hero-text {
    font-size: 18px;
    color: #3f3e3e;
    line-height: 1.8;
}

.baby-btn {
    background-color: #DDEFE3;
    color: #2F6B4F;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 500;
    border: none;
}

.baby-btn:hover {
    background-color: #C8E6D6;
    color: #2F6B4F;
}

/* Container & General Section */
.plant-extracts-trust {
    padding: 100px 20px;
    background: linear-gradient(135deg, #FAF2E9, #EDE6DD);
    font-family: 'Helvetica Neue', sans-serif;
    color: #1a1a1a;

    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    /* background-color: #FAF9F6; */
    /* soft cream */
    position: relative;
    overflow: hidden;
}

.plant-extracts-trust::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 600px;
    height: 600px;
    background: url('../../assets/images/plant-extracts/plant-extract-bg.png') no-repeat center center;
    background-size: contain;
    opacity: 0.08;
    /* subtle effect */
    pointer-events: none;
    /* overlay doesn’t block interaction */
    z-index: 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: #EDE6DD;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #8AA767;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* CTA Button */
.cta-container {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #94B36E, #8AA767);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(39, 174, 96, 0.04);
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(39, 174, 96, 0.05);
}

/* Our Partner Section */
.our-partner {
    background: linear-gradient(135deg, #0d1b2a, #1b2b40);
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.our-partner .partner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.our-partner .partner-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #a8c0d3;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.our-partner .partner-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8AA767;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.our-partner .partner-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
    z-index: 2;
    position: relative;
}

.our-partner .btn-outline-light {
    border-width: 2px;
    padding: 12px 35px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.our-partner .btn-outline-light:hover {
    background: linear-gradient(135deg, #94B36E, #8AA767);
    border-color: #8AA767;
    color: #fff;
}

.slide {
    height: auto;
}

.project-card img {
    height: 400px;
    border-radius: 15px;
    max-width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.project-card img:hover {
    transform: scale(1.05);
}

.project-card h5 {
    color: #27ae60;
    font-weight: 600;
    margin-top: 15px;
}

.project-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Founder Section */
.founder-section {
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

/* Image Styling */
.founder-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.founder-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Badge */
.founder-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1f7a4f;
    background: rgba(31, 122, 79, 0.08);
    border-radius: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Typography */
.founder-name {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1c2b2a;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 1.05rem;
    color: #6b6b6b;
    margin-bottom: 25px;
}

/* Intro */
.founder-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

/* Highlights */
.founder-highlights ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 30px;
}

.founder-highlights li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #444;
    font-size: 1rem;
}

.founder-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1f7a4f;
    font-size: 1.5rem;
    line-height: 1;
}

/* Body Text */
.founder-body,
.founder-footer {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .founder-name {
        font-size: 2.2rem;
    }
}