/* =========================================================
   SONAM AGRO & FISHERIES LIMITED — MAIN STYLESHEET
   ========================================================= */

:root {
    --navy: #0c2a4d;
    --navy-dark: #081d38;
    --navy-light: #16407a;
    --green: #2f7d32;
    --green-dark: #1f5c25;
    --green-light: #e9f5ea;
    --gray-bg: #f5f7fa;
    --text-muted: #5b6b7c;
    --white: #ffffff;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-lg: 14px;
    --radius-md: 10px;
    --shadow-soft: 0 10px 30px rgba(12, 42, 77, 0.08);
    --shadow-card: 0 8px 24px rgba(12, 42, 77, 0.10);
}


* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    padding-top: 130px;
}


@media (max-width: 767px) {
    body {
        padding-top: 60px;
        /* mobile e top-bar hidden */
    }
}

h1,
h2,
h3,
h4,
h5,
.font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
}

a {
    text-decoration: none;
}

/*  */
/* =========================================================
   OVERFLOW FIX — MOBILE
   ========================================================= */

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Hero slider */
.hero-slider {
    max-width: 100%;
    overflow: hidden;
}

/* Features strip */
.features-strip {
    overflow: hidden;
}

.features-card {
    overflow: hidden;
}

/* Products grid */
.products-section {
    overflow: hidden;
}

/* Inquiry section */
.inquiry-section .container {
    overflow: hidden;
}

.inquiry-left,
.inquiry-right {
    max-width: 100%;
    overflow: hidden;
}

/* Footer */
.site-footer {
    overflow: hidden;
}

/* Stats bar */
.stats-bar {
    overflow: hidden;
}

/* Top bar */
.top-bar {
    overflow: hidden;
}

/* Global — every section */
section {
    overflow-x: hidden;
    max-width: 100%;
}

/* Inquiry map SVG */
.world-map-svg {
    max-width: 100%;
    overflow: hidden;
}

/* Captcha row mobile */
@media (max-width: 480px) {
    .captcha-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .captcha-question {
        width: 100%;
        text-align: center;
    }

    .captcha-input {
        max-width: 100%;
        width: 100%;
    }
}

/*  */



.section-pad {
    padding-top: 80px;
    padding-bottom: 80px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.eyebrow::after {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--green);
    display: inline-block;
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .25s ease;
}

.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light-navy {
    background: rgba(255, 255, 255, .95);
    color: var(--navy);
    border: 2px solid var(--white);
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .25s ease;
}

.btn-outline-light-navy:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--green);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .25s ease;
    white-space: nowrap;
}

.btn-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
    background: var(--navy-dark);
    color: #ffffff;
    font-size: 13.5px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar .top-left {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-bar .top-left i {
    color: var(--green);
    margin-right: 3px;
}

.top-bar .top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar .top-right a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.top-bar .top-right a:hover {
    color: var(--green-light);
}

.top-bar .top-right a i {
    color: var(--green);
    font-size: 12px;
}

.top-bar .divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.25);
    display: inline-block;
}

@media (max-width: 767px) {
     .top-bar .top-left {
        display: flex;
        width: 100%;
        justify-content: center;
    }

   .top-bar .top-right {
        display: none;
    }

    .top-bar .divider {
        height: 12px;
    }
}

/* =========================================================
   MAIN NAVBAR
   ========================================================= */
.main-navbar {
    background: var(--white);
    padding: 14px 0;
    box-shadow: 0 2px 14px rgba(12, 42, 77, .06);
    z-index: 1030;
    position: relative !important;
    top: auto !important;
    min-height: 70px;   /* fixed height - eta change korle overall bar height control hobe */
}
/*  */
.fixed-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
}

.fixed-header-wrap .main-navbar {
    position: relative;
    top: auto;
}

/*  */

@media (max-width: 767px) {
    .logo-img {
        width: 60px;
        height: 60px;
    }
    .main-navbar {
        min-height: 70px;
    }
    .navbar-brand {
        width: 60px;
        min-height: 70px;
    }
}


.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    width: 90px;   /* logo width er soman */
    height: 90%;
    min-height: 70px;
}

.logo-img {
    width: 90px;   /* ekhon boro */
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    position: absolute;   /* navbar height theke free */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--green);
}

.main-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
}

.main-nav-links li a {
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    padding: 6px 0;
    position: relative;
}

.main-nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width .25s ease;
}

.main-nav-links li a:hover,
.main-nav-links li a.active {
    color: var(--green);
}

.main-nav-links li a:hover::after,
.main-nav-links li a.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    font-size: 22px;
    color: var(--navy);
    background: var(--green-light);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.main-navbar.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(12, 42, 77, .14);
}


/* Inquiry Button */
.main-nav-links .inquiry-btn {
    background: var(--green);
    color: #fff !important;
    padding: 8px 18px !important;
    border-radius: 8px;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: background 0.2s ease;
}

.main-nav-links .inquiry-btn:hover {
    background: var(--navy);
    color: #fff !important;
}

.main-nav-links .inquiry-btn::after {
    display: none !important;
}

/* =========================================================
   MOBILE SIDEBAR (Offcanvas — slides from LEFT)
   ========================================================= */
.mobile-sidebar {
    width: 290px;
    background: var(--navy);
    color: var(--white);
}

.mobile-sidebar .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 20px;
}

.mobile-sidebar .offcanvas-header .logo-img {
    width: 44px;
    height: 44px;
}

.mobile-sidebar .brand-name {
    color: var(--white);
    font-size: 18px;
}

.mobile-sidebar .btn-close {
    filter: invert(1) brightness(2);
}

.mobile-sidebar .offcanvas-body {
    padding: 20px;
}

.sidebar-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-nav-links li a {
    display: block;
    color: #dce6f2;
    font-weight: 600;
    font-size: 15.5px;
    padding: 13px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sidebar-nav-links li a:hover,
.sidebar-nav-links li a.active {
    color: var(--green);
    padding-left: 14px;
}

.sidebar-contact {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
    color: #cfdcec;
}

.sidebar-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-contact i {
    color: var(--green);
}


/* =============================================
   DESKTOP DROPDOWN
   ============================================= */
.main-nav-links .has-dropdown {
    position: relative;
}

.main-nav-links .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.main-nav-links .drop-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: inherit;
}

