/* ========================================
   FPC Federation — Design System & Styles
   ======================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary-green: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #4caf50;
  --secondary-green: #388e3c;
  --accent-gold: #f9a825;
  --accent-gold-light: #fdd835;
  --bg-cream: #f8f6f0;
  --bg-light-green: #f0f7f0;
  --bg-white: #ffffff;
  --text-dark: #1a2e1a;
  --text-body: #2d3b2d;
  --text-muted: #5a6e5a;
  --text-light: #7a8e7a;
  --border-light: #e0e8e0;
  --border-green: #c8dcc8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 2px 12px rgba(46, 125, 50, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50px;
  --transition: all 0.3s ease;
  --font-family: 'Noto Sans Devanagari', 'Segoe UI', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-green);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn-primary-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--primary-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary-green:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
  color: #fff;
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline-green:hover {
  background: var(--primary-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: var(--primary-green);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-logo .logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

.header-logo .logo-icon.logo-icon-img {
  background: transparent;
  width: 64px;
  height: 64px;
  border-radius: 0;
  overflow: hidden;
}

.header-logo .logo-icon.logo-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-logo .logo-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-green);
}

.header-logo .logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  padding: 8px 13px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--primary-green);
  background: var(--bg-light-green);
}

/* ── English mode: shrink nav to fit longer English labels ── */
[lang="en"] .header-nav {
  gap: 2px;
}
[lang="en"] .header-nav a {
  padding: 7px 8px;
  font-size: 0.78rem;
  font-weight: 600;
}
[lang="en"] .logo-title {
  font-size: 1.05rem;
}
[lang="en"] .logo-subtitle {
  font-size: 0.68rem;
}
[lang="en"] .logo-icon.logo-icon-img {
  width: 52px;
  height: 52px;
}

/* Header right side */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lang-switch a,
.lang-btn {
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.lang-switch a.active,
.lang-btn.active {
  color: var(--primary-green);
  font-weight: 600;
}

.lang-switch a:hover,
.lang-btn:hover {
  color: var(--primary-green);
}

.lang-switch .divider {
  color: var(--border-light);
}

.btn-b2b {
  padding: 8px 20px;
  background: var(--primary-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-b2b:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 999;
  padding: 80px 24px 32px;
  overflow-y: auto;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  margin-bottom: 2px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--bg-light-green);
  color: var(--primary-green);
}

.mobile-menu .mobile-lang {
  display: flex;
  gap: 8px;
  padding: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border-light);
}

.mobile-menu .mobile-b2b {
  display: block;
  margin: 16px;
  text-align: center;
  padding: 12px 24px;
  background: var(--primary-green);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  background: linear-gradient(90deg, rgba(248, 250, 246, 0.88) 0%, rgba(245, 249, 240, 0.65) 40%, rgba(245, 249, 240, 0.22) 65%, rgba(245, 249, 240, 0.05) 100%),
    url('images/home_hero.png') right center / cover no-repeat;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  padding: 20px 0 60px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-content h1 .highlight {
  color: var(--primary-green);
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}



/* ========================================
   STATISTICS BAR
   ======================================== */
.stats-section {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  padding: 0 24px;
  margin-bottom: 60px;
}

.stats-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 24px;
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 12px 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-light);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--primary-green);
  font-size: 1.2rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ========================================
   QUICK SERVICES
   ======================================== */
.quick-services {
  padding: 20px 0 60px;
  background: var(--bg-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.service-card .service-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--bg-light-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.2rem;
}

.service-card .service-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.service-card .service-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-card .service-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-green);
  font-size: 0.9rem;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-arrow {
  opacity: 1;
  right: 12px;
}

/* ========================================
   WHAT WE DO
   ======================================== */
.what-we-do {
  padding: 60px 0;
  background: var(--bg-light-green);
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.wwd-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.wwd-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.wwd-card-header {
  padding: 24px 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wwd-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.wwd-icon.green {
  background: var(--bg-light-green);
  color: var(--primary-green);
}

.wwd-icon.gold {
  background: #fff8e1;
  color: var(--accent-gold);
}

.wwd-card-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.wwd-card-body p {
  padding: 0 20px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.wwd-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 0.85rem;
  overflow: hidden;
}

.wwd-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   FPC NETWORK
   ======================================== */
.fpc-network {
  padding: 80px 0;
  background: var(--bg-cream);
}

.fpc-network-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.fpc-network-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.fpc-network-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.fpc-map-area {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.map-placeholder {
  flex: 1;
  background: var(--bg-light-green);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder .map-svg {
  width: 90%;
  height: 90%;
  opacity: 0.7;
}

.map-placeholder .map-pins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-pin {
  position: absolute;
  color: var(--primary-green);
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.map-pin:nth-child(1) {
  top: 25%;
  left: 30%;
  animation-delay: 0s;
}

.map-pin:nth-child(2) {
  top: 35%;
  left: 55%;
  animation-delay: 0.3s;
}

.map-pin:nth-child(3) {
  top: 45%;
  left: 35%;
  animation-delay: 0.6s;
}

.map-pin:nth-child(4) {
  top: 30%;
  left: 65%;
  animation-delay: 0.9s;
}

.map-pin:nth-child(5) {
  top: 55%;
  left: 50%;
  animation-delay: 1.2s;
}

.map-pin:nth-child(6) {
  top: 50%;
  left: 25%;
  animation-delay: 0.4s;
}

.map-pin:nth-child(7) {
  top: 40%;
  left: 45%;
  animation-delay: 0.7s;
}

.map-pin:nth-child(8) {
  top: 60%;
  left: 40%;
  animation-delay: 1s;
}

.district-stats {
  flex-shrink: 0;
}

.district-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  min-width: 200px;
  gap: 24px;
}

.district-item .district-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
}

.district-item .district-count {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-green);
  white-space: nowrap;
}

.district-more {
  padding-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========================================
   PRODUCTS
   ======================================== */
.products-section {
  padding: 60px 0;
  background: var(--bg-white);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  margin-bottom: 36px;
}

.products-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.products-header a {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
}

.products-header a:hover {
  text-decoration: underline;
}

.products-grid {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) var(--border-light);
  padding-bottom: 8px;
}

.products-grid::-webkit-scrollbar {
  height: 6px;
}

.products-grid::-webkit-scrollbar-track {
  background: var(--border-light);
  border-radius: 3px;
}

.products-grid::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 3px;
}

.product-card {
  min-width: 170px;
  flex: 1;
  background: var(--bg-light-green);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  scroll-snap-align: start;
  border: 1px solid var(--border-green);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c8e6c9, #81c784);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 0.85rem;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.product-card-info .product-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card-info .product-label .product-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
}

.product-card-info .product-label span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.product-card-info .product-arrow {
  color: var(--primary-green);
  font-size: 0.85rem;
}

/* ========================================
   B2B BANNER
   ======================================== */
.b2b-banner {
  background: linear-gradient(135deg, rgba(27, 94, 32, 0.92), rgba(46, 125, 50, 0.88));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.b2b-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('') center/cover;
  opacity: 0.15;
  z-index: 0;
}

.b2b-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.b2b-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.b2b-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.7;
}

.b2b-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.b2b-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(4px);
}

.b2b-benefit .benefit-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.b2b-benefit span {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ========================================
   NEWS, EVENTS & DOWNLOADS
   ======================================== */
.news-section {
  padding: 70px 0;
  background: var(--bg-cream);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-column {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
}

.news-column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--bg-light-green);
}

.news-column-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.news-column-header a {
  font-size: 0.82rem;
  color: var(--primary-green);
  font-weight: 600;
}

.news-column-header a:hover {
  text-decoration: underline;
}

/* News items */
.news-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}

.news-item:last-child {
  border-bottom: none;
}

.news-thumb {
  width: 72px;
  height: 56px;
  min-width: 72px;
  background: var(--bg-light-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.2rem;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.5;
}

.news-info .news-date {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Events */
.event-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}

.event-item:last-child {
  border-bottom: none;
}

.event-date-box {
  width: 54px;
  min-width: 54px;
  background: var(--bg-light-green);
  border-radius: var(--radius-sm);
  text-align: center;
  padding: 8px 6px;
}

.event-date-box .day {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.2;
}

.event-date-box .month {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.event-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.5;
}

.event-info .event-location {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Downloads */
.download-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  justify-content: space-between;
}

.download-item:last-child {
  border-bottom: none;
}

.download-left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.download-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #fce4ec;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e53935;
  font-size: 1rem;
}

.download-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.download-info .download-meta {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

.download-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: var(--bg-light-green);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.download-btn:hover {
  background: var(--primary-green);
  color: #fff;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--bg-light-green);
  padding: 60px 0 0;
  border-top: 1px solid var(--border-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary-green);
  margin-top: 8px;
  border-radius: 2px;
}

/* Contact column */
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item .contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
}

.footer-contact-item p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

.footer-contact-item a {
  color: var(--primary-green);
  font-weight: 500;
}

.footer-contact-item a:hover {
  text-decoration: underline;
}

/* Social */
.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-social-icons a {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-icons a:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-col p.footer-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--border-green);
  background: #fff;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  outline: none;
  font-family: var(--font-family);
  font-size: 0.85rem;
  background: transparent;
  min-width: 0;
}

.newsletter-form button {
  padding: 10px 18px;
  background: var(--primary-green);
  color: #fff;
  border: none;
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

/* Quick links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 500;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* WhatsApp CTA */
.whatsapp-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.whatsapp-card .wa-icon {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: #fff;
}

.whatsapp-card p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.5;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  color: #fff;
}

/* Footer bottom */
.footer-bottom {
  margin-top: 40px;
  background: var(--primary-dark);
  padding: 16px 24px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* 1024px and below */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wwd-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fpc-network-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fpc-map-area {
    justify-content: center;
  }

  .b2b-inner {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px and below */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content {
    padding: 20px 0 0;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    justify-content: center;
    order: 2;
  }

  .hero-image .hero-img-placeholder {
    max-width: 400px;
    border-radius: var(--radius-xl);
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-item::after {
    display: none;
  }

  .section-heading h2 {
    font-size: 1.6rem;
  }

  .fpc-map-area {
    flex-direction: column;
    align-items: center;
  }

  .map-placeholder {
    max-width: 260px;
  }

  .products-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .b2b-content h2 {
    font-size: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* 480px and below */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 0 16px;
    height: 64px;
  }

  .header-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .header-logo .logo-title {
    font-size: 1rem;
  }

  .header-logo .logo-subtitle {
    font-size: 0.65rem;
  }

  .lang-switch,
  .header-right .btn-b2b {
    display: none;
  }

  .hero-section {
    padding: 32px 0 0;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-green,
  .btn-outline-green {
    padding: 11px 22px;
    font-size: 0.88rem;
  }

  .stats-section {
    margin-top: -24px;
    padding: 0 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-width: 150px;
  }

  .b2b-inner {
    padding: 0 16px;
  }

  .b2b-content h2 {
    font-size: 1.3rem;
  }

  .news-grid {
    padding: 0 16px;
  }

  .footer-grid {
    padding: 0 16px;
  }
}

/* ---------- Utility ---------- */
.text-green {
  color: var(--primary-green);
}

.text-gold {
  color: var(--accent-gold);
}

.bg-green {
  background-color: var(--primary-green);
}

.bg-light {
  background-color: var(--bg-light-green);
}

.fw-700 {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}


/* ========================================
   ABOUT PAGE — Scoped under .about-page
   ======================================== */

/* ---------- Breadcrumb ---------- */
.about-page .about-breadcrumb {
  background: #f4f7f2;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.about-page .about-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.about-page .about-breadcrumb a {
  color: var(--text-muted);
  font-weight: 500;
}

.about-page .about-breadcrumb a:hover {
  color: var(--primary-green);
}

.about-page .about-breadcrumb .breadcrumb-sep {
  color: var(--text-light);
  font-size: 0.65rem;
}

.about-page .about-breadcrumb .breadcrumb-current {
  color: var(--primary-green);
  font-weight: 600;
}

/* ---------- About Hero ---------- */
.about-page .about-hero {
  background: linear-gradient(90deg, rgba(248, 250, 246, 0.92) 0%, rgba(245, 249, 240, 0.72) 38%, rgba(245, 249, 240, 0.28) 62%, rgba(245, 249, 240, 0.08) 100%),
              url('images/about_hero.png') right center / cover no-repeat;
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.about-page .about-hero-inner {
  display: block;
  max-width: 560px;
}

.about-page .about-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.about-page .about-hero-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 20px;
  line-height: 1.5;
}

.about-page .about-hero-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 520px;
}

/* ---------- Section Title ---------- */
.about-page .about-section-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  position: relative;
}

.about-page .about-section-title.center {
  text-align: center;
  margin-bottom: 32px;
}

.about-page .about-section-title.center::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-green);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ---------- Vision & Mission ---------- */
.about-page .about-vm {
  padding: 0 0 50px;
  margin-top: -36px;
  position: relative;
  z-index: 10;
}

.about-page .about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
}

.about-page .about-vm-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  border-radius: var(--radius-md);
}

.about-page .about-vm-vision {
  background: #eef7ea;
}

.about-page .about-vm-mission {
  background: #fff9ec;
}

.about-page .about-vm-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.about-page .about-vm-icon.green {
  background: var(--primary-green);
  color: #fff;
}

.about-page .about-vm-icon.gold {
  background: #E6A500;
  color: #fff;
}

.about-page .about-vm-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.about-page .about-vm-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- History / Timeline ---------- */
.about-page .about-history {
  padding: 50px 0 60px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.about-page .about-history-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}

.about-page .about-history-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-page .about-timeline {
  position: relative;
  padding-top: 16px;
}

.about-page .timeline-track {
  position: absolute;
  top: 42px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--border-green);
  border-radius: 2px;
}

.about-page .timeline-track::before {
  content: '';
  position: absolute;
  right: -8px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5.5px solid transparent;
  border-bottom: 5.5px solid transparent;
  border-left: 10px solid var(--border-green);
}

.about-page .timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.about-page .timeline-item {
  text-align: center;
  flex: 1;
  max-width: 160px;
}

.about-page .timeline-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.15rem;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-page .timeline-icon.green {
  background: var(--primary-green);
  color: #fff;
}

.about-page .timeline-icon.gold {
  background: #E6A500;
  color: #fff;
}

.about-page .timeline-year {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.about-page .timeline-year-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 6px;
}

.about-page .timeline-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Leadership ---------- */
.about-page .about-leadership {
  padding: 60px 0;
  background: var(--bg-cream);
}

.about-page .leadership-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.about-page .leadership-tab {
  padding: 10px 24px;
  border: 2px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-body);
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.about-page .leadership-tab.active {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
}

