:root {
  --primary: #003087;
  --accent: #e87722;
  --green: #28a745;
  --purple: #6f42c1;
  --blue-light: #e8f0fe;
  --gray-bg: #f5f7fa;
  --text-dark: #111;
  --text-gray: #555;
  --border: #e2e8f0;
  --nav-h: 90px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  color: var(--text-dark);
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: var(--nav-h);
  padding: 0 28px;
}

.logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5276 35%, #28a745);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-circle i {
  color: #fff;
  font-size: 20px;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
}

.logo-img {
  width: 4rem;
}

/* ---- Desktop Nav Links ---- */
.nav-link-custom {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 7px 15px;
  font-size: .875rem;
  font-weight: 600;
  color: #333;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  font-family: inherit;
  transition: background .18s, color .18s;
  text-decoration: none;
}

.nav-link-dropdown {
  gap: 0.35rem;
}

.nav-link-custom .caret {
  font-size: 9px;
  transition: transform .2s;
}

.nav-link-custom:hover {
  background: var(--blue-light);
  color: var(--primary);
}

.nav-item-custom:hover>.nav-link-custom .caret {
  transform: rotate(180deg);
}

/* ---- Level-1 Dropdown ---- */
.dropdown-custom {
  display: none;
  position: absolute;
  top: calc(100%);
  left: -110px;
  background: #fff;
  min-width: 270px;
  border-radius: 10px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .13);
  padding: 6px 0;
  z-index: 2000;
  border-top: 3px solid var(--primary);
}

.nav-item-custom:hover>.dropdown-custom {
  display: block;
}

.dropdown-custom>a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  color: #333;
  transition: background .15s, color .15s;
  text-decoration: none;
}

.dropdown-custom>a i {
  width: 16px;
  color: var(--primary);
  font-size: 12px;
}

.dropdown-custom>a:hover {
  background: var(--blue-light);
  color: var(--primary);
}

/* ---- Level-2: has-sub wrapper ---- */
.has-sub {
  position: relative;
}

.sub-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 18px;
  font-size: 13px;
  color: #333;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, color .15s;
  text-align: left;
}

.sub-trigger span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-trigger i.icon {
  width: 16px;
  color: var(--primary);
  font-size: 12px;
}

.sub-trigger .sub-caret {
  font-size: 9px;
  color: #999;
  transition: transform .2s;
  margin-left: auto;
}

.has-sub:hover>.sub-trigger {
  background: var(--blue-light);
  color: var(--primary);
}

.has-sub:hover>.sub-trigger .sub-caret {
  transform: rotate(-90deg);
  color: var(--primary);
}

.has-sub:hover>.dropdown-level2 {
  display: block;
}

/* ---- Level-2 Dropdown ---- */
.dropdown-level2 {
  display: none;
  position: absolute;
  top: 0;
  left: 90%;
  background: #fff;
  min-width: 210px;
  border-radius: 10px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .13);
  padding: 6px 0;
  z-index: 2100;
  border-top: 3px solid var(--primary);
  margin-left: 4px;
}

/* Flip left when near right edge (added by JS) */
.dropdown-level2.flip-left {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 4px;
}

.dropdown-level2 a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  color: #333;
  transition: background .15s, color .15s;
  text-decoration: none;
}

.dropdown-level2 a i {
  width: 16px;
  color: var(--accent);
  font-size: 12px;
}

.dropdown-level2 a:hover {
  background: var(--blue-light);
  color: var(--primary);
}

/* ---- Join button ---- */
.btn-join-nav {
  background: linear-gradient(135deg, #003087, #0052cc) !important;
  color: #fff !important;
  border-radius: 22px !important;
  padding: 8px 16px !important;
  font-weight: 600 !important;
}

.btn-join-nav:hover {
  opacity: .88 !important;
}

/* =============================================
   HAMBURGER
============================================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: #333;
  border-radius: 3px;
  transition: all .3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =============================================
   MOBILE DRAWER
============================================= */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #f3f0f0;
  z-index: 999;
  overflow-y: auto;
  padding: 0 0 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
  animation: slideDown .25s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.mobile-nav.open {
  display: block;
}

/* Level-1 item */
.mob-item {
  border-bottom: 1px solid var(--border);
}

.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.mob-link .caret {
  font-size: 11px;
  transition: transform .25s;
}

.mob-link.open .caret {
  transform: rotate(180deg);
}

.mob-link i.icon {
  width: 18px;
  color: var(--primary);
}

/* Level-1 sub */
.mob-sub {
  display: none;
  background: #f8fafc;
}

.mob-sub.open {
  display: block;
}

.mob-sub>a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 36px;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #eef2f7;
  text-decoration: none;
}

.mob-sub>a i {
  color: var(--primary);
  width: 16px;
  font-size: 12px;
}

.mob-sub>a:hover {
  background: var(--blue-light);
  color: var(--primary);
}

