/* ============================================
   UTTAM BEEJ - Main Stylesheet
   Logo-based design system: royal navy, seed green,
   red seed accent and leaf gold.
   ============================================ */

:root {
    /* --- Brand colours sampled from the logo --- */
    --navy: #011D78;
    --navy-dark: #01134F;
    --navy-darker: #010B31;
    --navy-soft: #2340B8;
    --navy-tint: #EDF0FB;

    --green: #12A012;
    --green-dark: #0A7A0A;
    --green-light: #E8F6E8;
    --green-tint: #F4FBF4;

    --red: #E11B1B;
    --red-light: #FFF1F1;

    --gold: #FFCE00;
    --gold-dark: #E0B200;

    /* --- Neutrals --- */
    --white: #ffffff;
    --background: #F6F8FC;
    --surface: #ffffff;
    --border: #E4E8F2;
    --border-strong: #CFD6E6;
    --text: #131A2A;
    --text-secondary: #5C6780;

    /* --- Legacy aliases (kept so existing markup keeps working) --- */
    --primary: var(--navy);
    --primary-dark: var(--navy-dark);
    --primary-light: var(--navy-soft);
    --accent: var(--gold);
    --accent-dark: var(--gold-dark);
    --earth: #8b5e3c;
    --cream: #FFFBEB;
    --light-green: var(--green-light);
    --gray-100: #F6F8FC;
    --gray-200: #E4E8F2;
    --gray-600: #5C6780;
    --gray-800: #131A2A;

    /* --- Elevation --- */
    --shadow-sm: 0 1px 2px rgba(1, 29, 120, 0.05), 0 2px 8px rgba(1, 29, 120, 0.05);
    --shadow: 0 6px 20px rgba(1, 29, 120, 0.08);
    --shadow-lg: 0 20px 50px rgba(1, 29, 120, 0.14);
    --shadow-navy: 0 10px 26px rgba(1, 29, 120, 0.22);
    --shadow-green: 0 10px 24px rgba(18, 160, 18, 0.24);

    /* --- Shape & motion --- */
    --radius-xs: 8px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--text);
    background-color: var(--background);
    font-size: 1rem;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ---------- Typography scale ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: -0.015em;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 0.98rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.eyebrow.eyebrow-navy {
    color: var(--navy);
    background: var(--navy-tint);
}

.eyebrow.eyebrow-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

a {
    text-decoration: none;
    color: var(--navy);
    transition: var(--transition);
}

a:hover {
    color: var(--green-dark);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--navy);
    color: var(--white);
}

/* ---------- Navigation ---------- */
.main-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(1, 29, 120, 0.04);
    padding: 0.75rem 0;
    z-index: 1030;
    transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.main-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0;
    margin-right: 1.5rem;
}

.main-nav .brand-logo {
    height: 48px;
    width: auto;
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.main-nav .navbar-brand:hover .brand-logo {
    transform: scale(1.04);
}

.main-nav .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.main-nav .brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--navy);
}

.main-nav .brand-sub {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark);
}

.main-nav .nav-link {
    color: var(--text) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.94rem;
    padding: 0.55rem 0.95rem !important;
    border-radius: var(--radius-sm);
    position: relative;
    white-space: nowrap;
}

.main-nav .nav-link:hover {
    color: var(--navy) !important;
    background: var(--navy-tint);
}

.main-nav .nav-link.active {
    color: var(--navy) !important;
    font-weight: 600;
}

.main-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: var(--radius-pill);
}

.main-nav .navbar-toggler {
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.6rem;
    color: var(--navy);
}

.main-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(1, 29, 120, 0.12);
}

/* Header call-to-action (markup keeps Bootstrap's btn-warning class) */
.main-nav .btn-warning {
    background: var(--navy);
    border: none;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-navy);
}

.main-nav .btn-warning:hover,
.main-nav .btn-warning:focus {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    background: var(--navy-tint);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 3px;
    gap: 2px;
}

.lang-switch .lang-btn {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.38rem 0.8rem;
    border-radius: var(--radius-pill);
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.lang-switch .lang-btn:hover:not(.active) {
    background: var(--white);
    color: var(--navy);
}

.lang-switch .lang-btn.active {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-navy);
}