.about-page .leadership-tab:hover:not(.active) {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.about-page .leadership-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-page .slider-arrow {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 2px solid var(--border-light);
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-body);
  transition: var(--transition);
  z-index: 2;
}

.about-page .slider-arrow:hover {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
}

.about-page .leadership-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding: 8px 0;
}

.about-page .leadership-cards::-webkit-scrollbar {
  display: none;
}

.about-page .leader-card {
  min-width: 220px;
  max-width: 235px;
  flex-shrink: 0;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px 18px 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  border-bottom: 3px solid var(--primary-green);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  scroll-snap-align: start;
}

.about-page .leader-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

/* Featured (Chairperson) card */
.about-page .leader-card-featured {
  border-bottom: 3px solid #d4a017;
  background: linear-gradient(135deg, #fffdf0 0%, #fff 100%);
}
.about-page .leader-card-featured .leader-photo {
  border: 3px solid #d4a017;
  width: 120px;
  height: 120px;
}

.about-page .leader-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 14px;
  overflow: hidden;
  background: var(--bg-light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border-green);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.about-page .leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* Face-centered portraits — override default top bias */
.about-page .leader-photo img.leader-face-fit {
  object-fit: cover;
  object-position: center 45% !important;
  width: 100%;
  height: 100%;
}

.about-page .leader-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 6px;
}

.about-page .leader-position {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary-green);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Position badge colours */
.about-page .leader-pos-chair {
  background: linear-gradient(90deg, #b8860b, #d4a017);
}
.about-page .leader-pos-advisor {
  background: #4a6fa5;
}
.about-page .leader-pos-inspector {
  background: #6a4c93;
}
.about-page .leader-pos-legal {
  background: #8b3a3a;
}

.about-page .leader-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}

.about-page .leader-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 6px;
}

.about-page .leader-location i {
  color: var(--primary-green);
  margin-right: 3px;
}


/* ---------- Certifications ---------- */
.about-page .about-certifications {
  padding: 60px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.about-page .cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.about-page .cert-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 18px 20px;
  text-align: center;
  transition: var(--transition);
}

.about-page .cert-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.about-page .cert-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--bg-light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-green);
}

.about-page .cert-logo.fssai {
  background: #fff3e0;
  color: #e65100;
}

.about-page .cert-logo.apeda {
  background: #e8f5e9;
  color: #2e7d32;
}

.about-page .cert-logo.nabard {
  background: #e3f2fd;
  color: #1565c0;
}

.about-page .cert-logo.pgs {
  background: #f1f8e9;
  color: #558b2f;
}

.about-page .cert-logo-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.about-page .cert-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.about-page .cert-number {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 8px;
  word-break: break-all;
}

.about-page .cert-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.about-page .cert-link {
  font-size: 0.82rem;
  color: var(--primary-green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.about-page .cert-link:hover {
  text-decoration: underline;
}

/* ---------- Impact ---------- */
.about-page .about-impact {
  padding: 60px 0;
  background: var(--bg-cream);
}

.about-page .about-impact-card {
  background: linear-gradient(135deg, #0B6B35 0%, #075426 60%, #0a3d1e 100%);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.about-page .about-impact-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('') center top / cover no-repeat;
  opacity: 0.08;
}

.about-page .about-impact-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 36px;
}

.about-page .about-impact-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.about-page .impact-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.about-page .impact-icon {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.about-page .impact-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.about-page .impact-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 4px;
}

.about-page .impact-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ---------- CTA ---------- */
.about-page .about-cta {
  padding: 50px 0;
  background: #eef7ea;
  border-top: 1px solid var(--border-green);
}

.about-page .about-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-page .about-cta-inner h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.about-page .about-cta-inner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.about-page .about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================
   ABOUT PAGE — RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .about-page .about-hero-inner {
    gap: 32px;
  }

  .about-page .about-hero-title {
    font-size: 2.2rem;
  }

  .about-page .about-history-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-page .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-page .leader-card {
    min-width: 190px;
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .about-page .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-page .about-hero-title {
    font-size: 2rem;
  }

  .about-page .about-hero-subtitle {
    font-size: 1.1rem;
  }

  .about-page .about-hero-image {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-page .about-vm-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-vm {
    margin-top: -24px;
  }

  .about-page .about-section-title {
    font-size: 1.4rem;
  }

  /* Timeline vertical on mobile */
  .about-page .timeline-track {
    top: 0;
    bottom: 0;
    left: 25px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .about-page .timeline-track::before {
    display: none;
  }

  .about-page .timeline-items {
    flex-direction: column;
    gap: 28px;
    padding-left: 60px;
  }

  .about-page .timeline-item {
    text-align: left;
    max-width: 100%;
    position: relative;
  }

  .about-page .timeline-icon {
    position: absolute;
    left: -58px;
    top: 0;
    margin: 0;
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .about-page .leadership-tabs {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-page .leadership-tab {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .about-page .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page .about-impact-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .about-page .impact-divider {
    display: none;
  }

  .about-page .impact-stat {
    flex: 0 0 45%;
    padding: 12px 0;
  }

  .about-page .about-impact-card {
    padding: 36px 24px;
  }

  .about-page .about-impact-title {
    font-size: 1.3rem;
  }

  .about-page .about-cta-inner h2 {
    font-size: 1.25rem;
  }

  .about-page .slider-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-page .about-hero {
    padding: 36px 0 44px;
  }

  .about-page .about-hero-title {
    font-size: 1.7rem;
  }

  .about-page .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-page .about-hero-desc {
    font-size: 0.9rem;
  }

  .about-page .about-vm-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .about-page .about-section-title {
    font-size: 1.25rem;
  }

  .about-page .cert-grid {
    grid-template-columns: 1fr;
  }

  .about-page .impact-stat {
    flex: 0 0 100%;
  }

  .about-page .impact-number {
    font-size: 1.5rem;
  }

  .about-page .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-page .leader-card {
    min-width: 180px;
  }

  .about-page .leadership-tab {
    padding: 7px 14px;
    font-size: 0.78rem;
  }
}


/* ========================================
   YOJANA & PRAKALP PAGE — .yojana-page
   ======================================== */

/* ---------- Breadcrumb ---------- */
.yojana-page .yojana-breadcrumb {
  background: #f4f7f2;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.yojana-page .yojana-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.yojana-page .yojana-breadcrumb a {
  color: var(--text-muted);
  font-weight: 500;
}

.yojana-page .yojana-breadcrumb a:hover {
  color: #087333;
}

.yojana-page .yojana-bc-sep {
  color: var(--text-light);
  font-size: 0.6rem;
}

.yojana-page .yojana-bc-current {
  color: #087333;
  font-weight: 600;
}

/* ---------- Hero ---------- */
.yojana-page .yojana-hero {
  background: linear-gradient(90deg, rgba(248, 250, 246, 0.92) 0%, rgba(245, 249, 240, 0.72) 38%, rgba(245, 249, 240, 0.28) 62%, rgba(245, 249, 240, 0.08) 100%),
              url('images/yojana_hero.png') right center / cover no-repeat;
  padding: 48px 0 64px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.yojana-page .yojana-hero-inner {
  display: block;
  max-width: 560px;
}

.yojana-page .yojana-hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}

.yojana-page .yojana-hero-content h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 18px;
  line-height: 1.5;
}

.yojana-page .yojana-hero-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 500px;
}


}

/* ---------- Section Shared ---------- */
.yojana-page .yojana-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.yojana-page .yojana-section-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-dark);
}

.yojana-page .yojana-view-all {
  font-size: 0.88rem;
  color: #087333;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.yojana-page .yojana-view-all:hover {
  text-decoration: underline;
}

/* ---------- Categories ---------- */
.yojana-page .yojana-categories {
  padding: 0;
  margin-top: -28px;
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
}

.yojana-page .yojana-cat-grid {
  display: flex;
  align-items: stretch;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.yojana-page .yojana-cat-item {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  cursor: pointer;
  transition: var(--transition);
}

.yojana-page .yojana-cat-item:hover {
  background: #eef7e9;
}

.yojana-page .yojana-cat-divider {
  width: 1px;
  background: var(--border-light);
  align-self: stretch;
  flex-shrink: 0;
}

.yojana-page .yojana-cat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: #eef7e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #087333;
  font-size: 1.15rem;
}

.yojana-page .yojana-cat-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.yojana-page .yojana-cat-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Scheme Cards ---------- */
.yojana-page .yojana-schemes {
  padding: 10px 0 60px;
  background: var(--bg-cream);
}

.yojana-page .yojana-scheme-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.yojana-page .yojana-scheme-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.yojana-page .yojana-scheme-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #087333;
}

.yojana-page .scheme-logo-area {
  margin-bottom: 14px;
}

.yojana-page .scheme-logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yojana-page .scheme-logo-icon.green {
  background: #eef7e9;
  border: 2px solid #c8e6c9;
}

.yojana-page .scheme-logo-icon.gold {
  background: #fff9ec;
  border: 2px solid #ffe0b2;
}

.yojana-page .scheme-logo-icon span {
  font-size: 0.58rem;
  font-weight: 800;
  color: #087333;
  letter-spacing: 0.3px;
}

.yojana-page .scheme-logo-icon.gold span {
  color: #E6A719;
}

.yojana-page .scheme-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.yojana-page .scheme-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.yojana-page .scheme-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.yojana-page .scheme-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.yojana-page .meta-label {
  color: var(--text-muted);
  font-weight: 500;
}

.yojana-page .meta-value {
  font-weight: 700;
  color: var(--text-dark);
}

.yojana-page .status-active {
  color: #087333;
}

.yojana-page .scheme-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid #087333;
  border-radius: var(--radius-full);
  color: #087333;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  justify-content: center;
  transition: var(--transition);
}

.yojana-page .scheme-btn:hover {
  background: #087333;
  color: #fff;
}

/* ---------- Cluster ---------- */
.yojana-page .yojana-cluster {
  padding: 60px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.yojana-page .yojana-cluster-inner {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 32px;
  align-items: flex-start;
}

.yojana-page .cluster-map-container {
  background: #eef7e9;
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yojana-page .cluster-map-svg {
  width: 90%;
  height: 90%;
  opacity: 0.8;
}

.yojana-page .cluster-map-pins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.yojana-page .cluster-map-pins i {
  position: absolute;
  color: #087333;
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

/* Table */
.yojana-page .yojana-cluster-table-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.yojana-page .cluster-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.yojana-page .cluster-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
  font-size: 0.85rem;
}

.yojana-page .cluster-table thead th {
  background: #087333;
  color: #fff;
  padding: 12px 14px;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  font-size: 0.82rem;
}

.yojana-page .cluster-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s ease;
}

.yojana-page .cluster-table tbody tr:nth-child(even) {
  background: #f8faf6;
}

.yojana-page .cluster-table tbody tr:hover {
  background: #eef7e9;
}

.yojana-page .cluster-table tbody td {
  padding: 11px 14px;
  color: var(--text-body);
  font-size: 0.83rem;
  white-space: nowrap;
}

.yojana-page .cluster-table tbody td strong {
  color: var(--text-dark);
}

.yojana-page .cluster-status {
  display: inline-block;
  padding: 3px 10px;
  background: #eef7e9;
  color: #087333;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.yojana-page .cluster-view-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef7e9;
  color: #087333;
  border-radius: 50%;
  font-size: 0.8rem;
  transition: var(--transition);
}

.yojana-page .cluster-view-btn:hover {
  background: #087333;
  color: #fff;
}

/* ---------- Stories ---------- */
.yojana-page .yojana-stories {
  padding: 60px 0;
  background: var(--bg-cream);
}

.yojana-page .yojana-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.yojana-page .yojana-story-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.yojana-page .yojana-story-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.yojana-page .story-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yojana-page .story-thumb.no-img {
  background: linear-gradient(135deg, #d4edda 0%, #a5d6a7 100%);
}

.yojana-page .story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yojana-page .story-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #087333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.yojana-page .yojana-story-card:hover .story-play {
  background: #045522;
  transform: translate(-50%, -50%) scale(1.1);
}

.yojana-page .story-body {
  padding: 18px 16px 16px;
}

.yojana-page .story-quote {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 10px;
  font-style: italic;
}

.yojana-page .story-person {
  font-size: 0.88rem;
  font-weight: 700;
  color: #087333;
  margin-bottom: 2px;
}

.yojana-page .story-org {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- Impact ---------- */
.yojana-page .yojana-impact {
  padding: 50px 0;
  background: var(--bg-white);
}

.yojana-page .yojana-impact-card {
  background: linear-gradient(135deg, #087333 0%, #045522 60%, #033a18 100%);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.yojana-page .yojana-impact-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.yojana-page .yojana-impact-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.yojana-page .yojana-impact-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.yojana-page .yojana-impact-header span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.yojana-page .yojana-impact-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.yojana-page .yi-stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.yojana-page .yi-icon {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.yojana-page .yi-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.yojana-page .yi-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  margin-top: 4px;
}

.yojana-page .yi-divider {
  width: 1px;
  height: 55px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* ---------- Info Grid (Downloads/Updates/Events) ---------- */
.yojana-page .yojana-info {
  padding: 60px 0;
  background: var(--bg-cream);
}

.yojana-page .yojana-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.yojana-page .yojana-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.yojana-page .yojana-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #eef7e9;
  gap: 8px;
}

.yojana-page .yojana-info-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.yojana-page .yojana-info-header a {
  font-size: 0.78rem;
  color: #087333;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.yojana-page .yojana-info-header a:hover {
  text-decoration: underline;
}

/* Download items */
.yojana-page .yojana-dl-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 10px;
}

.yojana-page .yojana-dl-item:last-child {
  border-bottom: none;
}

.yojana-page .yojana-dl-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yojana-page .yojana-dl-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #fce4ec;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e53935;
  font-size: 0.95rem;
}

.yojana-page .yojana-dl-text h4 {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1px;
}

.yojana-page .yojana-dl-text span {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
}

.yojana-page .yojana-dl-btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #eef7e9;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #087333;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
}

.yojana-page .yojana-dl-btn:hover {
  background: #087333;
  color: #fff;
}

/* Update/Event items */
.yojana-page .yojana-update-item {
  display: flex;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}

.yojana-page .yojana-update-item:last-child {
  border-bottom: none;
}

.yojana-page .yojana-date-box {
  width: 50px;
  min-width: 50px;
  background: #eef7e9;
  border-radius: var(--radius-sm);
  text-align: center;
  padding: 7px 6px;
}

.yojana-page .yojana-day {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #087333;
  line-height: 1.2;
}

.yojana-page .yojana-month {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
}