.main-nav-links .has-dropdown:hover .drop-arrow {
    transform: rotate(180deg);
}

.main-nav-links .has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 14px;
    /* gap bridge so mouse won't lose hover */
}

.main-nav-links .custom-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(12, 42, 77, 0.15);
    padding: 8px;
    list-style: none;
    margin: 0;
    z-index: 9999;
    animation: dropFadeIn 0.2s ease;
    overflow: hidden;
}

.main-nav-links .custom-dropdown::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--green);
    margin: -8px -8px 8px -8px;
    border-radius: 12px 12px 0 0;
}



.main-nav-links .has-dropdown:hover .custom-dropdown {
    display: block;
}

.main-nav-links .custom-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.main-nav-links .custom-dropdown li a::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.main-nav-links .custom-dropdown li a:hover {
    background: #e8f5e9;
    color: var(--green);
    padding-left: 20px;
}

.main-nav-links .custom-dropdown li a:hover::before {
    background: var(--green);
}

/* underline override for dropdown trigger */
.main-nav-links .dropdown-trigger::after {
    display: none !important;
}

@keyframes dropFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* =============================================
   MOBILE SIDEBAR DROPDOWN
   ============================================= */
.sidebar-nav-links .has-dropdown {
    position: relative;
}

.sidebar-nav-links .dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #dce6f2;
    font-weight: 600;
    font-size: 15.5px;
    padding: 13px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.sidebar-nav-links .dropdown-trigger:hover {
    color: var(--green);
    padding-left: 14px;
}

.sidebar-nav-links .drop-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
    color: inherit;
}

.sidebar-nav-links .custom-dropdown {
    display: none;
    list-style: none;
    padding: 6px 0;
    margin: 0 0 6px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.sidebar-nav-links .has-dropdown.open .custom-dropdown {
    display: block;
}

.sidebar-nav-links .has-dropdown.open .drop-arrow {
    transform: rotate(180deg);
}

.sidebar-nav-links .custom-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: #b0c8e8;
    border-bottom: none;
    border-radius: 8px;
    margin: 2px 6px;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.sidebar-nav-links .custom-dropdown li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
}

.sidebar-nav-links .custom-dropdown li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--green);
    padding-left: 22px;
}

.sidebar-nav-links .custom-dropdown li a:hover::before {
    background: var(--green);
}

/* end */


/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero-slider {
    position: relative;
    height: 640px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide::before {
    content: "";
    position: absolute;
    background: linear-gradient(100deg, rgba(8, 29, 56, .88) 0%, rgba(8, 29, 56, .55) 38%, rgba(8, 29, 56, .10) 70%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-content h1 span {
    display: block;
    color: #7ed086;
}

.hero-content p {
    font-size: 16px;
    color: #dce6f2;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-arrows {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-arrow {
    pointer-events: all;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .18);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, .35);
}

.hero-dots {
    position: absolute;
    z-index: 4;
    bottom: 24px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: all .25s ease;
}

.hero-dots span.active {
    background: var(--green);
    width: 28px;
    border-radius: 6px;
}

/* =========================================================
   HERO — MOBILE RESPONSIVE
   ========================================================= */
@media (max-width: 767px) {
    .hero-slider {
        height: 10vh;
        min-height: 300px;
        max-height: 300px;
    }

    .hero-slide {
        background-size: cover;
        background-position: center center;
        /* main subject center e rakhbe */
        background-attachment: scroll;
        /* mobile e fixed attachment problem fix */
    }

    .hero-arrows {
        padding: 0 10px;
    }

    .hero-arrow {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .hero-dots {
        bottom: 14px;
    }
}

/* about start */
/* ═══════════════════════════════════════
   ABOUT SECTION — SONAM AGRO
═══════════════════════════════════════ */

@media (max-width: 767px) {
    .col-img-mob {
        display: none !important;
    }

    .cta-row {
        display: none !important;
    }
}


.about-section {
    padding: 0px 0 24px;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 42, 77, .07) 0%, transparent 70%);
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 125, 50, .06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── IMAGE BLOCK ── */
.img-col {
    position: relative;
}

.img-frame {
    position: relative;
    z-index: 2;
    margin-right: 40px;
}

.img-frame::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    width: 120px;
    height: 120px;
    border-top: 3px solid var(--navy);
    border-left: 3px solid var(--navy);
    border-radius: 2px;
    z-index: 3;
    pointer-events: none;
}

.img-frame::after {
    content: '';
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 120px;
    height: 120px;
    border-bottom: 3px solid var(--green);
    border-right: 3px solid var(--green);
    border-radius: 2px;
    z-index: 3;
    pointer-events: none;
}

.main-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 70px rgba(12, 42, 77, .20);
}

.vertical-label {
    position: absolute;
    left: -46px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: .4;
    white-space: nowrap;
    z-index: 4;
}

/* Float Card */
.float-card {
    position: absolute;
    bottom: 36px;
    right: -36px;
    background: var(--navy);
    border-radius: 8px;
    padding: 16px 20px;
    z-index: 5;
    box-shadow: 0 16px 48px rgba(12, 42, 77, .36);
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Mini Badge */
.mini-badge {
    position: absolute;
    top: 28px;
    right: -28px;
    background: var(--green);
    color: #fff;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(47, 125, 50, .35);
    z-index: 5;
    text-align: center;
    line-height: 1.4;
}

/* ── CONTENT BLOCK ── */
.content-col {
    padding-left: 20px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--green);
    flex-shrink: 0;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 6px;
}

.about-title em {
    font-style: italic;
    color: var(--green);
}