/* ---- Mobile Level-2: mob-has-sub ---- */
.mob-has-sub {
  border-bottom: 1px solid #eef2f7;
}

.mob-sub-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 36px;
  font-size: 14px;
  color: #444;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background .15s, color .15s;
}

.mob-sub-trigger span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mob-sub-trigger i.icon2 {
  color: var(--primary);
  width: 16px;
  font-size: 12px;
}

.mob-sub-trigger .sub-caret2 {
  font-size: 10px;
  color: #999;
  transition: transform .25s;
}

.mob-sub-trigger.open {
  background: var(--blue-light);
  color: var(--primary);
}

.mob-sub-trigger.open .sub-caret2 {
  transform: rotate(180deg);
  color: var(--primary);
}

.mob-sub-trigger:hover {
  background: var(--blue-light);
  color: var(--primary);
}

/* Level-2 sub */
.mob-sub2 {
  display: none;
  background: #eef4ff;
}

.mob-sub2.open {
  display: block;
}

.mob-sub2 a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 52px;
  font-size: 13.5px;
  color: #555;
  border-bottom: 1px solid #dde8f8;
  text-decoration: none;
}

.mob-sub2 a i {
  color: var(--accent);
  width: 15px;
  font-size: 12px;
}

.mob-sub2 a:hover {
  background: #dbeafe;
  color: var(--primary);
}

/* =============================================
   JOIN WRAP (mobile)
============================================= */
.mob-join-wrap {
  padding: 20px 24px;
}

.mob-join-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  color: #333;
}

.mob-join-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
  text-decoration: none;
}

.mob-join-btn.farmer {
  background: var(--accent);
}

.mob-join-btn.fpo {
  background: var(--primary);
}

.mob-join-btn.fed {
  background: var(--green);
}

.mob-solutions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-radius: 10px;
  background: var(--purple);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
  text-decoration: none;
}

/* =============================================
   HERO
============================================= */
.hero {
  background: linear-gradient(160deg, #eef3ff 0%, #f0faf3 55%, #fffbf0 100%);
  padding: 44px 40px 50px;
}

.hero-title h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
}

.hero-title h1 span {
  border-bottom: 4px solid var(--primary);
  padding-bottom: 2px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-left p {
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 22px;
}

.hero-left p .c1 {
  color: var(--accent);
  font-weight: 600;
}

.hero-left p .c2 {
  color: var(--green);
  font-weight: 600;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity .18s, transform .18s;
  text-decoration: none;
  width: 100%;
}

.btn-orange:hover {
  opacity: .9;
  transform: translateY(-1px);
  color: #fff;
}

/* ---- Slider ---- */
.hero-slider {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, .11);
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  display: flex;
  transition: transform .5s ease;
}

.slide {
  min-width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  position: relative;
}

.event-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
  color: #fff;
  padding: 40px 24px 16px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.03em;
  z-index: 2;
  pointer-events: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.event-caption::before {
  /* content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #0d9488;
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 1px; */
}

.slide-overlay i {
  font-size: 52px;
  margin-bottom: 14px;
  opacity: .85;
}

.slide-overlay h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.slide-overlay p {
  font-size: 13px;
  margin-top: 7px;
  opacity: .85;
}

.slide-overlay img {
  height: 100% !important;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .85);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  z-index: 10;
  transition: background .2s;
}

.slider-btn:hover {
  background: #fff;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ---- Join Card ---- */
.join-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .09);
  padding: 22px 20px 18px;
}

.join-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.join-card>p {
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
}

.join-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
  transition: opacity .18s, transform .18s;
  text-decoration: none;
}

.join-btn:hover {
  opacity: .9;
  transform: translateX(3px);
  color: #fff;
}

.join-btn.farmer {
  background: var(--accent);
}

.join-btn.fpo {
  background: var(--primary);
}

.join-btn.fed {
  background: var(--green);
}

.solutions-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border-radius: 8px;
  background: var(--purple);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 14px;
  cursor: pointer;
  transition: opacity .18s;
  text-decoration: none;
}

.solutions-btn:hover {
  opacity: .9;
  color: #fff;
}

/* =============================================
   ACHIEVEMENTS
============================================= */
.achievements {
  background: var(--gray-bg);
  padding: 60px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-header p {
  font-size: 14px;
  color: #888;
}

.stats-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  min-height: 100px;
}

/* ── Combined Card wrapper ── */
.stat-card-combined {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  display: flex;
  flex-wrap: wrap;
  /* stacks on small screens */
  align-items: stretch;
  min-height: 100px;
  overflow: hidden;
}

/* ── Each section inside combined card ── */
.stat-card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  flex: 1 1 120px;
  /* shrinks/grows, wraps below ~120px */
  min-width: 0;
}

/* ── Vertical divider (hidden when wrapped) ── */
.stat-divider {
  width: 1px;
  background: #e5e7eb;
  align-self: stretch;
  margin: 14px 0;
}

