/* ================================
   Bootstrap Icons Font Display Fix
   ================================ */
@font-face {
  font-family: 'bootstrap-icons';
  src: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff2?dd67030699838ea613ee6dbda90effa6') format('woff2'),
    url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff?dd67030699838ea613ee6dbda90effa6') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ================================
   Google Sans Self-Hosted Fonts
   ================================ */
@font-face {
  font-family: 'Google Sans';
  src: url('/assets/fonts/GoogleSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('/assets/fonts/GoogleSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('/assets/fonts/GoogleSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('/assets/fonts/GoogleSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('/assets/fonts/GoogleSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('/assets/fonts/GoogleSans-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('/assets/fonts/GoogleSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('/assets/fonts/GoogleSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ================================
   Brand Colors
   ================================ */
:root {
  --brand-dark: #023909;
  /* deep green */
  --brand-mid: #104907;
  /* secondary dark green */
  --accent: #4eaf45;
  /* bright green highlight */
  --muted-gray: #6c757d;
  --light-bg: #f7fbf7;
}

/* ================================
   Global Base
   ================================ */
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Google Sans', Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #212529;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* ================================
   Hero Section
   ================================ */
.hero-cta {
  position: relative;
  color: #fff;
  padding: 7rem 0;
  min-height: 600px;
  overflow: hidden;
  background: url('/assets/homepage.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  z-index: 1;
  width: 100%;
}

.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(2, 57, 9, 0.92), rgba(2, 57, 9, 0.65));
  z-index: 1;
}

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

.hero-cta h1 {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-cta p.lead {
  font-family: 'Google Sans', sans-serif;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.98);
  max-width: 70ch;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn-cta {
  font-family: 'Google Sans', sans-serif;
  letter-spacing: 0.03em;
  background: #ffffff;
  color: var(--brand-dark);
  border: 0;
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}

.hero-cta .btn-cta:hover,
.hero-cta .btn-cta:focus {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 73, 7, 0.16);
}

.hero-quote {
  position: relative;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-quote .quote-text {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 2px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 0 2.5rem;
  text-align: center;
}

.hero-quote .quote-text::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -0.15em;
  font-size: 4.5em;
  font-family: 'Google Sans', serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 0.6;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-quote .quote-text::after {
  content: '\201D';
  position: absolute;
  right: 0;
  bottom: -0.3em;
  font-size: 4.5em;
  font-family: 'Google Sans', serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 0.6;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-cta {
    padding: 4rem 0;
    min-height: 500px;
  }

  .hero-background-video {
    width: 100%;
    height: 100%;
  }

  .hero-quote {
    padding-top: 1.25rem;
    margin-top: 1rem;
  }

  .hero-quote .quote-text {
    padding: 0 2rem;
    font-size: 1rem;
  }

  .hero-quote .quote-text::before {
    font-size: 3.5em;
    top: -0.1em;
  }

  .hero-quote .quote-text::after {
    font-size: 3.5em;
    bottom: -0.25em;
  }
}

/* Quote Card Section */
.quote-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  margin-top: -6rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.quote-card {
  max-width: 700px;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem 3.5rem;
  box-shadow: 0 20px 60px rgba(2, 57, 9, 0.2),
    0 8px 24px rgba(2, 57, 9, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: visible;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.quote-card-content {
  position: relative;
  text-align: center;
}

.quote-card-text {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(1.5625rem, 3.125vw, 2.1875rem);
  font-weight: 500;
  font-style: italic;
  color: var(--brand-dark);
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
}

@media (max-width: 991.98px) {
  .quote-card-wrapper {
    margin-top: -5rem;
    margin-bottom: 1.5rem;
  }

  .quote-card {
    padding: 3rem 3.5rem;
    border-radius: 20px;
  }
}

@media (max-width: 575.98px) {
  .quote-card-wrapper {
    margin-top: -4rem;
    margin-bottom: 1rem;
    padding: 0 0.75rem;
  }

  .quote-card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
  }

  .quote-card-text {
    font-size: 1.275rem;
    line-height: 1.5;
    padding: 0 1rem;
  }
}

/* ================================
   Section Base Styles
   ================================ */
.section-white {
  background: #ffffff;
  padding: 4rem 0;
}

.section-giant {
  padding: 4rem 0;
}

.section-heading-brand {
  color: var(--brand-dark);
}

.muted {
  color: rgba(0, 0, 0, 0.55);
}

.white {
  color: #fff !important;
}

/* ================================
   About Section Modern
   ================================ */
.about-section-modern {
  background: #ffffff;
  padding: 5rem 0;
  position: relative;
}

.about-content-modern {
  max-width: 100%;
}

.about-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.about-title {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-modern-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-modern-primary:hover {
  background: var(--brand-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(78, 175, 69, 0.3);
  color: #ffffff;
}

.btn-modern-secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-modern-secondary:hover {
  background: var(--brand-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2, 57, 9, 0.12);
}

.about-image-modern {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image-modern {
  transform: scale(1.05);
}

.stats-modern-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(2, 57, 9, 0.08);
}

.stat-modern-item {
  text-align: center;
}

.stat-modern-number {
  font-family: 'Google Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat-modern-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .about-section-modern {
    padding: 4rem 0;
  }

  .about-description {
    max-width: 100%;
  }

  .stats-modern-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
  }

  .stat-modern-number {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .about-section-modern {
    padding: 3rem 0;
  }

  .about-title {
    font-size: 1.75rem;
  }

  .about-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .about-actions {
    flex-direction: column;
  }

  .btn-modern {
    width: 100%;
    justify-content: center;
  }

  .stats-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }

  .stat-modern-number {
    font-size: 1.75rem;
  }

  .stat-modern-label {
    font-size: 0.8125rem;
  }
}

/* ================================
   Focus Cards Modern
   ================================ */
.focus-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.focus-card-modern {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(16, 73, 7, 0.08);
}

.focus-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(16, 73, 7, 0.15), 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(16, 73, 7, 0.2);
}

.focus-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(16, 73, 7, 0.05) 0%, rgba(2, 57, 9, 0.1) 100%);
}

.focus-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.focus-card-modern:hover .focus-card-image {
  transform: scale(1.08);
}

.focus-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 73, 7, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.focus-card-modern:hover .focus-card-overlay {
  opacity: 1;
}

.focus-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.focus-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.focus-card-modern:hover .focus-card-title {
  color: var(--accent);
}

.focus-card-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.focus-card-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, #00b380 100%);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  box-shadow: 0 4px 12px rgba(16, 73, 7, 0.2);
  position: relative;
  overflow: hidden;
}

.focus-card-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.focus-card-modern:hover .focus-card-button::before {
  left: 100%;
}

.focus-card-modern:hover .focus-card-button {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(16, 73, 7, 0.3);
  background: linear-gradient(135deg, #00b380 0%, var(--accent) 100%);
}

.focus-card-button i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
}

.focus-card-modern:hover .focus-card-button i {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .focus-card-image-wrapper {
    height: 200px;
  }

  .focus-card-content {
    padding: 1.5rem;
  }

  .focus-card-title {
    font-size: 1.25rem;
  }
}

/* ================================
   Why Choose Section
   ================================ */
.why-choose {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #00b380 50%, var(--accent) 100%);
}

.why-choose-header {
  margin-bottom: 4rem;
}

.why-choose-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.why-choose-title em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
  position: relative;
}

.why-choose-title em span {
  background: linear-gradient(135deg, var(--accent) 0%, #00b380 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.feature-card-modern {
  border-radius: 20px;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid rgba(16, 73, 7, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #00b380 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16, 73, 7, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(16, 73, 7, 0.15);
  background: #ffffff;
}

.feature-icon-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 73, 7, 0.08) 0%, rgba(2, 57, 9, 0.12) 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}

.feature-card-modern:hover .feature-icon-bg {
  background: linear-gradient(135deg, rgba(16, 73, 7, 0.15) 0%, rgba(2, 57, 9, 0.2) 100%);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: transparent;
}

.feature-icon-wrapper:has(.feature-icon-img) .feature-icon-bg {
  display: none;
}

.feature-card-modern:hover .feature-icon {
  transform: scale(1.15);
  color: #00b380;
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.feature-card-modern:hover .feature-title {
  color: var(--accent);
}

.feature-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .why-choose {
    padding: 3rem 0;
  }

  .why-choose-title {
    font-size: 2rem;
  }

  .why-choose-subtitle {
    font-size: 1rem;
  }

  .feature-card-modern {
    padding: 2rem 1.5rem;
  }

  .feature-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
  }
}

/* ================================
   Trust Banner Section
   ================================ */
.trust-banner {
  background: linear-gradient(90deg, rgba(2, 57, 9, 0.95), rgba(16, 73, 7, 0.95));
  color: #fff;
  padding: 1.5rem 1rem;
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(2, 57, 9, 0.12);
}

.trust-banner-wrapper {
  padding: 2rem;
}

.stat-item {
  padding: 0.75rem 0.5rem;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #fff;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
  .trust-banner {
    padding: 2rem;
  }

  .stat-item {
    padding: 1rem 0.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}

/* ================================
   Government Section
   ================================ */
.gov-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(2, 57, 9, 0.02), rgba(2, 57, 9, 0.02));
}

.logo-item img {
  max-height: 60px;
  opacity: 0.95;
  display: block;
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
  padding: 4rem 0;
  background: #ffffff;
}

.contact-list .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(78, 175, 69, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(2, 57, 9, 0.03);
}

.contact-list .contact-title {
  font-weight: 700;
  color: #0b2e10;
}

.contact-list .contact-line a {
  color: var(--brand-mid);
  font-weight: 600;
  text-decoration: none;
}

.engage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.engage-box {
  background: #f7fbf7;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(2, 57, 9, 0.03);
}

.form-note {
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-note a {
  color: var(--brand-mid);
  font-weight: 600;
}

.form-note a:hover {
  color: var(--accent);
}

/* ================================
   Navbar / Header
   ================================ */
.header-nav {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(2, 57, 9, 0.04);
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  position: relative;
}

.header-nav .navbar-brand span {
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: 0.1px;
  font-size: 1rem;
}

.header-nav .nav-link {
  color: #263238;
  padding: 0.6rem 0.9rem;
  transition: color .12s ease, transform .08s ease;
  font-size: 0.98rem;
}

.header-nav .nav-link:hover,
.header-nav .nav-link:focus {
  color: var(--accent);
  transform: translateY(-1px);
}

.header-nav .btn-cta {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 0.45rem 1rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(78, 175, 69, 0.12);
  transition: transform .12s ease, box-shadow .12s ease;
}

.header-nav .btn-cta:hover,
.header-nav .btn-cta:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 73, 7, 0.16);
  color: #fff;
}

.header-nav .dropdown-menu {
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(6, 32, 17, 0.08);
  border: 1px solid rgba(2, 57, 9, 0.04);
}

.header-nav .dropdown-item {
  color: #21302a;
  padding: 0.6rem 1rem;
}

.header-nav .dropdown-item:hover {
  background: rgba(78, 175, 69, 0.06);
  color: var(--brand-mid);
}

.header-nav .navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  background-color: transparent;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s ease;
}

.header-nav .navbar-toggler:hover {
  background-color: rgba(78, 175, 69, 0.1);
}

.header-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(78, 175, 69, 0.25);
  outline: none;
}

.header-nav .navbar-toggler-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
}

.header-nav .navbar-toggler-icon::before,
.header-nav .navbar-toggler-icon::after,
.header-nav .navbar-toggler-icon span {
  content: '';
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--brand-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.header-nav .navbar-toggler-icon span {
  width: 100%;
}

/* Animated hamburger to X transformation */
.header-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg) translate(7px, 7px);
}

.header-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
  opacity: 0;
  transform: scaleX(0);
}

/* Hide navbar toggler on large screens (navbar-expand-lg) */
@media (min-width: 992px) {
  .header-nav .navbar-toggler {
    display: none !important;
  }

  .header-nav .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0.3rem;
  }

  .burger-menu-tooltip {
    display: none !important;
  }
}

/* Hand-drawn pointer tooltip for burger menu (mobile only) */
.burger-menu-tooltip {
  position: fixed;
  top: 10px;
  right: 5px;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: auto;
  animation: fadeInBounce 0.6s ease-out;
  max-width: 150px;
  cursor: pointer;
}

.burger-menu-tooltip.hidden {
  display: none !important;
}