.typewriter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.tw-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    opacity: .55;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.tw-text {
    font-family: var(--font-heading);
    font-size: clamp(.95rem, 1.7vw, 1.25rem);
    font-weight: 600;
    color: var(--green);
    border-right: 2px solid var(--green);
    padding-right: 3px;
    animation: caret .75s step-end infinite;
    min-height: 1.5em;
}

@keyframes caret {

    0%,
    100% {
        border-color: var(--green);
    }

    50% {
        border-color: transparent;
    }
}

.rule-double {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 26px;
}

.rule-double span:first-child {
    display: block;
    width: 56px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
}

.rule-double span:last-child {
    display: block;
    width: 32px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
}

.about-body p {
    font-size: clamp(.87rem, 1.1vw, .96rem);
    color: #3c4a5e;
    line-height: 1.9;
    margin-bottom: 14px;
    text-align: justify;
}

/* ── WHAT WE DO ── */
.what-we-do {
    margin: 28px 0 30px;
}

.wwd-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
}

.wwd-label::before,
.wwd-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #d8e6d8;
}

.wwd-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.wwd-row .wwd-card {
    flex: 1;
}

.wwd-row .wwd-sep {
    flex: 0 0 22px;
    text-align: center;
    font-size: 1.4rem;
    color: var(--green);
    align-self: center;
    line-height: 1;
    margin-top: -6px;
}

.wwd-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px 14px;
    background: var(--green-light);
    border: 1.5px solid #c8e6c9;
    border-radius: 10px;
    gap: 10px;
    transition: box-shadow .25s, transform .25s, border-color .25s, background .25s;
    cursor: default;
}

.wwd-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 8px 28px rgba(12, 42, 77, .15);
    transform: translateY(-3px);
}

.wwd-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #c8e6c9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s, border-color .25s;
}

.wwd-card:hover .wwd-icon {
    background: var(--green);
    border-color: var(--green);
}

.wwd-icon i {
    font-size: 22px;
    color: var(--green);
    transition: color .25s;
}

.wwd-card:hover .wwd-icon i {
    color: #fff;
}

.wwd-name {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--navy);
    line-height: 1.35;
    transition: color .25s;
}

.wwd-card:hover .wwd-name {
    color: #fff;
}

/* ── CTA ── */
.cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 13px 34px;
    border-radius: 4px;
    text-decoration: none;
    border: 2px solid var(--green);
    transition: background .3s, color .3s, transform .2s;
}

.btn-primary-about:hover {
    background: transparent;
    color: var(--green);
    transform: translateY(-2px);
}

.btn-primary-about svg {
    transition: transform .3s;
}

.btn-primary-about:hover svg {
    transform: translateX(5px);
}

/* ═══ RESPONSIVE ═══ */
@media (min-width: 1600px) {
    .main-img {
        height: 650px;
    }

    .about-section {
        padding: 0px 0 66px;
    }
}

@media (max-width: 1199px) {
    .float-card {
        right: -10px;
    }

    .mini-badge {
        right: -10px;
    }

    .vertical-label {
        display: none;
    }

    .img-frame {
        margin-right: 20px;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .content-col {
        padding-left: 0;
        margin-top: 60px;
    }

    .main-img {
        height: 400px;
    }

    .img-frame {
        margin-right: 0;
    }

    .float-card {
        right: 16px;
        bottom: 20px;
    }

    .mini-badge {
        right: 16px;
        top: 20px;
    }

    .img-frame::before,
    .img-frame::after {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 40px 0 50px;
    }

    .row.about-row {
        display: flex;
        flex-direction: column;
    }

    .col-img-mob {
        order: 2;
    }

    .col-text-mob {
        order: 1;
    }

    .content-col {
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .eyebrow {
        display: flex;
        justify-content: center;
    }

    .typewriter-row {
        justify-content: center;
    }

    .rule-double {
        align-items: center;
    }

    .img-frame {
        margin-right: 0;
        margin-bottom: 90px;
    }

    .main-img {
        height: 240px;
        border-radius: 8px;
    }

    .img-frame::before {
        top: -10px;
        left: -10px;
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .img-frame::after {
        bottom: -10px;
        right: -10px;
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .float-card {
        position: absolute;
        right: 50%;
        transform: translateX(50%);
        bottom: -62px;
        min-width: 120px;
        padding: 12px 18px;
    }

    .fc-logo {
        width: 90px;
    }

    .mini-badge {
        display: none;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .tw-text {
        font-size: 1rem;
    }

    .wwd-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .wwd-row .wwd-sep {
        display: none;
    }

    .wwd-row .wwd-card {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
    }

    .wwd-label {
        font-size: 0.65rem;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-about {
        width: 100%;
        justify-content: center;
        font-size: .8rem;
        padding: 12px 24px;
    }
}

@media (max-width: 375px) {
    .main-img {
        height: 200px;
    }

    .about-title {
        font-size: 1.4rem;
    }

    .wwd-row .wwd-card {
        flex: 1 1 100%;
    }
}

/* about end */
/* =========================================================
   PRODUCTS SECTION
   ========================================================= */


/* ═══════════════════════════════════
   OUR PROJECTS SECTION
═══════════════════════════════════ */
.our-projects-section {
    padding: 30px 0 100px;
    background: var(--gray-bg);
    position: relative;
}

.projects-head {
    text-align: center;
    margin-bottom: 48px;
}

.projects-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.projects-eyebrow::before,
.projects-eyebrow::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--green);
    display: inline-block;
}

.projects-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.2;
}

/* ── GRID ── */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── CARD ── */
.project-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(12, 42, 77, .18);
}

/* ── IMAGE ── */
.project-img-wrap {
    position: relative;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.project-card:hover .project-img {
    transform: scale(1.06);
}

/* ── ICON BADGE ── */
.project-icon-badge {
    position: absolute;
    bottom: 1px;
    left: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(12, 42, 77, .20);
}

.project-icon-badge i {
    font-size: 17px;
    color: var(--white);
    line-height: 1;
    display: flex;
}

/* ── BODY ── */
.project-body {
    padding: 36px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 10px;
}

.project-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0 0 22px;
    flex: 1;
}

/* ── BUTTON ── */
.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 6px;
    border: 2px solid var(--navy);
    text-decoration: none;
    width: fit-content;
    transition: background .25s, color .25s;
}

.project-btn:hover {
    background: transparent;
    color: var(--navy);
}

.project-btn svg {
    transition: transform .3s;
}

.project-btn:hover svg {
    transform: translateX(4px);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .our-projects-section {
        padding: 60px 0 70px;
    }
}

@media (max-width: 575px) {
    .our-projects-section {
        padding: 50px 0 60px;
    }

    .projects-title {
        font-size: 1.7rem;
    }

    .project-img {
        height: 180px;
    }

    .project-body {
        padding: 30px 18px 20px;
    }

    .project-btn {
        width: 100%;
        justify-content: center;
    }
}


/* start */
/* ══════════════════════════
   SHRIMP EXPORT SECTION
══════════════════════════ */
.shrimp-export-section {
    padding: 8px 0 30px;
    background: linear-gradient(160deg, #f3f9f3 0%, #f8fcf8 100%);
    position: relative;
    overflow: hidden;
}

.shrimp-export-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 126, 52, .07) 0%, transparent 70%);
    pointer-events: none;
}