.yojana-page .yojana-update-text h4 {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
  line-height: 1.5;
}

.yojana-page .yojana-update-text span {
  font-size: 0.73rem;
  color: var(--text-light);
  font-weight: 500;
}

.yojana-page .yojana-update-text span i {
  margin-right: 2px;
}


/* =========================================
   YOJANA PAGE — RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .yojana-page .yojana-hero-inner {
    gap: 28px;
  }

  .yojana-page .yojana-hero-content h1 {
    font-size: 2.1rem;
  }

  .yojana-page .yojana-scheme-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .yojana-page .yojana-cluster-inner {
    grid-template-columns: 1fr;
  }

  .yojana-page .cluster-map-container {
    max-width: 320px;
    margin: 0 auto;
  }

  .yojana-page .yojana-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .yojana-page .yojana-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .yojana-page .yojana-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .yojana-page .yojana-hero-content h1 {
    font-size: 1.8rem;
  }

  .yojana-page .yojana-hero-content h2 {
    font-size: 1.05rem;
  }

  .yojana-page .yojana-hero-image {
    max-width: 440px;
    margin: 0 auto;
  }

  /* Categories: 2-col wrap */
  .yojana-page .yojana-cat-grid {
    flex-wrap: wrap;
    border-radius: var(--radius-md);
  }

  .yojana-page .yojana-cat-item {
    flex: 0 0 50%;
    padding: 20px 12px;
  }

  .yojana-page .yojana-cat-divider {
    display: none;
  }

  .yojana-page .yojana-cat-item:nth-child(n+4) {
    border-top: 1px solid var(--border-light);
  }

  .yojana-page .yojana-scheme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .yojana-page .yojana-section-title {
    font-size: 1.3rem;
  }

  .yojana-page .yojana-stories-grid {
    grid-template-columns: 1fr;
  }

  .yojana-page .yojana-impact-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .yojana-page .yi-divider {
    display: none;
  }

  .yojana-page .yi-stat {
    flex: 0 0 45%;
    padding: 10px 0;
  }

  .yojana-page .yojana-impact-card {
    padding: 32px 20px;
  }

  .yojana-page .yojana-impact-header h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .yojana-page .yojana-hero {
    padding: 32px 0 40px;
  }

  .yojana-page .yojana-hero-content h1 {
    font-size: 1.55rem;
  }

  .yojana-page .yojana-hero-content h2 {
    font-size: 0.95rem;
  }

  .yojana-page .yojana-hero-content p {
    font-size: 0.85rem;
  }

  .yojana-page .yojana-categories {
    margin-top: -20px;
    margin-bottom: 36px;
  }

  .yojana-page .yojana-cat-item {
    flex: 0 0 50%;
    padding: 16px 10px;
  }

  .yojana-page .yojana-cat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .yojana-page .yojana-cat-item h4 {
    font-size: 0.82rem;
  }

  .yojana-page .yojana-cat-item p {
    font-size: 0.7rem;
  }

  .yojana-page .yojana-scheme-grid {
    grid-template-columns: 1fr;
  }

  .yojana-page .yi-stat {
    flex: 0 0 100%;
  }

  .yojana-page .yi-number {
    font-size: 1.4rem;
  }

  .yojana-page .yojana-section-title {
    font-size: 1.2rem;
  }

  .yojana-page .yojana-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* ========================================
   SHETMAL & VYAPAR PAGE — .shetmal-page
   ======================================== */

/* ---------- Breadcrumb ---------- */
.shetmal-page .sm-breadcrumb {
  background: #f4f7f2;
  padding: 14px 0;
  border-bottom: 1px solid #dde8dd;
}

.shetmal-page .sm-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.shetmal-page .sm-breadcrumb a {
  color: var(--text-muted);
  font-weight: 500;
}

.shetmal-page .sm-breadcrumb a:hover {
  color: #087333;
}

.shetmal-page .sm-bc-sep {
  color: var(--text-light);
  font-size: 0.6rem;
}

.shetmal-page .sm-bc-current {
  color: #087333;
  font-weight: 600;
}

/* ---------- Hero ---------- */
.shetmal-page .sm-hero {
  background: linear-gradient(90deg, rgba(248, 250, 246, 0.92) 0%, rgba(245, 249, 240, 0.72) 38%, rgba(245, 249, 240, 0.28) 62%, rgba(245, 249, 240, 0.08) 100%),
              url('images/shetmal_hero.png') right center / cover no-repeat;
  padding: 44px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.shetmal-page .sm-hero-inner {
  display: block;
  max-width: 560px;
  padding-bottom: 56px;
}

.shetmal-page .sm-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.shetmal-page .sm-hero-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 14px;
}

.shetmal-page .sm-hero-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 460px;
}



/* Feature strip */
.shetmal-page .sm-features {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
  margin-top: -24px;
  margin-bottom: 0;
}

.shetmal-page .sm-feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
}

.shetmal-page .sm-feature-item i {
  color: #087333;
  font-size: 1.1rem;
}

.shetmal-page .sm-feature-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.shetmal-page .sm-feature-divider {
  width: 1px;
  height: 32px;
  background: #dde8dd;
  flex-shrink: 0;
}

/* ---------- Section Title ---------- */
.shetmal-page .sm-section-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* ---------- Categories ---------- */
.shetmal-page .sm-categories {
  padding: 40px 0 0;
  background: var(--bg-cream);
}

.shetmal-page .sm-cat-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.shetmal-page .sm-cat-scroll::-webkit-scrollbar {
  display: none;
}

.shetmal-page .sm-cat-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.shetmal-page .sm-cat-card {
  min-width: 110px;
  flex-shrink: 0;
  background: #fff;
  border: 1.5px solid #dde8dd;
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.shetmal-page .sm-cat-card:hover,
.shetmal-page .sm-cat-card.active {
  border-color: #087333;
  box-shadow: 0 2px 10px rgba(8, 115, 51, 0.1);
}

.shetmal-page .sm-cat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  background: #eef7e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #087333;
  font-size: 1rem;
}

.shetmal-page .sm-cat-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.shetmal-page .sm-cat-arrow {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #087333;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.shetmal-page .sm-cat-arrow:hover {
  background: #045522;
}

/* ---------- Filters ---------- */
.shetmal-page .sm-products {
  padding: 36px 0 50px;
  background: var(--bg-cream);
}

.shetmal-page .sm-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.shetmal-page .sm-filter-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shetmal-page .sm-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
}

.shetmal-page .sm-select {
  padding: 8px 32px 8px 12px;
  border: 1.5px solid #dde8dd;
  border-radius: 8px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23087333'/%3E%3C/svg%3E") no-repeat right 10px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: var(--font-family);
  font-size: 0.83rem;
  color: var(--text-body);
  cursor: pointer;
  min-width: 130px;
}

.shetmal-page .sm-select:focus {
  border-color: #087333;
  outline: none;
}

/* ---------- Main grid ---------- */
.shetmal-page .sm-main-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: flex-start;
}

/* ---------- Product grid ---------- */
.shetmal-page .sm-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ---------- Product card ---------- */
.shetmal-page .sm-product-card {
  background: #fff;
  border: 1px solid #dde8dd;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.shetmal-page .sm-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(8, 115, 51, 0.1);
  border-color: #087333;
}

.shetmal-page .sm-product-img {
  position: relative;
  height: 125px;
  background: linear-gradient(135deg, #d4edda, #a5d6a7);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shetmal-page .sm-product-img.no-img {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.shetmal-page .sm-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shetmal-page .sm-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 10px;
  background: #087333;
  color: #fff;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
}

.shetmal-page .sm-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e53935;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.shetmal-page .sm-fav:hover {
  background: #fff;
  transform: scale(1.1);
}

.shetmal-page .sm-product-body {
  padding: 12px 12px 14px;
}

.shetmal-page .sm-product-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #087333;
  margin-bottom: 6px;
}

.shetmal-page .sm-product-meta p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1px;
}

.shetmal-page .sm-product-meta p strong {
  color: var(--text-body);
  font-weight: 600;
}

.shetmal-page .sm-product-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #087333;
  margin: 10px 0;
}

.shetmal-page .sm-enquiry-btn {
  display: block;
  width: 100%;
  padding: 8px;
  background: #087333;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.shetmal-page .sm-enquiry-btn:hover {
  background: #045522;
  color: #fff;
}

/* ---------- B2B Sidebar ---------- */
.shetmal-page .sm-sidebar {
  position: sticky;
  top: 88px;
}

.shetmal-page .sm-b2b-form-card {
  background: #f5faf2;
  border: 1px solid #dde8dd;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.shetmal-page .sm-b2b-header {
  background: #087333;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.shetmal-page .sm-b2b-header i {
  font-size: 1.2rem;
}

.shetmal-page .sm-b2b-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.shetmal-page .sm-b2b-desc {
  padding: 14px 18px 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.shetmal-page .sm-b2b-form {
  padding: 14px 18px 18px;
}

.shetmal-page .sm-field {
  margin-bottom: 10px;
}

.shetmal-page .sm-field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.shetmal-page .sm-field input,
.shetmal-page .sm-field select {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #dde8dd;
  border-radius: 6px;
  font-family: var(--font-family);
  font-size: 0.8rem;
  color: var(--text-body);
  background: #fff;
  transition: border-color 0.2s ease;
}

.shetmal-page .sm-field input:focus,
.shetmal-page .sm-field select:focus {
  border-color: #087333;
  outline: none;
}

.shetmal-page .sm-field input::placeholder {
  color: var(--text-light);
}

/* textarea — matches input/select style */
.shetmal-page .sm-field textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #dde8dd;
  border-radius: 6px;
  font-family: var(--font-family);
  font-size: 0.8rem;
  color: var(--text-body);
  background: #fff;
  transition: border-color 0.2s ease;
  resize: vertical;
  min-height: 90px;
}

.shetmal-page .sm-field textarea:focus {
  border-color: #087333;
  outline: none;
}

.shetmal-page .sm-field textarea::placeholder {
  color: var(--text-light);
}

/* full-width field spanning both grid columns */
.shetmal-page .sm-field-full {
  grid-column: 1 / -1;
}

.shetmal-page .sm-b2b-submit {
  width: 100%;
  padding: 10px;
  background: #087333;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.shetmal-page .sm-b2b-submit:hover {
  background: #045522;
}

/* WhatsApp */
.shetmal-page .sm-wa-card {
  margin-top: 14px;
  background: #eef7e9;
  border: 1px solid #dde8dd;
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.shetmal-page .sm-wa-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.shetmal-page .sm-wa-top i {
  font-size: 1.3rem;
  color: #25D366;
}

.shetmal-page .sm-wa-top span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.shetmal-page .sm-wa-card p {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.5;
}

.shetmal-page .sm-wa-card p strong {
  color: #087333;
}

/* View More */
.shetmal-page .sm-view-more {
  text-align: center;
  margin-top: 28px;
}

.shetmal-page .sm-view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: #fff;
  color: #087333;
  border: 1.5px solid #087333;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.shetmal-page .sm-view-more-btn:hover {
  background: #087333;
  color: #fff;
}

/* ---------- Services Section ---------- */
.shetmal-page .sm-services {
  padding: 50px 0 60px;
  background: #fff;
}

.shetmal-page .sm-services-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Agri inputs */
.shetmal-page .sm-agri-card {
  background: #f5faf2;
  border: 1px solid #dde8dd;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.shetmal-page .sm-agri-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.shetmal-page .sm-agri-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.shetmal-page .sm-agri-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.shetmal-page .sm-agri-sep {
  width: 1px;
  height: 70px;
  background: #dde8dd;
  flex-shrink: 0;
  align-self: center;
}

.shetmal-page .sm-agri-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  background: #eef7e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #087333;
  font-size: 1.05rem;
}

.shetmal-page .sm-agri-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.shetmal-page .sm-agri-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.shetmal-page .sm-agri-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 9px 22px;
  border: 1.5px solid #087333;
  border-radius: var(--radius-full);
  color: #087333;
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition);
}

.shetmal-page .sm-agri-link:hover {
  background: #087333;
  color: #fff;
}

/* Logistics */
.shetmal-page .sm-logistics-card {
  background: #f5faf2;
  border: 1px solid #dde8dd;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 24px;
  align-items: center;
}

.shetmal-page .sm-logistics-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.shetmal-page .sm-logistics-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.shetmal-page .sm-log-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
}

.shetmal-page .sm-log-feat i {
  color: #087333;
  font-size: 0.9rem;
}

.shetmal-page .sm-log-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: #087333;
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition);
}

.shetmal-page .sm-log-btn:hover {
  background: #045522;
  color: #fff;
}

.shetmal-page .sm-logistics-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shetmal-page .sm-logistics-img.no-img {
  background: linear-gradient(135deg, #d4edda, #c8e6c9);
}

.shetmal-page .sm-logistics-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Newsletter ---------- */
.shetmal-page .sm-newsletter {
  padding: 0 0 0;
  background: var(--bg-cream);
}

.shetmal-page .sm-newsletter-inner {
  background: #087333;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: -20px;
  position: relative;
  z-index: 5;
}

.shetmal-page .sm-newsletter-text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.shetmal-page .sm-newsletter-text i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.shetmal-page .sm-newsletter-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-weight: 500;
}

.shetmal-page .sm-newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
}

.shetmal-page .sm-newsletter-form input {
  padding: 10px 16px;
  border: none;
  outline: none;
  font-family: var(--font-family);
  font-size: 0.85rem;
  min-width: 200px;
}

