﻿/* =========================================================
   RADHIKA SEEDS - ABOUT US
   Fully Scoped CSS
   Prefix: rds-about-
   ========================================================= */

.rds-about-section,
.rds-about-page {
    --rds-green: #176b3a;
    --rds-green-dark: #0d4827;
    --rds-green-light: #eaf7ef;
    --rds-lime: #8dbb35;
    --rds-gold: #d6a72c;
    --rds-orange: #e68a24;
    --rds-dark: #17251d;
    --rds-text: #56645b;
    --rds-white: #ffffff;
    --rds-border: rgba(23, 107, 58, 0.12);
    --rds-shadow: 0 20px 55px rgba(20, 58, 35, 0.12);
    font-family: inherit;
    color: var(--rds-dark);
    box-sizing: border-box;
}

    .rds-about-section *,
    .rds-about-page * {
        box-sizing: border-box;
    }

.rds-about-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   PARTIAL ABOUT SECTION
   ========================================================= */

.rds-about-section {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(circle at 5% 20%, rgba(141, 187, 53, 0.08), transparent 30%), #f8fbf8;
    overflow: hidden;
}

.rds-about-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.rds-about-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--rds-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.rds-about-heading h2 {
    margin: 0;
    color: var(--rds-dark);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 800;
}

    .rds-about-heading h2 span {
        color: var(--rds-green);
    }

.rds-about-heading p {
    margin: 18px auto 0;
    max-width: 650px;
    color: var(--rds-text);
    font-size: 16px;
    line-height: 1.8;
}


/* Main Card */

.rds-about-main-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: 570px;
    overflow: hidden;
    background: var(--rds-white);
    border: 1px solid var(--rds-border);
    border-radius: 28px;
    box-shadow: var(--rds-shadow);
}


/* Image */

.rds-about-image-wrap {
    position: relative;
    min-height: 570px;
    overflow: hidden;
}

.rds-about-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.rds-about-main-card:hover .rds-about-image {
    transform: scale(1.04);
}

.rds-about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.03) 20%, rgba(0, 0, 0, 0.48) 100% );
    pointer-events: none;
}

.rds-about-location-badge {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    color: var(--rds-white);
    background: rgba(9, 40, 23, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.rds-about-location-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: var(--rds-white);
    background: var(--rds-green);
    border-radius: 12px;
}

.rds-about-location-badge strong,
.rds-about-location-badge small {
    display: block;
}

.rds-about-location-badge strong {
    font-size: 14px;
}

.rds-about-location-badge small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
}


/* Content */

.rds-about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
}

.rds-about-label {
    display: block;
    margin-bottom: 12px;
    color: var(--rds-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rds-about-content h3 {
    margin: 0 0 20px;
    color: var(--rds-dark);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 700;
}

    .rds-about-content h3 strong {
        display: block;
        color: var(--rds-green);
    }

.rds-about-content p {
    margin: 0 0 14px;
    color: var(--rds-text);
    font-size: 15px;
    line-height: 1.85;
}

.rds-about-intro {
    font-size: 16px !important;
}


/* Highlights */

.rds-about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.rds-about-highlight-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 10px;
    background: #f7faf7;
    border: 1px solid var(--rds-border);
    border-radius: 14px;
}

.rds-about-highlight-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    color: var(--rds-green);
    background: var(--rds-green-light);
    border-radius: 10px;
    font-size: 14px;
}

.rds-about-highlight-card strong,
.rds-about-highlight-card span {
    display: block;
}

.rds-about-highlight-card strong {
    color: var(--rds-dark);
    font-size: 12px;
}

.rds-about-highlight-card span {
    margin-top: 2px;
    color: #78847b;
    font-size: 10px;
}


/* Button */

.rds-about-action {
    margin-top: 28px;
}

.rds-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 13px 13px 22px;
    color: var(--rds-white);
    background: var(--rds-green);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(23, 107, 58, 0.22);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

    .rds-about-btn:hover {
        color: var(--rds-white);
        background: var(--rds-green-dark);
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(23, 107, 58, 0.28);
    }