.shrimp-export-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 126, 52, .05) 0%, transparent 70%);
    pointer-events: none;
}

/* ── CENTER HEADING ── */
.se-top {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.se-pretag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 126, 52, .10);
    color: #1e7e34;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.se-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1e7e34;
    flex-shrink: 0;
}

.se-top h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: #1a2b3c;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.se-top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.se-top-bar span {
    display: block;
    height: 2.5px;
    width: 40px;
    border-radius: 2px;
}

.se-top-bar span:first-child {
    background: linear-gradient(90deg, transparent, #1e7e34);
}

.se-top-bar span:last-child {
    background: linear-gradient(90deg, #1e7e34, transparent);
}

.se-top-bar i {
    font-size: 16px;
    color: #1e7e34;
}

.se-top p {
    font-size: 14.5px;
    color: #6c757d;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── CONTENT ROW ── */
.se-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1;
}

/* ── LEFT FEATURES ── */
.se-left {
    flex: 1;
    min-width: 0;
}

.se-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.se-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid rgba(30, 126, 52, .10);
    border-radius: 12px;
    padding: 15px 17px;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.se-feat:hover {
    border-color: rgba(30, 126, 52, .28);
    box-shadow: 0 4px 20px rgba(30, 126, 52, .10);
}

.se-ficon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg, #1e7e34, #2ea84a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 3px 10px rgba(30, 126, 52, .25);
}

.se-ftext strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 3px;
    line-height: 1.3;
}

.se-ftext span {
    font-size: 12.5px;
    color: #7a8b99;
    line-height: 1.5;
}

/* CTA */
.se-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #1e7e34, #2ea84a);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 4px 16px rgba(30, 126, 52, .28);
    border: none;
}

.se-cta:hover {
    background: linear-gradient(135deg, #166a2b, #1e7e34);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(30, 126, 52, .36);
}

/* ── RIGHT IMAGE ── */
.se-right {
    flex: 0 0 400px;
    position: relative;
    padding-bottom: 26px;
}

.se-img-wrap {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 50px rgba(30, 126, 52, .14), 0 4px 18px rgba(0, 0, 0, .08);
}

.se-img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.se-img-wrap:hover img {
    transform: scale(1.04);
}

.se-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 30, 15, .38) 100%);
    pointer-events: none;
}

.se-export-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    background: rgba(30, 126, 52, .88);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.se-stat-card {
    position: absolute;
    bottom: 0;
    left: -24px;
    background: #fff;
    border-radius: 14px;
    padding: 15px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .13);
    border: 1px solid rgba(30, 126, 52, .12);
    display: flex;
    align-items: center;
    gap: 13px;
}

.se-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e7e34, #2ea84a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 18px;
}

.se-stat-text strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #1a2b3c;
    line-height: 1.2;
}

.se-stat-text span {
    font-size: 11.5px;
    color: #7a8b99;
    font-weight: 500;
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 1199px) {
    .se-right {
        flex: 0 0 360px;
    }

    .se-img-wrap img {
        height: 320px;
    }
}

@media (max-width: 991px) {
    .shrimp-export-section {
        padding: 60px 0 80px;
    }

    .se-inner {
        gap: 36px;
    }

    .se-right {
        flex: 0 0 300px;
    }

    .se-img-wrap img {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .shrimp-export-section {
        padding: 50px 0 60px;
    }

    .se-top {
        margin-bottom: 36px;
    }

    .se-top h2 {
        font-size: 20px;
    }

    .se-top p {
        font-size: 13.5px;
    }

    .se-inner {
        flex-direction: column-reverse;
        gap: 36px;
    }

    .se-right {
        flex: unset;
        width: 100%;
        padding-bottom: 28px;
    }

    .se-img-wrap img {
        height: 240px;
    }

    .se-stat-card {
        left: 14px;
        bottom: 0;
    }

    .se-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .shrimp-export-section {
        padding: 40px 0 50px;
    }

    .se-top h2 {
        font-size: 18px;
    }

    .se-img-wrap img {
        height: 210px;
    }

    .se-feat {
        padding: 12px 14px;
        gap: 11px;
    }

    .se-ficon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .se-ftext strong {
        font-size: 13px;
    }

    .se-ftext span {
        font-size: 11.5px;
    }
}

/* end */

/* start */
/* SHRIMP VARIETIES*/
.varieties-section {
    padding: 10px 0 38px;
    background: #fff;
}

.var-title {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0F1E58;
    margin-bottom: 10px;
}

/* fish icon divider — exactly like screenshot */
.var-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
}

.var-divider::before,
.var-divider::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 1.5px;
    background: #1e7e34;
    vertical-align: middle;
}

.var-icon-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #1e7e34;
    font-size: 16px;
    margin: 0 8px;
}

/* Card row — full width, no scroll on desktop */
.var-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #1e7e34 #e4ede4;
    -webkit-overflow-scrolling: touch;
}