.tooltip-pointer {
  width: 90px;
  height: 70px;
  margin-bottom: -6px;
  margin-right: 25px;
  opacity: 0.85;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.tooltip-text {
  background: #fff;
  border: 2.5px solid #023909;
  border-radius: 10px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 600;
  color: #023909;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 4px 12px rgba(2, 57, 9, 0.2);
  position: relative;
  transform: rotate(-1.5deg);
  font-family: 'Comic Sans MS', 'Marker Felt', 'Chalkboard', 'Kalam', cursive, sans-serif;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.tooltip-text::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #023909;
  transform: rotate(20deg);
}

.tooltip-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  transform: rotate(20deg);
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.85);
  }

  60% {
    transform: translateY(3px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hide tooltip on large screens */
@media (min-width: 992px) {
  .burger-menu-tooltip {
    display: none !important;
  }
}

/* Adjust for very small screens */
@media (max-width: 375px) {
  .tooltip-text {
    font-size: 10px;
    padding: 6px 9px;
    white-space: normal;
    max-width: 120px;
  }

  .tooltip-pointer {
    width: 75px;
    height: 60px;
    margin-right: 20px;
  }
}

/* ================================
   Buttons
   ================================ */
.btn-accent {
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: transform .12s ease, box-shadow .12s ease;
}

.btn-accent:hover,
.btn-accent:focus {
  background: #3e9c3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 73, 7, 0.15);
  color: #fff;
}

.btn-outline-dark {
  border: 2px solid var(--brand-dark);
  color: var(--brand-dark);
  font-weight: 600;
}

.btn-outline-dark:hover {
  background: var(--brand-dark);
  color: #fff;
}

/* ================================
   Sections & Cards
   ================================ */
.responsive-illustration {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(2, 57, 9, 0.06);
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 6px 20px rgba(2, 57, 9, 0.06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.10);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(78, 175, 69, 0.12);
  color: var(--brand-mid);
  font-weight: 700;
}

/* ================================
   Footer
   ================================ */
.site-footer {
  background: var(--brand-dark);
  color: #eaf4ec;
  font-size: 0.95rem;
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-footer .footer-brand span {
  color: #ffffff;
  font-weight: 700;
}

.site-footer .footer-heading {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.site-footer .footer-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.5;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s ease;
}

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

.site-footer .footer-contact li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer .footer-contact i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.site-footer .footer-socials a {
  color: #ffffff;
  margin-right: 0.8rem;
  font-size: 1.25rem;
  transition: color 0.2s ease, transform 0.15s ease;
}

.site-footer .footer-socials a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0.4rem;
}

.site-footer .footer-bottom-links a:hover {
  color: var(--accent);
}

.site-footer .footer-tagline {
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Sticky header adjustments */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  /* above other elements */
}

/* Prevent content hiding under header */
body {
  padding-top: 70px;
  /* adjust depending on navbar height */
}

/* Page Hero with Parallax Effect */
.page-hero {
  position: relative;
  height: 230px;
  /* standard height */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 2rem;

  background-size: contain;
  background-position: center;
  background-attachment: fixed;
  /* <— key for parallax */
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 57, 9, 0.85) 0%, rgba(2, 57, 9, 0.65) 60%, rgba(2, 57, 9, 0.4) 100%);
}

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

.page-hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: 2.5rem;
  margin: 0;
  text-align: left;
}

.page-hero p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  padding-top: 4px;
  margin: 0;
}

/* Mobile responsive styles for page-hero */
@media (max-width: 768px) {
  .page-hero {
    height: auto;
    min-height: 280px;
    justify-content: center;
    align-items: center;
    background-attachment: scroll;
    /* Fix parallax issues on mobile */
    background-size: cover;
    padding: 3rem 0;
    margin-bottom: 2rem;
  }

  .page-hero .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
    width: 100%;
  }

  .page-hero h1 {
    font-size: 1.75rem;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding: 0;
  }

  .page-hero p {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.6;
    padding-top: 0;
    margin-top: 0.5rem;
  }

  .page-hero .lead {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .page-hero {
    min-height: 260px;
    padding: 2.5rem 0;
  }

  .page-hero .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
    width: 100%;
  }

  .page-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
  }

  .page-hero p,
  .page-hero .lead {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}

/* ===============================
   PRE-FOOTER CTA SECTION
   =============================== */

.pre-footer-cta {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
  margin: 0;
  /* no gaps before footer */
  color: #fff;
  width: 100%;
  max-width: 100%;
}

.pre-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(2, 57, 9, 0.90) 0%,
      rgba(2, 57, 9, 0.65) 50%,
      rgba(2, 57, 9, 0.35) 100%);
  z-index: 0;
}

/* inner layout */
.pre-footer-cta .cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

/* left text block */
.pre-footer-cta .cta-text {
  max-width: 62%;
  min-width: 280px;
}

.pre-footer-cta h2 {
  color: #fff;
  font-weight: 800;
  margin: 0 0 .4rem;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.15;
}

.pre-footer-cta p.lead {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 .8rem;
  font-size: 1rem;
}

.pre-footer-cta .cta-tagline {
  color: rgba(255, 255, 255, 0.95);
  margin-top: 1rem;
  font-weight: 600;
}

/* right side actions */
.pre-footer-cta .cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
}

/* wrapper for label */
.cta-label-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Big non-clickable label */
.cta-label {
  background: var(--accent);
  color: #fff;
  padding: .72rem 1.05rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 10px 28px rgba(16, 73, 7, 0.15);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  pointer-events: none;
  /* not clickable */
  user-select: none;
  transition: all .15s ease;
}

/* Make cta-label clickable when it's a link - glassy white */
.cta-label.btn-contact-link {
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cta-label.btn-contact-link:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Subtitle under label */
.cta-label-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: .85rem;
  margin-top: .3rem;
  text-align: center;
  width: 100%;
}

/* Buttons row */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Ghost-style buttons */
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: .7rem .9rem;
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  /* stack label + subtext */
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 140px;
  text-decoration: none;
  transition: all .15s ease;
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Button main and sub lines */
.btn-ghost .btn-main {
  font-size: 1rem;
  font-weight: 700;
}

.btn-ghost .btn-sub {
  display: block;
  /* force next line */
  font-size: .78rem;
  font-weight: 500;
  margin-top: .2rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Accessibility */
.btn-ghost:focus {
  outline: 3px solid rgba(78, 175, 69, 0.25);
  outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .pre-footer-cta .cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pre-footer-cta .cta-text {
    max-width: 100%;
  }

  .pre-footer-cta .cta-actions {
    width: 100%;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: .8rem;
  }

  .btn-ghost {
    width: 100%;
    max-width: 260px;
  }
}

/* ================================
   Logo Auto-Scroll Section
   ================================ */
.logo-scroll-container {
  overflow: hidden;
  width: 100%;
  margin: 2rem 0;
  padding: 1.5rem 0;
  position: relative;
}

.logo-scroll-container::before,
.logo-scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.logo-scroll-container::before {
  left: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
}

.logo-scroll-container::after {
  right: 0;
  background: linear-gradient(to left,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
}

.logo-scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.logo-scroll-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: scroll-logos 30s linear infinite;
  width: fit-content;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0 1rem;
  text-align: center;
}

.logo-item img {
  display: block;
  object-fit: contain;
}

.logo-item .text-success {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional) */
.logo-scroll-container:hover .logo-scroll-track {
  animation-play-state: paused;
}

/* ================================
   UI Cards
   ================================ */
.ui-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 12px 36px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ui-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* ================================
   Text Utilities
   ================================ */
.text-success {
  color: var(--accent) !important;
}

.text-info {
  color: var(--brand-mid) !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-purple {
  color: #7c35cf !important;
}

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

/* ================================
   Skill Cards
   ================================ */
.skill-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ================================
   Icon Circle
   ================================ */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* ================================
   Story Cards
   ================================ */
.story-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 36px rgba(2, 57, 9, 0.09);
  padding: 2rem 1.5rem 1.5rem;
  border-left: 4px solid var(--accent);
  transition: box-shadow .2s, transform .2s;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.story-card:hover {
  box-shadow: 0 16px 36px rgba(2, 57, 9, 0.19);
  transform: translateY(-3px);
}

.story-card h5 {
  color: var(--brand-dark);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.story-card blockquote {
  font-style: italic;
  color: #212529;
  font-size: 1.05rem;
  padding-left: 12px;
  border-left: 2px solid var(--muted-gray);
  background: transparent;
}

@media (max-width: 991.98px) {
  .row.success-stories>.col-md-4 {
    min-width: 90vw;
    margin: 0 auto;
  }

  .story-card {
    margin-bottom: 1rem;
  }
}

/* ================================
   Impact Section
   ================================ */
.impact-section {
  position: relative;
  min-height: 550px;
  color: #fff;
  margin-bottom: 3rem;
  padding: 0;
  overflow: hidden;
}

.impact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  z-index: 1;
}

.impact-section .container,
.impact-section .container>.position-relative {
  position: relative;
  z-index: 2;
}

.stat-block {
  margin-bottom: 1.5rem;
}

.stat-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.stat-desc {
  display: block;
  font-size: 1.05rem;
  color: #f7fbf7;
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.impact-section.mb-0 {
  min-height: auto;
  padding: 2rem 0;
}

.impact-box {
  background: rgba(2, 57, 9, 0.6);
  border-radius: 16px;
  box-shadow: 0 5px 40px rgba(2, 57, 9, 0.10);
  padding: 2rem 1.5rem;
  margin-bottom: 1rem;
  min-height: 210px;
}

.impact-box h5 {
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}

.impact-box ul li {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.bg-light {
  background: #f7fbf7 !important;
}

/* ================================
   Job Cards
   ================================ */
.ui-job-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(2, 57, 9, 0.09);
  padding: 1.5rem 2rem;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1px solid #eaeef1;
  min-height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ui-job-card:hover {
  box-shadow: 0 22px 44px rgba(2, 57, 9, 0.13);
  transform: translateY(-2px) scale(1.02);
}

.job-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  font-size: 1.45rem;
  box-shadow: 0 2px 8px rgba(78, 175, 69, 0.14);
  flex-shrink: 0;
}

.job-details-list {
  margin-bottom: 0;
  margin-left: 3.2rem;
  padding-left: 0.6rem;
  color: #212529;
  font-size: 1.05rem;
}

.job-details-list li {
  margin-bottom: 0.4rem;
  list-style: disc;
}

.ecosystem-img {
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(2, 57, 9, 0.09);
  object-fit: cover;
  width: 100%;
  max-width: 440px;
  height: 250px;
  min-width: 220px;
  margin-top: 0;
  background: #eaf4ec;
}

@media (max-width: 1200px) {
  .ecosystem-img {
    max-width: 370px;
    height: 200px;
  }

  .ui-job-card {
    padding: 1.15rem 1rem;
  }
}

@media (max-width: 991px) {
  .ecosystem-img {
    max-width: 99vw;
    height: 180px;
    margin: 1rem auto 0;
    display: block;
  }

  .ui-job-card {
    margin-bottom: 1rem;
    min-height: unset;
  }

  .job-details-list {
    margin-left: 2rem;
  }

  .bg-light {
    padding: 2rem 0;
  }
}

@media (max-width: 767px) {
  .job-details-list {
    margin-left: 0.3rem;
    font-size: 1rem;
  }

  .ui-job-card {
    padding: 1rem;
  }

  .ecosystem-img {
    height: 150px;
  }
}

/* ================================
   RE Journey Section
   ================================ */
.re-journey-section {
  background: #f7fbf7;
  border-radius: 16px;
  margin-bottom: 2rem;
  padding: 2rem 1rem;
}

@media (max-width: 991px) {
  .re-journey-section .stat-value {
    font-size: 1.62rem;
  }

  .re-journey-section {
    padding: 1.4rem .6rem;
  }
}

/* ================================
   Benefits Section
   ================================ */
#benefits .benefit-card {
  border-radius: 14px;
  background-color: #f9fdf9;
  transition: all 0.3s ease;
}

#benefits .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(30, 120, 60, 0.15);
  background-color: #ffffff;
}

#benefits h2 {
  color: #000;
  font-size: 2rem;
}

#benefits h5 {
  color: #176c36;
}

#benefits p {
  color: #555;
  line-height: 1.6;
}

#benefits img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  #benefits h2 {
    font-size: 1.6rem;
  }

  #benefits p {
    font-size: 0.95rem;
  }
}

/* ================================
   Impact Cards
   ================================ */
.impact-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.impact-card p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}

/* ================================
   Background Color Utilities
   ================================ */
.bg-green {
  background-color: #b7f3c8;
  color: #058c42;
}

.bg-blue {
  background-color: #e3f0ff;
  color: #0d6efd;
}

.bg-orange {
  background-color: #ffe7c2;
  color: #f57c00;
}

.bg-purple {
  background-color: #f1e3ff;
  color: #a855f7;
}

/* ================================
   Economic Impact Section
   ================================ */
.economic-impact-section {
  position: relative;
  background: linear-gradient(135deg, rgba(2, 57, 9, 0.95) 0%, rgba(4, 90, 15, 0.9) 100%), url('assets/impact-bg.webp') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.economic-impact-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 57, 9, 0.7) 0%, rgba(4, 90, 15, 0.65) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.economic-impact-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}

.economic-impact-section p {
  color: #e8e8e8;
  font-size: 1.1rem;
  line-height: 1.6;
}

.economic-stat {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.economic-stat:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(78, 175, 69, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.economic-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4eaf45;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(78, 175, 69, 0.3);
  line-height: 1.2;
}

.economic-stat-desc {
  font-size: 0.95rem;
  color: #e8e8e8;
  line-height: 1.5;
  font-weight: 400;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #f8f9fa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(78, 175, 69, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.benefit-card h5 {
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
}

.benefit-card ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #e8e8e8;
  line-height: 1.6;
}

/* ================================
   Skills Training Section
   ================================ */
.skills-training-section {
  background-color: #f9fafb;
}

.skills-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.skills-card {
  border-radius: 15px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.skills-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.skills-card ul li {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* ================================
   WhatsApp Floating Button
   ================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Google Sans', Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  animation: whatsappGlow 2s ease-in-out infinite;
}

/* WhatsApp button glow animation */
@keyframes whatsappGlow {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0.7),
      0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6),
      0 0 0 10px rgba(37, 211, 102, 0),
      0 0 0 20px rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5),
    0 0 0 0 rgba(37, 211, 102, 0.7),
    0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: whatsappGlowHover 2s ease-in-out infinite;
}

/* WhatsApp button glow animation on hover */
@keyframes whatsappGlowHover {

  0%,
  100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5),
      0 0 0 0 rgba(37, 211, 102, 0.8),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7),
      0 0 0 12px rgba(37, 211, 102, 0),
      0 0 0 24px rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn:active {
  transform: scale(0.95);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

.whatsapp-dropdown {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10000;
}

.whatsapp-float.active .whatsapp-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-dropdown-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e9ecef;
  background: #f8f9fa;
  border-radius: 12px 12px 0 0;
}

.whatsapp-dropdown-header span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.whatsapp-dropdown-menu {
  padding: 8px;
  max-height: 400px;
  overflow-y: auto;
}

.whatsapp-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #212529;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

.whatsapp-option:hover {
  background: rgba(78, 175, 69, 0.08);
  color: var(--brand-mid);
  transform: translateX(-2px);
}