body.lang-hi {
    font-family: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif;
}

body.lang-hi h1,
body.lang-hi h2,
body.lang-hi h3,
body.lang-hi h4,
body.lang-hi h5,
body.lang-hi h6,
body.lang-hi .btn,
body.lang-hi .nav-link,
body.lang-hi .brand-name,
body.lang-hi .form-label {
    font-family: 'Noto Sans Devanagari', 'Poppins', system-ui, sans-serif;
}

/* ---------- Buttons (shared system) ---------- */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.btn:focus-visible {
    outline: 3px solid rgba(1, 29, 120, 0.25);
    outline-offset: 2px;
    box-shadow: none;
}

.btn-card,
.btn-submit {
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: var(--shadow-navy);
}

.btn-card:hover,
.btn-card:focus,
.btn-submit:hover,
.btn-submit:focus {
    background: var(--navy-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit {
    padding: 0.8rem 2.1rem;
    font-size: 1rem;
}

.btn-ghost {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--border-strong);
    padding: 0.62rem 1.45rem;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.btn-ghost:hover,
.btn-ghost:focus {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--navy-tint);
    transform: translateY(-2px);
}

/* Bootstrap utility buttons re-skinned to the brand palette */
.btn-warning {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    font-weight: 600;
}

.btn-warning:hover,
.btn-warning:focus {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 206, 0, 0.3);
}

.btn-outline-success {
    color: var(--green-dark);
    border: 1.5px solid var(--green);
    background: var(--white);
}

.btn-outline-success:hover,
.btn-outline-success:focus {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-outline-light {
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--navy);
    border-color: var(--navy);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

/* ---------- Badges ---------- */
.badge.bg-success {
    background: var(--green-light) !important;
    color: var(--green-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
}

.badge.bg-primary {
    background: var(--navy) !important;
}

.bg-primary {
    background-color: var(--navy) !important;
}

.text-primary {
    color: var(--navy) !important;
}

.text-danger {
    color: var(--red) !important;
}

/* ---------- Hero ---------- */
.hero-section {
    position: relative;
    padding: 5.5rem 0 7.5rem;
    background:
        radial-gradient(1000px 520px at 88% -8%, rgba(35, 64, 184, 0.55), transparent 60%),
        radial-gradient(760px 460px at 4% 108%, rgba(18, 160, 18, 0.32), transparent 62%),
        linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 52%, #04227F 100%);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

/* Subtle leaf-inspired texture */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.4'%3E%3Cpath d='M20 120c0-34 20-58 52-70-6 36-24 58-52 70z'/%3E%3Cpath d='M72 50C60 62 52 82 48 104'/%3E%3C/g%3E%3C/svg%3E");
}

/* Soft wave that blends the hero into the page background */
.hero-section::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%23F6F8FC' d='M0,52 C240,92 520,10 760,34 C1000,58 1240,86 1440,44 L1440,90 L0,90 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.1rem;
    letter-spacing: -0.02em;
}

.hero-content h1 .hero-accent {
    display: block;
    font-size: 0.52em;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--gold);
    margin-top: 0.6rem;
}

.hero-content .lead {
    font-size: 1.1rem;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-btns {
    position: relative;
    z-index: 2;
}

.hero-btns .btn {
    padding: 0.85rem 1.9rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-hero-primary {
    background: var(--green);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    background: #14B014;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(18, 160, 18, 0.34);
}

.btn-hero-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
}

.btn-hero-outline:hover,
.btn-hero-outline:focus {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

/* Hero visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-visual-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(1, 11, 49, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-visual-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-float-card {
    position: absolute;
    bottom: -22px;
    left: -18px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.95rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 235px;
}

.hero-float-card i {
    font-size: 1.5rem;
    color: var(--green);
}

.hero-float-card .hf-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
    line-height: 1.2;
}

.hero-float-card .hf-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

/* Hero stat row */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.25rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
    z-index: 2;
}

.hero-stats .hs-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.hero-stats .hs-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
}