.rds-about-btn-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--rds-green);
    background: var(--rds-white);
    border-radius: 50%;
}


/* Crop Cards */

.rds-about-crops {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.rds-about-crop-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px;
    background: var(--rds-white);
    border: 1px solid var(--rds-border);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(20, 58, 35, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .rds-about-crop-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(20, 58, 35, 0.1);
    }

.rds-about-crop-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: var(--rds-green);
    background: var(--rds-green-light);
    border-radius: 12px;
}

.rds-about-crop-card strong,
.rds-about-crop-card small {
    display: block;
}

.rds-about-crop-card strong {
    font-size: 14px;
}

.rds-about-crop-card small {
    margin-top: 3px;
    color: #7b857e;
    font-size: 10px;
}


/* =========================================================
   FULL ABOUT PAGE
   ========================================================= */

.rds-about-page {
    background: #ffffff;
}


/* Hero */

.rds-about-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    background: linear-gradient( 110deg, rgba(7, 43, 24, 0.94), rgba(23, 107, 58, 0.80) ), url("/Content/images/radhika-office.jpg") center / cover no-repeat;
    overflow: hidden;
}

.rds-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 85% 30%, rgba(141, 187, 53, 0.25), transparent 30% );
}

.rds-about-hero .rds-about-container {
    position: relative;
    z-index: 2;
}

.rds-about-hero-content {
    max-width: 760px;
    padding: 80px 0;
}

.rds-about-hero .rds-about-eyebrow {
    color: #d8edb0;
}

.rds-about-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 800;
}

    .rds-about-hero h1 span {
        display: block;
        color: #c8e57d;
    }

.rds-about-hero p {
    max-width: 650px;
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.8;
}

.rds-about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

    .rds-about-breadcrumb a {
        color: #ffffff;
        text-decoration: none;
    }

    .rds-about-breadcrumb i {
        font-size: 9px;
    }


/* Company */

.rds-about-company {
    padding: 100px 0;
    background: #ffffff;
}

.rds-about-company-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 75px;
}

.rds-about-company-image {
    position: relative;
}

.rds-about-image-frame {
    position: relative;
    padding: 12px;
    background: #f0f7f1;
    border-radius: 28px;
}

    .rds-about-image-frame::before {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        left: -20px;
        top: -20px;
        border-top: 4px solid var(--rds-lime);
        border-left: 4px solid var(--rds-lime);
        border-radius: 15px 0 0 0;
    }

    .rds-about-image-frame img {
        display: block;
        width: 100%;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        object-position: center;
        border-radius: 20px;
    }

.rds-about-experience-card {
    position: absolute;
    right: -25px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(20, 58, 35, 0.15);
}

.rds-about-experience-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--rds-green);
    border-radius: 12px;
}

.rds-about-experience-card strong,
.rds-about-experience-card small {
    display: block;
}

.rds-about-experience-card strong {
    font-size: 13px;
}

.rds-about-experience-card small {
    margin-top: 3px;
    color: #7b857e;
    font-size: 10px;
}

.rds-about-company-content h2 {
    margin: 0 0 25px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
}

    .rds-about-company-content h2 span {
        color: var(--rds-green);
    }

.rds-about-company-content p {
    margin: 0 0 16px;
    color: var(--rds-text);
    font-size: 15px;
    line-height: 1.9;
}

.rds-about-company-content .rds-about-lead {
    color: #33463a;
    font-size: 17px;
}


/* Crop Section */

.rds-about-crop-section {
    padding: 100px 0;
    background: #f7faf7;
}

.rds-about-crop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rds-about-large-crop-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--rds-border);
    border-radius: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .rds-about-large-crop-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(20, 58, 35, 0.1);
    }

.rds-about-large-crop-icon {
    width: 65px;
    height: 65px;
    flex: 0 0 65px;
    display: grid;
    place-items: center;
    color: var(--rds-green);
    background: var(--rds-green-light);
    border-radius: 18px;
    font-size: 24px;
}