.whatsapp-option:last-child {
  margin-bottom: 0;
}

.whatsapp-option-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.whatsapp-option-text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-btn {
    width: 56px;
    height: 56px;
  }

  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-dropdown {
    width: 260px;
    bottom: 70px;
    right: 0;
  }

  .whatsapp-dropdown-header {
    padding: 14px 18px;
  }

  .whatsapp-dropdown-header span {
    font-size: 0.9rem;
  }

  .whatsapp-option {
    padding: 11px 14px;
  }

  .whatsapp-option-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .whatsapp-dropdown {
    width: calc(100vw - 30px);
    max-width: 280px;
    right: 0;
  }
}

/* ================================
   Bento Grid Section
   ================================ */
.bento-grid-section {
  padding: 80px 0 84px 0;
  background: #f7fbf7;
}

.bento-grid-section .container {
  padding-top: 58px;
  padding-bottom: 58px;
}

.bento-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 24px;
  height: 836px;
}

.bento-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}

/* Upgrade Discount Card */
.bento-upgrade-card {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #ffffff;
  min-height: 263px;
}

.bento-upgrade-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #008f5e;
  margin: 0;
}

.bento-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: #334155;
  margin: 0;
}

.bento-price {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  background: linear-gradient(180deg, #008f5e 0%, #4eaf45 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.8px;
}

.bento-divider {
  height: 2px;
  background: url('data:image/svg+xml,<svg width="285" height="2" xmlns="http://www.w3.org/2000/svg"><path d="M0 1h285" stroke="%23e2e8f0" stroke-width="2" stroke-dasharray="4 4"/></svg>') no-repeat;
  margin: 4px 0;
}

.bento-discount-code {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 16px;
}

.bento-code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 8px;
}

.bento-barcode {
  height: 22px;
  width: 100%;
}

.bento-barcode img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Typeface Showcase */
.bento-typeface-showcase {
  grid-column: 2;
  grid-row: 1;
  background: linear-gradient(135deg, #006a45 0%, #00b380 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 17px;
  min-height: 262px;
}

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

.bento-typeface-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.bento-typeface-large {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.bento-color-strip {
  display: flex;
  height: 24px;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.color-swatch {
  flex: 1;
  height: 100%;
}

.bento-typeface-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 1;
}

.bento-typeface-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
}

/* Building Mockup */
.bento-building-mockup {
  grid-column: 3;
  grid-row: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 262px;
}

.bento-building-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Smartphone Mockup */
.bento-smartphone-mockup {
  grid-column: 1;
  grid-row: 2;
  background: transparent;
}

.bento-smartphone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Logo Card */
.bento-logo-card {
  grid-column: 2;
  grid-row: 2;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bento-logo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.bento-logo-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-logo-icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.bento-logo-text {
  font-size: 34px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

/* Image Item */
.bento-image-item {
  grid-column: 3;
  grid-row: 2;
  background: transparent;
}

.bento-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Billboard Mockup */
.bento-billboard {
  grid-column: 1 / 3;
  grid-row: 3;
  background: #1e293b;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.bento-billboard-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.bento-billboard-slogan {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.68px;
}

.bento-billboard-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/greenery.webp') center/cover;
  opacity: 0.3;
}

/* Promotional Graphic */
.bento-promo-graphic {
  grid-column: 3;
  grid-row: 3;
  background: linear-gradient(135deg, #006a45 0%, #4eaf45 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.bento-promo-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.bento-promo-text {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.68px;
}

.bento-promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(104, 229, 113, 0.3) 0%, transparent 70%);
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    height: auto;
    min-height: 1200px;
  }

  .bento-upgrade-card {
    grid-column: 1;
    grid-row: 1;
  }

  .bento-typeface-showcase {
    grid-column: 2;
    grid-row: 1;
  }

  .bento-building-mockup {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 300px;
  }

  .bento-smartphone-mockup {
    grid-column: 1;
    grid-row: 3;
    height: 300px;
  }

  .bento-logo-card {
    grid-column: 2;
    grid-row: 3;
  }

  .bento-image-item {
    grid-column: 1 / 3;
    grid-row: 4;
    height: 300px;
  }

  .bento-billboard {
    grid-column: 1 / 3;
    grid-row: 5;
    height: 250px;
  }

  .bento-promo-graphic {
    grid-column: 1 / 3;
    grid-row: 6;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bento-item {
    grid-column: 1 !important;
  }

  .bento-upgrade-card {
    grid-row: 1;
  }

  .bento-typeface-showcase {
    grid-row: 2;
    height: 300px;
  }

  .bento-building-mockup {
    grid-row: 3;
    height: 250px;
  }

  .bento-smartphone-mockup {
    grid-row: 4;
    height: 250px;
  }

  .bento-logo-card {
    grid-row: 5;
    height: 250px;
  }

  .bento-image-item {
    grid-row: 6;
    height: 250px;
  }

  .bento-billboard {
    grid-row: 7;
    height: 200px;
  }

  .bento-promo-graphic {
    grid-row: 8;
    height: 200px;
  }

  .bento-typeface-large {
    font-size: 20px;
  }

  .bento-typeface-title {
    font-size: 24px;
  }

  .bento-billboard-slogan,
  .bento-promo-text {
    font-size: 24px;
  }
}

/* Hide bento grid on small screens */
@media (max-width: 991.98px) {
  .bento-grid-section {
    display: none;
  }
}

/* ================================
   Why Choose Bento Grid
   ================================ */
.why-choose-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-feature-card {
  grid-column: 1;
  grid-row: 1 / 3;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(2, 57, 9, 0.1);
}

.bento-feature-icon {
  margin-bottom: 20px;
}

.bento-feature-card h5 {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.bento-standard-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-standard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(2, 57, 9, 0.08);
}

.bento-standard-card .icon {
  margin-bottom: 16px;
}

.bento-standard-card h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.bento-image-card {
  grid-column: 2 / 4;
  grid-row: 3;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.04);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(2, 57, 9, 0.08);
}

.bento-image-overlay {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.bento-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-image-content {
  flex: 1;
}

.bento-image-content h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

/* Responsive Design for Why Choose Bento Grid */
@media (max-width: 992px) {
  .why-choose-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 20px;
  }

  .bento-feature-card {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .bento-image-card {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .why-choose-bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bento-feature-card,
  .bento-image-card {
    grid-column: 1;
  }

  .bento-image-card {
    flex-direction: column;
    text-align: center;
  }

  .bento-image-overlay {
    width: 100px;
    height: 100px;
  }
}

/* Phone Call Button Styles */
.phone-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9998;
  font-family: 'Google Sans', Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.phone-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #007bff;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  text-decoration: none;
}

.phone-btn:hover {
  background: #0056b3;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 123, 255, 0.5);
  color: #fff;
}

.phone-btn:active {
  transform: scale(0.95);
}

.phone-btn svg {
  width: 28px;
  height: 28px;
}

/* ================================
   Stat Strip Styling
   ================================ */
.stat-strip {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(2, 57, 9, 0.08);
  margin: 20px auto 0 auto;
  max-width: 1200px;
}

.stat-strip.mb-0 {
  margin-bottom: 10px !important;
}

/* Remove spacing between stat strip container and next section */
.container:has(.stat-strip)+.section-white,
.container:has(.stat-strip)~.section-white {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Fallback for browsers that don't support :has() */
.section-white[style*="padding-top: 0"] {
  padding-top: 0 !important;
}

/* Remove spacing between section-white and section-giant */
.section-white+.section-giant,
.section-white~.section-giant {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.section-giant[style*="padding-top: 0"] {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ================================
   Hero Video Styling
   ================================ */
.hero-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(2, 57, 9, 0.15);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.hero-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-video-container {
    min-height: 300px;
    margin-top: 30px;
    display: block !important;
  }
}

@media (max-width: 768px) {
  .hero-video-container {
    min-height: 250px;
    border-radius: 12px;
    margin-top: 20px;
    display: block !important;
  }

  .hero-video,
  .hero-video-container img {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .hero-video-container {
    min-height: 200px;
    margin-top: 15px;
  }
}

.stat-strip .stat {
  padding: 20px 15px;
  transition: transform 0.2s ease;
}

.stat-strip .stat:hover {
  transform: translateY(-2px);
}

.stat-strip .stat h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.2;
}

.stat-strip .stat small {
  font-size: 14px;
  color: var(--muted-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

/* Mobile Responsive for Stat Strip */
@media (max-width: 768px) {
  .stat-strip {
    margin: 15px auto;
    padding: 20px 10px !important;
    border-radius: 12px;
  }

  .stat-strip .row {
    margin: 0;
  }

  .stat-strip .stat {
    padding: 16px 10px;
    margin-bottom: 8px;
  }

  .stat-strip .stat h3 {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .stat-strip .stat small {
    font-size: 11px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 480px) {
  .stat-strip {
    padding: 16px 8px !important;
  }

  .stat-strip .stat {
    padding: 12px 8px;
  }

  .stat-strip .stat h3 {
    font-size: 20px;
  }

  .stat-strip .stat small {
    font-size: 10px;
  }
}

/* Mobile Responsive for Phone Button */
@media (max-width: 768px) {
  .phone-float {
    bottom: 85px;
    right: 15px;
  }

  .phone-btn {
    width: 56px;
    height: 56px;
  }

  .phone-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ================================
   Business Page Styles
   ================================ */

/* Page Hero Styles */
.page-hero {
  background-size: cover;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.page-hero p,
.page-hero .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Page Container */
.page-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.125rem 0.25rem;
}

/* Core Cards */
.core-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 12px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(2, 57, 9, 0.04);
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  transition: transform .16s ease, box-shadow .16s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(2, 57, 9, 0.08);
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.card-head h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 0;
  line-height: 1.3;
}

.badge {
  background: linear-gradient(90deg, var(--accent), var(--brand-mid));
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
}

.kv {
  padding-left: 16px;
  margin: 8px 0 10px;
  color: var(--muted-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.kv li {
  margin-bottom: 0.5rem;
}

.kv li strong {
  font-weight: 700;
  color: var(--brand-dark);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.card-meta .meta-left {
  color: var(--muted-gray);
  font-size: 0.9rem;
}

.card-meta .meta-left strong {
  font-weight: 700;
  color: var(--brand-dark);
}

.card-lead {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Project Solutions Hero */
.project-solutions-hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 22px;
  margin-bottom: 40px;
  padding: 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(2, 57, 9, 0.15);
}

.project-solutions-hero .overlay {
  background: linear-gradient(135deg, rgba(2, 57, 9, 0.92) 0%, rgba(2, 57, 9, 0.85) 50%, rgba(2, 57, 9, 0.78) 100%);
  padding: 60px 0;
  width: 100%;
  position: relative;
  border-radius: 24px;
}

.project-solutions-hero .overlay .container {
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.solution-col {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.solution-col:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(78, 175, 69, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.solutions-grid h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.solutions-grid .kv {
  padding-left: 20px;
  margin: 0;
}

.solutions-grid .kv li {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 15px;
}

.solutions-grid .kv li strong {
  color: #fff;
  font-weight: 600;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 12px;
  align-items: stretch;
}

.process-step {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(2, 57, 9, 0.04);
  box-shadow: 0 8px 20px rgba(2, 57, 9, 0.03);
  transition: transform .14s ease, box-shadow .14s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 160px;
}

.process-step:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(2, 57, 9, 0.06);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin: 0 auto 10px;
}

.process-step h5 {
  margin: 6px 0;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 1.1rem;
}

.process-step p {
  margin: 0;
  color: #4a5568 !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Timeline Cards */
.timeline-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.timeline-card {
  background: #fff;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(2, 57, 9, 0.04);
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  transition: transform .12s;
}

.timeline-card:hover {
  transform: translateY(-6px);
}

/* Pellet Cards */
.pellet-cards {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  align-items: stretch;
}

.img-card {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  transition: transform .28s ease, box-shadow .28s ease;
}

.img-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .36s ease;
}

.img-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(2, 57, 9, 0.9);
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
}

.img-card figcaption strong {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.img-card figcaption .small {
  font-size: 0.85rem;
  opacity: 0.9;
}

.img-card:hover img {
  transform: scale(1.06) translateY(-4px);
}

.img-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(2, 57, 9, 0.08);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .9, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Business Impact Section */
.business-impact-section {
  margin-top: 28px;
}

.impact-inner {
  background: linear-gradient(180deg, #07380b 0%, #0d3f11 100%);
  color: #fff;
  padding: 44px 16px 34px;
  border-radius: 6px;
  text-align: center;
}

.impact-title {
  font-size: 28px;
  margin: 0 0 8px;
  color: #fff;
  font-weight: 900;
}

.impact-lead {
  font-size: 14px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.92);
}

.impact-grid {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 6px 0;
  flex-wrap: wrap;
}

.impact-card {
  flex: 1 1 200px;
  min-width: 180px;
  text-align: center;
  padding: 16px 8px;
}

.impact-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(78, 175, 69, 0.97);
  margin-bottom: 8px;
  transition: transform .18s ease;
}

.impact-label {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
}

.impact-label small {
  display: block;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
  font-size: 12px;
}

.cta-inner {
  max-width: 900px;
  margin: 28px auto 48px;
  padding: 0 16px;
}

.cta-box {
  background: #fff;
  padding: 24px 26px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  text-align: center;
}

.cta-title {
  margin: 0 0 8px;
  font-size: 2rem;
  color: var(--brand-dark);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.cta-lead {
  color: #4a5568 !important;
  margin: 0 0 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
}

.btn-start {
  display: inline-block;
  background: #023909;
  color: #fff;
  padding: 10px 18px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 8px 22px rgba(78, 175, 69, 0.12);
}

.btn-start:hover {
  transform: translateY(-4px);
  filter: brightness(.98);
  color: #fff;
}

/* Responsive Business Page */
@media (max-width: 991.98px) {
  .core-cards {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
  }

  .timeline-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pellet-cards {
    flex-direction: column;
  }

  .project-solutions-hero {
    border-radius: 20px;
    margin-bottom: 30px;
  }

  .project-solutions-hero .overlay {
    padding: 50px 0;
    border-radius: 20px;
  }

  .solutions-grid {
    gap: 24px;
    margin-top: 28px;
  }

  .solution-col {
    padding: 24px 20px;
  }

  .impact-grid {
    gap: 16px;
  }

  .impact-num {
    font-size: 30px;
  }

  .impact-card {
    min-width: 160px;
  }
}

@media (max-width: 575.98px) {
  .core-cards {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .timeline-cards {
    grid-template-columns: 1fr;
  }

  .project-solutions-hero {
    min-height: auto;
    border-radius: 16px;
    margin-bottom: 24px;
  }

  .project-solutions-hero .overlay {
    padding: 40px 0;
    border-radius: 16px;
  }

  .project-solutions-hero .overlay .container h2 {
    font-size: 1.75rem !important;
  }

  .project-solutions-hero .overlay .container p.lead {
    font-size: 1rem !important;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .solution-col {
    padding: 20px 18px;
  }

  .solutions-grid h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }

  .solutions-grid .kv li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero p,
  .page-hero .lead {
    font-size: 1rem;
  }

  .impact-grid {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 8px;
  }

  .impact-card {
    width: 100%;
  }

  .cta-inner {
    padding: 0 12px;
  }

  .btn-start {
    width: 100%;
    display: block;
  }
}

/* ================================
   Custom Scroll Styles (Business Page)
   ================================ */
.scroll {
  position: relative;
  width: 100%;
  overflow: visible;
  margin: 2rem 0;
  cursor: grab;
  min-height: 400px;
}

.scroll:active {
  cursor: grabbing;
}

.scroll-content {
  display: flex;
  white-space: nowrap;
  position: relative;
  will-change: transform;
  min-height: 400px;
  overflow-x: auto;
  overflow-y: visible;
  gap: 1.5rem;
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.slide {
  flex-shrink: 0;
  min-width: 500px;
  width: 600px;
  height: 400px;
  display: block;
  position: relative;
  visibility: visible;
  opacity: 1;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 8px 24px rgba(2, 57, 9, 0.12);
}

.slide__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
}

.slide__text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 5rem 2.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background: linear-gradient(to top, rgba(2, 57, 9, 0.85) 0%, rgba(2, 57, 9, 0.75) 50%, rgba(2, 57, 9, 0.6) 100%);
  color: #ffffff;
  z-index: 2;
  border-radius: 0 0 12px 12px;
  min-height: 40%;
}

.slide__text * {
  color: #ffffff !important;
}

.slide__text p,
.slide__text .slide__description {
  color: #ffffff !important;
  opacity: 1 !important;
}

.slide__text .muted,
.slide__text p.muted,
.slide__description.muted {
  color: #ffffff !important;
}

.slide__num {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  color: #ffffff !important;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  z-index: 3;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slide:hover .slide__num {
  opacity: 1;
}

.slide__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.slide__description {
  font-size: 0.95rem;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.7;
  font-weight: 400;
  opacity: 1 !important;
  visibility: visible !important;
}

.scrollbar {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  border-radius: 1px;
}

.scrollbar__handle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4eaf45;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 1px;
}

@media (max-width: 768px) {
  .scroll {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    cursor: default;
  }

  .scroll-content {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    gap: 1rem;
    transform: none !important;
  }

  .slide {
    min-width: 280px;
    width: 320px;
    height: 280px;
    position: relative !important;
    left: auto !important;
  }

  .scroll-process .slide,
  .scroll-timeline .slide {
    width: 320px;
    min-width: 280px;
  }

  .slide__text {
    width: 100%;
    padding: 1.25rem;
    padding-top: 3.5rem;
    min-height: 40%;
  }

  .slide__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .slide__description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .slide__num {
    right: 0.75rem;
    top: 0.75rem;
    font-size: 2rem;
  }

  .scrollbar {
    display: none;
  }
}

/* ================================
   Market Segments (Business Page)
   ================================ */
.market-segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.market-segment-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.market-segment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.market-segment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(2, 57, 9, 0.12);
}

.market-segment-card:hover::before {
  transform: scaleX(1);
}

.segment-icon-wrapper {
  margin-bottom: 1.25rem;
}

.segment-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.market-segment-card:hover .segment-icon {
  transform: scale(1.1) rotate(5deg);
}

.segment-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.segment-description {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-weight: 400;
}

.segment-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(2, 57, 9, 0.08);
}

.segment-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #4a5568;
}

.segment-stats .stat-item i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.segment-stats .stat-item strong {
  color: var(--brand-dark);
  font-weight: 700;
}

.segment-stats .stat-item span {
  font-weight: 400;
  color: #4a5568;
}

/* Why Choose Section (Business Page) */
.why-choose-section {
  position: relative;
  margin: 4rem 0;
  padding: 4rem 0;
  overflow: hidden;
  border-radius: 24px;
}

.why-choose-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #023909 0%, #0d4d1a 50%, #104907 100%);
  z-index: 0;
  border-radius: 24px;
}

.why-choose-background::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(78, 175, 69, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.why-choose-background::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(78, 175, 69, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.why-choose-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(255, 255, 255, 0.02) 4px);
  z-index: 1;
}

.why-choose-container {
  position: relative;
  z-index: 2;
}

.why-choose-section .why-choose-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-section .why-choose-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.why-choose-section .why-choose-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.why-feature-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  background: #ffffff;
}

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

.why-feature-icon-wrapper {
  margin-bottom: 1.5rem;
}

.why-feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(78, 175, 69, 0.15), rgba(16, 73, 7, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.why-feature-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), var(--brand-mid));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.why-feature-card:hover .why-feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(78, 175, 69, 0.25), rgba(16, 73, 7, 0.2));
}

.why-feature-card:hover .why-feature-icon::after {
  opacity: 0.2;
}

.why-feature-icon i {
  font-size: 2rem;
  color: var(--accent);
  transition: color 0.4s ease;
}

.why-feature-card:hover .why-feature-icon i {
  color: var(--brand-mid);
}

.why-feature-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.why-feature-content p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* Services Feature Grid */
.services-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-feature-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  border: 2px solid rgba(78, 175, 69, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.service-feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--brand-mid));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.service-feature-box:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 50px rgba(2, 57, 9, 0.15);
  border-color: rgba(78, 175, 69, 0.3);
}

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

.feature-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(78, 175, 69, 0.15);
  line-height: 1;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
}