.shetmal-page .sm-newsletter-form button {
  padding: 10px 20px;
  background: #E6A719;
  color: #fff;
  border: none;
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.shetmal-page .sm-newsletter-form button:hover {
  background: #d49a15;
}


/* =========================================
   SHETMAL PAGE — RESPONSIVE
   ========================================= */

@media (max-width: 1200px) {
  .shetmal-page .sm-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .shetmal-page .sm-hero-inner {
    gap: 24px;
  }

  .shetmal-page .sm-hero-content h1 {
    font-size: 2rem;
  }

  .shetmal-page .sm-main-grid {
    grid-template-columns: 1fr;
  }

  .shetmal-page .sm-sidebar {
    position: static;
  }

  .shetmal-page .sm-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shetmal-page .sm-logistics-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .shetmal-page .sm-hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shetmal-page .sm-hero-content h1 {
    font-size: 1.75rem;
  }

  .shetmal-page .sm-hero-content h2 {
    font-size: 1rem;
  }

  .shetmal-page .sm-hero-image {
    max-width: 420px;
    margin: 0 auto;
  }

  .shetmal-page .sm-features {
    flex-wrap: wrap;
  }

  .shetmal-page .sm-feature-item {
    flex: 0 0 48%;
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .shetmal-page .sm-feature-divider {
    display: none;
  }

  .shetmal-page .sm-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shetmal-page .sm-filters {
    flex-direction: column;
    align-items: flex-start;
  }

  .shetmal-page .sm-filter-group {
    width: 100%;
  }

  .shetmal-page .sm-select {
    flex: 1;
    min-width: 0;
  }

  .shetmal-page .sm-agri-grid {
    flex-wrap: wrap;
  }

  .shetmal-page .sm-agri-item {
    flex: 0 0 48%;
    margin-bottom: 16px;
  }

  .shetmal-page .sm-agri-sep {
    display: none;
  }

  .shetmal-page .sm-newsletter-inner {
    flex-direction: column;
    text-align: center;
    padding: 22px 20px;
  }

  .shetmal-page .sm-newsletter-text {
    flex-direction: column;
    gap: 8px;
  }

  .shetmal-page .sm-newsletter-form {
    width: 100%;
  }

  .shetmal-page .sm-newsletter-form input {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .shetmal-page .sm-hero {
    padding: 28px 0 0;
  }

  .shetmal-page .sm-hero-content h1 {
    font-size: 1.5rem;
  }

  .shetmal-page .sm-hero-content h2 {
    font-size: 0.92rem;
  }

  .shetmal-page .sm-hero-content p {
    font-size: 0.84rem;
  }

  .shetmal-page .sm-feature-item {
    flex: 0 0 100%;
  }

  .shetmal-page .sm-product-grid {
    grid-template-columns: 1fr;
  }

  .shetmal-page .sm-product-img {
    height: 180px;
  }

  .shetmal-page .sm-section-title {
    font-size: 1.2rem;
  }

  .shetmal-page .sm-cat-card {
    min-width: 95px;
    padding: 12px 10px;
  }

  .shetmal-page .sm-agri-item {
    flex: 0 0 100%;
  }

  .shetmal-page .sm-logistics-features {
    grid-template-columns: 1fr;
  }

  .shetmal-page .sm-b2b-header h3 {
    font-size: 0.88rem;
  }
}

/* ========================================
   SEWA & SUVIDHA PAGE — .sewa-page
   ======================================== */

/* ---------- Breadcrumb ---------- */
.sewa-page .sw-breadcrumb {
  background: #f4f7f2;
  padding: 14px 0;
  border-bottom: 1px solid #dde8dd;
}

.sewa-page .sw-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.sewa-page .sw-breadcrumb a {
  color: var(--text-muted);
  font-weight: 500;
}

.sewa-page .sw-breadcrumb a:hover {
  color: #087333;
}

.sewa-page .sw-bc-sep {
  color: var(--text-light);
  font-size: 0.6rem;
}

.sewa-page .sw-bc-current {
  color: #087333;
  font-weight: 600;
}

/* ---------- Hero ---------- */
.sewa-page .sw-hero {
  background: linear-gradient(90deg, rgba(248, 250, 246, 0.92) 0%, rgba(245, 249, 240, 0.72) 38%, rgba(245, 249, 240, 0.28) 62%, rgba(245, 249, 240, 0.08) 100%),
              url('images/sewa_hero.png') right center / cover no-repeat;
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}

.sewa-page .sw-hero-inner {
  display: block;
  min-height: 320px;
}

.sewa-page .sw-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 36px 48px 0;
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.sewa-page .sw-hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #17231a;
  line-height: 1.25;
  margin-bottom: 18px;
}

.sewa-page .sw-hero-content h1 span {
  color: #087333;
}

.sewa-page .sw-hero-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 480px;
}


/* ---------- Feature Strip ---------- */
.sewa-page .sw-features {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid #e8f0e8;
  position: relative;
  z-index: 10;
  margin-top: -28px;
  margin-bottom: 0;
}

.sewa-page .sw-feat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 14px;
}

.sewa-page .sw-feat-item i {
  color: #087333;
  font-size: 1.15rem;
}

.sewa-page .sw-feat-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.sewa-page .sw-feat-div {
  width: 1px;
  height: 32px;
  background: #dde8dd;
  flex-shrink: 0;
}

/* ---------- Section Center Title ---------- */
.sewa-page .sw-center-title {
  text-align: center;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.sewa-page .sw-center-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3.5px;
  background: #087333;
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ---------- Infrastructure Section ---------- */
.sewa-page .sw-infra {
  padding: 56px 0 50px;
  background: var(--bg-cream);
}

.sewa-page .sw-infra-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.sewa-page .sw-infra-card {
  background: #fff;
  border: 1.5px solid #dde8dd;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sewa-page .sw-infra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(8, 115, 51, 0.1);
}

.sewa-page .sw-infra-img {
  width: 100%;
  height: 130px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sewa-page .sw-infra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sewa-page .sw-infra-img.no-img {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.sewa-page .sw-infra-img.no-img::after {
  content: '\f1ad';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2rem;
  color: rgba(8, 115, 51, 0.18);
}

.sewa-page .sw-infra-body {
  padding: 14px 14px 16px;
}

.sewa-page .sw-infra-body h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.35;
}

.sewa-page .sw-infra-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Outline button */
.sewa-page .sw-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #087333;
  border: 1.5px solid #087333;
  border-radius: var(--radius-full);
  padding: 6px 16px;
  transition: var(--transition);
  background: transparent;
}

.sewa-page .sw-outline-btn:hover {
  background: #087333;
  color: #fff;
}

.sewa-page .sw-outline-btn i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.sewa-page .sw-outline-btn:hover i {
  transform: translateX(3px);
}

/* ---------- Services Section ---------- */
.sewa-page .sw-services {
  padding: 56px 0 50px;
  background: #f5faf2;
}

.sewa-page .sw-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.sewa-page .sw-service-card {
  background: #fff;
  border: 1.5px solid #dde8dd;
  border-radius: var(--radius-md);
  padding: 28px 16px 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sewa-page .sw-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(8, 115, 51, 0.1);
}

.sewa-page .sw-svc-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eef7e9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.sewa-page .sw-svc-icon i {
  font-size: 1.3rem;
  color: #087333;
}

.sewa-page .sw-service-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.sewa-page .sw-service-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

/* ---------- Panels (Women + Health) ---------- */
.sewa-page .sw-panels {
  padding: 56px 0 50px;
  background: var(--bg-cream);
}

.sewa-page .sw-panels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.sewa-page .sw-panel {
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  border: 1.5px solid transparent;
}

.sewa-page .sw-panel h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
}

/* Women panel */
.sewa-page .sw-panel-women {
  background: #fff9ea;
  border-color: #f0e4c0;
}

.sewa-page .sw-panel-women h3 {
  color: #8b6914;
}

/* Health panel */
.sewa-page .sw-panel-health {
  background: #f1f8ed;
  border-color: #d4e8cc;
}

.sewa-page .sw-panel-health h3 {
  color: #087333;
}

/* Panel icon grid */
.sewa-page .sw-panel-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.sewa-page .sw-panel-item {
  text-align: center;
}

.sewa-page .sw-pi-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sewa-page .sw-panel-women .sw-pi-icon {
  border: 1.5px solid #f0e4c0;
}

.sewa-page .sw-panel-health .sw-pi-icon {
  border: 1.5px solid #d4e8cc;
}

.sewa-page .sw-pi-icon i {
  font-size: 1.15rem;
  color: #087333;
}

.sewa-page .sw-panel-women .sw-pi-icon i {
  color: #8b6914;
}

.sewa-page .sw-panel-item h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.sewa-page .sw-panel-item p {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Panel buttons */
.sewa-page .sw-panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 10px 22px;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.sewa-page .sw-panel-btn.gold {
  background: #f5d86e;
  color: #5a4200;
  border-color: #e6c84a;
}

.sewa-page .sw-panel-btn.gold:hover {
  background: #e6c030;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 167, 25, 0.25);
}

.sewa-page .sw-panel-btn.green {
  background: #087333;
  color: #fff;
  border-color: #087333;
}

.sewa-page .sw-panel-btn.green:hover {
  background: #045522;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 115, 51, 0.25);
}

/* ---------- CTA Banner ---------- */
.sewa-page .sw-cta {
  padding: 50px 0;
  background: var(--bg-cream);
}

.sewa-page .sw-cta-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  background: linear-gradient(135deg, #045522 0%, #087333 40%, #0a8540 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 220px;
  position: relative;
}

.sewa-page .sw-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sewa-page .sw-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
  position: relative;
  z-index: 2;
}

.sewa-page .sw-cta-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.sewa-page .sw-cta-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 440px;
}

.sewa-page .sw-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sewa-page .sw-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: #E6A719;
  color: #1a2e1a;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

.sewa-page .sw-cta-primary:hover {
  background: #d49a15;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(230, 167, 25, 0.35);
  color: #1a2e1a;
}

.sewa-page .sw-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.sewa-page .sw-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

.sewa-page .sw-cta-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sewa-page .sw-cta-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, #087333, transparent);
  z-index: 2;
  pointer-events: none;
}

.sewa-page .sw-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sewa-page .sw-cta-image.no-img {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.sewa-page .sw-cta-image.no-img::after {
  content: '\f508';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.12);
}

/* ---------- Statistics ---------- */
.sewa-page .sw-stats {
  padding: 44px 0 56px;
  background: var(--bg-cream);
}

.sewa-page .sw-stats-grid {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1.5px solid #dde8dd;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.sewa-page .sw-stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
}

.sewa-page .sw-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef7e9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.sewa-page .sw-stat-icon i {
  font-size: 1rem;
  color: #087333;
}

.sewa-page .sw-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #087333;
  margin-bottom: 2px;
}

.sewa-page .sw-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.sewa-page .sw-stat-sep {
  width: 1px;
  height: 56px;
  background: #dde8dd;
  flex-shrink: 0;
}

/* ========================================
   SEWA PAGE — RESPONSIVE
   ======================================== */

/* ---------- Tablet (1024px) ---------- */
@media (max-width: 1024px) {
  .sewa-page .sw-hero-content h1 {
    font-size: 2.1rem;
  }

  .sewa-page .sw-hero-content {
    padding: 36px 24px 36px 0;
  }

  .sewa-page .sw-infra-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sewa-page .sw-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sewa-page .sw-cta-content h2 {
    font-size: 1.35rem;
  }

  .sewa-page .sw-stat-number {
    font-size: 1.3rem;
  }
}

/* ---------- Tablet small (768px) ---------- */
@media (max-width: 768px) {
  .sewa-page .sw-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sewa-page .sw-hero-content {
    padding: 36px 0 40px;
    text-align: left;
    align-items: flex-start;
  }

  .sewa-page .sw-hero-content h1 {
    font-size: 1.8rem;
  }

  .sewa-page .sw-hero-content p {
    max-width: 100%;
    font-size: 0.88rem;
  }

  .sewa-page .sw-hero-image {
    border-radius: var(--radius-md);
    margin: 0 -24px;
    min-height: 200px;
    max-height: 240px;
  }

  .sewa-page .sw-hero-image::before {
    display: none;
  }

  .sewa-page .sw-features {
    margin-top: -20px;
    margin-left: 0;
    margin-right: 0;
  }

  .sewa-page .sw-feat-item {
    flex: 0 0 50%;
    padding: 14px 10px;
  }

  .sewa-page .sw-feat-div {
    display: none;
  }

  .sewa-page .sw-features {
    flex-wrap: wrap;
  }

  .sewa-page .sw-infra {
    padding: 42px 0 36px;
  }

  .sewa-page .sw-infra-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sewa-page .sw-services {
    padding: 42px 0 36px;
  }

  .sewa-page .sw-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sewa-page .sw-panels {
    padding: 42px 0 36px;
  }

  .sewa-page .sw-panels-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sewa-page .sw-panel-icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .sewa-page .sw-cta {
    padding: 36px 0;
  }

  .sewa-page .sw-cta-card {
    grid-template-columns: 1fr;
  }

  .sewa-page .sw-cta-content {
    padding: 28px 24px;
    text-align: center;
    align-items: center;
  }

  .sewa-page .sw-cta-content h2 {
    font-size: 1.3rem;
  }

  .sewa-page .sw-cta-content p {
    max-width: 100%;
  }

  .sewa-page .sw-cta-btns {
    justify-content: center;
  }

  .sewa-page .sw-cta-image {
    min-height: 180px;
    max-height: 220px;
  }

  .sewa-page .sw-cta-image::before {
    display: none;
  }

  .sewa-page .sw-stats {
    padding: 32px 0 44px;
  }

  .sewa-page .sw-stats-grid {
    flex-wrap: wrap;
  }

  .sewa-page .sw-stat-item {
    flex: 0 0 33.333%;
    padding: 20px 10px;
  }

  .sewa-page .sw-stat-sep {
    display: none;
  }

  .sewa-page .sw-center-title {
    font-size: 1.35rem;
  }
}

/* ---------- Mobile (600px) ---------- */
@media (max-width: 600px) {
  .sewa-page .sw-hero-content h1 {
    font-size: 1.55rem;
  }

  .sewa-page .sw-hero-content p {
    font-size: 0.84rem;
  }

  .sewa-page .sw-feat-item span {
    font-size: 0.78rem;
  }

  .sewa-page .sw-feat-item i {
    font-size: 1rem;
  }

  .sewa-page .sw-infra-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sewa-page .sw-infra-img {
    height: 110px;
  }

  .sewa-page .sw-infra-body h4 {
    font-size: 0.82rem;
  }

  .sewa-page .sw-infra-body p {
    font-size: 0.74rem;
  }

  .sewa-page .sw-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sewa-page .sw-service-card {
    padding: 22px 16px 18px;
  }

  .sewa-page .sw-panel {
    padding: 24px 18px 22px;
  }

  .sewa-page .sw-panel h3 {
    font-size: 1.05rem;
  }

  .sewa-page .sw-panel-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sewa-page .sw-cta-content {
    padding: 24px 18px;
  }

  .sewa-page .sw-cta-content h2 {
    font-size: 1.15rem;
  }

  .sewa-page .sw-cta-primary,
  .sewa-page .sw-cta-secondary {
    padding: 10px 20px;
    font-size: 0.82rem;
  }

  .sewa-page .sw-stat-item {
    flex: 0 0 50%;
    padding: 18px 8px;
  }

  .sewa-page .sw-stat-number {
    font-size: 1.2rem;
  }

  .sewa-page .sw-stat-label {
    font-size: 0.72rem;
  }

  .sewa-page .sw-center-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
}