.rds-about-large-crop-card span {
    color: var(--rds-lime);
    font-size: 12px;
    font-weight: 800;
}

.rds-about-large-crop-card h3 {
    margin: 5px 0 8px;
    font-size: 22px;
}

.rds-about-large-crop-card p {
    margin: 0;
    color: var(--rds-text);
    font-size: 14px;
    line-height: 1.7;
}


/* Values */

.rds-about-values {
    padding: 100px 0;
    background: #ffffff;
}

.rds-about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.rds-about-value-card {
    position: relative;
    padding: 30px 25px;
    overflow: hidden;
    border: 1px solid var(--rds-border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(20, 58, 35, 0.05);
}

.rds-about-value-number {
    position: absolute;
    top: 12px;
    right: 18px;
    color: rgba(23, 107, 58, 0.08);
    font-size: 42px;
    font-weight: 900;
}

.rds-about-value-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #ffffff;
    background: var(--rds-green);
    border-radius: 15px;
}

.rds-about-value-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.rds-about-value-card p {
    margin: 0;
    color: var(--rds-text);
    font-size: 13px;
    line-height: 1.75;
}


/* Vision */

.rds-about-vision-section {
    padding: 100px 0;
    background: #f5faf5;
}

.rds-about-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.rds-about-vision-card {
    position: relative;
    padding: 40px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient( 135deg, #0d4827, #176b3a );
    border-radius: 25px;
}

    .rds-about-vision-card::after {
        content: "";
        position: absolute;
        width: 190px;
        height: 190px;
        right: -70px;
        bottom: -90px;
        border: 35px solid rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

.rds-about-vision-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 15px;
}

.rds-about-vision-card > span {
    color: #c8e57d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.rds-about-vision-card h3 {
    max-width: 450px;
    margin: 10px 0 15px;
    font-size: 28px;
}

.rds-about-vision-card p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.8;
}


/* Contact */

.rds-about-contact {
    padding: 90px 0;
}

.rds-about-contact-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 280px;
    padding: 55px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient( 120deg, #092f1a, #176b3a );
    border-radius: 28px;
}

.rds-about-contact-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

    .rds-about-contact-content .rds-about-eyebrow {
        color: #c8e57d;
    }

    .rds-about-contact-content h2 {
        margin: 0 0 12px;
        font-size: 38px;
    }

    .rds-about-contact-content p {
        max-width: 520px;
        margin: 0 0 25px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 15px;
        line-height: 1.8;
    }