.var-row::-webkit-scrollbar {
    height: 3px;
}

.var-row::-webkit-scrollbar-track {
    background: #e8f0e8;
    border-radius: 3px;
}

.var-row::-webkit-scrollbar-thumb {
    background: #1e7e34;
    border-radius: 3px;
}

/* Each card — square image, plain, no heavy shadow */
.var-card {
    flex: 1 0 140px;
    text-align: center;
    cursor: pointer;
}

.var-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    background: #f0f4f0;
    margin-bottom: 10px;
}

.var-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.var-card:hover .var-img img {
    transform: scale(1.06);
}

.var-card h6 {
    font-size: 12.5px;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 2px;
    line-height: 1.35;
}

.var-card span {
    font-size: 11.5px;
    color: #1e7e34;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .feat-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .feat-item {
        flex: 0 0 calc(33.33% - 12px);
        background: #f8fbf8;
        border: 1px solid #ddeedd;
        border-radius: 8px;
        padding: 16px 12px;
    }

    .var-card {
        flex: 0 0 130px;
    }
}

@media (max-width: 767px) {
    .about-export {
        padding: 36px 0 24px;
    }

    .abt-head h3 {
        font-size: 15px;
    }

    .feat-item {
        flex: 0 0 calc(50% - 10px);
    }

    .var-title {
        font-size: 20px;
    }

    .var-card {
        flex: 0 0 120px;
    }
}

@media (max-width: 575px) {
    .feat-item {
        flex: 0 0 calc(50% - 8px);
        padding: 12px 10px;
    }

    .var-card {
        flex: 0 0 110px;
    }

    .var-card h6 {
        font-size: 11.5px;
    }
}

/* end */



/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
    background: var(--navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 34px 20px;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, .10);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item i {
    font-size: 30px;
    color: var(--green);
}

.stat-item .stat-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    color: var(--white);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 13px;
    color: #b9c8db;
}

/* ── MOBILE ── */
@media (max-width: 767px) {
    .stats-bar {
        overflow: hidden;
        /* ← এটা add করো */
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 12px;
        overflow: hidden;
        margin: 16px;
        /* ← 0 16px → 16px (top-bottom ও দরকার) */
    }

    .stats-bar .stat-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 34px 20px;
        justify-content: center;
        border-right: 1px solid rgba(255, 255, 255, .10);
        background: transparent;
        /* ← inquiry এর bg override fix */
        border-radius: 0;
        /* ← inquiry এর border-radius fix */
    }

    .stats-bar .stat-item:last-child {
        border-right: none;
    }

    .stats-bar .stat-item:hover {
        background: transparent;
        /* ← inquiry hover effect বন্ধ */
    }

    .stats-bar .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stats-bar .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .stats-bar .stat-item i {
        font-size: 26px;
        flex-shrink: 0;
        color: var(--green);
    }

    .stats-bar .stat-item .stat-num {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .stats-bar .stat-item .stat-label {
        font-size: 12px;
        line-height: 1.3;
    }
}


/* start css */
/* =============================================
   FISHERIES SECTION
============================================= */
.fisheries-section {
    padding: 72px 0 64px;
    background: var(--white);
}

/* TOP ROW */
.fisheries-top {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 36px;
}

.fisheries-text {
    flex: 0 0 340px;
    max-width: 340px;
}

.fisheries-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 10px;
}

.fish-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.fish-divider::before,
.fish-divider::after {
    content: '';
    height: 2px;
    background: #c8e6c9;
    flex: 1;
}

.fish-divider i {
    color: var(--green);
    font-size: 16px;
}

.fisheries-desc {
    font-size: 13.5px;
    color: #3c4a5e;
    line-height: 1.8;
    margin-bottom: 14px;
}

.fisheries-desc-2 {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.fisheries-img-wrap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(12, 42, 77, .12);
    min-height: 300px;
    max-height: 340px;
}

.fisheries-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.fisheries-img-wrap:hover img {
    transform: scale(1.03);
}

/* POND SYSTEM BLOCK */
.pond-system-block {
    background: var(--gray-bg);
    border-radius: 14px;
    padding: 28px 32px 32px;
    margin-bottom: 36px;
}

.pond-system-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.ps-icon {
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ps-icon i {
    color: #fff;
    font-size: 15px;
}

.pond-system-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.pond-intro {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.pond-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px 24px;
}

.pond-bullets li {
    font-size: 13px;
    color: #3c4a5e;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.pond-bullets li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 5px;
}

/* THUMB GRID */
.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.thumb-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.thumb-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #dde3ec;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.thumb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.thumb-img-wrap:hover img {
    transform: scale(1.06);
}

.thumb-caption {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
}

/* FISH VARIETIES BLOCK */
.fish-varieties-block {
    background: var(--white);
    border: 1.5px solid #e8f5e9;
    border-radius: 14px;
    padding: 28px 32px 32px;
    margin-bottom: 36px;
}

.fv-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.fv-icon {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fv-icon i {
    color: var(--green);
    font-size: 18px;
}

.fv-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 4px;
}

.fv-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.fish-variety-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.fish-variety-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fv-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e8f5e9;
    transition: border-color .25s;
}

.fv-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.fish-variety-item:hover .fv-img-wrap {
    border-color: var(--green);
}

.fish-variety-item:hover .fv-img-wrap img {
    transform: scale(1.08);
}

.fish-variety-item span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
}