/* ---------- Small mobile (480px) ---------- */
@media (max-width: 480px) {
  .sewa-page .sw-hero-content h1 {
    font-size: 1.4rem;
  }

  .sewa-page .sw-hero-image {
    min-height: 170px;
  }

  .sewa-page .sw-infra-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .sewa-page .sw-infra-body {
    padding: 10px 10px 14px;
  }

  .sewa-page .sw-outline-btn {
    padding: 5px 12px;
    font-size: 0.72rem;
  }

  .sewa-page .sw-panel-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sewa-page .sw-pi-icon {
    width: 46px;
    height: 46px;
  }

  .sewa-page .sw-pi-icon i {
    font-size: 0.95rem;
  }

  .sewa-page .sw-panel-item h5 {
    font-size: 0.72rem;
  }

  .sewa-page .sw-panel-item p {
    font-size: 0.66rem;
  }

  .sewa-page .sw-panel-btn {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .sewa-page .sw-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .sewa-page .sw-cta-image {
    min-height: 160px;
  }

  .sewa-page .sw-stat-icon {
    width: 36px;
    height: 36px;
  }

  .sewa-page .sw-stat-icon i {
    font-size: 0.88rem;
  }
}

/* ============================================================
   YASHOGADHA PAGE — FPC Federation
   All rules scoped to .yashogadha-page
   ============================================================ */

/* ---- Container ---- */
.yashogadha-page .yg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.yashogadha-page .yg-breadcrumb {
  background: #F5FAF2;
  border-bottom: 1px solid #DDE8DD;
  padding: 10px 0;
  font-size: 13px;
}

.yashogadha-page .yg-breadcrumb a {
  color: #087333;
  text-decoration: none;
  font-weight: 500;
}

.yashogadha-page .yg-breadcrumb a:hover {
  text-decoration: underline;
}

.yashogadha-page .yg-bc-sep {
  color: #87a98a;
  margin: 0 8px;
  font-size: 10px;
}

.yashogadha-page .yg-bc-current {
  color: #555;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.yashogadha-page .yg-hero {
  background: linear-gradient(90deg, rgba(248, 250, 246, 0.92) 0%, rgba(245, 249, 240, 0.72) 38%, rgba(245, 249, 240, 0.28) 62%, rgba(245, 249, 240, 0.08) 100%),
              url('images/yashogadha_hero.png') right center / cover no-repeat;
  padding: 0;
  overflow: hidden;
  min-height: 340px;
}

.yashogadha-page .yg-hero-inner {
  display: block;
  min-height: 340px;
}

.yashogadha-page .yg-hero-content {
  max-width: 560px;
  padding: 48px 40px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  min-height: 340px;
}

.yashogadha-page .yg-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #087333;
  margin: 0 0 12px 0;
  line-height: 1.15;
}

.yashogadha-page .yg-hero-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #17231A;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.yashogadha-page .yg-hero-desc {
  font-size: 15px;
  color: #3a5243;
  line-height: 1.7;
  margin: 0;
}


/* Decorative farmer silhouettes using CSS */


/* ============================================================
   FILTER BAR
   ============================================================ */
.yashogadha-page .yg-filter-section {
  background: #fff;
  border-top: 1px solid #DDE8DD;
  border-bottom: 1px solid #DDE8DD;
  padding: 0;
  margin-bottom: 0;
}

.yashogadha-page .yg-filter-bar {
  display: flex;
  align-items: center;
  gap: 0;
}

.yashogadha-page .yg-filter-items {
  display: flex;
  align-items: center;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.yashogadha-page .yg-filter-items::-webkit-scrollbar {
  display: none;
}

.yashogadha-page .yg-filter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 18px;
  text-decoration: none;
  color: #087333;
  font-size: 13px;
  font-weight: 500;
  border-right: 1px solid #DDE8DD;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  min-width: 90px;
}

.yashogadha-page .yg-filter-item i {
  font-size: 18px;
  color: #087333;
}

.yashogadha-page .yg-filter-item.active {
  background: #087333;
  color: #fff;
}

.yashogadha-page .yg-filter-item.active i {
  color: #fff;
}

.yashogadha-page .yg-filter-item:hover:not(.active) {
  background: #EEF7E9;
}

.yashogadha-page .yg-filter-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-left: 1px solid #DDE8DD;
  white-space: nowrap;
}

.yashogadha-page .yg-filter-dropdown label {
  color: #087333;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.yashogadha-page .yg-filter-dropdown select {
  border: 1px solid #DDE8DD;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  color: #17231A;
  background: #fff;
  cursor: pointer;
  outline: none;
}

.yashogadha-page .yg-filter-dropdown select:focus {
  border-color: #087333;
}

/* ============================================================
   SUCCESS STORIES SECTION
   ============================================================ */
.yashogadha-page .yg-stories-section {
  padding: 50px 0 40px;
  background: #F5FAF2;
}

.yashogadha-page .yg-section-heading {
  margin-bottom: 28px;
}

.yashogadha-page .yg-section-heading h2 {
  font-size: 28px;
  font-weight: 700;
  color: #17231A;
  margin: 0 0 10px 0;
  position: relative;
  display: inline-block;
}

.yashogadha-page .yg-section-heading h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #087333;
  border-radius: 2px;
  margin-top: 8px;
}

/* ---- Story Grid ---- */
.yashogadha-page .yg-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

/* ---- Story Card ---- */
.yashogadha-page .yg-story-card {
  background: #fff;
  border: 1px solid #DDE8DD;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(8, 115, 51, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.yashogadha-page .yg-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(8, 115, 51, 0.13);
}

/* Card image wrap */
.yashogadha-page .yg-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.yashogadha-page .yg-card-img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.yashogadha-page .yg-story-card:hover .yg-card-img {
  transform: scale(1.04);
}

/* CSS placeholder backgrounds for cards */
.yashogadha-page .yg-img-grapes {
  background: linear-gradient(135deg, #4a7c59 0%, #6aaa78 40%, #2e7d32 100%);
  position: relative;
}

.yashogadha-page .yg-img-grapes::after {
  content: '\f4d8';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.yashogadha-page .yg-img-women {
  background: linear-gradient(135deg, #7b5ea7 0%, #e8845c 50%, #c0392b 100%);
  position: relative;
}

.yashogadha-page .yg-img-women::after {
  content: '\f500';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.yashogadha-page .yg-img-onion {
  background: linear-gradient(135deg, #8d5524 0%, #c68642 50%, #b5651d 100%);
  position: relative;
}

.yashogadha-page .yg-img-onion::after {
  content: '\f4d8';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.yashogadha-page .yg-img-youth {
  background: linear-gradient(135deg, #1565c0 0%, #42a5f5 50%, #0288d1 100%);
  position: relative;
}

.yashogadha-page .yg-img-youth::after {
  content: '\f0b1';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 10px;
  right: 15px;
}

/* Location badge */
.yashogadha-page .yg-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #087333;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

/* Play button on image */
.yashogadha-page .yg-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #087333;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.2s;
  z-index: 3;
}

.yashogadha-page .yg-play-btn:hover {
  background: #087333;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

.yashogadha-page .yg-play-btn i {
  margin-left: 3px;
}

/* Card body */
.yashogadha-page .yg-card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.yashogadha-page .yg-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #087333;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.yashogadha-page .yg-card-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 12px 0;
  flex: 1;
}

/* Person row */
.yashogadha-page .yg-card-person {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #666;
}

.yashogadha-page .yg-person-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EEF7E9;
  border: 1px solid #DDE8DD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #087333;
  flex-shrink: 0;
}

/* Stats row */
.yashogadha-page .yg-card-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
  border: 1px solid #EEF7E9;
  border-radius: 8px;
  background: #F5FAF2;
  overflow: hidden;
}

.yashogadha-page .yg-stat {
  flex: 1;
  padding: 8px 6px;
  text-align: center;
}

.yashogadha-page .yg-stat strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #087333;
  line-height: 1.2;
}

.yashogadha-page .yg-stat span {
  display: block;
  font-size: 10px;
  color: #777;
  margin-top: 2px;
}

.yashogadha-page .yg-stat-divider {
  width: 1px;
  height: 36px;
  background: #DDE8DD;
  flex-shrink: 0;
}

/* Card CTA link */
.yashogadha-page .yg-card-link {
  color: #087333;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-top: 1px solid #EEF7E9;
  padding-top: 12px;
  display: block;
  transition: color 0.2s;
}

.yashogadha-page .yg-card-link:hover {
  color: #045522;
}

/* ---- More Stories Button ---- */
.yashogadha-page .yg-more-btn-wrap {
  text-align: center;
  margin-top: 10px;
}

.yashogadha-page .yg-more-btn {
  display: inline-block;
  padding: 12px 36px;
  border: 2px solid #087333;
  border-radius: 8px;
  color: #087333;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.yashogadha-page .yg-more-btn:hover {
  background: #087333;
  color: #fff;
}

/* ============================================================
   FARMER TESTIMONIALS
   ============================================================ */
.yashogadha-page .yg-testimonials-section {
  padding: 50px 0;
  background: #fff;
}

.yashogadha-page .yg-testimonials-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.yashogadha-page .yg-testi-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #DDE8DD;
  background: #fff;
  color: #087333;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}

.yashogadha-page .yg-testi-arrow:hover {
  background: #087333;
  color: #fff;
}

.yashogadha-page .yg-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1;
}

.yashogadha-page .yg-testi-card {
  background: #F5FAF2;
  border: 1px solid #DDE8DD;
  border-radius: 12px;
  padding: 20px 18px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.yashogadha-page .yg-testi-avatar-wrap {
  display: flex;
  justify-content: flex-start;
}

.yashogadha-page .yg-testi-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #087333, #4caf50);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(8, 115, 51, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.85);
}

.yashogadha-page .yg-testi-quote-icon {
  color: #E6A719;
  font-size: 20px;
}

.yashogadha-page .yg-testi-quote {
  font-size: 13.5px;
  color: #3a4a3f;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  flex: 1;
}

.yashogadha-page .yg-testi-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}

.yashogadha-page .yg-testi-author strong {
  font-size: 14px;
  font-weight: 700;
  color: #17231A;
}

.yashogadha-page .yg-testi-author span {
  font-size: 12px;
  color: #087333;
}

/* Pagination dots */
.yashogadha-page .yg-testi-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.yashogadha-page .yg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DDE8DD;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s;
}

.yashogadha-page .yg-dot.active {
  background: #087333;
  width: 24px;
  border-radius: 5px;
}

/* ============================================================
   VIDEO SUCCESS STORIES
   ============================================================ */
.yashogadha-page .yg-video-section {
  padding: 50px 0;
  background: #F5FAF2;
}

.yashogadha-page .yg-video-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.yashogadha-page .yg-video-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #17231A;
  margin: 0;
}

.yashogadha-page .yg-view-all {
  color: #087333;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.yashogadha-page .yg-view-all:hover {
  color: #045522;
  text-decoration: underline;
}

.yashogadha-page .yg-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.yashogadha-page .yg-video-card {
  background: #fff;
  border: 1px solid #DDE8DD;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(8, 115, 51, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.yashogadha-page .yg-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(8, 115, 51, 0.12);
}

.yashogadha-page .yg-video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.yashogadha-page .yg-video-img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s;
}

.yashogadha-page .yg-video-card:hover .yg-video-img {
  transform: scale(1.05);
}