/* On small screens: divider becomes horizontal */
@media (max-width: 575.98px) {
  .stat-card-combined {
    flex-direction: column;
  }

  .stat-divider {
    width: auto;
    height: 1px;
    margin: 0 16px;
    align-self: auto;
  }

  .lp-amount {
    font-size: 25px !important;
  }

  .event-caption {
    font-size: 0.75rem;
  }
}

/* ── Icons ── */
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.stat-icon.blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.stat-icon.orange {
  background: #fef3c7;
  color: #d97706;
}

.stat-icon.green {
  background: #dcfce7;
  color: #16a34a;
}

/* ── Typography ── */
.stat-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #111;
  display: flex;
  align-items: baseline;
}

.stat-info p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* ── Hover lift ── */
.stat-card:hover,
.stat-card-combined:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
  transition: transform .2s, box-shadow .2s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
}

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.stat-icon.blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.stat-icon.orange {
  background: #fef3c7;
  color: #d97706;
}

.stat-icon.green {
  background: #dcfce7;
  color: #16a34a;
}

.stat-icon.red {
  background: #fee2e2;
  color: #dc2626;
}

.stat-icon.purple {
  background: #ede9fe;
  color: #7c3aed;
}

.stat-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.stat-info p {
  font-size: 14px;
}

.stat-info span {
  color: #000;
  display: block;
  margin-top: 2px;
}

/* =============================================
   WHY CHOOSE US
============================================= */
.why-choose {
  padding: 60px 40px;
  background: #fff;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  margin: 0 auto 16px;
}

.feature-icon.blue-bg {
  background: #dbeafe;
  color: #1d4ed8;
}

.feature-icon.green-bg {
  background: #dcfce7;
  color: #16a34a;
}

.feature-icon.yellow-bg {
  background: #fef9c3;
  color: #ca8a04;
}

.feature-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   ABOUT
============================================= */
.about {
  padding: 60px 40px;
  background: var(--gray-bg);
}

.about-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-left h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.3;
  margin-bottom: 16px;
}

.about-left p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.aimg {
  border-radius: 10px;
  overflow: hidden;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aimg-span2 {
  grid-column: span 2;
  height: 170px;
}

.aimg-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  gap: 6px;
}

.aimg-inner i {
  font-size: 26px;
}

