/* Soil Elementor Widget styles */
.soil-wheel-widget {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #cfeee6;
    overflow: hidden;
    font-family: inherit;
    /* inherit site typography */
}

/* .soil-wheel-widget .soil-bg{
    position:absolute;
    inset:0;
    background: radial-gradient(circle at right center, rgba(0,112,96,0.45), rgba(0,0,0,0.85));
    z-index:0;
    pointer-events: none;
} */

.soil-wheel-widget.wheel-left .soil-container {
    flex-direction: row-reverse;
}

.soil-wheel-widget.wheel-center .soil-container {
    justify-content: center;
}

.soil-wheel-image {
    transition: transform .6s ease, filter .4s ease;
    will-change: transform;
}

.soil-wheel-image:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 30px 90px rgba(0, 220, 170, 0.18));
}

.soil-wheel-widget .soil-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5% 0;
    width: 100%;
}

.soil-content {
    max-width: 55%;
}

.soil-wheel {
    flex: 0 0 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soil-wheel-image {
    max-width: 500px !important;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.7));
}

.soil-kicker {
    font-size: 16px;
    text-transform: uppercase;
    color: #00E5A3;
    margin: 0 0 16px 0;
    font-weight: 400;
    letter-spacing: 0.40em;
}

.soil-heading {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.soil-subheading {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 0 32px 0;
    letter-spacing: 0.10em;
    font-weight: 400;
}


.soil-features {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.soil-feature {
    display: flex;
    align-items: center;
    gap: 12px
}

.soil-feature-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.soil-feature-title {
    font-weight: 700
}

.soil-feature-sub {
    opacity: 0.8;
    font-size: 13px
}

.align-center {
    text-align: center
}

.align-right {
    text-align: right
}

@media (max-width: 1200px) {
    .soil-content {
        max-width: 60%;
    }

    .soil-wheel {
        flex: 0 0 320px;
    }
}

@media (max-width: 900px) {
    .soil-container {
        flex-direction: column-reverse;
        align-items: stretch;
        padding: 5% !important;
        gap: 0 !important;
    }

    .soil-content {
        max-width: 100%;
        padding-bottom: 30px;
    }

    .soil-wheel {
        order: -1;
        margin: 0 auto;
    }

    .soil-heading {
        font-size: 40px !important;
    }

    .soil-wheel-image {
        max-width: 370px !important;
        height: auto;
        display: block;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.7));
    }

    .soil-wheel-widget {
        position: relative;
        background-size: cover;
        background-position: right;
        color: #cfeee6;
        overflow: hidden;
        font-family: inherit;
    }
    
}