.service-feature-box:hover .feature-number {
  color: rgba(78, 175, 69, 0.25);
}

.feature-content {
  flex: 1;
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(78, 175, 69, 0.12), rgba(16, 73, 7, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-feature-box:hover .feature-icon-box {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(78, 175, 69, 0.2), rgba(16, 73, 7, 0.15));
}

.feature-icon-box i {
  font-size: 1.75rem;
  color: var(--accent);
}

/* Business Page Responsive */
@media (max-width: 991.98px) {
  .market-segments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
    max-width: 600px;
  }

  .why-choose-header h2 {
    font-size: 2rem;
  }

  .why-choose-section {
    padding: 3rem 0;
  }

  .services-feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-feature-box {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .market-segments-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .market-segment-card {
    padding: 1.5rem;
  }

  .segment-icon {
    width: 70px;
    height: 70px;
  }

  .segment-title {
    font-size: 1.3rem;
  }

  .why-choose-header h2 {
    font-size: 1.75rem;
  }

  .why-choose-subtitle {
    font-size: 1rem;
  }

  .why-feature-card {
    padding: 1.75rem;
  }

  .why-choose-grid {
    padding: 0 1rem;
  }

  .why-feature-content h3 {
    font-size: 1.3rem;
  }

  .service-feature-box {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .feature-number {
    font-size: 2.5rem;
  }

  .feature-title {
    font-size: 1.2rem;
  }
}

/* ================================
   About Us Page Styles
   ================================ */

/* Who Hero Section */
.who-hero {
  position: relative;
  background-position: center;
  background-size: cover;
  padding: 56px 0 40px;
  overflow: visible;
}

.who-hero .hero-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  flex: 1 1 560px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}

.who-hero h1 {
  color: var(--brand-dark);
  font-size: 40px;
  line-height: 1.02;
  margin: 0 0 12px;
  font-weight: 900;
}

.who-hero .muted {
  color: rgba(0, 0, 0, 0.6);
  max-width: 560px;
}

.hero-media {
  width: 380px;
  flex: 0 0 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(2, 57, 9, 0.12);
  transform: translateY(-6px);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Company Highlights */
.company-highlights {
  margin-top: 28px;
  padding: 22px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.highlight-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.03);
  transition: transform .18s ease, box-shadow .18s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(2, 57, 9, 0.08);
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(78, 175, 69, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 20px;
  color: var(--accent);
}

/* Our Story + Stats */
.our-story {
  margin-top: 28px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: start;
}

.story-col {
  background: #fff;
  padding: 22px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.03);
}

.stats-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}

.stat-box {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(2, 57, 9, 0.04);
  box-shadow: 0 8px 20px rgba(2, 57, 9, 0.03);
  transition: transform .14s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
}

.stat-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.stat-box .stat-label {
  color: var(--muted-gray);
  font-size: 13px;
}

/* Vision & Mission */
.vision-mission {
  margin-top: 28px;
  padding: 8px 0 40px;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 12px;
}

.vm-card {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid rgba(2, 57, 9, 0.03);
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  transition: transform .14s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
}

.vm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(78, 175, 69, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Core Values */
.core-values {
  margin-top: 34px;
  padding-bottom: 20px;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.value-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  border-left: 3px solid var(--accent);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.value-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 57, 9, 0.08);
  border-left-width: 4px;
}

.value-title {
  margin: 0 0 6px 0;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 1.05rem;
  line-height: 1.3;
}

.value-desc {
  color: var(--muted-gray);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* What We Do */
.what-we-do {
  margin-top: 34px;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  align-items: start;
  margin-top: 12px;
}

.what-left {
  background: transparent;
}

.what-left p {
  color: var(--muted-gray);
  line-height: 1.6;
}

.what-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.what-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(2, 57, 9, 0.04);
  border: 1px solid rgba(2, 57, 9, 0.04);
  transition: transform .14s ease, box-shadow .14s ease;
}

.what-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(2, 57, 9, 0.08);
}

.what-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(78, 175, 69, 0.08);
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 10px;
}

.what-card h5 {
  margin: 0 0 6px;
  color: var(--brand-dark);
  font-weight: 800;
}

.what-card p {
  color: var(--muted-gray);
  font-size: 13px;
}

/* Certifications Band */
.certifications-band {
  background: linear-gradient(180deg, #082f0b 0%, #032a0b 100%);
  padding: 40px 0 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.certs-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.certs-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
}

.certs-sub {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.6;
}

.certifications-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: center;
}

.certifications-list li {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.certifications-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cert-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px;
}

.cert-text {
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

/* Approach Section */
.approach-section {
  background: #fafafa;
  padding: 36px 0;
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.approach-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 18px;
  align-items: stretch;
  flex-wrap: wrap;
}

.approach-step {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  flex: 1 1 300px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(2, 57, 9, 0.03);
  border: 1px solid rgba(2, 57, 9, 0.04);
  transition: transform .14s ease, box-shadow .14s ease;
}

.approach-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(2, 57, 9, 0.06);
}

.step-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 6px 18px rgba(2, 57, 9, 0.08);
}

.approach-step h4 {
  margin: 6px 0 8px;
  color: var(--brand-dark);
  font-weight: 800;
}

.approach-step p {
  color: var(--muted-gray);
  font-size: 13px;
  line-height: 1.5;
}

/* Sub-lead utility */
.sub-lead {
  color: var(--muted-gray);
  text-align: center;
  margin-bottom: 18px;
}

/* Reveal card animation */
.reveal-card {
  opacity: 0;
  transform: translateY(10px) scale(.995);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* About Us Page Responsive */
@media (max-width: 991.98px) {
  .who-hero {
    padding: 26px 0 16px;
  }

  .who-hero .hero-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-left {
    flex: 1 1 auto;
  }

  .hero-media {
    width: 100%;
    flex: 0 0 auto;
    transform: translateY(0);
    margin-bottom: 0;
  }

  .who-hero h1 {
    font-size: 28px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .values-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .what-grid {
    grid-template-columns: 1fr;
  }

  .what-cards {
    grid-template-columns: 1fr 1fr;
  }

  .approach-grid {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .who-hero {
    padding: 24px 0 20px;
  }

  .who-hero .hero-inner {
    gap: 12px;
    padding: 0 8px;
  }

  .who-hero h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .who-hero .muted {
    font-size: 0.9rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 14px;
  }

  .hero-left {
    width: 100%;
  }

  .values-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .value-item {
    padding: 16px;
  }

  .value-title {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .value-desc {
    font-size: 12px;
    line-height: 1.4;
  }

  .what-cards {
    grid-template-columns: 1fr;
  }

  .step-bubble {
    width: 48px;
    height: 48px;
  }

  .certs-title {
    font-size: 22px;
  }

  .certs-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .certifications-list {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Rural Employment Page Styles
   ================================ */

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* About Us – Our Story stats layout (2x2 on large screens) */
.our-story .stats-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.05);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 57, 9, 0.1);
}

.stat-card-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-card-desc {
  font-size: 0.95rem;
  color: var(--muted-gray);
  line-height: 1.4;
}

/* Impact Cards */
.impact-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 57, 9, 0.1);
}

.impact-card .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

/* Story Cards */
.story-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 57, 9, 0.1);
}

.story-card blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: var(--muted-gray);
}

/* Skills Cards */
.skills-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.skills-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 57, 9, 0.1);
}

.skills-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