.aimg.a1 {
  background: linear-gradient(135deg, #92400e, #b45309);
}

.aimg.a2 {
  background: linear-gradient(135deg, #14532d, #16a34a);
}

.aimg.a3 {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
}

.aimg.a4 {
  background: linear-gradient(135deg, #7c2d12, #c2410c);
}

.aimg.a5 {
  background: linear-gradient(135deg, #166534, #4ade80);
}

/* =============================================
   KEY FOCUS AREAS
============================================= */
.focus-areas {
  padding: 60px 40px;
  background: #fff;
}

.focus-box {
  max-width: 1150px;
  margin: 0 auto;
  background: #f8fafc;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .09);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.focus-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.focus-check {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.focus-check.blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.focus-check.green {
  background: #dcfce7;
  color: #16a34a;
}

.focus-check.yellow {
  background: #fef9c3;
  color: #ca8a04;
}

.focus-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.focus-item p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.55;
  margin: 0;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials {
  padding: 60px 40px;
  background: #fff;
}

.testimonials .section-header h2 {
  font-size: 34px;
}

.testimonials .section-header h2 span {
  color: var(--green);
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .09);
}

.stars {
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 14px;
}

.testi-card p {
  font-size: 13.5px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-av.r {
  background: #dc2626;
}

.reviewer-av.p {
  background: #7c3aed;
}

.reviewer-av.a {
  background: #059669;
}

.reviewer-info h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.reviewer-info span {
  font-size: 12px;
  color: #888;
}

/* =============================================
   FOOTER
============================================= */
footer {
  color: rgb(209 213 219 / 1);
  padding: 52px 40px 24px;
  background-image: linear-gradient(to right, #0f2027, #203a43, #2c5364);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5276, #28a745);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-circle i {
  color: #fff;
  font-size: 16px;
}

.footer-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  line-height: 24px;
  color: rgb(209 213 219 / 1);
}

footer h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
  list-style: none;
  padding: 0;
}

.footer-links li,
footer ul li {
  margin-bottom: 10px;
}

.footer-links li a,
footer ul li a {
  font-size: 13px;
  color: rgb(209 213 219 / 1);
  transition: color .18s;
  text-decoration: none;
}

.footer-links li a:hover,
footer ul li a:hover {
  color: #fff;
}

footer ul {
  list-style: none;
  padding: 0;
}

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.fc-item i {
  color: var(--accent);
  margin-top: 2px;
  font-size: 14px;
  flex-shrink: 0;
}

.fc-item span {
  font-size: 13px;
  color: rgb(209 213 219 / 1);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #1e3a5f;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 12.5px;
  color: rgb(209 213 219 / 1);
}

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.disabled-link {
  pointer-events: none;
  cursor: default !important;
  opacity: 0.75;
  display: flex !important;
  align-items: center;
  justify-content: space-between !important;
  gap: 8px;
  color: #8e8e8e !important;
}

.disabled-link i {
  color: #aaa !important;
}

.coming-soon-badge {
  display: inline-block;
  background: #fef9c3;
  color: #a16207;
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid #fde68a;
  margin-left: auto;
  flex-shrink: 0;
}

.our-mission {
  background-color: rgb(191 239 255 / 1);
}

.our-mission img,
.our-vision img,
.our-values img {
  border-radius: 15px;
}

.our-vision {
  background-color: rgb(255 255 224 / 1);
}

.our-values {
  background-color: rgb(168 230 161 / 1);
}

.why-join {
  background-color: rgb(255 248 237 / 1);
}

.bold-heading {
  font-size: 3.5rem;
  font-weight: 700;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
============================================= */
@media (max-width: 960px) {
  .desktop-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  /* .hero-right  { display: none !important; } */
  .bold-heading {
    font-size: 2rem;
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 0 16px;
  }

  .hero {
    padding: 28px 16px 36px;
  }

  .hero-title h1 {
    font-size: 24px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto 16px;
  }

  .hero-left h2 {
    font-size: 24px;
  }

  .achievements,
  .why-choose,
  .about,
  .focus-areas,
  .testimonials {
    padding: 40px 16px;
  }

  .focus-box {
    padding: 24px 16px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials .section-header h2 {
    font-size: 26px;
  }

  footer {
    padding: 40px 16px 20px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .about-img-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .slide {
    height: 240px;
  }
}

/* Hero grid responsive */
@media (min-width: 961px) {
  .hero-grid-custom {
    display: grid !important;
    grid-template-columns: 1fr 2.1fr 1.1fr;
    gap: 28px;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
  }
}

@media (max-width: 960px) and (min-width: 701px) {
  .hero-grid-custom {
    display: grid !important;
    grid-template-columns: 1fr 1.5fr;
    gap: 28px;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
  }
}

@media (max-width: 700px) {
  .hero-grid-custom {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.member-list ul {
  padding: 0;
}

.member-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: #333;
  /* border-bottom: 1px solid #f1f5f9; */
  line-height: 1.5;
}

.member-list li:last-child {
  border-bottom: none;
}

.member-list li::before {
  content: '\f00c';
  /* fa-check */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 16px;
  /* margin-top: 2px; */
  flex-shrink: 0;
}

.individual-member li::before {
  color: #16a34a;
}

.business-member li::before {
  color: #ca8a04;
}

@media (max-width: 767px) {
  .member-list li {
    font-size: 14px;
  }

  .management-header h1,
  .tender-header h1 {
    font-size: 2.25rem !important;
  }

  .management-header p {
    font-size: 1rem !important;
    max-width: auto !important;
  }

  .leadership-left h1 {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
    text-align: center;
  }

  .leadership-left p {
    font-size: 1.05rem !important;
    text-align: center;
  }
}

.demo-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffc107;
  color: #000;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  z-index: 9999;
  display: none;
}

/* .chairman-management{
    background-image: url(../../assets/images/boards-journey.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: auto;
    position: relative;
} */
.management-header {
  padding: 40px 0;
}

.management-badge {
  background-color: #facc15 !important;
  color: #fff !important;
  font-weight: 200 !important;
  padding: 8px 13px !important;
  font-size: 14px !important;
}

.chairman-management {
  position: relative;
  overflow: hidden;
}

.chairman-management::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/boards-journey.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(4px);
  z-index: 1;
}

.management-blur {
  position: absolute;
  inset: 0;
  background: rgb(239 246 255 / 42%);
  z-index: 2;
}

.chairman-management>*:not(.management-blur) {
  position: relative;
  z-index: 3;
}

.management-header h1 {
  font-size: 3.75rem;
  line-height: 1.75;
  font-weight: 700;
}

.management-header p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.board-members-top::before {
  filter: grayscale(1) !important;
}

.view-profile {
  color: #fff;
  line-height: 1.25rem;
  padding-top: .625rem;
  padding-bottom: .625rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
  border-radius: 0.5rem;
  gap: .5rem;
  align-items: center;
  display: flex;
  border: none;
}

.view-profile:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
}

.chairman-role {
  color: teal;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: larger;
}

.chairman-message-box {
  border: 1px solid #ddd;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 10px;
  text-align: left;
  background: #f9fafb;
}

.leadership-left h1 {
  font-size: 3.75rem;
  line-height: 2;
  font-weight: 700;
}

.leadership-left p {
  font-size: 1.25rem;
}

.leadership-left-head {
  color: #0d9488;
}

.leadership-btn {
  animation-duration: .2s;
  transition-duration: .2s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  color: #ffffff;
  font-weight: 600;
  padding-top: .875rem;
  padding-bottom: .875rem;
  padding-left: 2rem;
  padding-right: 2rem;
  gap: .5rem;
}

.leadership-book-demo {
  --tw-bg-opacity: 1;
  background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
}

.leadership-call-expert {
  --tw-text-opacity: 1;
  color: #0d9488;
  --tw-border-opacity: 1;
  border-color: rgb(13 148 136 / var(--tw-border-opacity, 1));
}

.leadership-book-demo:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
  color: #ffffff;
}

.leadership-call-expert:hover {
  --tw-text-opacity: 1;
  color: #0d9488;
  --tw-border-opacity: 1;
  border-color: rgb(13 148 136 / var(--tw-border-opacity, 1));
  background-color: #f0fff3;
}

@media (max-width: 640px) {
  .leadership-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 20px;
  }
}

.about-highlights {
  background-image: url(../../assets/images/highlight-KlV2HIym.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px;
}

.highlight-icon {
  background-color: #fff3;
  border-radius: 50%;
}

.tender-top {
  background-image: url(../../assets/images/tenders.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px;
}

.tender-header {
  padding: 40px 0;
}

.tender-header h1 {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 700;
}

/* ========== PAGE WRAPPER ========== */
.tenders-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

/* ========== PAGE HEADING ========== */
.page-heading {
  margin-bottom: 36px;
}

.page-heading h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.page-heading p {
  font-size: 14px;
  color: #888;
}

/* ========== LAYOUT ========== */
.tenders-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

/* ========== SIDEBAR ========== */
.sidebar {
  background: var(--green);
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  text-align: left;
  transition: background .2s, color .2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.tab-btn:last-child {
  border-bottom: none;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.tab-btn.active {
  background: #fff;
  color: var(--green-dark);
  font-weight: 700;
  border-radius: 10px;
  margin: 6px 8px;
  width: calc(100% - 16px);
  padding: 16px 20px;
  border-bottom: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.tab-btn .tab-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.tab-btn.active .tab-count {
  background: var(--green-light);
  color: var(--green-dark);
}

/* ========== CONTENT PANEL ========== */
.content-panel {
  min-height: 400px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.panel-header {
  margin-bottom: 24px;
}

.panel-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.panel-header p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
}

/* ========== TENDER CARD ========== */
.tender-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 16px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.tender-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .09);
}

.tender-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.tender-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-active {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.badge-upcoming {
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.badge-archived {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* Meta info */
.tender-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: #444;
}

.meta-item strong {
  color: #222;
  font-weight: 600;
}

.meta-item i {
  color: var(--green);
  font-size: 13px;
  width: 14px;
}

/* View Details button */
.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1565c0;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .18s, transform .18s;
  text-decoration: none;
}

.btn-view:hover {
  background: #0d47a1;
  transform: translateY(-1px);
  color: #fff;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .18s;
  text-decoration: none;
  margin-left: 10px;
}

.btn-download:hover {
  background: #c8e6c9;
}

.tender-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

/* ========== EMPTY STATE ========== */
.empty-state {
  text-align: center;
  padding: 64px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.empty-state i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 16px;
}

.empty-state h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #999;
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 14px;
  color: #aaa;
}

/* ========== GUIDELINES / HOW TO APPLY ========== */
.info-box {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.info-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box h3 i {
  color: var(--green);
}

.info-box ol,
.info-box ul {
  padding-left: 20px;
}

.info-box li {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 6px;
}

.info-box li strong {
  color: #222;
}

.notice-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
}

.notice-box i {
  color: #f59e0b;
  font-size: 18px;
  margin-top: 2px;
}

.notice-box p {
  font-size: 13.5px;
  color: #78350f;
  line-height: 1.6;
}

.notice-box-success {
  background: #f0fdf4;
  border: 1px solid #52ad1c;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
}

.notice-box-success p {
  font-size: 13.5px;
  color: #166534;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tenders-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
  }

  .tab-btn {
    flex: 1 1 auto;
    min-width: 140px;
    text-align: center;
    justify-content: center;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, .10);
    padding: 14px 12px;
    font-size: 12px;
  }

  .tab-btn.active {
    margin: 5px;
    width: auto;
    flex: 1 1 auto;
    padding: 12px 10px;
  }

  .tab-btn .tab-count {
    display: none;
  }

  .tender-card {
    padding: 18px 16px;
  }

  .tender-card h3 {
    font-size: 15px;
  }

  .tender-meta {
    gap: 12px;
  }

  .panel-header h2 {
    font-size: 22px;
  }

  .btn-download {
    margin-left: 0;
    margin-top: 10px;
  }
}

.our-network-section {
  background-image: url(../../assets/images/ourNetwork.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px;
}

/* ---- Federation Cards ---- */
.federation-card {
  background: #fff;
  border: 1px solid #e8f0e8;
  border-radius: 16px;
  padding: 22px 24px 20px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  transition: transform .2s, box-shadow .2s;
}

.federation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .09);
}

/* Top row: logo + title + badge */
.federation-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

/* State logo */
.federation-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  /* object-fit: cover; */
  border: 2px solid #e8f5e9;
  flex-shrink: 0;
}

/* State name */
.federation-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.3;
  padding-top: 6px;
}