/* Video image CSS placeholders */
.yashogadha-page .yg-vimg-1 {
  background: linear-gradient(135deg, #2d6a4f 0%, #52b788 50%, #1b4332 100%);
  position: relative;
}

.yashogadha-page .yg-vimg-2 {
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 40%, #2a9d8f 100%);
  position: relative;
}

.yashogadha-page .yg-vimg-3 {
  background: linear-gradient(135deg, #457b9d 0%, #1d3557 50%, #a8dadc 100%);
  position: relative;
}

.yashogadha-page .yg-vimg-4 {
  background: linear-gradient(135deg, #606c38 0%, #dda15e 50%, #bc6c25 100%);
  position: relative;
}

.yashogadha-page .yg-vimg-1::after,
.yashogadha-page .yg-vimg-2::after,
.yashogadha-page .yg-vimg-3::after,
.yashogadha-page .yg-vimg-4::after {
  content: '\f03d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.18);
  position: absolute;
  bottom: 8px;
  right: 10px;
}

/* Duration badge */
.yashogadha-page .yg-video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  z-index: 3;
}

.yashogadha-page .yg-video-info {
  padding: 12px 14px 14px;
}

.yashogadha-page .yg-video-info h3 {
  font-size: 13.5px;
  font-weight: 600;
  color: #17231A;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.yashogadha-page .yg-video-location {
  font-size: 12px;
  color: #087333;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.yashogadha-page .yg-cta-section {
  padding: 40px 0 50px;
  background: #fff;
}

.yashogadha-page .yg-cta-banner {
  background:
    linear-gradient(135deg, #EEF7E9 0%, #c8e6c9 60%, #a5d6a7 100%);
  border-radius: 14px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  position: relative;
  min-height: 160px;
  border: 1px solid #c3e6c3;
}

.yashogadha-page .yg-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 115, 51, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.yashogadha-page .yg-cta-content {
  flex: 0 0 55%;
  position: relative;
  z-index: 2;
}

.yashogadha-page .yg-cta-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: #045522;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.yashogadha-page .yg-cta-content p {
  font-size: 15px;
  color: #3a5243;
  margin: 0 0 22px 0;
  line-height: 1.6;
}

.yashogadha-page .yg-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #087333;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.yashogadha-page .yg-cta-btn:hover {
  background: #045522;
  transform: translateY(-1px);
}

.yashogadha-page .yg-cta-visual {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.yashogadha-page .yg-cta-icons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.yashogadha-page .yg-cta-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(8, 115, 51, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #087333;
  box-shadow: 0 2px 8px rgba(8, 115, 51, 0.12);
}

.yashogadha-page .yg-cta-ic-1 {
  color: #E6A719;
}

.yashogadha-page .yg-cta-ic-2 {
  color: #087333;
}

.yashogadha-page .yg-cta-ic-3 {
  color: #4caf50;
}

.yashogadha-page .yg-cta-farmer-placeholder {
  width: 130px;
  height: 140px;
  background: linear-gradient(175deg, rgba(8, 115, 51, 0.15) 0%, rgba(8, 115, 51, 0.05) 100%);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(8, 115, 51, 0.15);
}

.yashogadha-page .yg-cta-farmer-placeholder::before {
  content: '\f508';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 60px;
  color: rgba(8, 115, 51, 0.3);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ============================================================
   RESPONSIVE — TABLET (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .yashogadha-page .yg-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .yashogadha-page .yg-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .yashogadha-page .yg-filter-item {
    padding: 14px 13px;
    min-width: 78px;
    font-size: 12px;
  }

  .yashogadha-page .yg-hero-title {
    font-size: 40px;
  }

  .yashogadha-page .yg-hero-subtitle {
    font-size: 20px;
  }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT (768px)
   ============================================================ */
@media (max-width: 768px) {
  .yashogadha-page .yg-container {
    padding: 0 14px;
  }

  .yashogadha-page .yg-hero-inner {
    flex-direction: column;
    min-height: auto;
  }

  .yashogadha-page .yg-hero-content {
    flex: none;
    padding: 28px 14px 20px;
  }

  .yashogadha-page .yg-hero-image {
    flex: none;
  }

  .yashogadha-page .yg-hero-img-placeholder {
    min-height: 200px;
  }

  .yashogadha-page .yg-hero-title {
    font-size: 34px;
  }

  .yashogadha-page .yg-hero-subtitle {
    font-size: 18px;
  }

  .yashogadha-page .yg-hero-desc {
    font-size: 14px;
  }

  .yashogadha-page .yg-filter-dropdown label {
    display: none;
  }

  .yashogadha-page .yg-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .yashogadha-page .yg-testimonials-grid .yg-testi-card:last-child {
    display: none;
  }

  .yashogadha-page .yg-cta-banner {
    padding: 30px 24px;
  }

  .yashogadha-page .yg-cta-content h2 {
    font-size: 22px;
  }

  .yashogadha-page .yg-cta-farmer-placeholder {
    width: 90px;
    height: 100px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (600px)
   ============================================================ */
@media (max-width: 600px) {
  .yashogadha-page .yg-stories-grid {
    grid-template-columns: 1fr;
  }

  .yashogadha-page .yg-video-grid {
    grid-template-columns: 1fr;
  }

  .yashogadha-page .yg-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .yashogadha-page .yg-testimonials-grid .yg-testi-card:last-child {
    display: flex;
  }

  .yashogadha-page .yg-testi-arrow {
    display: none;
  }

  .yashogadha-page .yg-cta-banner {
    flex-direction: column;
    padding: 28px 20px;
    text-align: center;
  }

  .yashogadha-page .yg-cta-content {
    flex: none;
  }

  .yashogadha-page .yg-cta-visual {
    flex: none;
    justify-content: center;
  }

  .yashogadha-page .yg-cta-icons {
    flex-direction: row;
  }

  .yashogadha-page .yg-cta-farmer-placeholder {
    display: none;
  }

  .yashogadha-page .yg-filter-bar {
    flex-wrap: wrap;
  }

  .yashogadha-page .yg-filter-dropdown {
    border-left: none;
    border-top: 1px solid #DDE8DD;
    width: 100%;
    padding: 10px 14px;
  }

  .yashogadha-page .yg-filter-dropdown label {
    display: flex;
  }

  .yashogadha-page .yg-filter-dropdown select {
    flex: 1;
    max-width: 200px;
  }

  .yashogadha-page .yg-stories-section {
    padding: 34px 0 30px;
  }

  .yashogadha-page .yg-testimonials-section {
    padding: 34px 0;
  }

  .yashogadha-page .yg-video-section {
    padding: 34px 0;
  }

  .yashogadha-page .yg-cta-section {
    padding: 30px 0 40px;
  }

  .yashogadha-page .yg-section-heading h2 {
    font-size: 22px;
  }

  .yashogadha-page .yg-video-header h2 {
    font-size: 21px;
  }

  .yashogadha-page .yg-cta-content h2 {
    font-size: 20px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (390px / 375px)
   ============================================================ */
@media (max-width: 400px) {
  .yashogadha-page .yg-hero-title {
    font-size: 28px;
  }

  .yashogadha-page .yg-hero-subtitle {
    font-size: 16px;
  }

  .yashogadha-page .yg-filter-item {
    min-width: 68px;
    font-size: 11px;
    padding: 12px 10px;
  }

  .yashogadha-page .yg-filter-item i {
    font-size: 15px;
  }

  .yashogadha-page .yg-card-stats {
    flex-wrap: wrap;
  }

  .yashogadha-page .yg-stat {
    flex: 0 0 33.333%;
  }

  .yashogadha-page .yg-stat-divider {
    display: none;
  }

  .yashogadha-page .yg-more-btn {
    padding: 11px 24px;
    font-size: 13px;
  }
}

/* ============================================================
   SAMPARK PAGE — FPC Federation Contact Page
   All rules scoped to .sampark-page
   Append this entire block to the end of style.css
   ============================================================ */

/* ---- Container ---- */
.sampark-page .sp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.sampark-page .sp-breadcrumb {
  background: #F5FAF2;
  border-bottom: 1px solid #DDE8DD;
  padding: 10px 0;
  font-size: 13px;
}

.sampark-page .sp-breadcrumb a {
  color: #087333;
  text-decoration: none;
  font-weight: 500;
}

.sampark-page .sp-breadcrumb a:hover {
  text-decoration: underline;
}

.sampark-page .sp-bc-sep {
  color: #87a98a;
  margin: 0 8px;
  font-size: 10px;
}

.sampark-page .sp-bc-current {
  color: #555;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.sampark-page .sp-hero {
  background: linear-gradient(90deg, rgba(248, 250, 246, 0.92) 0%, rgba(245, 249, 240, 0.72) 38%, rgba(245, 249, 240, 0.28) 62%, rgba(245, 249, 240, 0.08) 100%),
              url('images/samapark_hero.png') right center / cover no-repeat;
  overflow: hidden;
  min-height: 340px;
}

.sampark-page .sp-hero-inner {
  display: block;
  min-height: 340px;
}

.sampark-page .sp-hero-content {
  max-width: 560px;
  padding: 48px 40px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  min-height: 340px;
}

.sampark-page .sp-hero-title {
  font-size: 50px;
  font-weight: 800;
  color: #087333;
  margin: 0 0 16px 0;
  line-height: 1.15;
}

.sampark-page .sp-hero-subtitle {
  font-size: 21px;
  font-weight: 600;
  color: #17231A;
  margin: 0 0 20px 0;
  line-height: 1.55;
}

.sampark-page .sp-hero-accent {
  width: 54px;
  height: 4px;
  background: #E6A719;
  border-radius: 2px;
}



/* Farmer silhouette suggestion using unicode/css */
.sampark-page .sp-hero-img-placeholder::after {
  content: '\f508';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 90px;
  color: rgba(255, 255, 255, 0.18);
  position: absolute;
  bottom: 20px;
  right: 50px;
}

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.sampark-page .sp-info-cards-section {
  background: #fff;
  padding: 0 0 30px 0;
  border-bottom: 1px solid #DDE8DD;
}

.sampark-page .sp-info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
}

.sampark-page .sp-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #DDE8DD;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(8, 115, 51, 0.06);
  transition: transform 0.22s, box-shadow 0.22s;
}

.sampark-page .sp-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(8, 115, 51, 0.12);
}

.sampark-page .sp-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #087333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.sampark-page .sp-info-text h3 {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.sampark-page .sp-info-text a,
.sampark-page .sp-info-text span {
  font-size: 14px;
  font-weight: 700;
  color: #17231A;
  text-decoration: none;
  line-height: 1.3;
  display: block;
}

.sampark-page .sp-info-text a:hover {
  color: #087333;
}

/* ============================================================
   MAIN CONTACT SECTION (Form + Reasons)
   ============================================================ */
.sampark-page .sp-main-section {
  background: #F5FAF2;
  padding: 50px 0;
}

.sampark-page .sp-main-grid {
  display: grid;
  grid-template-columns: 57% 1fr;
  gap: 28px;
  align-items: start;
}

/* ---- Contact Form Card ---- */
.sampark-page .sp-form-card {
  background: #087333;
  border-radius: 12px;
  padding: 30px 30px 26px;
  box-shadow: 0 4px 20px rgba(8, 115, 51, 0.18);
}

.sampark-page .sp-form-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
}

.sampark-page .sp-form-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px 0;
}

.sampark-page .sp-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sampark-page .sp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sampark-page .sp-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sampark-page .sp-form-group-full {
  grid-column: 1 / -1;
}

.sampark-page .sp-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

.sampark-page .sp-required {
  color: #E6A719;
}

.sampark-page .sp-form-group input,
.sampark-page .sp-form-group select,
.sampark-page .sp-form-group textarea {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  padding: 10px 13px;
  font-size: 13.5px;
  color: #17231A;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

.sampark-page .sp-form-group input:focus,
.sampark-page .sp-form-group select:focus,
.sampark-page .sp-form-group textarea:focus {
  border-color: #E6A719;
  box-shadow: 0 0 0 3px rgba(230, 167, 25, 0.2);
}

.sampark-page .sp-form-group input::placeholder,
.sampark-page .sp-form-group textarea::placeholder {
  color: #aaa;
  font-size: 13px;
}

.sampark-page .sp-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.sampark-page .sp-form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M0 0l6 7 6-7z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

/* Captcha row */
.sampark-page .sp-captcha-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.sampark-page .sp-captcha-box {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  padding: 10px 14px;
  flex-shrink: 0;
}

.sampark-page .sp-captcha-char {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.sampark-page .sp-captcha-letter {
  color: #E6A719;
}

.sampark-page .sp-captcha-input-wrap {
  flex: 1;
  min-width: 120px;
}

.sampark-page .sp-captcha-input-wrap input {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  padding: 10px 13px;
  font-size: 13.5px;
  color: #17231A;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

.sampark-page .sp-captcha-input-wrap input::placeholder {
  color: #aaa;
  font-size: 13px;
}

.sampark-page .sp-captcha-input-wrap input:focus {
  border-color: #E6A719;
  box-shadow: 0 0 0 3px rgba(230, 167, 25, 0.2);
}

.sampark-page .sp-submit-btn {
  background: #E6A719;
  color: #17231A;
  border: none;
  border-radius: 7px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  font-family: inherit;
}

.sampark-page .sp-submit-btn:hover {
  background: #d49614;
  transform: translateY(-1px);
}

/* ---- Why Connect Card ---- */
.sampark-page .sp-reasons-card {
  background: #fff;
  border: 1px solid #DDE8DD;
  border-radius: 12px;
  padding: 26px 24px;
  box-shadow: 0 2px 10px rgba(8, 115, 51, 0.06);
  height: 100%;
  box-sizing: border-box;
}

.sampark-page .sp-reasons-title {
  font-size: 20px;
  font-weight: 700;
  color: #17231A;
  margin: 0 0 20px 0;
}

.sampark-page .sp-reasons-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sampark-page .sp-reason-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #EEF7E9;
}

.sampark-page .sp-reason-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sampark-page .sp-reason-item:first-child {
  padding-top: 0;
}

.sampark-page .sp-reason-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #EEF7E9;
  border: 1px solid #DDE8DD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #087333;
  flex-shrink: 0;
}

.sampark-page .sp-reason-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sampark-page .sp-reason-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #17231A;
  line-height: 1.35;
}

.sampark-page .sp-reason-text span {
  font-size: 12.5px;
  color: #666;
  line-height: 1.45;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.sampark-page .sp-section-heading h2 {
  font-size: 28px;
  font-weight: 700;
  color: #17231A;
  margin: 0 0 10px 0;
}

.sampark-page .sp-section-heading h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #087333;
  border-radius: 2px;
  margin-top: 8px;
}

.sampark-page .sp-heading-center {
  text-align: center;
  margin-bottom: 30px;
}

.sampark-page .sp-heading-center h2::after {
  margin: 8px auto 0;
}

/* ============================================================
   DOWNLOADS SECTION
   ============================================================ */
.sampark-page .sp-downloads-section {
  background: #fff;
  padding: 50px 0 40px;
}

.sampark-page .sp-downloads-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.sampark-page .sp-dl-card {
  background: #fff;
  border: 1px solid #DDE8DD;
  border-radius: 10px;
  padding: 18px 16px 16px;
  box-shadow: 0 2px 8px rgba(8, 115, 51, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: transform 0.22s, box-shadow 0.22s;
}

.sampark-page .sp-dl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(8, 115, 51, 0.1);
}

.sampark-page .sp-dl-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.sampark-page .sp-dl-icon-green {
  background: #087333;
}

.sampark-page .sp-dl-icon-gold {
  background: #E6A719;
}

.sampark-page .sp-dl-icon-teal {
  background: #2a9d8f;
}

.sampark-page .sp-dl-icon-red {
  background: #e63946;
}

.sampark-page .sp-dl-icon-blue {
  background: #457b9d;
}

.sampark-page .sp-dl-info {
  flex: 1;
  width: 100%;
}

.sampark-page .sp-dl-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: #17231A;
  margin: 0 0 3px 0;
  line-height: 1.3;
}

.sampark-page .sp-dl-sub {
  display: block;
  font-size: 12.5px;
  color: #555;
  margin-bottom: 3px;
  min-height: 1.2em;
}

.sampark-page .sp-dl-size {
  display: block;
  font-size: 11.5px;
  color: #888;
}

.sampark-page .sp-dl-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid #087333;
  border-radius: 7px;
  color: #087333;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
  margin-top: 4px;
}

.sampark-page .sp-dl-btn:hover {
  background: #087333;
  color: #fff;
}

/* More Downloads Button */
.sampark-page .sp-more-btn-wrap {
  text-align: center;
}

.sampark-page .sp-more-btn {
  display: inline-block;
  padding: 11px 32px;
  border: 2px solid #087333;
  border-radius: 8px;
  color: #087333;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.sampark-page .sp-more-btn:hover {
  background: #087333;
  color: #fff;
}

/* ============================================================
   OFFICE INFO + MAP SECTION
   ============================================================ */
.sampark-page .sp-office-section {
  background: #F5FAF2;
  padding: 50px 0;
}

.sampark-page .sp-office-grid {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Office Card */
.sampark-page .sp-office-card {
  background: #fff;
  border: 1px solid #DDE8DD;
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 2px 10px rgba(8, 115, 51, 0.06);
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sampark-page .sp-office-heading {
  font-size: 22px;
  font-weight: 700;
  color: #17231A;
  margin: 0 0 20px 0;
}

.sampark-page .sp-office-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #EEF7E9;
}

.sampark-page .sp-office-row:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}

.sampark-page .sp-office-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #EEF7E9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #087333;
  flex-shrink: 0;
  margin-top: 2px;
}

.sampark-page .sp-office-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sampark-page .sp-office-detail strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #17231A;
  line-height: 1.4;
}

.sampark-page .sp-office-detail span,
.sampark-page .sp-office-detail a {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  text-decoration: none;
}

.sampark-page .sp-office-detail a:hover {
  color: #087333;
}

.sampark-page .sp-gmap-btn {
  display: inline-block;
  background: #087333;
  color: #fff;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: auto;
  align-self: flex-start;
}

