/* --- Keyframes for Wave Animation --- */
@keyframes wave-animation {
    0% {
        d: path("M0,160 C320,320,1120,0,1440,160 L1440,320 L0,320 Z");
    }
    50% {
        d: path("M0,160 C320,0,1120,320,1440,160 L1440,320 L0,320 Z");
    }
    100% {
        d: path("M0,160 C320,320,1120,0,1440,160 L1440,320 L0,320 Z");
    }
}

/* --- Hero Section Styles --- */
.ourapproach-hero-section {
    position: relative;
    background: linear-gradient(145deg, #fffaf0 0%, #fff8e1 40%, #ffecb3 100%);
    overflow: hidden;
    /* UPDATED: Using your manual change */
    padding: 0 0 8rem;
}

.ourapproach-hero-bg {
    width: 100%;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
    height: 220px;
    pointer-events: none;
}

.ourapproach-hero-wave {
    width: 100%;
    height: 220px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
}

.ourapproach-hero-wave path {
    fill: #fff;
    animation: wave-animation 12s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.ourapproach-hero-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    justify-content: center;
    min-height: 500px;
    padding: 2rem;
}

/* --- Left Column (Visual) --- */
.ourapproach-hero-left {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 380px;
    position: relative;
}

.ourapproach-plant-stack {
    width: 100%;
    max-width: 340px;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.plant-stage {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    max-width: 100%; max-height: 100%; height: auto;
    opacity: 0;
    /* The z-index places non-visible slides underneath */
    z-index: 5;
    transition: opacity 0.7s ease-in-out;
    pointer-events: none; user-select: none;
}
/* The 'active' slide is brought to the front and made visible */
.plant-stage.active {
    opacity: 1;
    z-index: 10;
}

/* --- Right Column (Text) --- */
.ourapproach-hero-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 560px;
    text-align: left;
}

/* --- Responsive Styles (Mobile) --- */
@media (max-width: 900px) {
    .ourapproach-hero-section {
		padding: 2rem 0 6rem;
    }
    .ourapproach-hero-container {
        flex-direction: column;
        gap: 0;
        min-height: 0;
        padding: 1.5rem;
        padding-bottom: 0;
    }
	.ourapproach-plant-stack {
		height: 80%;	
	}
    .ourapproach-hero-left {
        order: 2;
        height: 240px;
        min-width: 0;
        width: 100%;
        max-width: 280px;
    }
    .ourapproach-hero-right {
        order: 1;
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .ourapproach-hero-wave, .ourapproach-hero-bg {
        height: 120px;
    }
}