/* Registered FPO badge */
.fpo-badge {
  display: inline-flex;
  align-items: center;
  background: #f0fdf4;
  color: #16a34a;
  border: 1.5px solid #86efac;
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}

/* Org name row */
.federation-org {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 10px;
  line-height: 1.5;
}

.federation-org i {
  color: #2e7d32;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Description */
.federation-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  padding-left: 22px;
  /* aligns under org text after icon */
}

/* Mobile */
@media (max-width: 575px) {
  .federation-card-top {
    flex-wrap: wrap;
  }

  .federation-title {
    font-size: 17px;
  }

  .federation-logo {
    width: 52px;
    height: 52px;
  }

  .fpo-badge {
    font-size: 11.5px;
  }
}

.contact-details-section {
  --tw-gradient-from: #0d9488;
  --tw-gradient-to: #14b8a6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  border-radius: 15px;
}

.contact-details-content img {
  border-radius: 15px;
}

.complaints-section {
  background-image: url(../../assets/images/complaints.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px;
}

.sidebar-blue {
  background: var(--primary);
}

/* =============================================
   SOLUTIONS SECTION
============================================= */
.solutions-section {
  background: #fff;
}

.solutions-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.solutions-subtext {
  font-size: 15px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Card Base ---- */
.solution-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e8f0e8;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
  transition: transform .22s, box-shadow .22s;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .10);
}