.sampark-page .sp-gmap-btn:hover {
  background: #045522;
}

/* ---- CSS Map Placeholder ---- */
.sampark-page .sp-map-placeholder {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #DDE8DD;
  box-shadow: 0 2px 10px rgba(8, 115, 51, 0.07);
  background: #e8f0e8;
}

/* Map background with street grid */
.sampark-page .sp-map-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #dce8d8 0%, #e8f0e3 40%, #d4e4cd 100%);
}

.sampark-page .sp-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(180, 200, 170, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 200, 170, 0.5) 1px, transparent 1px),
    linear-gradient(rgba(200, 220, 190, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 220, 190, 0.35) 1px, transparent 1px);
  background-size:
    60px 60px,
    60px 60px,
    20px 20px,
    20px 20px;
}

/* Simulated roads */
.sampark-page .sp-map-grid::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  height: 10px;
  background: rgba(255, 255, 240, 0.85);
  box-shadow: 0 0 0 1px rgba(180, 180, 150, 0.5);
}

.sampark-page .sp-map-grid::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 10px;
  background: rgba(255, 255, 240, 0.85);
  box-shadow: 0 0 0 1px rgba(180, 180, 150, 0.5);
}

/* Info popup */
.sampark-page .sp-map-popup {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  background: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  max-width: 200px;
  border: 1px solid #DDE8DD;
}

.sampark-page .sp-map-popup-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sampark-page .sp-map-popup-inner strong {
  font-size: 13px;
  font-weight: 700;
  color: #17231A;
}

.sampark-page .sp-map-popup-inner span {
  font-size: 11.5px;
  color: #555;
  line-height: 1.5;
}

.sampark-page .sp-map-link {
  font-size: 11.5px;
  color: #2563eb;
  text-decoration: none;
  margin-top: 4px;
  display: block;
}

.sampark-page .sp-map-link:hover {
  text-decoration: underline;
}

/* Location pin */
.sampark-page .sp-map-pin-wrap {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sampark-page .sp-map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sampark-page .sp-map-pin>i {
  font-size: 36px;
  color: #e63946;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  line-height: 1;
}

.sampark-page .sp-map-label {
  background: #fff;
  color: #087333;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid #DDE8DD;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

/* Map controls */
.sampark-page .sp-map-controls {
  position: absolute;
  right: 14px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 4;
}

.sampark-page .sp-map-ctrl {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #DDE8DD;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: background 0.15s;
  line-height: 1;
}

.sampark-page .sp-map-ctrl:hover {
  background: #EEF7E9;
}

/* Map attribution bar */
.sampark-page .sp-map-placeholder::after {
  content: 'Map data ©2024  Terms  Report a map error';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  font-size: 10px;
  color: #666;
  padding: 4px 10px;
  text-align: right;
  z-index: 4;
}

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.sampark-page .sp-cta-section {
  background: #fff;
  padding: 34px 0 50px;
}

.sampark-page .sp-cta-banner {
  background: linear-gradient(135deg, #EEF7E9 0%, #d6ecd6 60%, #c3e0c3 100%);
  border: 1px solid #c8dec8;
  border-radius: 14px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.sampark-page .sp-cta-phone-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E6A719;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(230, 167, 25, 0.3);
}

.sampark-page .sp-cta-text {
  flex: 1;
}

.sampark-page .sp-cta-text h2 {
  font-size: 22px;
  font-weight: 800;
  color: #17231A;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.sampark-page .sp-cta-text p {
  font-size: 14px;
  color: #3a5243;
  margin: 0;
  line-height: 1.5;
}

.sampark-page .sp-cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.sampark-page .sp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.sampark-page .sp-cta-btn-whatsapp {
  background: #fff;
  color: #17231A;
  border: 1px solid #DDE8DD;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sampark-page .sp-cta-btn-whatsapp:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.sampark-page .sp-cta-btn-whatsapp i {
  color: #25d366;
  font-size: 18px;
}

.sampark-page .sp-cta-btn-b2b {
  background: #087333;
  color: #fff;
  border: 1px solid #087333;
}

.sampark-page .sp-cta-btn-b2b:hover {
  background: #045522;
  transform: translateY(-1px);
}

/* ============================================================
   B2B BULK ORDER MODAL
   ============================================================ */
.sp-b2b-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.sp-b2b-overlay.sp-b2b-active {
  display: flex;
}
.sp-b2b-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  position: relative;
  padding: 2.5rem 2.5rem 2rem;
  animation: b2bSlideIn 0.3s cubic-bezier(.4,0,.2,1);
}
@keyframes b2bSlideIn {
  from { opacity:0; transform:translateY(24px) scale(0.97); }
  to   { opacity:1; transform:translateY(0)    scale(1);    }
}
.sp-b2b-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #666;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.sp-b2b-close:hover { color: #087333; }
.sp-b2b-modal-header {
  text-align: center;
  margin-bottom: 1.8rem;
}
.sp-b2b-icon-wrap {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #087333, #0aa84d);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem;
  font-size: 1.5rem;
  color: #fff;
}
.sp-b2b-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2e1a;
  margin: 0 0 0.4rem;
}
.sp-b2b-modal-header p {
  color: #6b7280;
  font-size: 0.92rem;
  margin: 0;
}
.sp-b2b-form { display: flex; flex-direction: column; gap: 1.1rem; }
.sp-b2b-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sp-b2b-group { display: flex; flex-direction: column; gap: 0.35rem; }
.sp-b2b-group-full { grid-column: 1 / -1; }
.sp-b2b-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}
.sp-b2b-group input,
.sp-b2b-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #1f2937;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  resize: vertical;
}
.sp-b2b-group input:focus,
.sp-b2b-group textarea:focus {
  border-color: #087333;
  box-shadow: 0 0 0 3px rgba(8,115,51,0.12);
}
.sp-b2b-submit {
  margin-top: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #087333, #0aa84d);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s, transform 0.2s;
  align-self: flex-start;
}
.sp-b2b-submit:hover { opacity: 0.9; transform: translateY(-1px); }
@media (max-width: 600px) {
  .sp-b2b-modal  { padding: 1.8rem 1.2rem 1.5rem; }
  .sp-b2b-row    { grid-template-columns: 1fr; }
  .sp-b2b-submit { width: 100%; }
}

/* ============================================================
   RESPONSIVE — TABLET (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .sampark-page .sp-info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sampark-page .sp-downloads-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sampark-page .sp-main-grid {
    grid-template-columns: 56% 1fr;
    gap: 20px;
  }

  .sampark-page .sp-office-grid {
    grid-template-columns: 40% 1fr;
  }

  .sampark-page .sp-hero-title {
    font-size: 42px;
  }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT (768px)
   ============================================================ */
@media (max-width: 768px) {
  .sampark-page .sp-container {
    padding: 0 14px;
  }

  /* Hero */
  .sampark-page .sp-hero-inner {
    flex-direction: column;
    min-height: auto;
  }

  .sampark-page .sp-hero-content {
    flex: none;
    padding: 30px 14px 22px;
  }

  .sampark-page .sp-hero-image {
    flex: none;
  }

  .sampark-page .sp-hero-img-placeholder {
    min-height: 200px;
  }

  .sampark-page .sp-hero-title {
    font-size: 36px;
  }

  .sampark-page .sp-hero-subtitle {
    font-size: 17px;
  }

  /* Contact cards */
  .sampark-page .sp-info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Main section */
  .sampark-page .sp-main-grid {
    grid-template-columns: 1fr;
  }

  /* Downloads */
  .sampark-page .sp-downloads-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Office */
  .sampark-page .sp-office-grid {
    grid-template-columns: 1fr;
  }

  .sampark-page .sp-map-placeholder {
    height: 280px;
  }

  /* CTA */
  .sampark-page .sp-cta-banner {
    flex-wrap: wrap;
    padding: 24px 20px;
  }

  .sampark-page .sp-cta-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (600px)
   ============================================================ */
@media (max-width: 600px) {
  .sampark-page .sp-info-cards-grid {
    grid-template-columns: 1fr;
  }

  .sampark-page .sp-form-row {
    grid-template-columns: 1fr;
  }

  .sampark-page .sp-captcha-row {
    flex-direction: column;
    align-items: stretch;
  }

  .sampark-page .sp-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .sampark-page .sp-downloads-grid {
    grid-template-columns: 1fr;
  }

  .sampark-page .sp-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sampark-page .sp-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .sampark-page .sp-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .sampark-page .sp-main-section {
    padding: 34px 0;
  }

  .sampark-page .sp-downloads-section {
    padding: 34px 0 30px;
  }

  .sampark-page .sp-office-section {
    padding: 34px 0;
  }

  .sampark-page .sp-cta-section {
    padding: 30px 0 40px;
  }

  .sampark-page .sp-section-heading h2 {
    font-size: 22px;
  }

  .sampark-page .sp-map-placeholder {
    height: 240px;
  }

  .sampark-page .sp-form-card {
    padding: 22px 16px 18px;
  }

  .sampark-page .sp-reasons-card {
    padding: 20px 16px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (400px)
   ============================================================ */
@media (max-width: 400px) {
  .sampark-page .sp-hero-title {
    font-size: 28px;
  }

  .sampark-page .sp-hero-subtitle {
    font-size: 15px;
  }

  .sampark-page .sp-form-title {
    font-size: 18px;
  }

  .sampark-page .sp-cta-text h2 {
    font-size: 18px;
  }

  .sampark-page .sp-info-card {
    padding: 14px 14px;
  }

  .sampark-page .sp-captcha-row {
    gap: 8px;
  }

  .sampark-page .sp-map-placeholder {
    height: 200px;
  }

  .sampark-page .sp-map-popup {
    max-width: 160px;
    padding: 8px 10px;
  }

  .sampark-page .sp-downloads-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   MEMBERSHIP PAGE — .membership-page
   ======================================== */

.membership-page .ms-breadcrumb {
  background: #f4f7f2;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.membership-page .ms-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.membership-page .ms-breadcrumb a {
  color: var(--text-muted);
  font-weight: 500;
}

.membership-page .ms-breadcrumb a:hover {
  color: var(--primary-green);
}

.membership-page .ms-bc-sep {
  color: var(--text-light);
  font-size: 0.65rem;
}

.membership-page .ms-bc-current {
  color: var(--primary-green);
  font-weight: 600;
}

.membership-page .ms-hero {
  background: linear-gradient(90deg, rgba(248, 250, 246, 0.92) 0%, rgba(245, 249, 240, 0.72) 38%, rgba(245, 249, 240, 0.28) 62%, rgba(245, 249, 240, 0.08) 100%),
              url('images/about_hero.png') right center / cover no-repeat;
  padding: 52px 0 64px;
  min-height: 320px;
  overflow: hidden;
}

.membership-page .ms-hero-inner {
  max-width: 640px;
}

.membership-page .ms-hero-badge {
  display: inline-block;
  background: rgba(46, 125, 50, 0.12);
  color: var(--primary-green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.membership-page .ms-hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 8px;
}

.membership-page .ms-hero-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 16px;
}

.membership-page .ms-hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

.membership-page .ms-requirements {
  padding: 48px 0 72px;
}

.membership-page .ms-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.membership-page .ms-list-card,
.membership-page .ms-share-card,
.membership-page .ms-contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.membership-page .ms-list-card {
  padding: 28px 28px 12px;
}

.membership-page .ms-list-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.membership-page .ms-list-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.membership-page .ms-list-header h2 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.membership-page .ms-list-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.membership-page .ms-checklist {
  list-style: none;
}

.membership-page .ms-checklist li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
}

.membership-page .ms-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.membership-page .ms-item-body h3 {
  font-size: 1.02rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.membership-page .ms-item-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.membership-page .ms-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.membership-page .ms-share-card {
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, #f0f7f0 0%, #fff 70%);
}

.membership-page .ms-share-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.membership-page .ms-share-card h3 {
  font-size: 1rem;
  color: var(--text-dark);
}

.membership-page .ms-share-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.2;
  margin: 6px 0 8px;
}

.membership-page .ms-share-note {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.membership-page .ms-contact-card {
  padding: 22px;
}

.membership-page .ms-contact-card h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.membership-page .ms-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--text-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-top: 1px solid var(--border-light);
}

.membership-page .ms-contact-row:first-of-type {
  border-top: none;
}

.membership-page .ms-contact-row i {
  color: var(--primary-green);
  width: 18px;
  text-align: center;
}

.membership-page .ms-contact-row:hover {
  color: var(--primary-green);
}

.membership-page .ms-side-btn {
  justify-content: center;
}

@media (max-width: 1024px) {
  .header-nav a {
    padding: 8px 10px;
    font-size: 0.82rem;
  }
}

@media (max-width: 900px) {
  .membership-page .ms-layout {
    grid-template-columns: 1fr;
  }

  .membership-page .ms-side {
    position: static;
  }

  .membership-page .ms-hero-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 600px) {
  .membership-page .ms-list-card {
    padding: 20px 16px 8px;
  }

  .membership-page .ms-hero {
    padding: 36px 0 40px;
  }
}

/* Membership documents */
.membership-page .ms-docs-section {
  padding: 0 0 72px;
}

.membership-page .ms-docs-header {
  margin-bottom: 24px;
}

.membership-page .ms-docs-header h2 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.membership-page .ms-docs-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.membership-page .ms-docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.membership-page .ms-doc-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.membership-page .ms-doc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffebee;
  color: #c62828;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.membership-page .ms-doc-icon.docx {
  background: #e3f2fd;
  color: #1565c0;
}

.membership-page .ms-doc-card h3 {
  font-size: 1rem;
  color: var(--text-dark);
}

.membership-page .ms-doc-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.membership-page .ms-doc-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

.membership-page .ms-doc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 14px;
  background: var(--primary-green);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
}

.membership-page .ms-doc-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

.membership-page .ms-company-note {
  background: var(--bg-light-green);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}

.membership-page .ms-company-note h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.membership-page .ms-company-note ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px;
  margin-bottom: 14px;
}

.membership-page .ms-company-note li {
  list-style: disc;
  margin-left: 18px;
  color: var(--text-body);
  font-size: 0.92rem;
}

.membership-page .ms-company-addr {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.membership-page .ms-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.membership-page .ms-company-facts {
  grid-template-columns: 1fr !important;
}

.membership-page .ms-mca-addr {
  margin-top: 6px;
}

.membership-page .ms-doc-facts {
  list-style: none;
  margin: 4px 0 8px;
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.7;
}

.membership-page .ms-form-content {
  padding: 8px 0 28px;
}

.membership-page .ms-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.membership-page .ms-form-block {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}

.membership-page .ms-form-tag {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bg-light-green);
  color: var(--primary-green);
  font-weight: 800;
  margin-bottom: 10px;
}

