/* Soil Hero Section styles (soil-hero.css) */
.soil-hero-widget {
    position: relative;
    background: #041018;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}


.soil-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    padding: 8% 0;
}

.soil-hero-left {
    flex: 1 1 70%;
    padding-right: 20px
}

.soil-hero-right {
    flex: 1 1 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.soil-hero-small-heading {
    font-size: 20px;
    text-transform: uppercase;
    color: #00E5A3;
    margin: 0 0 16px 0;
    font-weight: 500;
    letter-spacing: 0.2em;
    font-family: 'Aldrich', 'sans-serif';
}

.soil-hero-main-heading {
    font-family: 'Aldrich', 'sans-serif';
    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-hero-paragraph {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 0 32px 0;
    letter-spacing: 0.10em;
    font-weight: 400;
    font-family: 'Aldrich', 'sans-serif';
    width: 60%;
}

.soil-hero-ctas {
    display: flex;
    gap: 14px;
    align-items: center
}

.soil-hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    text-transform: none;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    /* border: 1px solid rgba(0, 229, 163, 0.45); */
    background: rgba(255, 255, 255, 0.04);
}



.soil-hero-cta-primary {
    font-family: "Aldrich", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    background: #29252e4f;
    color: #ffffff;
    /* border-color: rgba(0, 229, 163, 0.45); */
}

.soil-hero-cta-primary:hover {
    transform: translateY(-2px);
    background-color: rgba(0, 229, 163, 0.1) !important;
    box-shadow: 0 0 0px #00e5a333, 0 0 2px #00e5a354, inset 0 0 5px rgba(0, 229, 163, 0.2) !important;
    backdrop-filter: blur(1px);
    color: #fff;
}


.soil-hero-cta-secondary {
    font-family: "Aldrich", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #00E5A3;
    background: rgba(255, 255, 255, 0.04);
}

.soil-hero-cta-secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(0, 229, 163, 0.1) !important;
    box-shadow: 0 0 0px #00e5a333, 0 0 2px #00e5a354, inset 0 0 5px rgba(0, 229, 163, 0.2) !important;
    backdrop-filter: blur(1px);
    color: #fff;
}

.soil-hero-wheel {
    max-width: 520px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 40px 70px rgba(0, 0, 0, .65));
    transform: translateZ(0);
    transition: transform .25s ease
}

/* radial glow behind wheel */
.soil-hero-right::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 30%, rgba(0, 229, 163, 0.25), rgba(0, 229, 163, 0.06) 30%, rgba(2, 8, 10, 0) 60%);
    pointer-events: none
}

@media(max-width:980px) {
    .soil-compare-title {
        font-size: 20px !important;
        text-align: center !important;
    }

    .soil-why-choose-title {
        font-size: 20px !important;
        text-align: center !important;
    }

    .soil-hero-inner {
        flex-direction: column-reverse;
        text-align: center;
        padding: 5%;
    }

    .soil-hero-left {
        width: 100%;
        padding-right: 0
    }

    .soil-hero-right {
        width: 100%;
        margin-bottom: 20px
    }

    .soil-hero-main-heading {
        font-size: 34px
    }

    .soil-hero-paragraph {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        margin-bottom: 20px;
        text-align: justify;
    }

    .soil-hero-right::before {
        display: none
    }
}