/* Card backgrounds per theme */
.solution-card--green {
  background: #f4fbf4;
}

.solution-card--blue {
  background: #f0f6ff;
}

.solution-card--yellow {
  background: #fffbf0;
}

/* ---- Image ---- */
.solution-card-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  flex-shrink: 0;
}

.solution-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.solution-card:hover .solution-card-img img {
  transform: scale(1.04);
}

/* ---- Body ---- */
.solution-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ---- Badge ---- */
.solution-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  width: fit-content;
  font-family: 'Poppins', sans-serif;
}

.badge--green {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #86efac;
}

.badge--blue {
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #93c5fd;
}

.badge--yellow {
  background: #fef9c3;
  color: #a16207;
  border: 1px solid #fde047;
}

/* ---- Title ---- */
.solution-title {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
  line-height: 1.2;
}

/* ---- Tagline ---- */
.solution-tagline {
  font-size: 13.5px;
  color: #555;
  font-weight: 500;
  margin-bottom: 12px;
}

/* ---- Description ---- */
.solution-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---- Key Features ---- */
.solution-features-label {
  font-size: 14px;
  margin-bottom: 8px;
  color: #222;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.solution-features li {
  font-size: 14px;
  color: #444;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}

.solution-features li::before {
  content: '\f105';
  /* fa-angle-right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 13px;
  color: #888;
  flex-shrink: 0;
}

/* ---- Explore Button ---- */
.solution-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .18s, transform .18s;
  width: fit-content;
  margin-top: auto;
}

.solution-btn:hover {
  opacity: .88;
  transform: translateX(2px);
  color: #fff;
}

.btn--green {
  background: #2e7d32;
  color: #fff;
}

.btn--blue {
  background: #1565c0;
  color: #fff;
}

.btn--yellow {
  background: #d97706;
  color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .solutions-heading {
    font-size: 26px;
  }

  .solution-card-img {
    height: 200px;
  }

  .solution-title {
    font-size: 22px;
  }

  .solution-card-body {
    padding: 18px 18px 22px;
  }
}

.membership-plan-section {
  background-image: url(../../assets/images/membership-plans.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px;
}

.plan-farmer-image {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  margin-bottom: 20px;
}

.lp-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.lp-top-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #F9C21E;
  color: #6b4c00;
  font-size: 13px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  padding: 7px 20px;
  border-radius: 50px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(249, 194, 30, 0.35);
  z-index: 10;
}

.lp-top-badge .lp-bolt {
  color: #e05c00;
  font-size: 15px;
}

.lp-card {
  background: #fff;
  border: 2.5px solid #2CC4A8 !important;
  border-radius: 22px !important;
  box-shadow: 0 8px 40px rgba(44, 196, 168, 0.13);
  animation: lp-fadeUp 0.5s ease both;
  font-family: 'Nunito', sans-serif;
}

@keyframes lp-fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-plan-title {
  font-size: 28px;
  font-weight: 900;
  color: #2CC4A8;
  letter-spacing: -0.5px;
  margin: 0;
}

.lp-recommended-badge {
  background: #2CC4A8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  padding: 5px 14px;
  border-radius: 50px;
}

.lp-price-box {
  background: linear-gradient(135deg, #2CC4A8 0%, #1A9E87 100%);
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.lp-price-box::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.lp-price-box::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.lp-currency {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.lp-amount {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.lp-period {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.lp-price-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.lp-popular-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F9C21E;
  border: none;
  color: #6b4c00;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(249, 194, 30, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  z-index: 1;
}

.lp-popular-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 194, 30, 0.5);
  color: #6b4c00;
}

.lp-benefits-icon-box {
  width: 30px;
  height: 30px;
  background: #e1f8f3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.lp-benefits-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.lp-benefit-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 600;
  color: #333;
}

.lp-check-circle {
  width: 22px;
  height: 22px;
  background: #2CC4A8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-check-circle svg {
  width: 12px;
  height: 12px;
}

.lp-register-btn {
  width: 100%;
  background: #F9C21E;
  border: none;
  color: #4a3200;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 900;
  padding: 17px;
  border-radius: 14px;
  cursor: pointer;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 20px rgba(249, 194, 30, 0.4);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.lp-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 194, 30, 0.5);
  background: #f7b800;
}

.lp-register-btn:active {
  transform: scale(0.98);
}

.lp-divider {
  border-top: 1px solid #f0f0f0;
}

.kb-page-bg {
  background: #f5f7fa;
  min-height: 100vh;
  font-family: 'Nunito', sans-serif;
}

.kb-section-title {
  font-size: 20px;
  font-weight: 900;
  color: #1a1a2e;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.kb-title-bar {
  border-left: 4px solid #2563eb;
  padding-left: 12px;
  margin-bottom: 28px;
}

.kb-card {
  background: #fff;
  border: 1.5px solid #e8edf5;
  border-radius: 14px;
  padding: 24px 22px;
  height: 100%;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
  cursor: default;
  font-family: 'Nunito', sans-serif;
}

.kb-card:hover {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.10);
  border-color: #c7d7f8;
  transform: translateY(-3px);
}

.kb-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.kb-icon-wrap svg {
  width: 26px;
  height: 26px;
}

/* Icon background colors */
.kb-icon-teal {
  background: #19b8a6;
}

.kb-icon-green {
  background: #22c55e;
}

.kb-icon-purple {
  background: #a855f7;
}

.kb-icon-blue {
  background: #3b82f6;
}

.kb-icon-orange {
  background: #f97316;
}

.kb-icon-indigo {
  background: #6366f1;
}

.kb-icon-cyan {
  background: #06b6d4;
}

.kb-icon-pink {
  background: #ec4899;
}

.kb-icon-amber {
  background: #f59e0b;
}

.kb-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.35;
}