.rds-about-contact-location {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .rds-about-contact-location > span {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 12px;
    }

    .rds-about-contact-location strong,
    .rds-about-contact-location small {
        display: block;
    }

    .rds-about-contact-location strong {
        font-size: 13px;
    }

    .rds-about-contact-location small {
        margin-top: 2px;
        color: rgba(255, 255, 255, 0.65);
        font-size: 11px;
    }

.rds-about-contact-decoration {
    position: absolute;
    right: 80px;
    color: rgba(255, 255, 255, 0.06);
    font-size: 190px;
}


/* Back */

.rds-about-back-section {
    padding: 0 0 70px;
    text-align: center;
}

.rds-about-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    color: var(--rds-green);
    border: 1px solid rgba(23, 107, 58, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

    .rds-about-back-btn:hover {
        color: #ffffff;
        background: var(--rds-green);
        border-color: var(--rds-green);
    }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .rds-about-container {
        width: min(100% - 30px, 900px);
    }

    .rds-about-section {
        padding: 70px 0;
    }

    .rds-about-main-card {
        grid-template-columns: 1fr;
    }

    .rds-about-image-wrap,
    .rds-about-image {
        min-height: 430px;
    }

    .rds-about-content {
        padding: 40px;
    }

    .rds-about-crops {
        grid-template-columns: repeat(2, 1fr);
    }

    .rds-about-company {
        padding: 75px 0;
    }

    .rds-about-company-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .rds-about-company-image {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .rds-about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rds-about-hero {
        min-height: 420px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .rds-about-container {
        width: min(100% - 24px, 600px);
    }

    .rds-about-section {
        padding: 55px 0;
    }

    .rds-about-heading {
        margin-bottom: 30px;
    }

        .rds-about-heading h2 {
            font-size: 31px;
        }

        .rds-about-heading p {
            font-size: 14px;
            line-height: 1.7;
        }

    .rds-about-main-card {
        border-radius: 20px;
    }

    .rds-about-image-wrap,
    .rds-about-image {
        min-height: 310px;
    }

    .rds-about-image {
        aspect-ratio: 4 / 3;
    }

    .rds-about-location-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 11px;
    }

    .rds-about-location-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .rds-about-content {
        padding: 28px 20px 25px;
    }

        .rds-about-content h3 {
            font-size: 28px;
        }

        .rds-about-content p {
            font-size: 14px;
            line-height: 1.75;
        }

    .rds-about-highlights {
        grid-template-columns: 1fr;
    }

    .rds-about-highlight-card {
        padding: 12px;
    }

    .rds-about-btn {
        width: 100%;
        justify-content: space-between;
    }

    .rds-about-crops {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .rds-about-crop-card {
        padding: 12px;
        gap: 8px;
    }

    .rds-about-crop-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
        font-size: 12px;
    }

    .rds-about-crop-card strong {
        font-size: 12px;
    }

    .rds-about-crop-card small {
        font-size: 9px;
    }


    /* Full page mobile */

    .rds-about-hero {
        min-height: 400px;
    }

    .rds-about-hero-content {
        padding: 60px 0;
    }

    .rds-about-hero h1 {
        font-size: 40px;
    }

    .rds-about-hero p {
        font-size: 14px;
    }

    .rds-about-company,
    .rds-about-crop-section,
    .rds-about-values,
    .rds-about-vision-section {
        padding: 65px 0;
    }

    .rds-about-image-frame {
        padding: 8px;
        border-radius: 20px;
    }

        .rds-about-image-frame img {
            aspect-ratio: 4 / 4.7;
            border-radius: 15px;
        }

        .rds-about-image-frame::before {
            width: 65px;
            height: 65px;
            left: -8px;
            top: -8px;
        }

    .rds-about-experience-card {
        right: 10px;
        bottom: 20px;
    }

    .rds-about-company-content h2 {
        font-size: 34px;
    }

    .rds-about-company-content p {
        font-size: 14px;
    }

    .rds-about-crop-grid {
        grid-template-columns: 1fr;
    }

    .rds-about-large-crop-card {
        padding: 22px;
        gap: 15px;
    }

    .rds-about-large-crop-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 19px;
    }

    .rds-about-values-grid {
        grid-template-columns: 1fr;
    }

    .rds-about-value-card {
        padding: 25px 20px;
    }

    .rds-about-vision-grid {
        grid-template-columns: 1fr;
    }

    .rds-about-vision-card {
        padding: 30px 25px;
    }

        .rds-about-vision-card h3 {
            font-size: 24px;
        }

    .rds-about-contact {
        padding: 65px 0;
    }

    .rds-about-contact-card {
        min-height: 320px;
        padding: 30px 25px;
    }

    .rds-about-contact-content h2 {
        font-size: 30px;
    }

    .rds-about-contact-decoration {
        right: -15px;
        bottom: -25px;
        font-size: 130px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .rds-about-container {
        width: calc(100% - 18px);
    }

    .rds-about-heading h2 {
        font-size: 27px;
    }

    .rds-about-hero h1 {
        font-size: 34px;
    }

    .rds-about-content {
        padding: 24px 16px;
    }

    .rds-about-crops {
        grid-template-columns: 1fr;
    }

    .rds-about-location-badge small {
        font-size: 10px;
    }

    .rds-about-contact-card {
        padding: 25px 20px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .rds-about-main-card:hover .rds-about-image,
    .rds-about-crop-card:hover,
    .rds-about-large-crop-card:hover,
    .rds-about-btn:hover {
        transform: none;
    }
}