/* Job Cards */
.ui-job-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.ui-job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 57, 9, 0.1);
}

.job-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.job-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

.job-details-list li {
  padding: 0.5rem 0;
  color: var(--muted-gray);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.job-details-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Economic Impact Stats */
.economic-stat {
  text-align: center;
  padding: 1.5rem;
}

.economic-stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.economic-stat-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Stat Box */
.stat-box {
  cursor: default;
  background: #ffffff;
  border: 2px solid #e8f5ea;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(2, 57, 9, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.stat-box:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 32px rgba(2, 57, 9, 0.15) !important;
  border-color: var(--accent) !important;
  background: #ffffff !important;
}

.stat-box:hover .stat-value {
  color: var(--brand-dark) !important;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.stat-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  font-weight: 500;
}

/* Sustainability Items */
.sustainability-item {
  text-align: center;
  padding: 1.5rem;
}

.sustainability-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Economic Impact Section Background */
.economic-impact-section {
  background: linear-gradient(135deg, #f0f9f2 0%, #e8f5ea 50%, #f0f9f2 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(2, 57, 9, 0.08);
  margin: 4rem 0;
  padding: 3rem 0;
  position: relative;
}

.economic-impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(78, 175, 69, 0.03) 10px,
      rgba(78, 175, 69, 0.03) 20px);
  opacity: 0.5;
  pointer-events: none;
}

/* Ecosystem Images */
.ecosystem-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(2, 57, 9, 0.09);
  border: 1px solid #eaeef1;
  border-radius: 14px;
}

/* Rural Employment Page Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.25rem;
  }

  .stat-card-value {
    font-size: 2rem;
  }

  .economic-stat-value {
    font-size: 2.5rem;
  }

  .stat-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .certifications-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cert-img {
    max-width: 150px;
    max-height: 120px;
  }
}

/* ================================
   Biomass Pellets Page Styles
   ================================ */

/* Specs Section Responsive Styles */
@media (min-width: 1400px) {
  .specs-flex-container>div {
    flex: 0 0 calc(12.5% - 0.75rem) !important;
    max-width: calc(12.5% - 0.75rem) !important;
  }
}