.kb-card-desc {
  font-size: 13.5px;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

.join-page {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.ai-body {
  font-family: 'Nunito', sans-serif;
  background: #f5f7fa;
  color: #1a1a2e;
}

/* ── HERO ── */
.ai-hero {
  background: #fff;
  padding: 60px 0 40px;
}

.ai-hero-badge {
  display: inline-block;
  background: #e6f4ec;
  color: #1a7a45;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid #b6dfc6;
}

.ai-hero-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  margin-bottom: 14px;
}

.ai-hero-subtitle {
  font-size: 17px;
  font-weight: 700;
  color: #1a7a45;
  margin-bottom: 18px;
  line-height: 1.4;
}

.ai-hero-desc {
  font-size: 14.5px;
  color: #555;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}

.ai-btn-primary {
  background: #1a7a45;
  color: #fff;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 26px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.ai-btn-primary:hover {
  background: #15633a;
  transform: translateY(-1px);
  color: #fff;
}

.ai-btn-outline {
  background: transparent;
  color: #1a1a2e;
  border: 1.5px solid #bbb;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  text-decoration: none;
  display: inline-block;
}

.ai-btn-outline:hover {
  border-color: #1a7a45;
  background: #f0faf4;
  color: #1a7a45;
}

.ai-hero-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  max-height: 500px;
}

/* Stats */
.ai-stats {
  margin-top: 36px;
}

.ai-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #1a7a45;
}

.ai-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  margin-top: 2px;
}

/* ── FOCUS SECTION ── */
.ai-focus {
  background: #f5f7fa;
  padding: 70px 0 50px;
}

.ai-section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: #111;
  margin-bottom: 12px;
}

