/* Soil Drive Section styles */
.soil-drive-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: top;
    color: #fff;
    overflow: hidden
}

.soil-drive-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.soil-drive-left {
    flex: 0 0 55%
}

.soil-drive-right {
    flex: 1 1 45%
}

.soil-drive-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.7))
}

.soil-drive-kicker {
    font-family: aldrich, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #00E5A3;
    margin: 0;
    font-weight: 500;
}

.soil-drive-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.7));
    transition: transform .5s ease, filter .4s ease;
    font-size: 68px;
    font-weight: 800;
}

.soil-drive-image:hover {
    transform: translateY(-6px) scale(1.02);
    filter: drop-shadow(0 40px 120px rgba(0, 200, 150, 0.18));
}

/* .soil-drive-section::before {
    content: '';
    position: absolute;
    left: -10%;
    top: -20%;
    width: 60%;
    height: 220%;
    transform: rotate(-20deg);
    background: linear-gradient(180deg, rgba(0, 160, 120, 0.0), rgba(0, 120, 90, 0.22), rgba(0, 60, 40, 0.6));
    mix-blend-mode: screen;
    z-index: 1;
    pointer-events: none;
}

.soil-drive-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    z-index: 2;
    pointer-events: none;
    line-height: 1.1;
    color: #ffffff !important;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.18em;
} */

.soil-drive-desc {
    font-family: "Aldrich", Sans-serif;
    font-size: 22px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 0 32px 0;
    letter-spacing: 0.10em;
    font-weight: 400;
}

.soil-drive-section.align-center .soil-drive-inner {
    justify-content: center;
    flex-direction: column
}

@media(max-width:900px) {
    .soil-drive-inner {
        flex-direction: column-reverse;
        padding: 5%;
        gap: 0;
    }

    .soil-drive-left {
        width: 100%;
        flex-basis: auto
    }

    .soil-drive-right {
        width: 100%;
        text-align: left
    }

    .soil-drive-heading {
        font-size: 34px
    }
}