/* ---------- Section common ---------- */
.section {
    padding: 5.5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3.25rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-title.text-start {
    margin-left: 0;
    margin-right: 0;
}

.section-title h2 {
    margin-bottom: 0.85rem;
}

.section-title .subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

.section-title .divider {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--green) 55%, var(--gold));
    margin: 1.25rem auto 0;
    border-radius: var(--radius-pill);
}

/* ---------- Cards ---------- */
.card-modern {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
    height: 100%;
}

.card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-modern .card-img-top {
    height: 210px;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.card-modern:hover .card-img-top {
    transform: scale(1.05);
}

.card-modern .card-body {
    padding: 1.6rem;
}

.card-modern .card-title {
    font-size: 1.2rem;
    margin-bottom: 0.55rem;
}

.card-modern .card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ---------- Feature boxes ---------- */
.feature-box {
    text-align: center;
    padding: 2.15rem 1.6rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.feature-box .icon-wrap {
    width: 62px;
    height: 62px;
    margin: 0 auto 1.35rem;
    background: var(--navy-tint);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--navy);
    transition: var(--transition);
}

.feature-box:hover .icon-wrap {
    background: var(--navy);
    color: var(--white);
    transform: rotate(-6deg);
}

.feature-box .icon-wrap.icon-green {
    background: var(--green-light);
    color: var(--green-dark);
}

.feature-box:hover .icon-wrap.icon-green {
    background: var(--green);
    color: var(--white);
}

.feature-box h5 {
    margin-bottom: 0.6rem;
}

.feature-box p {
    font-size: 0.95rem;
}

/* ---------- Services ---------- */
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--navy);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    border-left-color: var(--green);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.service-card i {
    font-size: 1.9rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

/* ---------- Info / value cards ---------- */
.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.9rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-card .info-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: var(--navy-tint);
    color: var(--navy);
    margin-bottom: 1.1rem;
}

.info-card .info-icon.green {
    background: var(--green-light);
    color: var(--green-dark);
}

.info-card .info-icon.red {
    background: var(--red-light);
    color: var(--red);
}

.info-card .info-icon.gold {
    background: #FFF8DB;
    color: var(--gold-dark);
}

.info-card h5 {
    margin-bottom: 0.55rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ---------- Check list ---------- */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.85rem;
    color: var(--text-secondary);
    font-size: 0.98rem;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.42rem;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23E8F6E8'/%3E%3Cpath d='M5.6 10.4l2.7 2.7 5.9-6' fill='none' stroke='%230A7A0A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}

.check-list li strong {
    color: var(--navy);
    font-weight: 600;
}

/* ---------- Journey timeline ---------- */
.journey-timeline {
    position: relative;
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--navy), var(--green), var(--gold));
    opacity: 0.35;
}

.journey-item {
    position: relative;
    padding-left: 3.5rem;
    padding-bottom: 2rem;
}

.journey-item:last-child {
    padding-bottom: 0;
}

.journey-dot {
    position: absolute;
    left: 0;
    top: 2px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--navy-tint);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.journey-item:hover .journey-dot {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.journey-year {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.5rem;
}

.journey-item h5 {
    margin-bottom: 0.4rem;
}

.journey-item p {
    color: var(--text-secondary);
    font-size: 0.97rem;
    margin-bottom: 0;
}

/* ---------- Seed categories ---------- */
.seed-category {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.1rem 1.85rem 1.9rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.seed-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--navy);
}

.seed-category::after {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--navy-tint);
    z-index: -1;
    transition: transform 0.4s var(--ease);
}

.seed-category:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.seed-category:hover::after {
    transform: scale(1.22);
}

.seed-category.is-green::before {
    background: var(--green);
}

.seed-category.is-green::after {
    background: var(--green-light);
}

.seed-category.is-gold::before {
    background: var(--gold);
}

.seed-category.is-gold::after {
    background: #FFFAE6;
}

.sc-icon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    background: var(--navy-tint);
    border: 2px solid rgba(1, 29, 120, 0.12);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.2rem;
}

