/* 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 {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    text-transform: none
}

.soil-hero-cta-primary {
    font-family: "Aldrich", Sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    background-color: #00E5A3;
    color: #000000;
    border: 2px solid #00E5A3;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.soil-hero-cta-primary:hover {
   background-color: transparent;
    color: #00E5A3;
   border: 2px solid #00E5A3;
}

.soil-hero-cta-secondary {
    font-family: "Aldrich", Sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #00E5A3;
    border: 2px solid #00E5A3;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.soil-hero-cta-secondary:hover {
     background-color: #00E5A3;
    color: #000000;
}
.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
    }
}