﻿/* =========================================================
   RADHIKA SEEDS
   RESEARCH & DEVELOPMENT - PARTIAL
   Completely isolated CSS
   Prefix: rds-rd-
   ========================================================= */

.rds-rd-section {
    --rds-rd-green: #176b3a;
    --rds-rd-dark: #092f1a;
    --rds-rd-lime: #a8cf55;
    --rds-rd-orange: #df8627;
    --rds-rd-text: #5c6961;
    --rds-rd-bg: #f6faf6;
    width: 100%;
    padding: 85px 0;
    overflow: hidden;
    background: radial-gradient( circle at 90% 10%, rgba(168,207,85,.13), transparent 28% ), var(--rds-rd-bg);
}


    .rds-rd-section *,
    .rds-rd-section *::before,
    .rds-rd-section *::after {
        box-sizing: border-box;
    }


.rds-rd-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.rds-rd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 40px;
}


.rds-rd-heading-content {
    max-width: 790px;
}


.rds-rd-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--rds-rd-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
}


.rds-rd-heading-content h2 {
    margin: 0;
    color: var(--rds-rd-dark);
    font-size: clamp(30px, 4vw, 47px);
    line-height: 1.1;
    font-weight: 800;
}


    .rds-rd-heading-content h2 span {
        display: block;
        color: var(--rds-rd-green);
    }


.rds-rd-heading-content p {
    max-width: 720px;
    margin: 17px 0 0;
    color: var(--rds-rd-text);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   HEADER BADGE
   ========================================================= */

.rds-rd-header-badge {
    min-width: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px;
    color: #fff;
    background: linear-gradient( 135deg, var(--rds-rd-green), #0a4827 );
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(23,107,58,.18);
}


    .rds-rd-header-badge i {
        font-size: 28px;
        color: var(--rds-rd-lime);
    }


    .rds-rd-header-badge span {
        font-size: 10px;
        font-weight: 800;
        line-height: 1.5;
        letter-spacing: .5px;
    }


/* =========================================================
   CROP GRID
   ========================================================= */

.rds-rd-crop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}


.rds-rd-crop-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(23,107,58,.10);
    border-radius: 21px;
    box-shadow: 0 12px 32px rgba(16,63,34,.07);
    transition: transform .35s ease, box-shadow .35s ease;
}


    .rds-rd-crop-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 45px rgba(16,63,34,.14);
    }


/* =========================================================
   CROP IMAGE
   ========================================================= */

.rds-rd-crop-image {
    position: relative;
    height: 175px;
    overflow: hidden;
}


    .rds-rd-crop-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        transition: transform .6s ease;
    }


.rds-rd-crop-card:hover
.rds-rd-crop-image img {
    transform: scale(1.08);
}


.rds-rd-crop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0,0,0,.02), rgba(0,45,20,.62) );
}


.rds-rd-crop-icon {
    position: absolute;
    left: 16px;
    bottom: 15px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(23,107,58,.92);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}


/* =========================================================
   CROP CONTENT
   ========================================================= */

.rds-rd-crop-content {
    position: relative;
    padding: 21px;
}


.rds-rd-crop-number {
    position: absolute;
    right: 18px;
    top: 18px;
    color: #d9e7dc;
    font-size: 22px;
    font-weight: 900;
}


.rds-rd-crop-content h3 {
    margin: 0 0 9px;
    color: var(--rds-rd-dark);
    font-size: 21px;
    font-weight: 800;
}


.rds-rd-crop-content p {
    margin: 0;
    color: var(--rds-rd-text);
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   OTHER RESEARCH
   ========================================================= */

.rds-rd-other-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 22px 25px;
    background: #fff;
    border: 1px solid rgba(23,107,58,.10);
    border-radius: 20px;
}


.rds-rd-other-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient( 135deg, #df8627, #bc5e12 );
    border-radius: 15px;
    font-size: 21px;
}


.rds-rd-other-content span {
    color: var(--rds-rd-orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}


.rds-rd-other-content h3 {
    margin: 3px 0 4px;
    color: var(--rds-rd-dark);
    font-size: 17px;
}


.rds-rd-other-content p {
    margin: 0;
    color: var(--rds-rd-text);
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   VIEW MORE BUTTON
   ========================================================= */

.rds-rd-view-more {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}


.rds-rd-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 14px 20px 14px 23px;
    color: #fff !important;
    background: linear-gradient( 135deg, var(--rds-rd-green), #0b512b );
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(23,107,58,.20);
    transition: transform .3s ease, box-shadow .3s ease;
}


    .rds-rd-view-btn i {
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        background: rgba(255,255,255,.15);
        border-radius: 50%;
        transition: transform .3s ease;
    }


    .rds-rd-view-btn:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 17px 35px rgba(23,107,58,.28);
    }


        .rds-rd-view-btn:hover i {
            transform: translateX(4px);
        }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .rds-rd-crop-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .rds-rd-section {
        padding: 60px 0;
    }


    .rds-rd-container {
        width: calc(100% - 24px);
    }


    .rds-rd-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }


    .rds-rd-heading-content h2 {
        font-size: 31px;
    }


    .rds-rd-heading-content p {
        font-size: 12px;
        line-height: 1.75;
    }


    .rds-rd-header-badge {
        width: 100%;
        justify-content: flex-start;
    }


    .rds-rd-crop-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .rds-rd-crop-card {
        display: grid;
        grid-template-columns: 115px minmax(0,1fr);
        min-height: 145px;
    }


    .rds-rd-crop-image {
        height: 100%;
        min-height: 145px;
    }


    .rds-rd-crop-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 16px;
    }


    .rds-rd-crop-number {
        right: 12px;
        top: 10px;
        font-size: 16px;
    }


    .rds-rd-crop-content h3 {
        padding-right: 20px;
        font-size: 18px;
    }


    .rds-rd-crop-content p {
        font-size: 10px;
    }


    .rds-rd-other-strip {
        align-items: flex-start;
        padding: 18px;
        gap: 14px;
    }


    .rds-rd-other-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 17px;
    }


    .rds-rd-other-content h3 {
        font-size: 15px;
    }


    .rds-rd-view-btn {
        width: 100%;
        justify-content: space-between;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .rds-rd-crop-card {
        grid-template-columns: 95px minmax(0,1fr);
    }


    .rds-rd-crop-image {
        min-height: 140px;
    }


    .rds-rd-crop-content {
        padding: 13px;
    }


        .rds-rd-crop-content h3 {
            font-size: 16px;
        }


        .rds-rd-crop-content p {
            font-size: 9px;
        }
}