.sc-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.is-green .sc-icon {
    background: var(--green-light);
    border-color: rgba(18, 160, 18, 0.18);
    box-shadow: var(--shadow-sm);
}

.is-gold .sc-icon {
    background: #FFFAE6;
    border-color: rgba(255, 206, 0, 0.35);
    box-shadow: var(--shadow-sm);
}

.sc-title {
    font-size: 1.18rem;
    margin-bottom: 0.3rem;
}

.sc-count {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.35rem;
}

.seed-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.seed-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--background);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: var(--radius-pill);
    padding: 0.45rem 0.95rem;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    transition: var(--transition);
}

.seed-chip .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

a.seed-chip:hover,
a.seed-chip:focus {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-navy);
}

a.seed-chip:hover .dot,
a.seed-chip:focus .dot {
    background: var(--gold);
}

.seed-chip .chip-pop {
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-light);
    padding: 0.1rem 0.42rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

a.seed-chip:hover .chip-pop,
a.seed-chip:focus .chip-pop {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.seed-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.seed-note a {
    color: var(--navy);
    font-weight: 600;
    border-bottom: 1px solid var(--border-strong);
}

.seed-note a:hover {
    color: var(--green-dark);
    border-bottom-color: var(--green);
}

/* ---------- Partner chips ---------- */
.partner-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.15rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-chip i {
    color: var(--green);
}

.partner-chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--navy-tint);
}

/* ---------- Stats ---------- */
.stat-card {
    text-align: center;
    padding: 1.9rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-card .stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.stat-card i {
    font-size: 1.5rem;
    color: var(--green);
    margin-bottom: 0.75rem;
    display: block;
}

/* ---------- Philosophy band ---------- */
.philosophy-band {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #04227F 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3.25rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.philosophy-band::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.4'%3E%3Cpath d='M20 120c0-34 20-58 52-70-6 36-24 58-52 70z'/%3E%3Cpath d='M72 50C60 62 52 82 48 104'/%3E%3C/g%3E%3C/svg%3E");
}

.philosophy-band .pb-quote {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.45rem, 3.4vw, 2.15rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.philosophy-band .pb-sub {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.philosophy-band p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ---------- Gallery ---------- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 19, 79, 0.82), transparent 65%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.1rem;
    color: var(--white);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* ---------- CTA ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #04227F 100%);
    color: var(--white);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(600px 320px at 12% 110%, rgba(18, 160, 18, 0.3), transparent 62%),
        radial-gradient(560px 300px at 92% -20%, rgba(35, 64, 184, 0.5), transparent 60%);
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.82);
}

.cta-section .btn {
    border-radius: var(--radius-pill);
    padding: 0.85rem 2rem;
    font-weight: 600;
}

/* ---------- Contact preview ---------- */
.contact-preview-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.contact-preview-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-preview-box i {
    font-size: 2.1rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-darker) 100%);
    color: var(--white);
    padding: 4.5rem 0 1.5rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-soft), var(--green) 45%, var(--gold) 75%, var(--red));
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

/* White plate keeps the navy part of the logo readable on the dark footer */
.footer-brand .footer-logo {
    height: 46px;
    width: auto;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 12px;
    padding: 6px 8px;
    box-sizing: content-box;
}

.footer-brand .fb-sub {
    display: block;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1.35rem;
    color: var(--white);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    position: relative;
    padding-bottom: 0.7rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: var(--radius-pill);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-links a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    display: flex;
    gap: 0.7rem;
    line-height: 1.6;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-contact li a:hover {
    color: var(--white);
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-tagline {
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--white);
    margin-right: 0.5rem;
    font-size: 1.05rem;
}

.social-links a:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
    opacity: 1;
    margin: 2.5rem 0 1.5rem;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 1.2rem;
    box-shadow: var(--shadow-navy);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

/* ---------- Page banner ---------- */
.page-banner {
    background:
        radial-gradient(760px 420px at 85% -20%, rgba(35, 64, 184, 0.5), transparent 62%),
        radial-gradient(620px 360px at 5% 120%, rgba(18, 160, 18, 0.28), transparent 60%),
        linear-gradient(140deg, var(--navy-dark), var(--navy));
    padding: 4.5rem 0 4rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.45;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.4'%3E%3Cpath d='M20 120c0-34 20-58 52-70-6 36-24 58-52 70z'/%3E%3Cpath d='M72 50C60 62 52 82 48 104'/%3E%3C/g%3E%3C/svg%3E");
}

.page-banner h1 {
    color: var(--white);
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    margin-bottom: 0.65rem;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.82);
}

