﻿```css
/* ============================================================
   SAMRUDDHI AGRI TECH
   ALL CROPS PAGE
   ============================================================ */
.rds-crops-page,
.rds-crops-page * {
    box-sizing: border-box;
}

.rds-crops-page {
    width: 100%;
    overflow: hidden;
}


/* ============================================================
   LANGUAGE
   ============================================================ */

.rds-crops-title-mr,
.rds-crops-description-mr,
.rds-crops-btn-mr,
.rds-crops-trust-mr,
.rds-crops-focus-label-mr,
.rds-crops-crop-mr,
.rds-crops-benefit-mr,
.rds-crops-bottom-mr,
.rds-crops-quality-mr,
.rds-crops-quality-small-mr,
.rds-crops-scroll-text-mr {
    display: none;
}

body.rds-marathi-mode .rds-crops-title-en,
body.rds-marathi-mode .rds-crops-description-en,
body.rds-marathi-mode .rds-crops-btn-en,
body.rds-marathi-mode .rds-crops-trust-en,
body.rds-marathi-mode .rds-crops-focus-label-en,
body.rds-marathi-mode .rds-crops-crop-en,
body.rds-marathi-mode .rds-crops-benefit-en,
body.rds-marathi-mode .rds-crops-bottom-en,
body.rds-marathi-mode .rds-crops-quality-en,
body.rds-marathi-mode .rds-crops-quality-small-en,
body.rds-marathi-mode .rds-crops-scroll-text-en {
    display: none !important;
}

body.rds-marathi-mode .rds-crops-title-mr,
body.rds-marathi-mode .rds-crops-description-mr,
body.rds-marathi-mode .rds-crops-btn-mr,
body.rds-marathi-mode .rds-crops-trust-mr,
body.rds-marathi-mode .rds-crops-focus-label-mr,
body.rds-marathi-mode .rds-crops-crop-mr,
body.rds-marathi-mode .rds-crops-benefit-mr,
body.rds-marathi-mode .rds-crops-bottom-mr,
body.rds-marathi-mode .rds-crops-quality-mr,
body.rds-marathi-mode .rds-crops-quality-small-mr,
body.rds-marathi-mode .rds-crops-scroll-text-mr {
    display: inline !important;
}


/* ============================================================
   HERO
   ============================================================ */

.rds-crops-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #112318;
    color: #fff;
}

.rds-crops-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url('/Content/images/all-crops/all-crops-field.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.rds-crops-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient( 90deg, rgba(4,20,11,.95) 0%, rgba(7,27,16,.86) 42%, rgba(8,29,18,.57) 72%, rgba(5,22,13,.76) 100% );
}


/* ============================================================
   DECORATIVE GLOW
   ============================================================ */

.rds-crops-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(35px);
    z-index: -1;
}

.rds-crops-glow-one {
    width: 230px;
    height: 230px;
    top: -100px;
    right: 12%;
    background: rgba(212,238,91,.13);
}

.rds-crops-glow-two {
    width: 190px;
    height: 190px;
    bottom: -90px;
    left: 10%;
    background: rgba(66,179,116,.13);
}


/* ============================================================
   CONTAINER
   ============================================================ */

.rds-crops-container {
    width: min(1240px, calc(100% - 48px));
    margin: auto;
    padding: 90px 0 75px;
}

.rds-crops-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr);
    align-items: center;
    gap: 70px;
}


/* ============================================================
   LEFT CONTENT
   ============================================================ */

.rds-crops-hero-content {
    max-width: 700px;
    animation: rdsCropsContentIn .8s ease both;
}

@keyframes rdsCropsContentIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rds-crops-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    color: rgba(255,255,255,.9);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.rds-crops-title {
    margin: 23px 0 20px;
    font-size: clamp(46px, 5.4vw, 76px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 950;
    color: #fff;
}

.rds-crops-description {
    max-width: 630px;
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.75;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.rds-crops-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.rds-crops-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 21px;
    border-radius: 12px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 900;
    transition: all .25s ease;
}

    .rds-crops-btn:hover {
        transform: translateY(-3px);
    }

.rds-crops-btn-primary {
    background: #d9ef69;
    color: #172418 !important;
    box-shadow: 0 13px 30px rgba(0,0,0,.22);
}

.rds-crops-btn-secondary {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff !important;
    backdrop-filter: blur(10px);
}

    .rds-crops-btn-secondary:hover {
        background: rgba(255,255,255,.17);
    }

.rds-crops-arrow {
    font-size: 19px;
}


/* ============================================================
   TRUST
   ============================================================ */

.rds-crops-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    color: rgba(255,255,255,.66);
    font-size: 11px;
    font-weight: 800;
}

.rds-crops-trust-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(217,239,105,.16);
    color: #d9ef69;
    font-weight: 900;
}


/* ============================================================
   RIGHT CARD
   ============================================================ */

.rds-crops-hero-side {
    position: relative;
    animation: rdsCropsCardIn .9s ease .1s both;
}

@keyframes rdsCropsCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.rds-crops-focus-card {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 27px;
    background: linear-gradient( 145deg, rgba(255,255,255,.16), rgba(255,255,255,.055) );
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 30px 65px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.15);
}

.rds-crops-focus-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.rds-crops-focus-label-en,
.rds-crops-focus-label-mr {
    color: rgba(255,255,255,.68);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.rds-crops-focus-season {
    padding: 6px 9px;
    border-radius: 7px;
    background: rgba(217,239,105,.13);
    color: #dff37b;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.rds-crops-crop-name {
    margin-top: 22px;
    color: #fff;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 950;
}

.rds-crops-card-line {
    height: 1px;
    margin: 22px 0;
    background: rgba(255,255,255,.1);
}


/* ============================================================
   BENEFITS
   ============================================================ */

.rds-crops-benefits {
    display: grid;
    gap: 10px;
}

.rds-crops-benefit {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    background: rgba(0,0,0,.13);
    transition: all .25s ease;
}

    .rds-crops-benefit:hover {
        transform: translateX(5px);
        background: rgba(217,239,105,.07);
        border-color: rgba(217,239,105,.28);
    }

.rds-crops-benefit-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(255,255,255,.1);
    font-size: 18px;
}

.rds-crops-benefit strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.rds-crops-benefit small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.55);
    font-size: 10px;
}

.rds-crops-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.6);
    font-size: 10px;
    font-weight: 800;
}

    .rds-crops-card-bottom > span:last-child {
        color: #d9ef69;
        font-size: 18px;
    }


/* ============================================================
   QUALITY BADGE
   ============================================================ */

.rds-crops-quality-badge {
    position: absolute;
    right: -35px;
    bottom: -28px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 15px;
    background: rgba(16,34,23,.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

.rds-crops-quality-star {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d9ef69;
    color: #182419;
    font-size: 13px;
}

.rds-crops-quality-badge strong {
    display: block;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.rds-crops-quality-badge small {
    display: block;
    margin-top: 2px;
    color: rgba(255,255,255,.5);
    font-size: 8px;
}


/* ============================================================
   SCROLL
   ============================================================ */

.rds-crops-scroll {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.55) !important;
    text-decoration: none !important;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.rds-crops-scroll-line {
    width: 1px;
    height: 25px;
    background: rgba(255,255,255,.35);
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1050px) {

    .rds-crops-hero {
        min-height: auto;
    }

    .rds-crops-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .rds-crops-hero-content {
        max-width: 800px;
    }

    .rds-crops-hero-side {
        width: min(100%, 600px);
    }

    .rds-crops-quality-badge {
        right: -15px;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .rds-crops-container {
        width: calc(100% - 30px);
        padding: 60px 0 70px;
    }

    .rds-crops-title {
        font-size: clamp(39px, 11vw, 57px);
        letter-spacing: -2px;
    }

    .rds-crops-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .rds-crops-actions {
        flex-direction: column;
    }

    .rds-crops-btn {
        width: 100%;
    }

    .rds-crops-trust {
        align-items: flex-start;
    }

    .rds-crops-focus-card {
        padding: 21px;
        border-radius: 22px;
    }

    .rds-crops-crop-name {
        font-size: 28px;
    }

    .rds-crops-quality-badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: max-content;
        max-width: 100%;
        margin: 12px 0 0 auto;
    }

    .rds-crops-scroll {
        display: none;
    }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 430px) {

    .rds-crops-container {
        width: calc(100% - 22px);
        padding-top: 48px;
    }

    .rds-crops-eyebrow {
        font-size: 8px;
        letter-spacing: 1.2px;
    }

    .rds-crops-title {
        font-size: 38px;
        letter-spacing: -1.7px;
    }

    .rds-crops-focus-card {
        padding: 17px;
    }

    .rds-crops-focus-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .rds-crops-crop-name {
        font-size: 25px;
    }

    .rds-crops-benefit {
        padding: 10px;
    }

    .rds-crops-benefit-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .rds-crops-quality-badge {
        padding: 10px 12px;
    }
}


/* ============================================================
   VERY SMALL DEVICES
   ============================================================ */

@media (max-width: 360px) {

    .rds-crops-title {
        font-size: 34px;
    }

    .rds-crops-description {
        font-size: 13px;
    }

    .rds-crops-focus-card {
        padding: 14px;
    }

    .rds-crops-benefit strong {
        font-size: 12px;
    }

    .rds-crops-benefit small {
        font-size: 9px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .rds-crops-hero-content,
    .rds-crops-hero-side,
    .rds-crops-benefit,
    .rds-crops-btn {
        animation: none !important;
        transition: none !important;
    }
}

```