/* QUALITY NOTE */
.quality-note {
    background: var(--green-light);
    border-left: 4px solid var(--green);
    border-radius: 0 8px 8px 0;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.quality-note i {
    color: var(--green);
    font-size: 16px;
    flex-shrink: 0;
}

/* PRODUCTION FOCUS BLOCK */
.production-focus-block {
    background: var(--navy);
    border-radius: 14px;
    padding: 28px 32px 32px;
}

.pf-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pf-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-icon i {
    color: #fff;
    font-size: 15px;
}

.pf-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.pf-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.pf-ico {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s;
}

.pf-item:hover .pf-ico {
    background: var(--green);
    border-color: var(--green);
}

.pf-ico i {
    font-size: 18px;
    color: #fff;
}

.pf-item span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    line-height: 1.4;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (min-width: 1440px) {
    .fisheries-section {
        padding: 88px 0 10px;
    }

    .fisheries-title {
        font-size: 36px;
    }

    .fisheries-text {
        flex: 0 0 380px;
        max-width: 380px;
    }

    .fish-variety-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (max-width: 1199px) {
    .fisheries-text {
        flex: 0 0 290px;
        max-width: 290px;
    }

    .fisheries-top {
        gap: 32px;
    }

    .fisheries-title {
        font-size: 28px;
    }

    .fish-variety-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pf-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .fisheries-top {
        flex-direction: column;
        gap: 24px;
    }

    .fisheries-text {
        flex: none;
        max-width: 100%;
    }

    .fisheries-img-wrap {
        max-height: 280px;
        min-height: 200px;
    }

    .pond-bullets {
        grid-template-columns: 1fr;
    }

    .thumb-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fish-variety-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pf-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .fisheries-section {
        padding: 48px 0 40px;
    }

    .fisheries-title {
        font-size: 24px;
    }

    .pond-system-block {
        padding: 20px 16px 24px;
    }

    .fish-varieties-block {
        padding: 20px 16px 24px;
    }

    .production-focus-block {
        padding: 20px 16px 24px;
    }

    .thumb-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .fish-variety-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .pf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* end css */

/* start */

/* =============================================
       AGRICULTURE SECTION
    ============================================= */
.agriculture-section {
    padding: 72px 0 64px;
    background: var(--gray-bg);
}

/* ---- TOP ROW: text left + big image right ---- */
.agriculture-top {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* LEFT TEXT */
.agriculture-text {
    flex: 0 0 340px;
    max-width: 340px;
}

.agriculture-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

/* Green wheat/leaf icon divider */
.agri-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.agri-divider::before,
.agri-divider::after {
    content: '';
    height: 2px;
    background: var(--green-light);
    flex: 1;
}

.agri-divider i {
    color: var(--green-light);
    font-size: 16px;
}

.agriculture-desc {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 18px;
}

.agriculture-desc-2 {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

/* RIGHT BIG IMAGE */
.agriculture-img-wrap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(12, 42, 77, 0.12);
    min-height: 300px;
    max-height: 340px;
}

.agriculture-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.agriculture-img-wrap:hover img {
    transform: scale(1.03);
}

/* ---- BOTTOM: farm system block + 4 thumbs ---- */
.farm-system-block {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 32px 32px;
    box-shadow: 0 2px 12px rgba(12, 42, 77, 0.06);
}

.farm-system-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.farm-system-header .fs-icon {
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.farm-system-header .fs-icon i {
    color: #fff;
    font-size: 15px;
}

.farm-system-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.farm-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px 24px;
}

.farm-bullets li {
    font-size: 13px;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.farm-bullets li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
    margin-top: 5px;
}

/* 4 thumbnail images */
.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.thumb-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.thumb-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #c8e6c9;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.thumb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.thumb-img-wrap:hover img {
    transform: scale(1.06);
}

.thumb-caption {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
}

/* =============================================
       RESPONSIVE
    ============================================= */
@media (min-width: 1440px) {
    .agriculture-section {
        padding: 88px 0 80px;
    }

    .agriculture-title {
        font-size: 36px;
    }

    .agriculture-text {
        flex: 0 0 380px;
        max-width: 380px;
    }

    .agriculture-top {
        gap: 60px;
    }
}

@media (max-width: 1199px) {
    .agriculture-text {
        flex: 0 0 300px;
        max-width: 300px;
    }

    .agriculture-top {
        gap: 36px;
    }

    .agriculture-title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .agriculture-top {
        flex-direction: column;
        gap: 28px;
    }

    .agriculture-text {
        flex: none;
        max-width: 100%;
    }

    .agriculture-img-wrap {
        max-height: 280px;
        min-height: 220px;
    }

    .farm-bullets {
        grid-template-columns: 1fr;
    }

    .thumb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .agriculture-section {
        padding: 48px 0 40px;
    }

    .agriculture-title {
        font-size: 24px;
    }

    .farm-system-block {
        padding: 22px 18px 24px;
    }

    .thumb-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}


/* ---- BADGE ---- */
.agri-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.agri-badge i {
    font-size: 12px;
}

/* ---- CTA BUTTON ---- */
.agri-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.agri-btn:hover {
    background: var(--green-dark, #1b5e20);
    color: #fff;
    transform: translateY(-2px);
}

.agri-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.agri-btn:hover i {
    transform: translateX(4px);
}

/* ---- IMAGE OVERLAY BADGE ---- */
.agriculture-img-wrap {
    position: relative;
}

.agri-img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    backdrop-filter: blur(4px);
}

.agri-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    display: inline-block;
    animation: agriPulse 1.5s infinite;
    flex-shrink: 0;
}

@keyframes agriPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* ---- STATS BAR ---- */
.agri-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.agri-stat-item {
    background: var(--white);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    border: 1px solid #e8f5e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agri-stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.12);
}

.agri-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: 5px;
}

.agri-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---- THUMB OVERLAY ---- */
.thumb-img-wrap {
    position: relative;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 125, 50, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.thumb-overlay i {
    color: #fff;
    font-size: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumb-img-wrap:hover .thumb-overlay {
    background: rgba(46, 125, 50, 0.5);
}

.thumb-img-wrap:hover .thumb-overlay i {
    opacity: 1;
}

/* ---- RESPONSIVE STATS ---- */
@media (max-width: 991px) {
    .agri-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .agri-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .agri-stat-num {
        font-size: 22px;
    }

    .agri-img-badge {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* end */


/* start */
/* =============================================
       FARMING SECTION
    ============================================= */
.farming-section {
    padding: 72px 0 64px;
    background: var(--white);
}

/* ---- TOP ROW ---- */
.farming-top {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* LEFT TEXT */
.farming-text {
    flex: 0 0 340px;
    max-width: 340px;
}

.farming-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.farming-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.farming-divider::before,
.farming-divider::after {
    content: '';
    height: 2px;
    background: var(--green-light);
    flex: 1;
}

.farming-divider i {
    color: var(--green-light);
    font-size: 16px;
}

.farming-desc {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 18px;
}

.farming-desc-2 {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

/* RIGHT BIG IMAGE */
.farming-img-wrap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(12, 42, 77, 0.12);
    min-height: 300px;
    max-height: 340px;
}

.farming-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.farming-img-wrap:hover img {
    transform: scale(1.03);
}

/* ---- BOTTOM BLOCK ---- */
.farming-system-block {
    background: var(--gray-bg);
    border-radius: 14px;
    padding: 28px 32px 32px;
}

.farming-system-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.farming-system-header .fms-icon {
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.farming-system-header .fms-icon i {
    color: #fff;
    font-size: 15px;
}

.farming-system-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.farming-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px 24px;
}

.farming-bullets li {
    font-size: 13px;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.farming-bullets li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
    margin-top: 5px;
}

/* 4 thumbnails */
.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.thumb-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.thumb-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #c8e6c9;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.thumb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.thumb-img-wrap:hover img {
    transform: scale(1.06);
}

.thumb-caption {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
}

/* =============================================
       RESPONSIVE
    ============================================= */
@media (min-width: 1440px) {
    .farming-section {
        padding: 88px 0 80px;
    }

    .farming-title {
        font-size: 36px;
    }

    .farming-text {
        flex: 0 0 380px;
        max-width: 380px;
    }

    .farming-top {
        gap: 60px;
    }
}

@media (max-width: 1199px) {
    .farming-text {
        flex: 0 0 300px;
        max-width: 300px;
    }

    .farming-top {
        gap: 36px;
    }

    .farming-title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .farming-top {
        flex-direction: column;
        gap: 28px;
    }

    .farming-text {
        flex: none;
        max-width: 100%;
    }

    .farming-img-wrap {
        max-height: 280px;
        min-height: 220px;
    }

    .farming-bullets {
        grid-template-columns: 1fr;
    }

    .thumb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .farming-section {
        padding: 48px 0 40px;
    }

    .farming-title {
        font-size: 24px;
    }

    .farming-system-block {
        padding: 22px 18px 24px;
    }

    .thumb-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}


/* ---- SECTION LABEL ---- */
.farming-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.farming-label-bar {
    width: 4px;
    height: 48px;
    background: var(--green);
    border-radius: 2px;
    flex-shrink: 0;
}

.farming-label-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green-light);
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* ---- FEATURE CHIPS ---- */
.farming-chips {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.farming-chips li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-bg);
    border-radius: 10px;
    padding: 10px 14px;
}

.farming-chips li span {
    font-size: 13px;
    color: var(--text-body);
    font-weight: 600;
}

.chip-icon {
    width: 32px;
    height: 32px;
    background: #e8f5e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chip-icon i {
    color: var(--green);
    font-size: 15px;
}

/* ---- CTA BUTTON ---- */
.farming-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.farming-btn:hover {
    background: var(--green-dark, #1b5e20);
    color: #fff;
    transform: translateY(-2px);
}

.farming-btn i {
    transition: transform 0.3s ease;
}

.farming-btn:hover i {
    transform: translateX(4px);
}

/* ---- IMAGE OUTER (for float card positioning) ---- */
.farming-img-outer {
    flex: 1;
    position: relative;
    padding-bottom: 20px;
}

.farming-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    min-height: 300px;
    max-height: 360px;
    box-shadow: 0 8px 32px rgba(12, 42, 77, 0.12);
}

/* ---- FLOATING STAT CARD ---- */
.farming-stat-float {
    position: absolute;
    bottom: 0;
    right: -16px;
    background: var(--navy);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 150px;
    box-shadow: 0 8px 24px rgba(26, 43, 94, 0.25);
}

.farming-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: 4px;
}

.farming-stat-label {
    font-size: 11.5px;
    color: #b0bec5;
}

/* ---- PROCESS STEPS ---- */
.farming-process-wrap {
    background: var(--gray-bg);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 28px;
}

.farming-process-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.farming-process-header i {
    color: var(--green);
    font-size: 18px;
}

.farming-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.fms-connector {
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #c8e6c9;
    z-index: 0;
}

.fms-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.fms-circle {
    width: 42px;
    height: 42px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.fms-step:hover .fms-circle {
    transform: scale(1.12);
}

.fms-circle i {
    color: #fff;
    font-size: 17px;
}

.fms-step-text {
    text-align: center;
}

.fms-step-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
}

.fms-step-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---- THUMB STEP BADGE & OVERLAY ---- */
.thumb-img-wrap {
    position: relative;
}

.thumb-step-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    z-index: 2;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 125, 50, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.thumb-overlay i {
    color: #fff;
    font-size: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumb-img-wrap:hover .thumb-overlay {
    background: rgba(46, 125, 50, 0.5);
}

.thumb-img-wrap:hover .thumb-overlay i {
    opacity: 1;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .farming-stat-float {
        right: 0;
        bottom: -10px;
    }

    .farming-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .fms-connector {
        display: none;
    }
}

@media (max-width: 575px) {
    .farming-process-wrap {
        padding: 20px 16px;
    }

    .farming-stat-float {
        position: static;
        margin-top: 16px;
        display: inline-block;
    }

    .farming-img-outer {
        padding-bottom: 0;
    }
}

/* end */
/* contact */

/* =============================================
       INQUIRY SECTION
    ============================================= */
.inquiry-section {
    background: var(--gray-bg);
    padding: 0;
    overflow: hidden;
}

/* ---- LEFT ---- */
.inquiry-left {
    position: relative;
    height: 100%;
    min-height: 580px;
    overflow: hidden;
}

/* Full-cover image */
.inquiry-left .inq-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dark gradient overlay */
.inquiry-left .inq-overlay {
    position: absolute;
    inset: 1;
    background: linear-gradient(160deg,
            rgba(7, 24, 43, 0.82) 0%,
            rgba(12, 42, 77, 0.70) 50%,
            rgba(27, 94, 32, 0.55) 100%);
    z-index: 1;
}

/* Content over image */
.inquiry-left .inq-content {
    position: relative;
    z-index: 2;
    padding: 56px 44px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Eyebrow badge */
.inquiry-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green-light);
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.inquiry-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 14px;
}

.inquiry-title span {
    color: var(--green-light);
}

.inquiry-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 340px;
}

/* Contact list */
.inquiry-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inquiry-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inquiry-contact li:last-child {
    border-bottom: none;
}

.inquiry-contact li i {
    color: var(--green-light);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

/* Bottom badge strip */
.inq-badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.inq-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.inq-badge i {
    color: var(--green-light);
    font-size: 13px;
}

/* ---- RIGHT ---- */
.inquiry-right {
    background: var(--white);
    padding: 56px 52px;
    height: 100%;
    border-left: 1px solid rgba(12, 42, 77, 0.07);
}

/* Form header */
.form-header {
    margin-bottom: 30px;
}

.form-header-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.form-header-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-header-icon i {
    color: var(--white);
    font-size: 18px;
}

.form-header-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 2px;
    line-height: 1.2;
}

.form-header-text p {
    font-size: 12.5px;
    color: var(--text-muted);
    margin: 0;
}

.form-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, rgba(47, 125, 50, 0.15) 100%);
    border-radius: 2px;
    margin-top: 16px;
}