.page-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.78);
}

.page-banner .breadcrumb-item a:hover {
    color: var(--white);
}

.page-banner .breadcrumb-item.active {
    color: var(--gold);
    font-weight: 500;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- About page ---------- */
.about-content img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.image-frame:hover img {
    transform: scale(1.04);
}

.mission-vision-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.1rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border-top: 4px solid var(--navy);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.mission-vision-card.vision {
    border-top-color: var(--green);
}

.mission-vision-card i {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    display: block;
}

.mission-vision-card.vision i {
    color: var(--green);
}

.mission-vision-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

/* ---------- POP / product cards ---------- */
.pop-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
    height: 100%;
}

.pop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pop-card .img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pop-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.pop-card:hover .img-wrap img {
    transform: scale(1.07);
}

.pop-card .img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 19, 79, 0.35), transparent 55%);
}

.pop-card .badge-featured {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--white);
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
}

.pop-card .card-body {
    padding: 1.6rem;
}

.pop-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.55rem;
}

.pop-card .card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

/* ---------- Crop details ---------- */
.crop-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 3.5rem 0;
}

.crop-hero h1 {
    color: var(--white);
}

.section-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--green);
}

.section-block h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-block h3 .section-num {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: var(--navy);
    color: var(--white);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.section-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.section-images img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.section-images img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

/* ---------- Process steps ---------- */
.process-timeline {
    position: relative;
    padding-left: 0;
}

.process-step {
    position: relative;
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    scroll-margin-top: 100px;
}

.process-step-number {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--navy);
    color: var(--white);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    box-shadow: var(--shadow-navy);
    z-index: 2;
}

.process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 42px;
    bottom: -1.75rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--navy-soft), var(--green-light));
    z-index: 1;
}

.process-step-card {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--green);
    min-width: 0;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.process-step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.process-step-title {
    font-size: 1.22rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.process-step-image {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.process-step-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}

.process-step-image:hover img {
    transform: scale(1.05);
}

.process-step-desc {
    font-size: 0.97rem;
    line-height: 1.8;
}

.process-nav .list-group-item {
    border-left: 3px solid transparent;
    border-color: var(--border);
    color: var(--text);
    font-size: 0.88rem;
    transition: var(--transition);
}

.process-nav .list-group-item:hover {
    border-left-color: var(--green);
    background: var(--green-tint);
    color: var(--navy);
}

.card {
    border-radius: var(--radius);
}

.card-header.bg-primary {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy)) !important;
    border: none;
    padding: 1rem 1.15rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.02em;
}