@media (max-width: 1399px) and (min-width: 992px) {
  .specs-flex-container>div {
    flex: 0 0 calc(25% - 0.75rem) !important;
    max-width: calc(25% - 0.75rem) !important;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .specs-flex-container>div {
    flex: 0 0 calc(33.333% - 0.75rem) !important;
    max-width: calc(33.333% - 0.75rem) !important;
  }
}

@media (max-width: 767px) {
  .specs-flex-container>div {
    flex: 0 0 calc(50% - 0.75rem) !important;
    max-width: calc(50% - 0.75rem) !important;
  }
}

/* WHAT SECTION */
.what-card {
  background: #f1faf4;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(9, 30, 15, 0.07);
  margin-bottom: 40px;
}

.what-card h1 {
  margin-bottom: 10px;
  color: var(--green-dark, #0f5a36);
}

.what-card p {
  color: var(--muted-text, #6c7a73);
  font-size: 15px;
  margin: 8px 0;
}

/* PROCESS FLOW */
.process-title {
  text-align: center;
  color: var(--green-dark, #0f5a36);
  font-weight: 700;
  font-size: 24px;
  margin: 40px 0 32px;
}

.flow-container {
  padding: 40px 20px;
  margin: 30px 0;
  position: relative;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(79, 196, 120, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 90, 54, 0.08), transparent 55%),
    #f6fbf7;
  box-shadow: 0 18px 45px rgba(2, 57, 9, 0.09);
  border: 1px solid rgba(2, 57, 9, 0.06);
}

.flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.flow-step {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box {
  width: 100%;
  text-align: left;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 16px 20px 2.5rem;
  font-weight: 600;
  color: var(--green-dark, #0f5a36);
  box-shadow: 0 2px 8px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.08);
  position: relative;
  transition: all 0.2s ease;
  min-height: 110px;
}

.box:hover {
  box-shadow: 0 4px 12px rgba(2, 57, 9, 0.1);
  border-color: var(--green-light, #1f9a5c);
}

.step-number {
  position: absolute;
  left: -1rem;
  top: 20px;
  color: var(--brand-mid, #4eaf45);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  z-index: 1;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.box:hover .step-number {
  opacity: 0.4;
}

.box-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark, #0f5a36);
  margin: 0;
  line-height: 1.4;
}

.box.final {
  background: #f1faf4;
  border-color: var(--green-light, #1f9a5c);
}

.box.final .step-number {
  color: var(--brand-mid, #4eaf45);
  opacity: 0.2;
}

/* Arrow connector */
.arrow {
  flex: 0 0 clamp(22px, 2.4vw, 44px);
  width: clamp(22px, 2.4vw, 44px);
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 154, 92, 0.25), var(--green-light, #1f9a5c));
  position: relative;
  flex-shrink: 0;
  margin: 0 10px;
  align-self: center;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(31, 154, 92, 0.08);
}

.arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--green-light, #1f9a5c);
}

.flow-container .flow-step:hover + .arrow,
.flow-container .arrow:hover {
  filter: saturate(1.15);
}

/* MATERIALS */
.materials {
  max-width: 1300px;
  margin: 20px auto 40px;
  padding: 0 1rem;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0 40px;
}

@media (min-width: 1200px) {
  .materials-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.material-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(9, 30, 15, 0.07);
  background: #ffffff;
}

.material-card .top {
  height: 120px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.material-card .top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.material-card .body {
  padding: 14px 16px 18px;
}

.material-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--green-dark, #0f5a36);
}

.muted-small {
  font-size: 13px;
  color: var(--muted-text, #6c7a73);
}

.stat-row {
  display: flex;
  gap: 10px;
  margin: 10px 0 14px;
}

.stat {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  flex: 1;
  border: 1px solid rgba(10, 10, 10, 0.03);
  text-align: center;
}

.stat .val {
  font-weight: 700;
  color: var(--green-light, #1f9a5c);
  font-size: 15px;
}

.stat .label {
  font-size: 12px;
  color: var(--muted-text, #6c7a73);
}

.material-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted-text, #6c7a73);
}

/* Feedstock Library CTA */
.feedstock-library-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 175, 69, 0.4);
  background: #3d9a35;
}

.feedstock-library-cta a {
  transition: all 0.3s ease;
}

/* EQUIPMENT */
.equipment {
  margin: 50px 0;
}

.equipment h3 {
  color: var(--green-dark, #0f5a36);
  margin: 0 0 32px;
  font-size: 28px;
  font-weight: 700;
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.equip {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(2, 57, 9, 0.08);
  border: 1px solid rgba(2, 57, 9, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.equip:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(2, 57, 9, 0.12);
}

.equip-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(78, 175, 69, 0.15);
}

.equip-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(78, 175, 69, 0.1), rgba(78, 175, 69, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: var(--green-light, #1f9a5c);
}

.equip-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark, #0f5a36);
  margin: 0;
  line-height: 1.3;
}

.equip-description {
  color: var(--muted-text, #6c7a73);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.equip-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.equip-details li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--green-dark, #0f5a36);
  font-size: 14px;
  line-height: 1.5;
}

.equip-details li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light, #1f9a5c);
  font-weight: bold;
  font-size: 16px;
}

.equip-details li strong {
  color: var(--green-dark, #0f5a36);
  font-weight: 600;
}

.equip-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(2, 57, 9, 0.08);
}

/* SPECIFICATIONS */
.specs-section {
  background: linear-gradient(135deg, #f0f9f4 0%, #e8f5ec 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 8px 24px rgba(2, 57, 9, 0.08);
  width: 100%;
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.specs-header-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.specs-section h2 {
  color: var(--green-dark, #0f5a36);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  padding-bottom: 8px;
}

.spec-item {
  background: #ffffff;
  padding: 14px 10px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.15);
  box-shadow: 0 4px 12px rgba(2, 57, 9, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.spec-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--green-light, #1f9a5c) 0%, #22c55e 100%);
  transition: width 0.3s ease;
}

.spec-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(2, 57, 9, 0.12);
  border-color: var(--green-light, #1f9a5c);
}

.spec-item:hover::before {
  width: 6px;
}

.spec-label {
  color: var(--muted-text, #6c7a73);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.spec-value {
  color: var(--green-dark, #0f5a36);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

/* Pellet Interactive Image */
.pellet-interactive-wrapper {
  margin-top: 24px;
}

.pellet-image-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(9, 30, 15, 0.07);
}

.pellet-process-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Interactive Hotspots */
.pellet-hotspot {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.pellet-hotspot:focus {
  outline: 3px solid rgba(78, 175, 69, 0.5);
  outline-offset: 4px;
  border-radius: 50%;
}

.hotspot-circle {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(2, 57, 9, 0.15), 0 0 0 4px rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hotspot-icon {
  color: var(--green-light, #1f9a5c);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.pellet-hotspot:hover .hotspot-circle,
.pellet-hotspot:focus .hotspot-circle {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(78, 175, 69, 0.25), 0 0 0 6px rgba(78, 175, 69, 0.1);
}

.pellet-hotspot.active .hotspot-circle {
  background: var(--green-light, #1f9a5c);
  box-shadow: 0 6px 20px rgba(78, 175, 69, 0.3), 0 0 0 6px rgba(78, 175, 69, 0.15);
}

.pellet-hotspot.active .hotspot-icon {
  color: #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Info Panel */
.pellet-info-panel {
  margin-top: 0;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 6px 20px rgba(9, 30, 15, 0.07);
  border: 1px solid rgba(2, 57, 9, 0.04);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
}

.pellet-info-panel.active {
  margin-top: 24px;
  padding: 24px;
  opacity: 1;
  max-height: 1000px;
  transform: translateY(0);
}

.info-panel-content {
  max-width: 900px;
}

.info-title {
  color: var(--green-dark, #0f5a36);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 16px;
  line-height: 1.3;
}

.info-description {
  color: var(--muted-text, #6c7a73);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.info-row {
  margin: 0 0 12px;
  line-height: 1.6;
  color: var(--muted-text, #6c7a73);
}

.info-row strong {
  color: var(--green-dark, #0f5a36);
  font-weight: 700;
  margin-right: 6px;
}

.info-row span {
  color: var(--green-dark, #0f5a36);
  font-weight: 400;
}

.info-subtext {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(2, 57, 9, 0.08);
  font-style: italic;
  color: var(--green-dark, #0f5a36);
}

.info-specs {
  margin: 8px 0 12px 20px;
  padding: 0;
  list-style-type: none;
}

.info-specs li {
  margin: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--green-dark, #0f5a36);
  font-weight: 400;
}

.info-specs li:before {
  content: '•';
  color: var(--green-light, #1f9a5c);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Biomass Pellets Page Responsive */
@media (max-width: 991px) {
  .flow {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .flow-step {
    flex: unset;
    width: min(560px, 100%);
  }

  .arrow {
    display: block;
    width: 2px;
    height: 26px;
    margin: 2px 0;
    background: linear-gradient(180deg, rgba(31, 154, 92, 0.25), var(--green-light, #1f9a5c));
    box-shadow: 0 0 0 1px rgba(31, 154, 92, 0.08);
  }

  .arrow::after {
    top: auto;
    right: 50%;
    bottom: -6px;
    transform: translateX(50%);
    border-top: 6px solid var(--green-light, #1f9a5c);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0;
  }

  .equip-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .specs-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .feedstock-library-cta {
    padding: 30px 20px !important;
    margin-top: 40px !important;
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .flow-container {
    padding: 30px 16px;
  }

  .flow {
    flex-direction: column;
    gap: 16px;
  }

  .flow-step {
    flex: 1;
    width: 100%;
    max-width: 280px;
  }

  .arrow {
    display: block;
    height: 22px;
  }

  .box {
    padding: 18px 14px;
  }

  .box-title {
    font-size: 13px;
  }

  .process-title {
    font-size: 20px;
    margin: 30px 0 24px;
  }

  .equip-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .equip {
    padding: 20px;
  }

  .equip-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .equip-title {
    font-size: 16px;
  }

  .specs-section {
    padding: 24px 20px;
  }

  .specs-header-grid {
    gap: 20px;
  }

  .specs-section h2 {
    font-size: 24px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding-bottom: 12px;
  }

  .spec-item {
    padding: 12px 8px;
    gap: 16px;
  }

  .specs-section h2 {
    font-size: 22px;
  }

  .pellet-hotspot {
    transform: translate(-50%, -50%) scale(0.85);
  }

  .hotspot-circle {
    width: 36px;
    height: 36px;
  }

  .hotspot-icon {
    font-size: 22px;
  }

  .pellet-info-panel.active {
    padding: 18px;
  }

  .info-title {
    font-size: 18px;
  }

  .info-description {
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .pellet-hotspot {
    transform: translate(-50%, -50%) scale(0.9);
  }

  .hotspot-circle {
    width: 40px;
    height: 40px;
  }

  .hotspot-icon {
    font-size: 26px;
  }
}

/* ================================
   Bio-CNG Page Styles
   ================================ */

/* Bio-CNG Interactive Image */
.biocng-interactive-wrapper {
  margin-top: 24px;
}

.biocng-image-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(9, 30, 15, 0.07);
}

.biocng-process-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Interactive Hotspots */
.biocng-hotspot {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.biocng-hotspot:focus {
  outline: 3px solid rgba(78, 175, 69, 0.5);
  outline-offset: 4px;
  border-radius: 50%;
}

.biocng-hotspot-circle {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(2, 57, 9, 0.15), 0 0 0 4px rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.biocng-hotspot-icon {
  color: var(--accent);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.biocng-hotspot:hover .biocng-hotspot-circle,
.biocng-hotspot:focus .biocng-hotspot-circle {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(78, 175, 69, 0.25), 0 0 0 6px rgba(78, 175, 69, 0.1);
}

.biocng-hotspot.active .biocng-hotspot-circle {
  background: var(--accent);
  box-shadow: 0 6px 20px rgba(78, 175, 69, 0.3), 0 0 0 6px rgba(78, 175, 69, 0.15);
}

.biocng-hotspot.active .biocng-hotspot-icon {
  color: #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Info Panel */
.biocng-info-panel {
  margin-top: 0;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 6px 20px rgba(9, 30, 15, 0.07);
  border: 1px solid rgba(2, 57, 9, 0.04);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
}

.biocng-info-panel.active {
  margin-top: 24px;
  padding: 24px;
  opacity: 1;
  max-height: 1000px;
  transform: translateY(0);
}

.biocng-info-panel-content {
  max-width: 900px;
}

.biocng-info-title {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 16px;
  line-height: 1.3;
}

.biocng-info-description {
  color: var(--muted-gray);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.biocng-info-row {
  margin: 0 0 12px;
  line-height: 1.6;
  color: var(--muted-gray);
}

.biocng-info-row strong {
  color: var(--brand-dark);
  font-weight: 700;
  margin-right: 6px;
}

.biocng-info-row span {
  color: var(--brand-dark);
  font-weight: 400;
}

.biocng-info-subtext {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(2, 57, 9, 0.08);
  font-style: italic;
  color: var(--brand-dark);
}

.biocng-info-specs {
  margin: 8px 0 12px 20px;
  padding: 0;
  list-style-type: none;
}

.biocng-info-specs li {
  margin: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--brand-dark);
  font-weight: 400;
}

.biocng-info-specs li:before {
  content: '•';
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Bio-CNG Page Responsive */
@media (max-width: 991.98px) {
  .biocng-hotspot {
    transform: translate(-50%, -50%) scale(0.9);
  }

  .biocng-hotspot-circle {
    width: 40px;
    height: 40px;
  }

  .biocng-hotspot-icon {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  .biocng-info-panel.active {
    padding: 18px;
  }

  .biocng-info-title {
    font-size: 18px;
  }

  .biocng-info-description {
    font-size: 14px;
  }

  .biocng-hotspot {
    transform: translate(-50%, -50%) scale(0.85);
  }

  .biocng-hotspot-circle {
    width: 36px;
    height: 36px;
  }

  .biocng-hotspot-icon {
    font-size: 22px;
  }
}

/* ================================
   Feedstock Library Page Styles
   ================================ */

/* Sticky Navigation */
.sticky-nav {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(2, 57, 9, 0.08);
  box-shadow: 0 2px 8px rgba(2, 57, 9, 0.04);
}

.nav-pills .nav-link {
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-pills .nav-link.active {
  background: var(--accent);
  color: #fff;
}

.nav-pills .nav-link:not(.active) {
  color: var(--brand-dark);
  background: rgba(78, 175, 69, 0.1);
}

.nav-pills .nav-link:not(.active):hover {
  background: rgba(78, 175, 69, 0.2);
}

.nav-pills .nav-item {
  margin: 0 0.5rem;
}

/* Feedstock Cards */
.feedstock-card {
  height: 100%;
  overflow: hidden;
}

.feedstock-icon-wrapper {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(78, 175, 69, 0.1) 0%, rgba(78, 175, 69, 0.05) 100%);
  overflow: hidden;
  position: relative;
}

.feedstock-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feedstock-card:hover .feedstock-icon-wrapper img {
  transform: scale(1.05);
}

.feedstock-icon-wrapper i {
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.8;
}

.feedstock-specs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin: 1rem 0;
}

.feedstock-specs.four-columns {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.spec-box {
  background: #f7fbf7;
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(2, 57, 9, 0.05);
}

.spec-label {
  font-size: 0.75rem;
  color: var(--muted-gray);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.spec-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.highlight-box {
  background: rgba(78, 175, 69, 0.1);
  padding: 0.75rem;
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  margin-top: 0.75rem;
}

.highlight-box .highlight-label {
  font-size: 0.75rem;
  color: var(--muted-gray);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.highlight-box .highlight-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

/* Info Boxes */
.info-box {
  border-left: 4px solid;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

.info-box-green {
  background: rgba(78, 175, 69, 0.08);
  border-color: var(--accent);
}

.info-box-blue {
  background: rgba(13, 110, 253, 0.08);
  border-color: #0d6efd;
}

.info-box-orange {
  background: rgba(255, 193, 7, 0.08);
  border-color: #ffc107;
}

.info-box-gray {
  background: rgba(108, 117, 125, 0.08);
  border-color: var(--muted-gray);
}

.section-title {
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted-gray);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Biomass Pellets specific styles */
.heat-value-box {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.ash-content-box {
  background: rgba(13, 110, 253, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.2);
}

.moisture-content-box {
  background: rgba(78, 175, 69, 0.1);
  border: 1px solid rgba(78, 175, 69, 0.2);
}

.heat-value-box .spec-value {
  color: #ff9800;
}

.ash-content-box .spec-value {
  color: #0d6efd;
}

.moisture-content-box .spec-value {
  color: #4eaf45;
}

/* Bio-CNG specific styles */
.moisture-box {
  background: rgba(78, 175, 69, 0.1);
  border: 1px solid rgba(78, 175, 69, 0.2);
}

.moisture-box .spec-value {
  color: #4eaf45;
}

.vs-box {
  background: rgba(13, 110, 253, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.2);
}

.vs-box .spec-value {
  color: #0d6efd;
}

.ts-box {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.ts-box .spec-value {
  color: #ff9800;
}

.cn-box {
  background: rgba(108, 117, 125, 0.1);
  border: 1px solid rgba(108, 117, 125, 0.2);
}

.cn-box .spec-value {
  color: var(--muted-gray);
}

/* Search and Filter Styles */
.search-filter-section {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(2, 57, 9, 0.04);
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-gray);
}

.search-input-wrapper input {
  padding-left: 2.75rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(2, 57, 9, 0.2);
  background: #fff;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: rgba(78, 175, 69, 0.1);
  border-color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.sort-dropdown {
  margin-top: 1rem;
}

.results-count {
  color: var(--muted-gray);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted-gray);
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

/* Icon mapping for different material types */
.material-icon-stalk {
  color: #8b4513;
}

.material-icon-wood {
  color: #654321;
}

.material-icon-waste {
  color: #6c757d;
}

.material-icon-shell {
  color: #d4a574;
}

.material-icon-grass {
  color: #4eaf45;
}

.material-icon-straw {
  color: #daa520;
}

.material-icon-dust {
  color: #a9a9a9;
}

.material-icon-bark {
  color: #8b4513;
}

.material-icon-paper {
  color: #f5f5dc;
}

.material-icon-peat {
  color: #8b4513;
}

.material-icon-coir {
  color: #8b4513;
}

.material-icon-forestry {
  color: #228b22;
}

/* Feedstock Library Page Responsive */
@media (max-width: 768px) {
  .feedstock-specs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .info-box {
    margin-bottom: 1rem;
  }
}

/* ================================
   Carbon Credits Page Styles
   ================================ */

/* Enhanced Carbon Credit Stats Section */
.stat-box {
  cursor: default;
}

.stat-box:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 32px rgba(2, 57, 9, 0.15) !important;
  border-color: var(--accent) !important;
  background: #ffffff !important;
}

.stat-box:hover .stat-value {
  color: var(--brand-dark) !important;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Enhanced Table Styling */
.table-enhanced {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(2, 57, 9, 0.08);
  width: 100%;
  min-width: 600px;
}

.table-enhanced thead th {
  background: var(--brand-dark);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  border: none;
  text-align: left;
  white-space: nowrap;
}

.table-enhanced tbody td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(2, 57, 9, 0.08);
  vertical-align: middle;
  font-size: 0.95rem;
}

.table-enhanced tbody tr {
  transition: background-color 0.2s ease;
}

.table-enhanced tbody tr:hover {
  background-color: rgba(78, 175, 69, 0.05);
}

.table-enhanced tbody tr:last-child td {
  border-bottom: none;
}

/* Mobile Table Cards */
.table-mobile-card {
  display: none;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(2, 57, 9, 0.08);
  border: 1px solid rgba(2, 57, 9, 0.04);
}

.table-mobile-card .mobile-card-header {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}

.table-mobile-card .mobile-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(2, 57, 9, 0.08);
}

.table-mobile-card .mobile-card-row:last-child {
  border-bottom: none;
}

.table-mobile-card .mobile-card-label {
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 0.9rem;
  flex: 0 0 45%;
}

.table-mobile-card .mobile-card-value {
  color: #4a5568;
  font-size: 0.9rem;
  text-align: right;
  flex: 1;
}

.table-mobile-card .mobile-card-value.text-success {
  color: var(--accent);
  font-weight: 700;
}

/* ===== Carbon Sources Section ===== */
.carbon-sources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.source-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.source-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.source-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(2, 57, 9, 0.12);
}

.source-card:hover::before {
  transform: scaleX(1);
}

.source-icon-wrapper {
  margin-bottom: 1.5rem;
}

.source-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.source-card:hover .source-icon {
  transform: scale(1.1) rotate(5deg);
}

.source-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.source-metric {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.source-description {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 400;
}

.source-mechanism {
  padding: 1rem;
  background: linear-gradient(135deg, rgba(78, 175, 69, 0.08), rgba(16, 73, 7, 0.05));
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.6;
  font-weight: 400;
}

.source-mechanism strong {
  font-weight: 700;
  color: var(--brand-dark);
}

/* ===== Markets Feature Section ===== */
.markets-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.market-feature-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  border: 2px solid rgba(78, 175, 69, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.market-feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--brand-mid));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.market-feature-box:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 50px rgba(2, 57, 9, 0.15);
  border-color: rgba(78, 175, 69, 0.3);
}

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

.market-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-mid);
  line-height: 1;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
  opacity: 0.2;
}

.market-feature-box:hover .market-number {
  opacity: 0.4;
}

.market-content {
  flex: 1;
}

.market-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(78, 175, 69, 0.12), rgba(16, 73, 7, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.market-feature-box:hover .market-icon-box {
  transform: scale(1.1) rotate(-5deg);
}

.market-icon-box i {
  font-size: 1.75rem;
  color: var(--accent);
}

.market-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.market-description {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.market-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.market-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.detail-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.detail-text {
  font-size: 0.9rem;
  color: #4a5568;
}

/* ===== Certification Grid (Compact) ===== */
.certification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.cert-step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem 1.75rem 1.75rem 3.5rem;
  box-shadow: 0 8px 24px rgba(2, 57, 9, 0.08);
  border: 1px solid rgba(2, 57, 9, 0.04);
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
}

.cert-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 16px 16px 0 0;
}

.cert-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(2, 57, 9, 0.12);
}

.cert-step-card:hover::before {
  transform: scaleX(1);
}

.cert-step-number {
  position: absolute;
  left: -1.5rem;
  top: 1.75rem;
  color: var(--brand-mid);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  z-index: 1;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.cert-step-card:hover .cert-step-number {
  opacity: 0.4;
}

.cert-step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.cert-step-desc {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  min-height: 3.2rem;
  font-weight: 400;
}

.cert-step-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(2, 57, 9, 0.08);
  font-size: 0.85rem;
}

.cert-step-meta span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  color: #4a5568;
}

.cert-step-meta i {
  color: var(--accent);
  font-size: 1rem;
}

/* ===== Buyers Section ===== */
.buyers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.buyer-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.buyer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.buyer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  background: #ffffff;
}

.buyer-card:hover::before {
  transform: scaleX(1);
}

.buyer-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(78, 175, 69, 0.2), rgba(16, 73, 7, 0.15));
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.buyer-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.buyer-description {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.buyer-details {
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(2, 57, 9, 0.1);
}

.buyer-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.buyer-detail-row:last-child {
  margin-bottom: 0;
}

.buyer-detail-row .detail-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.buyer-detail-row .detail-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.buyer-detail-row .detail-text {
  font-size: 0.9rem;
  color: #4a5568;
}

.buyer-logos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(2, 57, 9, 0.1);
}

.buyer-logos img {
  height: 40px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.buyer-card:hover .buyer-logos img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Carbon Credits Page Responsive */
@media (max-width: 991.98px) {

  .carbon-sources-grid,
  .buyers-grid {
    grid-template-columns: 1fr;
  }

  .markets-feature-grid {
    grid-template-columns: 1fr;
  }

  .market-feature-box {
    flex-direction: column;
    gap: 1rem;
  }

  .certification-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 2rem;
    padding-right: 1rem;
  }

  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .table-responsive .table-enhanced {
    display: none;
  }

  .table-mobile-card {
    display: block;
  }

  .certification-grid {
    grid-template-columns: 1fr;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}

@media (max-width: 575.98px) {

  .source-card,
  .market-feature-box,
  .buyer-card,
  .cert-step-card {
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  }

  .certification-grid {
    padding-left: 2.5rem;
    padding-right: 1rem;
  }

  .cert-step-number {
    left: -1.5rem;
    top: 1.5rem;
    font-size: 3rem;
    opacity: 0.3;
  }

  .source-title,
  .market-title,
  .buyer-title {
    font-size: 1.3rem;
  }

  .cert-step-title {
    font-size: 1.1rem;
  }

  .cert-step-desc {
    min-height: auto;
  }
}

/* ================================
   Government Support Page Styles
   ================================ */

/* basic container */
.page-container.schemes-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  font-family: Inter, system-ui, Arial;
  color: #062b14;
}

/* Intro block (white) */
.intro-block {
  background: #fff;
  padding: 28px 18px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(2, 57, 9, 0.03);
  margin-bottom: 18px;
}

.intro-block h1 {
  font-size: 32px;
  color: var(--brand-dark);
  margin: 0 0 8px;
  font-weight: 800;
}

.intro-lead {
  margin: 0 0 10px;
  color: var(--muted-gray);
  font-size: 16px;
}

.intro-sub {
  font-size: 14px;
  color: var(--muted-gray);
}

/* ecosystem card */
.ecosystem {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.ecosystem .card-soft {
  background: linear-gradient(135deg, rgba(2, 57, 9, 0.85) 0%, rgba(2, 57, 9, 0.75) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px 28px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(2, 57, 9, 0.3), 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ecosystem .card-soft::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(78, 175, 69, 0.5) 50%, transparent 100%);
  opacity: 0.6;
}

.ecosystem .card-soft:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(2, 57, 9, 0.35), 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(78, 175, 69, 0.3);
}

.ecosystem .ecos-stats {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.ecos-item {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.ecos-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(78, 175, 69, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ecos-value {
  font-weight: 900;
  color: var(--accent);
  font-size: 38px;
  text-shadow: 0 2px 8px rgba(78, 175, 69, 0.3);
  line-height: 1.2;
  margin-bottom: 8px;
}

.ecos-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
  line-height: 1.5;
  font-weight: 500;
}

/* strategic grid */
.strategic {
  margin-top: 22px;
}

.strategic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 12px;
  align-items: stretch;
}

.panel {
  border-radius: 10px;
  padding: 16px;
  min-height: 240px;
  box-shadow: 0 8px 18px rgba(2, 57, 9, 0.04);
}

.gov-panel {
  background: #d2f4d3;
  border: 1px solid rgba(2, 57, 9, 0.04);
}

.supply-panel {
  background: #d2f4d3;
  border: 1px solid rgba(2, 57, 9, 0.04);
}

.panel h3 {
  margin: 0 0 6px;
  color: var(--brand-dark);
  font-weight: 800;
}

.panel p {
  margin: 0 0 12px;
  color: var(--muted-gray);
}

/* scheme lists */
.scheme-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted-gray);
  line-height: 1.45;
  font-size: 14px;
}

.scheme-list li {
  margin: 8px 0;
}

/* panel actions */
.panel-actions {
  margin-top: 12px;
}

.btn-ghost1 {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 24px;
  background: #023909;
  color: #fff;
  border: 1px solid rgba(2, 57, 9, 0.08);
  text-decoration: none;
  font-weight: 700;
}

.btn-ghost1:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* confidence grid */
.confidence {
  margin-top: 22px;
}

.confidence-grid {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.conf-item {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  flex: 1;
  box-shadow: 0 8px 20px rgba(2, 57, 9, 0.04);
  border: 1px solid rgba(2, 57, 9, 0.04);
}

.conf-item .dot-icon {
  font-size: 20px;
  color: var(--accent);
  margin-right: 6px;
}

.conf-item strong {
  font-size: 18px;
  color: var(--brand-dark);
}

/* benefits grid */
.benefits {
  margin-top: 22px;
  padding-bottom: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.benefit-card {
  background: #d2f4d3;
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(2, 57, 9, 0.04);
}

.benefit-card h4 {
  margin-top: 0;
  color: var(--brand-dark);
  font-weight: 800;
}

.benefit-card ul {
  margin: 10px 0 0;
  padding-left: 16px;
}

.benefit-card ul li {
  color: var(--brand-dark);
}

/* icons grid */
.why-matter {
  margin-top: 22px;
}

.icons-grid {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.icon-col {
  flex: 1 1 220px;
  text-align: center;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(2, 57, 9, 0.03);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf8ec;
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 8px;
}

.icon-circle i {
  color: var(--accent) !important;
}

/* success framework - background image with green overlay */
.success-framework {
  margin-top: 28px;
}

.success-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.success-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/partnership-bg.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: contrast(0.6) saturate(0.8);
}

.success-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 57, 9, 0.88), rgba(2, 57, 9, 0.55));
  z-index: 1;
}

.success-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 34px 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.step {
  text-align: left;
  padding: 16px 16px 16px 2.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  position: relative;
}

.step-num {
  position: absolute;
  left: -1rem;
  top: 16px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.step:hover .step-num {
  opacity: 0.5;
}

/* trust grid */
.trust {
  margin-top: 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.trust-card {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(2, 57, 9, 0.04);
}

.trust-card h4 {
  margin: 0 0 8px;
  color: var(--brand-dark);
}

/* final CTA */
.final-cta {
  margin-top: 26px;
  padding: 22px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-mid));
  color: #fff;
  border-radius: 10px;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: var(--brand-dark);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
}

/* Government Support Page Responsive */
@media (max-width: 991.98px) {
  .strategic-grid {
    grid-template-columns: 1fr;
  }

  .ecos-stats {
    flex-direction: column;
    gap: 12px;
  }

  .ecos-item {
    padding: 18px 14px;
  }

  .ecosystem .card-soft {
    padding: 28px 24px;
  }

  .confidence-grid {
    flex-direction: column;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .ecosystem .card-soft {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .ecos-stats {
    gap: 10px;
  }

  .ecos-item {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .ecos-value {
    font-size: 32px;
  }

  .ecos-label {
    font-size: 13px;
  }

  .framework-grid {
    grid-template-columns: 1fr;
  }

  .icons-grid {
    flex-direction: column;
  }
}

/* ================================
   Supply Tie-ups Page Styles
   ================================ */

.page-container.supply-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 18px 80px;
  font-family: Inter, system-ui, Arial;
  color: #0b2e10;
  overflow-x: visible;
}

/* headings */
.supply-intro h1 {
  font-size: 36px;
  font-weight: 800;
  color: #023909;
  margin-bottom: 6px;
}

.supply-intro .lead {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
}

.section-sub {
  font-size: 20px;
  font-weight: 800;
  color: #104907;
  margin-top: 22px;
  margin-bottom: 8px;
}

.muted {
  color: rgba(0, 0, 0, 0.58);
}

/* stats */
.stats-grid {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.stat {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(2, 57, 9, 0.04);
  box-shadow: 0 10px 26px rgba(2, 57, 9, 0.03);
}

.stat-value {
  font-weight: 900;
  color: #4eaf45;
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.stat-label {
  color: rgba(0, 0, 0, 0.65);
  font-size: 15px;
}

/* partners list */
.partners-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

/* partner card */
.partner-card {
  display: grid;
  grid-template-columns: 90px 1fr 140px;
  gap: 12px;
  align-items: center;
  background: #fff;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(2, 57, 9, 0.04);
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.04);
}

.partner-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.partner-logo {
  max-width: 80px;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

.partner-body {
  padding-right: 6px;
}

.partner-name {
  margin: 0;
  font-size: 16px;
  color: #023909;
  font-weight: 800;
}

.partner-desc {
  margin: 6px 0;
  font-size: 14px;
}

.partner-kv {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
}

.partner-kv li {
  margin: 6px 0;
}

.partner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* button */
.btn-visit {
  background: transparent;
  color: #023909;
  border: 1px solid rgba(2, 57, 9, 0.08);
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.btn-visit:hover {
  background: #4eaf45;
  color: #fff;
  border-color: #4eaf45;
  transform: translateY(-3px);
  transition: all 0.12s ease;
}

/* CGD grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.cgd-card {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(2, 57, 9, 0.04);
  box-shadow: 0 10px 26px rgba(2, 57, 9, 0.03);
}

.cgd-logo {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* metrics */
.metrics-grid {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.metric {
  flex: 1;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(2, 57, 9, 0.04);
}

.metric strong {
  color: #4eaf45;
  font-size: 18px;
  display: block;
  font-weight: 900;
}

/* process flow */
.process {
  margin-top: 28px;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.process h2 {
  font-size: 24px;
  font-weight: 800;
  color: #023909;
  margin-bottom: 20px;
  text-align: center;
}

.process-flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: nowrap;
  overflow: visible;
  padding: 12px 4rem 20px 4rem;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.process-flow .flow-step {
  background: #fff;
  color: #023909;
  padding: 20px 16px 20px 2.5rem;
  border-radius: 16px;
  text-align: left;
  min-width: 0;
  width: 100%;
  max-width: 200px;
  min-height: 220px;
  box-shadow: 0 8px 24px rgba(2, 57, 9, 0.08), 0 2px 8px rgba(2, 57, 9, 0.04);
  border: 2px solid rgba(78, 175, 69, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  flex: 1 1 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow-x: visible;
  overflow-y: hidden;
  word-wrap: break-word;
}

.process-flow .flow-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4eaf45 0%, #104907 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-flow .flow-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(2, 57, 9, 0.12), 0 4px 12px rgba(2, 57, 9, 0.06);
  border-color: rgba(78, 175, 69, 0.25);
}

.process-flow .flow-step:hover::before {
  opacity: 1;
}

.process-flow .flow-step h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: #023909;
  line-height: 1.4;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.process-flow .flow-step p {
  margin: 0;
  color: rgba(2, 57, 9, 0.7);
  font-size: 13px;
  line-height: 1.5;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-weight: 400;
  word-break: break-word;
}

.flow-num {
  position: absolute;
  left: -1.2rem;
  top: 20px;
  color: var(--brand-mid);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  z-index: 1;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.process-flow .flow-step:hover .flow-num {
  opacity: 0.4;
}

/* arrow */
.flow-arrow {
  display: none !important;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  width: 26px;
  flex-shrink: 0;
  padding: 0 4px;
}

.flow-arrow svg {
  width: 26px;
  height: 26px;
  transition: transform 0.3s ease;
}

.flow-arrow:hover svg {
  transform: translateX(2px);
}

/* advantages */
.advantages {
  margin-top: 18px;
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.adv-list {
  padding-left: 18px;
  margin: 0;
  list-style: none;
}

.adv-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #104907;
  font-weight: 500;
  line-height: 1.5;
  word-wrap: break-word;
  text-align: left;
}

.adv-list .icon {
  font-size: 1.3rem;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
}

.adv-list .icon svg {
  width: 100%;
  height: 100%;
  fill: #4eaf45;
}

.adv-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Section Title */
.section-title {
  font-weight: 700;
  color: #023909;
  margin-bottom: 1.5rem;
}

/* market banner with overlay */
.market-banner {
  margin-top: 18px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
}

.market-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/supplytieups_MarketOpportunity.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.85) saturate(0.95);
}

.market-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 57, 9, 0.92) 0%, rgba(2, 57, 9, 0.6) 35%, rgba(2, 57, 9, 0.45) 100%);
  z-index: 1;
}

.banner-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 22px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.banner-title {
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 900;
  color: #fff;
}

.banner-sub {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.95);
}

/* market stats (white text) */
.market-stats {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.market-item {
  flex: 1;
  min-width: 150px;
  text-align: left;
  color: rgba(255, 255, 255, 0.95);
}

.market-value {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 4px;
}

.market-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

/* guarantee light green boxes */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.gbox {
  background: linear-gradient(180deg, rgba(78, 175, 69, 0.08), rgba(78, 175, 69, 0.04));
  border-radius: 24px;
  padding: 12px;
  border: 1px solid rgba(78, 175, 69, 0.12);
  min-height: 120px;
}

.gbox h4 {
  margin: 0.25rem 0 0.5rem;
  color: #104907;
  font-weight: 800;
}

.gnum {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eaf8ec;
  color: #4eaf45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 6px;
}

/* final CTA */
.final-cta {
  margin-top: 18px;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.04);
}

.cta-inner h2 {
  color: #023909;
  margin-bottom: 6px;
  font-weight: 900;
}

.btn-cta-large {
  background: #4eaf45;
  color: #fff;
  padding: 10px 18px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 900;
  display: inline-block;
  margin-top: 8px;
  border: none;
}

.btn-cta-large:hover {
  filter: brightness(0.98);
  transform: translateY(-3px);
  transition: all 0.12s;
}

/* Supply Tie-ups Page Responsive */
@media (max-width: 991.98px) {
  .stats-grid {
    flex-direction: column;
  }

  .section-sub {
    text-align: center;
  }

  .partner-card {
    grid-template-columns: 80px 1fr 110px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow {
    gap: 10px;
    padding: 12px 2.5rem 20px 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .flow-step {
    max-width: 180px;
    min-height: 200px;
    padding: 18px 14px 18px 3rem;
  }

  .flow-num {
    left: 8px;
    top: 18px;
    font-size: 2.8rem;
  }

  .flow-step h4 {
    font-size: 16px;
    min-height: auto;
  }

  .flow-step p {
    font-size: 12px;
  }

  .flow-arrow {
    min-width: 20px;
    width: 20px;
  }

  .flow-arrow svg {
    width: 22px;
    height: 22px;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .adv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .partnership-advantages {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .partnership-advantages .row {
    flex-direction: column-reverse;
  }

  .partnership-advantages .col-md-6 {
    text-align: left;
  }

  .section-title {
    text-align: left;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
  }

  .adv-list {
    padding-left: 0;
  }

  .adv-list li {
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }

  .adv-list .icon {
    margin-right: 12px;
    margin-top: 3px;
  }
}

@media (max-width: 720px) {
  .partner-card {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    grid-auto-rows: auto;
    gap: 10px;
  }

  .partner-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .partner-card {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
  }

  .partner-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-sub {
    text-align: center;
  }

  .process {
    padding: 0;
    margin-top: 24px;
  }

  .process h2 {
    font-size: 20px;
    margin-bottom: 16px;
    padding: 0 4px;
  }

  .process-flow {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .flow-step {
    max-width: 100%;
    width: 100%;
    min-height: auto;
    padding: 18px 14px 18px 4rem;
    margin-bottom: 0;
    overflow: hidden;
    flex: 1 1 auto;
    box-sizing: border-box;
  }

  .flow-num {
    left: 14px;
    top: 18px;
    font-size: 2.2rem;
    opacity: 0.12;
    width: auto;
    height: auto;
  }

  .flow-step h4 {
    font-size: 15px;
    min-height: auto;
    margin-bottom: 6px;
    line-height: 1.3;
    padding-left: 0;
    display: block;
    width: 100%;
  }

  .flow-step p {
    font-size: 12px;
    line-height: 1.5;
    padding-left: 0;
    display: block;
    width: 100%;
  }

  .flow-arrow {
    display: none !important;
  }

  .market-stats {
    flex-direction: column;
  }

  .partnership-advantages {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .partnership-advantages.container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    text-align: left;
  }

  .adv-list {
    padding-left: 0;
  }

  .adv-list li {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    justify-content: flex-start;
    text-align: left;
  }

  .adv-list .icon {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
  }
}

@media (max-width: 400px) {
  .page-container.supply-section {
    padding: 20px 12px 60px;
  }

  .process h2 {
    font-size: 18px;
    padding: 0;
  }

  .flow-step {
    padding: 16px 12px 16px 3.2rem;
  }

  .flow-num {
    left: 12px;
    font-size: 2rem;
  }

  .flow-step h4 {
    font-size: 14px;
  }

  .flow-step p {
    font-size: 11px;
  }
}

/* ================================
   Schemes Page Styles
   ================================ */

.gov-impact {
  background: url('/assets/gov-impact-bg.webp') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.gov-impact h2 {
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #023909;
}

.gov-impact p {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: #6c757d;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.impact-stats .stat {
  background: rgba(0, 0, 0, 0.45);
  padding: 1rem;
  border-radius: 24px;
  background-color: #023909;
}

.impact-stats strong {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
}

.impact-stats span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.gov-schemes {
  background: var(--light-bg);
  padding: 3rem 1rem;
}

.scheme-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.scheme-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(2, 57, 9, 0.08);
  text-align: center;
}

.scheme-logo {
  max-height: 60px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.scheme-card h3 {
  color: #023909;
  font-weight: 800;
  margin-bottom: 1rem;
}

.scheme-card p {
  text-align: left;
  margin-bottom: 0.5rem;
}

.scheme-card ul {
  text-align: left;
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.scheme-card ul li {
  margin-bottom: 0.5rem;
}

.policy-support {
  padding: 3rem 1rem;
}

.policy-support .grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.policy-support ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.policy-support ul li {
  margin-bottom: 0.75rem;
}

.state-schemes {
  background: var(--light-bg);
  padding: 3rem 1rem;
}

.state-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.state-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 6px 20px rgba(2, 57, 9, 0.06);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.15s ease;
  text-decoration: none;
  color: inherit;
}

.state-card:hover {
  transform: translateY(-4px);
  text-decoration: none;
  color: inherit;
}

.state-card img {
  height: 50px;
  object-fit: contain;
}

.state-card span {
  font-weight: 600;
  color: #023909;
}

.process {
  padding: 3rem 1rem;
}

.process-steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process .step {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  box-shadow: 0 6px 18px rgba(2, 57, 9, 0.08);
  text-align: left;
  position: relative;
}

.process .step span {
  position: absolute;
  left: -1.2rem;
  top: 1.5rem;
  color: var(--brand-mid);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  z-index: 1;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.process .step:hover span {
  opacity: 0.4;
}

.process .step h4 {
  color: #023909;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.process .step p {
  color: rgba(2, 57, 9, 0.7);
  margin: 0;
}

.btn-accent {
  background: #023909;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 140px;
  text-decoration: none;
  transition: all 0.15s ease;
  margin-top: 1rem;
}

.btn-accent:hover {
  background: #035a12;
  color: #fff;
  transform: translateY(-2px);
}

.pre-footer-cta1 {
  background-color: #023909;
  padding: 20px;
  border-radius: 24px;
  margin: 3rem 0;
}

.pre-footer-cta1 h2 {
  color: #ffffff;
  text-align: center;
  font-weight: 800;
}

.pre-footer-cta1 .lead {
  color: #ffffff;
  text-align: center;
}

.pre-footer-cta1 .cta-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.responsive-illustration {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Schemes Page Responsive */
@media (max-width: 768px) {
  .gov-impact {
    padding: 2rem 1rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  .scheme-cards {
    grid-template-columns: 1fr;
  }

  .state-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .policy-support .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .process .step {
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  }

  .process .step span {
    left: -1rem;
    top: 1.5rem;
    font-size: 3rem;
  }
}

/* ================================
   Contact Page Styles
   ================================ */

/* Contact list (left) */
.contact-list .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(78, 175, 69, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(2, 57, 9, 0.03);
}

.contact-list .contact-title {
  font-weight: 700;
  color: #0b2e10;
}

.contact-list .contact-line a {
  color: var(--brand-mid);
  font-weight: 600;
  text-decoration: none;
}

.contact-list .contact-line {
  color: var(--brand-mid);
  font-weight: 600;
}

/* Hours strip */
.hours-strip {
  background: #fff;
  padding: 1.25rem 0;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.hours-strip .hours-row {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hours-item {
  flex: 1;
  text-align: center;
  padding: 0.6rem 1rem;
  background: #f3f6f3;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.hours-title {
  font-weight: 800;
  color: var(--brand-mid);
  margin-bottom: 0.25rem;
  text-align: center;
}

.hours-time {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
}

/* Assistance card */
.assist-card h4 {
  margin-top: 0;
  color: var(--brand-dark);
  font-weight: 800;
}

.engage-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 14px 36px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.04);
}

.engage-card h3 {
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

.engage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.engage-box {
  background: #f7fbf7;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(2, 57, 9, 0.03);
}

.engage-box strong {
  display: block;
  color: #023909;
  margin-bottom: 0.25rem;
}

.assist-actions {
  margin-top: 1.5rem;
}

.link-mail {
  color: var(--brand-mid);
  text-decoration: none;
  font-weight: 600;
}

.link-mail:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-section .section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

.faq-list {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 700;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  cursor: pointer;
  color: #104907;
}

.faq-question:hover {
  background: rgba(78, 175, 69, 0.06);
}

.faq-question i {
  font-size: 1.2rem;
  transition: transform 0.25s;
}

.faq-question.active i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}

.faq-answer p {
  margin: 0 0 1rem;
  padding-top: 0.5rem;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.6;
}

/* Next steps */
.next-steps {
  background: var(--brand-dark);
  padding: 3.25rem 0;
  color: #fff;
  margin-top: 1.5rem;
  border-radius: 6px;
}

.next-steps h2 {
  color: #fff;
  font-weight: 800;
}

.next-steps p {
  color: rgba(255, 255, 255, 0.9);
}

.step-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 2rem 1rem;
  transition: transform 0.3s, background 0.3s;
  height: 100%;
}

.step-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.step-box h5 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.step-box p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 1rem;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .hours-row {
    flex-direction: column;
  }

  .engage-grid {
    grid-template-columns: 1fr;
  }

  .next-steps .row {
    flex-direction: column;
  }
}

/* ================================
   Policy Pages Styles (Terms, Privacy, Cookies)
   ================================ */

.terms-card,
.policy-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-top: -40px;
}

.terms-card h5,
.policy-card h5 {
  font-weight: 700;
  margin-top: 1.5rem;
  color: var(--brand-dark);
}

.terms-card h5:first-child,
.policy-card h5:first-child {
  margin-top: 0;
}

.terms-card p,
.policy-card p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #333;
}

.terms-card a,
.policy-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.terms-card a:hover,
.policy-card a:hover {
  text-decoration: underline;
}

.terms-footer-box,
.policy-footer-box {
  background: #d2f4d3;
  padding: 1.25rem;
  margin-top: 2rem;
  border-radius: 6px;
  border-left: 5px solid var(--accent);
}

.terms-footer-box strong,
.policy-footer-box strong {
  color: var(--accent);
}

.governing-law {
  font-size: 0.85rem;
  background: #f8f9fa;
  padding: 1rem;
  border-left: 4px solid var(--brand-dark);
  margin-top: 2rem;
  line-height: 1.6;
}

.governing-law strong {
  color: var(--brand-dark);
  display: block;
  margin-bottom: 0.5rem;
}

/* Policy Pages Responsive */
@media (max-width: 767px) {

  .terms-card,
  .policy-card {
    padding: 1.5rem;
    margin-top: -20px;
  }

  .terms-card h5,
  .policy-card h5 {
    font-size: 1.1rem;
  }
}

/* ================================
   Blogs Page Styles
   ================================ */

/* Blog Container */
.blog-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 7.5px;
}

/* Knowledge Hub Banner */
.knowledge-hub-banner {
  background: url('/assets/greenery.webp') center/cover no-repeat;
  background-color: #333;
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
  color: white;
  z-index: 1;
}

.knowledge-hub-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

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

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 800;
}

.banner-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
}

/* Filter Navigation */
.filter-nav {
  margin-bottom: 30px;
}

.filter-list {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
  margin: 0;
}

.filter-list li {
  flex-shrink: 0;
  margin-right: 10px;
}

.filter-list a {
  text-decoration: none;
  color: var(--text-color);
  border: 1px solid var(--card-border-color);
  padding: 8px 15px;
  border-radius: 20px;
  white-space: nowrap;
  transition: background-color 0.3s, color 0.3s;
  display: block;
}

.filter-list a.active,
.filter-list a:hover {
  background-color: var(--brand-dark);
  color: white;
  border-color: var(--brand-dark);
}

/* Featured Blog Section */
.featured-blog-section {
  margin-bottom: 50px;
}

.featured-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 25px;
  text-align: center;
}

.featured-blog-card {
  border: 1px solid var(--card-border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
}

.featured-blog-card::before {
  content: 'Featured';
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

.featured-blog-card:hover {
  box-shadow: 0 8px 25px rgba(2, 57, 9, 0.12);
  transform: translateY(-4px);
}

.featured-blog-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.featured-blog-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-blog-author {
  display: block;
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 10px;
}

.featured-blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--brand-dark);
  font-weight: 700;
}

.featured-blog-content p {
  font-size: 0.95rem;
  color: var(--muted-gray);
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Article Grid */
.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.article-card {
  border: 1px solid var(--card-border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: block;
  cursor: pointer;
  background: #fff;
}

.article-card.hidden {
  display: none;
}

.article-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.article-author {
  display: block;
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 10px;
}

.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--brand-dark);
  font-weight: 700;
}

.card-content p {
  color: var(--muted-gray);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted-gray);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.read-time i {
  font-size: 0.9rem;
  color: var(--brand-dark);
}

.read-time span {
  font-weight: 500;
}

/* Blog Detail Styles */
.blog-detail-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.back-to-blogs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 30px;
  transition: color 0.3s;
}

.back-to-blogs:hover {
  color: var(--accent);
}

.blog-detail-header {
  margin-bottom: 2rem;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.blog-detail-meta span {
  font-weight: 500;
}

.category-highlight {
  background-color: var(--brand-dark);
  color: white;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.85rem;
}

.blog-detail-title {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--brand-dark);
  font-weight: 800;
}

.blog-detail-one-liner {
  font-size: 1.1rem;
  color: var(--brand-dark);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
}

.blog-detail-cover-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(2, 57, 9, 0.1);
}

.blog-detail-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
}

.blog-detail-content h2 {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--brand-dark);
  font-weight: 700;
}

.blog-detail-content p {
  margin-bottom: 20px;
}

/* Related Articles */
.related-articles {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid var(--card-border-color);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.related-articles h3 {
  font-size: 1.75rem;
  color: var(--brand-dark);
  margin-bottom: 30px;
  font-weight: 700;
  text-align: left;
}

.related-articles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.related-article-card {
  border: 1px solid var(--card-border-color);
  border-radius: 10px;
  padding: 24px;
  background: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-article-card:hover {
  box-shadow: 0 6px 20px rgba(2, 57, 9, 0.08);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.related-article-content h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-weight: 600;
  line-height: 1.4;
}

.related-article-content p {
  font-size: 0.95rem;
  color: var(--muted-gray);
  margin-bottom: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

.read-related-btn {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
}

.read-related-btn:hover {
  color: var(--brand-dark);
  transform: translateX(4px);
}

/* Subscribe Section */
.subscribe-updates-section {
  background: var(--brand-dark);
  color: #fff;
  padding: 60px 15px;
  margin-top: 50px;
  text-align: center;
}

.subscribe-container {
  max-width: 700px;
  margin: 0 auto;
}

.subscribe-updates-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.subscribe-updates-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}

.subscribe-form-updates {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.subscribe-form-updates input[type='email'] {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  color: var(--text-color);
  outline: none;
  transition: box-shadow 0.3s;
}

.subscribe-form-updates input[type='email']:focus {
  box-shadow: 0 0 0 3px rgba(78, 175, 69, 0.3);
}

.subscribe-btn-updates {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.subscribe-btn-updates:hover {
  background: #3e9c3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 175, 69, 0.3);
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  padding: 0;
  width: 100%;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.pagination-btn {
  background-color: #fff;
  color: var(--text-color);
  border: 1px solid var(--card-border-color);
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 600;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.pagination-btn:hover:not(:disabled):not(.active) {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(78, 175, 69, 0.2);
}

.pagination-btn.active {
  background-color: var(--brand-dark);
  color: white;
  border-color: var(--brand-dark);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(2, 57, 9, 0.2);
}

.pagination-btn:disabled,
.pagination-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #f5f5f5;
  color: #999;
}

/* Blogs Page Responsive */
@media (min-width: 768px) {
  .featured-blog-card {
    flex-direction: row;
  }

  .featured-blog-image {
    width: 50%;
    height: auto;
    min-height: 300px;
  }

  .featured-blog-content {
    width: 50%;
    padding: 40px;
  }

  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-articles-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .article-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .related-articles-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .related-articles h3 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .blog-detail-title {
    font-size: 1.8rem;
  }

  .blog-detail-container {
    padding: 1.5rem 1rem;
  }

  .subscribe-form-updates {
    flex-direction: column;
  }

  .subscribe-form-updates input[type='email'],
  .subscribe-btn-updates {
    width: 100%;
    min-width: unset;
  }

  .subscribe-updates-section h2 {
    font-size: 1.8rem;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}