/* Labels */
.inquiry-form .form-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.req {
    color: #e53e3e;
}

/* Inputs */
.inquiry-form .form-control {
    border: 1.5px solid #dde3ec;
    border-radius: 9px;
    font-size: 13px;
    padding: 11px 14px;
    color: var(--navy);
    background: var(--gray-bg);
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.inquiry-form .form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3.5px rgba(47, 125, 50, 0.12);
    outline: none;
    background: var(--white);
}

.inquiry-form .form-control::placeholder {
    color: #aab4c0;
    font-size: 12.5px;
}

.inquiry-form textarea.form-control {
    resize: vertical;
    min-height: 115px;
}

/* Input with icon wrapper */
.input-icon-wrap {
    position: relative;
}

.input-icon-wrap .field-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #aab4c0;
    font-size: 13px;
    pointer-events: none;
    transition: color .2s;
}

.input-icon-wrap.textarea-wrap .field-icon {
    top: 14px;
    transform: none;
}

.input-icon-wrap .form-control {
    padding-left: 36px;
}

.input-icon-wrap .form-control:focus+.field-icon,
.input-icon-wrap .form-control:focus~.field-icon {
    color: var(--green);
}

/* Fix: icon color on focus (sibling trick doesn't work backwards, use JS or just style on wrap) */
.input-icon-wrap:focus-within .field-icon {
    color: var(--green);
}