/* ---------- Contact page ---------- */
.contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-info-card {
    background: linear-gradient(150deg, var(--navy-dark), var(--navy) 65%, #04227F);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.4'%3E%3Cpath d='M20 120c0-34 20-58 52-70-6 36-24 58-52 70z'/%3E%3C/g%3E%3C/svg%3E");
}

.contact-info-card h4 {
    color: var(--white);
    margin-bottom: 1.6rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item strong {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.82);
}

.contact-info-item a:hover {
    color: var(--gold);
}

.contact-info-item i {
    font-size: 1.15rem;
    color: var(--gold);
    margin-top: 5px;
    flex-shrink: 0;
}

/* ---------- Forms ---------- */
.form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.form-control,
.form-select {
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    background: #FCFDFF;
    font-size: 0.96rem;
    color: var(--text);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.form-control::placeholder {
    color: #9AA4BC;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(1, 29, 120, 0.1);
}

.form-control:hover:not(:focus),
.form-select:hover:not(:focus) {
    border-color: var(--border-strong);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

/* ---------- Alerts ---------- */
.alert {
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 1rem 1.15rem;
    font-size: 0.95rem;
}

.alert-success {
    background: var(--green-light);
    border-color: rgba(18, 160, 18, 0.25);
    color: var(--green-dark);
}

.alert-danger {
    background: var(--red-light);
    border-color: rgba(225, 27, 27, 0.22);
    color: #A31212;
}

.alert ul {
    padding-left: 1.15rem;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .fade-up {
        opacity: 1;
        transform: none;
    }
    html {
        scroll-behavior: auto;
    }
}

.footer-admin-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.footer-admin-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
    .section {
        padding: 4.5rem 0;
    }
    .pop-card .img-wrap {
        height: 200px;
    }
    .hero-visual-frame img {
        height: 380px;
    }
}

@media (max-width: 991.98px) {
    .main-nav .navbar-collapse {
        margin-top: 0.85rem;
        padding: 0.85rem;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    .main-nav .navbar-nav {
        align-items: stretch !important;
    }
    .main-nav .nav-link {
        padding: 0.7rem 0.9rem !important;
    }
    .main-nav .nav-link.active {
        background: var(--navy-tint);
    }
    .main-nav .nav-link.active::after {
        left: 0.9rem;
        transform: none;
        bottom: 0.45rem;
    }
    .main-nav .nav-item.ms-lg-3 {
        margin-top: 0.6rem;
    }
    .main-nav .lang-switch {
        margin: 0.5rem 0.9rem;
    }
    .main-nav .btn-warning {
        display: block;
        text-align: center;
    }

    .hero-section {
        padding: 3.5rem 0 6rem;
        text-align: center;
    }
    .hero-content .lead {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
        gap: 1.75rem;
    }
    .hero-visual {
        margin-top: 2.75rem;
    }
    .hero-visual-frame img {
        height: 330px;
    }
    .hero-float-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -26px;
    }

    .section {
        padding: 3.75rem 0;
    }
    .section-title {
        margin-bottom: 2.5rem;
    }
    .page-banner {
        padding: 3.5rem 0 3rem;
    }
    .contact-form-card,
    .contact-info-card {
        padding: 1.85rem;
    }
    .section-block {
        padding: 1.5rem;
    }
    .gallery-item img {
        height: 190px;
    }
    .philosophy-band {
        padding: 2.5rem 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .main-nav .brand-logo {
        height: 40px;
    }
    .main-nav .brand-name {
        font-size: 1.05rem;
    }
    .hero-content h1 {
        font-size: clamp(1.75rem, 7vw, 2.4rem);
    }
    .hero-content .lead {
        font-size: 1.02rem;
    }
    .hero-visual-frame img {
        height: 260px;
    }
    .hero-stats {
        gap: 1.25rem 2rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    .hero-stats .hs-value {
        font-size: 1.35rem;
    }
    .section-title h2 {
        font-size: clamp(1.45rem, 5.5vw, 1.95rem);
    }
    .card-modern .card-img-top,
    .pop-card .img-wrap {
        height: 190px;
    }
    .feature-box {
        padding: 1.6rem 1.15rem;
    }
    .service-card,
    .info-card {
        padding: 1.5rem;
    }
    .seed-category {
        padding: 1.75rem 1.4rem 1.6rem;
    }
    .cta-section {
        padding: 3.25rem 0;
        text-align: center;
    }
    .site-footer {
        padding: 3.25rem 0 1.25rem;
    }
    .footer-heading {
        margin-top: 0.75rem;
    }
    .crop-hero {
        padding: 2.5rem 0;
        text-align: center;
    }
    .section-images {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    .section-images img {
        height: 130px;
    }
    .map-container {
        height: 250px;
        margin-top: 1.5rem;
    }
    .contact-form-card {
        margin-bottom: 1.5rem;
    }
    .journey-item {
        padding-left: 3rem;
    }
    .journey-dot {
        width: 34px;
        height: 34px;
        font-size: 0.92rem;
    }
    .journey-timeline::before {
        left: 16px;
    }
    .process-step {
        gap: 0.85rem;
    }
    .process-step-number {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
        border-radius: 11px;
    }
    .process-step:not(:last-child)::before {
        left: 16px;
        top: 34px;
    }
    .process-step-card {
        padding: 1.15rem;
    }
    .process-step-title {
        font-size: 1.08rem;
    }
    .process-step-image img {
        height: 180px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 2.75rem 0 5rem;
    }
    .hero-btns .btn {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-right: 0 !important;
    }
    .hero-float-card {
        position: static;
        transform: none;
        left: auto;
        margin: 1rem auto 0;
        max-width: 100%;
    }
    .section {
        padding: 2.75rem 0;
    }
    .page-banner {
        padding: 2.5rem 0 2rem;
    }
    .page-banner h1 {
        font-size: 1.7rem;
    }
    .card-modern .card-body,
    .pop-card .card-body {
        padding: 1.25rem;
    }
    .feature-box .icon-wrap {
        width: 54px;
        height: 54px;
        font-size: 1.35rem;
    }
    .contact-form-card,
    .contact-info-card {
        padding: 1.35rem;
    }
    .section-block {
        padding: 1.15rem;
    }
    .section-block h3 {
        font-size: 1.1rem;
        flex-wrap: wrap;
    }
    .gallery-item img {
        height: 170px;
    }
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
        border-radius: 12px;
    }
    .footer-admin-btn {
        margin: 0.35rem 0;
    }
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 0.98rem;
    }
    .philosophy-band {
        padding: 2rem 1.25rem;
    }
    .philosophy-band .pb-quote {
        font-size: 1.3rem;
    }
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    .cta-section .btn,
    .section .text-center .btn-lg {
        width: 100%;
        margin: 0.35rem 0 !important;
    }
    .legal-content {
        padding: 1.35rem;
    }
    .footer-legal a {
        display: inline-block;
        margin: 0.25rem 0.6rem;
    }
}

/* Tables responsive on small screens */
.table-responsive-custom {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ---------- Utility ---------- */
.bg-light-green {
    background-color: var(--green-tint);
}

.bg-cream {
    background-color: var(--navy-tint);
}

.bg-soft {
    background-color: #EFF3FA;
}

.text-primary-custom {
    color: var(--navy) !important;
}

.text-green {
    color: var(--green-dark) !important;
}

.rounded-custom {
    border-radius: var(--radius) !important;
}

.shadow-soft {
    box-shadow: var(--shadow) !important;
}

.opacity-90 {
    opacity: 0.9;
}

/* ---------- Legal pages ---------- */
.legal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.legal-content .legal-meta {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1.75rem;
}

.legal-content h2 {
    font-size: 1.28rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
}

.legal-content ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.4rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    margin-left: 1.1rem;
}

.footer-legal a:first-child {
    margin-left: 0;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ---------- Hero carousel ---------- */
.hero-carousel {
    height: 100%;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-carousel .carousel-indicators {
    margin-bottom: 0.75rem;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.55);
}

.hero-carousel .carousel-indicators .active {
    background-color: var(--gold);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 12%;
    opacity: 0.85;
}

/* ---------- Guidance band ---------- */
.guidance-band {
    background:
        radial-gradient(700px 320px at 100% 0%, rgba(35, 64, 184, 0.45), transparent 60%),
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #0a2d8a 100%);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.guidance-band .guidance-lead {
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    margin-bottom: 0;
}

.check-list-light li {
    color: rgba(255, 255, 255, 0.9);
}

.check-list-light li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23F5E6B8'/%3E%3Cpath d='M5.6 10.4l2.7 2.7 5.9-6' fill='none' stroke='%23C4952A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* ---------- POP disclaimer (listing page) ---------- */
.pop-disclaimer {
    background: #FFF8E8;
    border: 1px solid rgba(196, 149, 42, 0.35);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.page-banner-compact {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
}

/* ---------- Wheat POP infographic page ---------- */
.wheat-hero {
    position: relative;
    min-height: clamp(200px, 28vw, 300px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background:
        url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?w=1800&q=80') center/cover no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.wheat-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(
            105deg,
            rgba(1, 11, 49, 0.78) 0%,
            rgba(1, 29, 120, 0.52) 42%,
            rgba(10, 40, 20, 0.28) 72%,
            rgba(10, 40, 20, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.08) 40%,
            rgba(0, 0, 0, 0.55) 100%
        );
}

.wheat-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(1.1rem, 2.5vw, 1.75rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 1.85rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.75rem, 2vw, 1.15rem);
}

.wheat-hero-logo {
    display: block;
    width: clamp(52px, 7vw, 72px);
    height: auto;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}

.wheat-hero-copy {
    max-width: 36rem;
}

.wheat-hero-title {
    margin: 0 0 0.45rem;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.35rem, 6.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.45),
        0 10px 28px rgba(0, 0, 0, 0.35);
}

.wheat-hero-tagline {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 6px 18px rgba(0, 0, 0, 0.3);
}

.wheat-hero-tagline::before {
    content: '';
    display: block;
    width: 3.25rem;
    height: 3px;
    margin-bottom: 0.85rem;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.wheat-pop-section {
    background: #f3f5f4;
    padding: 1.75rem 0 2rem;
}

.wheat-pop-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.wheat-pop-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(27, 67, 50, 0.08);
    border: 1px solid rgba(27, 67, 50, 0.08);
    height: 100%;
}

.wheat-pop-head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #1B4332;
    color: #fff;
    padding: 0.7rem 1rem;
    min-height: 52px;
}

.wheat-pop-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
}

.wheat-pop-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2D6A4F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.wheat-pop-head h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
}