.ai-section-sub {
  font-size: 15px;
  color: #777;
  font-weight: 600;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.ai-focus-card {
  background: #fff;
  border: 1.5px solid #e8edf5;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.ai-focus-card:hover {
  box-shadow: 0 8px 32px rgba(26, 122, 69, 0.10);
  transform: translateY(-3px);
}

.ai-focus-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ai-focus-icon svg {
  width: 24px;
  height: 24px;
}

.ai-icon-green {
  background: #e6f4ec;
}

.ai-icon-blue {
  background: #e6f0fb;
}

.ai-icon-teal {
  background: #e1f8f3;
}

.ai-focus-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.ai-focus-card-desc {
  font-size: 13.5px;
  color: #666;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

/* ── SOLUTIONS SECTION ── */
.ai-solutions {
  background: #fff;
  padding: 70px 0 50px;
}

.ai-sol-card {
  background: #f5f7fa;
  border: 1.5px solid #e8edf5;
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.ai-sol-card:hover {
  box-shadow: 0 6px 24px rgba(26, 122, 69, 0.09);
  transform: translateY(-2px);
}

.ai-sol-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1a7a45;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-sol-icon svg {
  width: 22px;
  height: 22px;
}

.ai-sol-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #111;
  margin-bottom: 4px;
}

.ai-sol-desc {
  font-size: 13px;
  color: #777;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

/* ── DELIVERY SECTION ── */
.ai-delivery {
  background: #f5f7fa;
  padding: 70px 0;
}

.ai-delivery-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  max-height: 420px;
}

.ai-delivery-title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
}

.ai-delivery-desc {
  font-size: 14.5px;
  color: #555;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 28px;
}

.ai-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.ai-check-circle {
  width: 28px;
  height: 28px;
  background: #1a7a45;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-check-circle svg {
  width: 14px;
  height: 14px;
}

.ai-check-label {
  font-size: 15px;
  font-weight: 800;
  color: #111;
  margin-bottom: 3px;
}

.ai-check-desc {
  font-size: 13.5px;
  color: #777;
  font-weight: 600;
  margin: 0;
}

/* ── CTA SECTION ── */
.ai-cta {
  background: linear-gradient(135deg, #1a3a5c 0%, #1a7a45 100%);
  border-radius: 24px;
  padding: 70px 30px;
  text-align: center;
  margin: 0 16px 60px;
}

.ai-cta-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}

.ai-cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.ai-btn-white {
  background: #fff;
  color: #1a3a5c;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 13px 34px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  display: inline-block;
}

.ai-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: #1a3a5c;
}

/* placeholder image using SVG data URI */
.ai-img-placeholder {
  width: 100%;
  border-radius: 18px;
  background: linear-gradient(135deg, #c8e6d4 0%, #a0d4b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: #1a7a45;
  font-size: 14px;
  font-weight: 700;
}

.ch-body {
  font-family: 'Nunito', sans-serif;
  background: #eaf4fb;
  color: #1a1a2e;
}

/* ── CHAIRMAN CARD ── */
.ch-card-wrap {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(30, 100, 200, 0.08);
  overflow: hidden;
  padding: 40px;
}

.ch-photo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch-photo {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #c8d8f0, #a0b8dc);
  display: block;
}

.ch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef4fe;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid #c7d9f8;
  margin-bottom: 14px;
}

.ch-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.ch-title .ch-title-about {
  color: #1a1a2e;
}

.ch-title .ch-title-highlight {
  color: #2563eb;
}

.ch-para {
  font-size: 16px;
  color: #555;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Stats row */
.ch-stats-row {
  border-top: 1px solid #eef2f8;
  margin-top: 32px;
  padding-top: 0;
}

.ch-stat-box {
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  height: 100%;
}

.ch-stat-blue {
  background: #eef4fe;
  border: 1.5px solid #c7d9f8;
}

.ch-stat-green {
  background: #e6f9f1;
  border: 1.5px solid #a3e4c6;
}

.ch-stat-orange {
  background: #fff5e6;
  border: 1.5px solid #ffd699;
}

.ch-stat-icon {
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
}

.ch-stat-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.ch-stat-num-blue {
  color: #2563eb;
}

.ch-stat-num-green {
  color: #16a34a;
}

.ch-stat-num-orange {
  color: #ea580c;
}

.ch-stat-label {
  font-size: 13px;
  font-weight: 700;
  color: #888;
}

/* ── GALLERY TABS ── */
.ch-tab-wrap {
  display: inline-flex;
  background: #fff;
  border-radius: 50px;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.ch-tab-btn {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 9px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ch-tab-btn.ch-active {
  background: #2563eb;
  color: #fff;
}

.ch-tab-btn.ch-inactive {
  background: transparent;
  color: #555;
}

.ch-tab-btn.ch-inactive:hover {
  background: #f0f4ff;
  color: #2563eb;
}

.chairmen-box-img {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  border-radius: 1rem;
}

.mt-7 {
  margin-top: 7rem;
}
select {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
}
.form-bg-light{
  border: 0.5px solid #ddd;
  margin: 25px 6px;
  border-radius: 10px;
  padding: 17px;
  background: #fafafa;
}
.form-bg-light h5{
  font-weight: bold;
  border-bottom: 0.5px solid #d3d3d3;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.bg-gradient-to-r-book-demo{
  background: linear-gradient(to right, #2563eb, #22c55e);
}
.bg-gradient-to-r-call-experts{
  background: linear-gradient(to right, #facc15, #22c55e);
}