/* Captcha */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-question {
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 11px 20px;
    border-radius: 9px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 1.5px;
    font-family: 'Courier New', monospace;
}

.captcha-input {
    max-width: 140px;
}

/* Submit */
.btn-send {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    border: none;
    padding: 14px 38px;
    border-radius: 9px;
    font-size: 14.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: transform .2s, box-shadow .2s, opacity .2s;
    box-shadow: 0 4px 18px rgba(47, 125, 50, 0.32);
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(47, 125, 50, 0.38);
    opacity: 0.92;
}

.btn-send:active {
    transform: translateY(0);
}

/* Privacy note */
.privacy-note {
    font-size: 11.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.privacy-note i {
    color: var(--green);
    font-size: 12px;
}

/* =============================================
       RESPONSIVE
    ============================================= */
@media (max-width: 1199px) {
    .inquiry-left .inq-content {
        padding: 48px 36px;
    }

    .inquiry-right {
        padding: 48px 40px;
    }
}

@media (max-width: 991px) {
    .inquiry-left {
        min-height: 420px;
    }

    .inquiry-left .inq-content {
        padding: 44px 32px;
    }

    .inquiry-right {
        padding: 44px 32px;
        border-left: none;
        border-top: 4px solid var(--green);
    }
}

@media (max-width: 575px) {
    .inquiry-left {
        min-height: 360px;
    }

    .inquiry-left .inq-content {
        padding: 32px 20px;
    }

    .inquiry-right {
        padding: 36px 20px;
    }

    .captcha-row {
        flex-wrap: wrap;
    }

    .captcha-input {
        max-width: 100%;
        width: 100%;
    }

    .btn-send {
        width: 100%;
        justify-content: center;
    }

    .inq-badge-row {
        gap: 8px;
    }
}

/* end */

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: #e6e7e7;
    color: var(--navy-dark);
    padding-top: 60px;
}

.site-footer h6 {
    color: var(--navy-dark);
    /* was --white, light bg-te invisible hoto */
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
}

.site-footer p {
    color: #2c3e50;
    /* dark readable text */
    font-size: 14px;
}

.site-footer a {
    color: #1a3a5c;
    /* dark navy link */
    font-size: 14px;
    text-decoration: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: #2c3e50;
    /* icon + plain text items */
}

.footer-links a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, .15);
    /* was white — light bg-te invisible */
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #2c3e50;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .12);
    /* was white tint — light bg-te miss hoto */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    /* dark icon color */
    transition: background .25s ease;
}

.social-icons a:hover {
    background: var(--green);
    color: #fff;
}



.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--navy-dark);
    letter-spacing: 0.5px;
}

/* =========================================================
   RESPONSIVE — HERO TEXT
   ========================================================= */
@media (max-width: 991px) {
    .hero-slider {
        height: 560px;
    }

    .hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .hero-slider {
        height: 560px;
    }

    .hero-slide::before {
        background: linear-gradient(180deg, rgba(8, 29, 56, .75) 0%, rgba(8, 29, 56, .85) 100%);
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14.5px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-dots {
        bottom: 22px;
    }
}