.wheat-pop-list {
    list-style: none;
    margin: 0;
    padding: 1rem 1.15rem 1.15rem;
}

.wheat-pop-list li {
    position: relative;
    padding-left: 1.15rem;
    margin-bottom: 0.55rem;
    color: #2b2b2b;
    font-size: 0.92rem;
    line-height: 1.55;
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
}

.wheat-pop-list li:last-child {
    margin-bottom: 0;
}

.wheat-pop-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 7px;
    height: 7px;
    background: #2D6A4F;
    border-radius: 1px;
}

.wheat-disclaimer-bar {
    background: #1B4332;
    color: #fff;
    padding: 1.1rem 0;
}

.wheat-disclaimer-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.wheat-disclaimer-icon {
    flex-shrink: 0;
    font-size: 1.35rem;
    color: #FFD166;
    margin-top: 0.1rem;
}

.wheat-disclaimer-text p {
    margin: 0 0 0.45rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
}

.wheat-disclaimer-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .hero-carousel .carousel-item img {
        height: 320px;
    }

    .guidance-band {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .guidance-band .guidance-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .guidance-band .check-list {
        text-align: left;
        display: inline-block;
    }

    .wheat-hero {
        min-height: 210px;
        align-items: flex-end;
    }

    .wheat-hero-content {
        padding-bottom: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .hero-carousel .carousel-item img,
    .hero-visual-frame img {
        height: 240px;
    }

    .guidance-band {
        padding: 1.75rem 1.15rem;
    }

    .wheat-hero {
        min-height: 190px;
    }

    .wheat-hero-content {
        gap: 0.7rem;
        padding: 1.1rem 1.1rem 1.2rem;
    }

    .wheat-hero-logo {
        width: 48px;
    }

    .wheat-hero-title {
        letter-spacing: 0.04em;
    }

    .wheat-hero-tagline {
        letter-spacing: 0.16em;
    }

    .wheat-hero-tagline::before {
        width: 2.5rem;
        margin-bottom: 0.65rem;
    }

    .wheat-pop-head h2 {
        font-size: 0.92rem;
    }

    .wheat-pop-list li {
        font-size: 0.88rem;
    }

    .wheat-disclaimer-inner {
        gap: 0.65rem;
    }

    .wheat-disclaimer-text p {
        font-size: 0.8rem;
    }

    .process-step-card {
        padding: 1.15rem;
    }

    .process-step-image img {
        height: 180px;
    }

    .pop-disclaimer {
        padding: 1rem 1.1rem;
        font-size: 0.86rem;
    }

    .legal-content {
        padding: 1.5rem;
    }
}