.membership-page .ms-form-block h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.membership-page .ms-form-block p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   MEMBERSHIP REGISTRATION FORM
   ============================================================ */
.membership-page .ms-reg-section {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, #f0faf3 0%, #ffffff 100%);
}

.membership-page .ms-reg-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ============================================================
   APPLICANT TYPE TOGGLE
   ============================================================ */
.membership-page .ms-applicant-type-wrap {
  margin-bottom: 1.4rem;
}

.membership-page .ms-applicant-type-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.6rem;
}

.membership-page .ms-applicant-type-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.membership-page .ms-type-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 2px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.membership-page .ms-type-btn:hover {
  border-color: #087333;
  color: #087333;
  background: #f0faf3;
}

.membership-page .ms-type-btn.ms-type-active {
  border-color: #087333;
  background: linear-gradient(135deg, #087333, #0aa84d);
  color: #fff;
  box-shadow: 0 4px 14px rgba(8,115,51,0.25);
}

.membership-page .ms-type-btn i {
  font-size: 0.95rem;
}

/* org-fields grid — same as ms-reg-grid but shown when type≠individual */
.membership-page .ms-org-fields {
  background: #f8fdf9;
  border: 1.5px solid #c6e8ce;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  animation: msStepIn 0.3s ease;
}

/* individual-fields: flows inside the parent ms-reg-grid as sub-items */
.membership-page .ms-individual-fields {
  display: contents; /* renders children directly into parent grid */
}

@media (max-width: 600px) {
  .membership-page .ms-applicant-type-btns { flex-direction: column; }
  .membership-page .ms-type-btn            { width: 100%; justify-content: center; }
}

/* ============================================================
   DOCUMENT UPLOAD BOX
   ============================================================ */
.membership-page .ms-upload-box {
  border: 2px dashed #b8dfc3;
  border-radius: 12px;
  background: #f8fdf9;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  overflow: hidden;
}

.membership-page .ms-upload-box:hover {
  border-color: #087333;
  background: #f0faf3;
  transform: translateY(-2px);
}

.membership-page .ms-upload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 1.6rem 1rem;
  text-align: center;
  pointer-events: none;
}

.membership-page .ms-upload-icon {
  font-size: 2rem;
  color: #087333;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.membership-page .ms-upload-icon-done {
  opacity: 1;
  color: #087333;
}

.membership-page .ms-upload-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
  margin: 0;
}

.membership-page .ms-upload-done {
  color: #087333;
}

.membership-page .ms-upload-hint {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0;
}

/* Done state */
.membership-page .ms-upload-box-done {
  border-style: solid;
  border-color: #087333;
  background: #f0faf3;
}

/* Error state */
.membership-page .ms-upload-box-error {
  border-color: #e53e3e !important;
  background: #fff5f5 !important;
  animation: msShake 0.45s ease;
}

.membership-page .ms-reg-badge {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, #087333, #0aa84d);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 1.1rem;
  box-shadow: 0 8px 24px rgba(8,115,51,0.25);
}

.membership-page .ms-reg-header h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.membership-page .ms-reg-header p {
  color: var(--text-muted);
  font-size: 0.97rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Form card */
.membership-page .ms-reg-form {
  background: #fff;
  border: 1px solid #e2ece5;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  overflow: hidden;
}

/* Section block */
.membership-page .ms-reg-section-block {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid #edf3ee;
}
.membership-page .ms-reg-section-block:last-child { border-bottom: none; }

/* A/B/C/D title row */
.membership-page .ms-reg-section-title {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.membership-page .ms-reg-tag {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #087333, #0aa84d);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(8,115,51,0.2);
}

.membership-page .ms-reg-section-title h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2px;
}

.membership-page .ms-reg-section-title p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Grid of inputs */
.membership-page .ms-reg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.4rem;
}

.membership-page .ms-reg-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.membership-page .ms-reg-group-full {
  grid-column: 1 / -1;
}

.membership-page .ms-reg-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #374151;
}

.membership-page .ms-req { color: #e53e3e; }

.membership-page .ms-reg-group input,
.membership-page .ms-reg-group select,
.membership-page .ms-reg-group textarea {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.93rem;
  color: #1f2937;
  outline: none;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.membership-page .ms-reg-group input:focus,
.membership-page .ms-reg-group select:focus,
.membership-page .ms-reg-group textarea:focus {
  border-color: #087333;
  box-shadow: 0 0 0 3px rgba(8,115,51,0.11);
}

/* Checkbox group (activity types) */
.membership-page .ms-reg-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.membership-page .ms-reg-checkbox {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #374151;
  cursor: pointer;
  padding: 0.4rem 0.85rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.membership-page .ms-reg-checkbox:has(input:checked) {
  border-color: #087333;
  background: #f0faf3;
  color: #087333;
  font-weight: 600;
}

.membership-page .ms-reg-checkbox input[type="checkbox"] {
  accent-color: #087333;
  width: 15px; height: 15px;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

/* Section C – Share info box */
.membership-page .ms-reg-share-info {
  margin-bottom: 1.2rem;
}

.membership-page .ms-reg-share-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #087333, #0aa84d);
  color: #fff;
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
}

.membership-page .ms-reg-share-box i {
  font-size: 1.6rem;
  opacity: 0.85;
}

.membership-page .ms-reg-share-box strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.membership-page .ms-reg-share-box span {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 2px;
}

/* Section D – Declaration */
.membership-page .ms-reg-declaration {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: #f8fdf9;
  border: 1.5px solid #c6e8ce;
  border-radius: 10px;
}

.membership-page .ms-reg-decl-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.6;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
}

.membership-page .ms-reg-decl-check input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 17px; height: 17px;
  accent-color: #087333;
  border: none; box-shadow: none; padding: 0;
}

/* Submit area */
.membership-page .ms-reg-submit-wrap {
  padding: 1.8rem 2.5rem 2.2rem;
  background: #f8fdf9;
  border-top: 1px solid #edf3ee;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.membership-page .ms-reg-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, #087333, #0aa84d);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(8,115,51,0.28);
  transition: opacity 0.2s, transform 0.2s;
}

.membership-page .ms-reg-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.membership-page .ms-reg-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.membership-page .ms-reg-note i { color: #087333; }

/* Responsive */
@media (max-width: 768px) {
  .membership-page .ms-reg-section-block { padding: 1.5rem 1.2rem; }
  .membership-page .ms-reg-grid          { grid-template-columns: 1fr; }
  .membership-page .ms-reg-group-full    { grid-column: 1; }
  .membership-page .ms-reg-submit-wrap   { padding: 1.4rem 1.2rem; flex-direction: column; align-items: flex-start; }
  .membership-page .ms-reg-submit        { width: 100%; justify-content: center; }
}

/* ============================================================
   STEP INDICATOR BAR
   ============================================================ */
.membership-page .ms-step-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.2rem;
}

.membership-page .ms-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.membership-page .ms-step-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2.5px solid #d1d5db;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.membership-page .ms-step span {
  font-size: 0.82rem;
  color: #9ca3af;
  font-weight: 500;
  transition: color 0.3s;
}

.membership-page .ms-step.ms-step-active .ms-step-circle {
  border-color: #087333;
  background: #087333;
  color: #fff;
  box-shadow: 0 0 0 5px rgba(8,115,51,0.15);
}

.membership-page .ms-step.ms-step-active span {
  color: #087333;
  font-weight: 700;
}

.membership-page .ms-step.ms-step-done .ms-step-circle {
  border-color: #087333;
  background: #f0faf3;
  color: #087333;
}

.membership-page .ms-step.ms-step-done span {
  color: #087333;
}

.membership-page .ms-step-line {
  flex: 1;
  height: 2.5px;
  background: #d1d5db;
  min-width: 80px;
  max-width: 160px;
  margin: 0 0.5rem;
  margin-bottom: 1.4rem;
  border-radius: 2px;
  transition: background 0.3s;
}

/* ============================================================
   WIZARD STEP SHOW / HIDE
   ============================================================ */
.membership-page .ms-wizard-step {
  animation: msStepIn 0.35s ease;
}

.membership-page .ms-wizard-step-hidden {
  display: none !important;
}

@keyframes msStepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   PAYMENT INFO CARD (Step 2)
   ============================================================ */
.membership-page .ms-pay-info-card {
  background: linear-gradient(135deg, #f0faf3 0%, #e8f5ec 100%);
  border: 1.5px solid #b8dfc3;
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 0.5rem;
}

.membership-page .ms-pay-amount {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #b8dfc3;
}

.membership-page .ms-pay-amount i {
  font-size: 2rem;
  color: #087333;
  opacity: 0.8;
}

.membership-page .ms-pay-amount strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #087333;
  line-height: 1;
}

.membership-page .ms-pay-amount span {
  font-size: 0.85rem;
  color: #4b7a5a;
  margin-top: 2px;
}

.membership-page .ms-pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.membership-page .ms-pay-method {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.membership-page .ms-pay-method i {
  font-size: 1.3rem;
  color: #087333;
  margin-top: 2px;
  flex-shrink: 0;
}

.membership-page .ms-pay-method > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.membership-page .ms-pay-method strong {
  font-size: 0.9rem;
  color: #1a2e1a;
  font-weight: 700;
}

.membership-page .ms-pay-method span {
  font-size: 0.82rem;
  color: #4b7a5a;
}

.membership-page .ms-copy-btn {
  margin-top: 4px;
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: #087333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.78rem;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
  width: fit-content;
}

.membership-page .ms-copy-btn:hover { opacity: 0.85; }

/* Back button */
.membership-page .ms-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #374151;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.membership-page .ms-btn-back:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

/* Step 2 actions layout */
.membership-page .ms-step2-actions {
  justify-content: flex-start;
  gap: 1rem;
}

/* Shake error animation */
.membership-page .ms-input-error {
  animation: msShake 0.45s ease;
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12) !important;
}

@keyframes msShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-5px); }
  40%       { transform: translateX(5px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

/* ============================================================
   SUCCESS SCREEN
   ============================================================ */
.membership-page .ms-success-screen {
  display: none;
  text-align: center;
  padding: 3.5rem 2rem 4rem;
  animation: msSuccessIn 0.5s ease;
}

.membership-page .ms-success-screen.ms-success-visible {
  display: block;
}

@keyframes msSuccessIn {
  from { opacity: 0; transform: scale(0.95) translateY(16px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

/* Icon wrap with rings */
.membership-page .ms-success-icon-wrap {
  position: relative;
  width: 120px; height: 120px;
  margin: 0 auto 2rem;
}

.membership-page .ms-success-circle {
  position: relative;
  z-index: 2;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #087333, #0aa84d);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 20px auto 0;
  box-shadow: 0 8px 28px rgba(8,115,51,0.35);
  animation: msBounceIn 0.5s 0.2s cubic-bezier(.4,1.6,.6,1) both;
}

@keyframes msBounceIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.membership-page .ms-success-rings {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.membership-page .ms-success-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(8,115,51,0.25);
  animation: msRingPulse 2s ease-out infinite;
}

.membership-page .ms-success-rings span:nth-child(2) { animation-delay: 0.5s; }
.membership-page .ms-success-rings span:nth-child(3) { animation-delay: 1s; }

@keyframes msRingPulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.membership-page .ms-success-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a2e1a;
  margin-bottom: 0.5rem;
}

.membership-page .ms-success-sub {
  font-size: 1.05rem;
  color: #4b7a5a;
  margin-bottom: 2rem;
}

.membership-page .ms-success-info-box {
  max-width: 560px;
  margin: 0 auto 2.2rem;
  background: #f0faf3;
  border: 1px solid #b8dfc3;
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.membership-page .ms-success-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
}

.membership-page .ms-success-info-row i {
  font-size: 1rem;
  color: #087333;
  margin-top: 2px;
  flex-shrink: 0;
}

.membership-page .ms-success-info-row a {
  color: #087333;
  text-decoration: underline;
  font-weight: 600;
}

.membership-page .ms-success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .membership-page .ms-pay-methods     { grid-template-columns: 1fr; }
  .membership-page .ms-step2-actions   { flex-direction: column; }
  .membership-page .ms-btn-back        { width: 100%; justify-content: center; }
  .membership-page .ms-success-actions { flex-direction: column; align-items: center; }
}

/* Yojana action plan */
.yojana-page .yojana-action-plan {
  padding: 48px 0 20px;
}

.yojana-page .yap-lead {
  max-width: 920px;
  color: var(--text-muted);
  margin: -8px 0 24px;
  line-height: 1.75;
}

.yojana-page .yap-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.yojana-page .yap-stat {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.yojana-page .yap-stat strong {
  display: block;
  font-size: 1.15rem;
  color: var(--primary-green);
  margin-bottom: 4px;
}

.yojana-page .yap-stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.yojana-page .yap-vision {
  background: linear-gradient(135deg, #f0f7f0, #fff);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 22px;
}

.yojana-page .yap-vision h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.yojana-page .yap-vision p {
  color: var(--text-body);
  line-height: 1.75;
  font-size: 0.95rem;
}

.yojana-page .yap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.yojana-page .yap-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  box-shadow: var(--shadow-card);
}

.yojana-page .yap-card h4 {
  font-size: 0.98rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.yojana-page .yap-card ul {
  list-style: disc;
  padding-left: 18px;
}

.yojana-page .yap-card li {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 6px;
}

.yojana-page .yap-roadmap {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 22px;
}

.yojana-page .yap-roadmap h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.yojana-page .yap-road-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.yojana-page .yap-road-item {
  background: var(--bg-light-green);
  border-radius: var(--radius-md);
  padding: 14px 12px;
}

.yojana-page .yap-year {
  display: inline-block;
  background: var(--primary-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.yojana-page .yap-road-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.yojana-page .yap-road-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.yojana-page .yap-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

a.download-btn {
  text-decoration: none;
}

a.yojana-dl-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: var(--bg-light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}

a.yojana-dl-btn:hover {
  background: var(--primary-green);
  color: #fff;
}

@media (max-width: 1100px) {
  .membership-page .ms-docs-grid,
  .membership-page .ms-form-grid,
  .membership-page .ms-company-grid,
  .yojana-page .yap-grid,
  .yojana-page .yap-stats,
  .yojana-page .yap-road-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .membership-page .ms-docs-grid,
  .membership-page .ms-form-grid,
  .membership-page .ms-company-grid,
  .yojana-page .yap-grid,
  .yojana-page .yap-stats,
  .yojana-page .yap-road-grid,
  .membership-page .ms-company-note ul {
    grid-template-columns: 1fr;
  }
}