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

/* Extra small devices: tighten ticker spacing and slow slightly */
@media (max-width: 480px)
{
  .headline-ticker .ticker-track
  {
    gap: 32px;
  }

  /* Relax snap on very small screens to reduce accidental horizontal nudges */
  .cards-track
  {
    scroll-snap-type: x proximity;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce)
{
  .headline-ticker .ticker-track
  {
    animation: none;
  }
}

/* Theme variables */
:root
{
  --primary-900: #1b5e20;
  --primary-700: #2e7d32;
  --primary-500: #43a047;
  --primary-300: #66bb6a;
  --neutral-900: #111;
  --neutral-700: #2b2b2b;
  --neutral-500: #666;
  --surface: #ffffff;
  --surface-muted: #f8f9fa;
  --ring: rgba(46, 125, 50, .18);
}

/* Typography refinements for the content header block inside main (not sticky site header) */
main .header h1
{
  color: #1b5e20;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: .5rem;
  letter-spacing: .2px;
}

main .header p
{
  color: #2b2b2b;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  opacity: .95;
}

html,
body
{
  height: 100%;
  width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body
{
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--neutral-700);
  background: #fff;
  touch-action: pan-y;
}

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

.container
{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Full width container for homepage sections */
.container.wide
{
  max-width: 100%;
  padding-left: max(20px, 4vw);
  padding-right: max(20px, 4vw);
}

/* Full-bleed utility for visual bands */
.full-bleed
{
  position: relative;
}

.full-bleed::before
{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.full-bleed>.container
{
  position: relative;
  z-index: 1;
}

/* Header */
.header
{
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header-content
{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 2rem;
  padding: 1rem 0;
}

.logo img
{
  height: 50px;
  width: auto;
}

/* Nav */
.nav-list
{
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: center;
  align-items: center;
}

.nav-list a
{
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color .25s ease;
  position: relative;
  padding: 6px 10px;
  border-radius: 9999px;
  font-size: 15px;
  letter-spacing: .2px;
}

.nav-list a:hover
{
  color: #2e7d32;
}

.nav-list a.active
{
  background: #2e7d32;
  color: #fff;
  font-weight: 600;
}

/* Dropdown */
.dropdown
{
  position: relative;
}

.dropdown>a
{
  display: inline-flex;
  align-items: center;
}

.dropdown>a::after
{
  content: "\25BE";
  margin-left: 8px;
  font-size: .8em;
  color: #777;
  transition: transform .2s ease, color .2s ease;
}

.dropdown:hover>a::after,
.dropdown.active>a::after
{
  transform: rotate(180deg);
  color: #2e7d32;
}

.dropdown-menu
{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: .5rem 0;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  list-style: none;
  z-index: 200;
}

.dropdown-menu li
{
  padding: 0;
}

.dropdown-menu a
{
  display: block;
  padding: 8px 14px;
  color: #666;
  font-weight: 400;
}

.dropdown-menu a:hover
{
  background: #f8f9fa;
  color: #2e7d32;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu
{
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Cart / header actions */
.header-actions
{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-link
{
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.cart-link .cart-icon
{
  color: #1e88e5;
  font-size: 1.25rem;
}

/* Mobile menu toggle (hamburger) */
.mobile-menu-toggle
{
  display: none;
  width: 56px;
  height: 56px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 3px solid #000;
  border-radius: 50%;
  background: #fff;
  gap: 6px;
}

.mobile-menu-toggle span
{
  display: inline-block;
  width: 3px;
  height: 24px;
  background: #000;
  margin: 0 0;
  border-radius: 3px;
  transition: background-color .25s ease;
}

/* Keep 3-line icon on active (no X), maintain black color */
.mobile-menu-toggle.active
{
  border-color: #000;
}

.mobile-menu-toggle.active span
{
  background: #000;
}

/* Hero */
.hero
{
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 100%);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}

.hero-title
{
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 800;
  margin-bottom: .85rem;
  letter-spacing: .2px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.hero-description
{
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  max-width: min(860px, 92vw);
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, .98);
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
  background: rgba(0, 0, 0, .22);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
}

.hero-actions
{
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero slider */
.hero
{
  position: relative;
  padding: 0;
  overflow: hidden;
  margin-top: 0;
}

.hero-slider
{
  position: relative;
  height: clamp(380px, 70vh, 760px);
}

.hero-slide
{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.hero-slide.active
{
  opacity: 1;
}

.hero-slide img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
  filter: brightness(0.8) contrast(1.08) saturate(1.08);
}

.hero-overlay
{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
}

/* Subtle gradient overlay to keep photo visible but text readable */
.hero-overlay::before
{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .35) 65%, rgba(0, 0, 0, .45) 100%);
  pointer-events: none;
}

/* Ensure content sits above overlay */
.hero-overlay>*
{
  position: relative;
  z-index: 1;
}

/* Branded hero card with animated edge for Our Programs */
.hero-brand-card
{
  position: relative;
  display: inline-block;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
}

.hero-brand-card::before
{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(102, 187, 106, .9), rgba(67, 160, 71, .6), rgba(102, 187, 106, .9));
  background-size: 200% 200%;
  animation: brandEdge 3.5s ease infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-brand-card::after
{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60%;
  height: 10px;
  background: radial-gradient(40% 60% at 50% 0%, rgba(102, 187, 106, .6), rgba(0, 0, 0, 0));
  filter: blur(6px);
  pointer-events: none;
}

@keyframes brandEdge
{
  0%
  {
    background-position: 0% 50%;
  }

  50%
  {
    background-position: 100% 50%;
  }

  100%
  {
    background-position: 0% 50%;
  }
}

/* Icon styling for hero title/description using FAR icons */
.hero-title i,
.hero-description i
{
  color: #66bb6a;
  margin-right: .5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .25));
}

.hero-prev,
.hero-next
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, .85);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 42px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.hero-prev
{
  left: 12px;
}

.hero-next
{
  right: 12px;
}

.hero-dots
{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-dots button
{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .6);
  cursor: pointer;
}

.hero-dots button.active
{
  background: #fff;
}

/* Force hero to sit flush under sticky header when adjacent */
header.header+main .hero
{
  margin-top: 0 !important;
}

/* Buttons */
.btn
{
  display: inline-block;
  padding: .9rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: all .25s ease;
  border: 2px solid transparent;
}

.btn-primary
{
  background: #fff;
  color: var(--primary-700);
}

.btn-primary:hover
{
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary
{
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover
{
  background: #fff;
  color: var(--primary-700);
}

/* Compact header buttons */
.btn-compact
{
  padding: 8px 12px;
  font-size: .92rem;
  border-radius: 10px;
  margin-right: .5rem;
}

.header-actions .btn
{
  vertical-align: middle;
}

/* Make secondary button visible on white headers */
.header .header-actions .btn-secondary
{
  background: #fff;
  color: #2e7d32;
  border-color: #2e7d32;
}

.header .header-actions .btn-secondary:hover
{
  background: #2e7d32;
  color: #fff;
  border-color: #2e7d32;
}

/* Sections */
.section-header
{
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h3
{
  color: #2e7d32;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .5rem;
}

.section-header h2
{
  font-size: 2rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

/* Modern Section Header with Icon */
.section-header-content
{
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, .95) 0%, rgba(248, 251, 248, .95) 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(46, 125, 50, 0.1);
  border: 2px solid rgba(46, 125, 50, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-header-icon
{
  flex-shrink: 0;
  position: relative;
}

.section-header-icon .title-icon
{
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(46, 125, 50, 0.2));
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
  padding: 1rem;
  border: 3px solid rgba(46, 125, 50, 0.1);
}

.section-header-icon:hover .title-icon
{
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 8px 16px rgba(46, 125, 50, 0.3));
}

.section-header-text
{
  flex: 1;
  text-align: left;
}

.section-header-text h3
{
  color: #2e7d32;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.section-header-text h2
{
  font-size: 2.8rem;
  font-weight: 900;
  color: #2e7d32;
  line-height: 1.2;
  margin: 0;
  background: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #66bb6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

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

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

/* Mobile responsive for section header */
@media (max-width: 768px)
{
  .section-header-content
  {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    text-align: center;
  }

  .section-header-icon .title-icon
  {
    width: 80px;
    height: 80px;
    padding: 0.8rem;
  }

  .section-header-text
  {
    text-align: center;
  }

  .section-header-text h2
  {
    font-size: 2.2rem;
  }

  .section-header-text h3
  {
    font-size: 1.1rem;
  }
}

/* Accessibility helper */
.visually-hidden
{
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Headline ticker */
.headline-ticker
{
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #f3fbf4;
  border: 1px solid #d7ead9;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

/* Edge fade to avoid harsh clipping and reduce perceived jitter */
.headline-ticker::before,
.headline-ticker::after
{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32px;
  z-index: 2;
  pointer-events: none;
}

.headline-ticker::before
{
  left: 0;
  background: linear-gradient(90deg, #f3fbf4, rgba(243, 251, 244, 0));
}

.headline-ticker::after
{
  right: 0;
  background: linear-gradient(270deg, #f3fbf4, rgba(243, 251, 244, 0));
}

.headline-ticker .ticker-track
{
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding: 10px 14px;
  white-space: nowrap;
  will-change: transform;
  animation: tickerScroll var(--ticker-duration, 20s) linear infinite;
}

.headline-ticker .ticker-item
{
  color: var(--primary-900);
  font-weight: 700;
  letter-spacing: .2px;
}

.headline-ticker.paused .ticker-track
{
  animation-play-state: paused;
}

@keyframes tickerScroll
{
  0%
  {
    transform: translate3d(0, 0, 0);
  }

  100%
  {
    transform: translate3d(-100%, 0, 0);
  }
}

/* Live updates badge for events */
.news-badge
{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff3e0;
  border: 1px solid #ffe0b2;
  color: #e65100;
  font-weight: 700;
  margin-bottom: .5rem;
}

.news-badge .dot
{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3d00;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(255, 61, 0, .6);
  animation: pulseDot 1.6s ease-out infinite;
}

@keyframes pulseDot
{
  0%
  {
    box-shadow: 0 0 0 0 rgba(255, 61, 0, .6);
  }

  70%
  {
    box-shadow: 0 0 0 10px rgba(255, 61, 0, 0);
  }

  100%
  {
    box-shadow: 0 0 0 0 rgba(255, 61, 0, 0);
  }
}

/* Animated section title */
.animated-title
{
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}

.animated-title::after
{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
  border-radius: 4px;
  transform: translateX(-50%);
  transition: width .6s ease;
}

.animated-title.in::after
{
  width: 160px;
}


/* Statistics */
.statistics
{
  padding: 5rem 0;
  background: white;
  color: #2e7d32;
}

.statistics,
.solutions,
.impact,
.gallery,
.events,
.video-embed,
.testimonials
{
  overflow: hidden;
}

.stats-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.stat-item
{
  text-align: center;
  padding: 2.25rem;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  border: 1px solid rgba(46, 125, 50, .08);
  transform: translateY(0);
  transition: transform .3s ease, box-shadow .3s ease;
  color: #2e7d32;
}

.stat-item:hover
{
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
}

.stat-number
{
  font-size: 3.1rem;
  font-weight: 800;
  color: #2e7d32;
  margin-bottom: .5rem;
  letter-spacing: .5px;
}

.stat-item p
{
  color: #2e7d32;
}

/* Solutions */
.solutions
{
  padding: 5rem 0;
}

.solutions-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.solution-card
{
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  transition: transform .3s ease, box-shadow .3s ease;
  isolation: isolate;
}

.solution-card::before
{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(46, 125, 50, .35), rgba(102, 187, 106, .25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .8;
}

.solution-card:hover
{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.solution-card .card-visual
{
  position: relative;
}

.solution-card img
{
  width: 100%;
  min-height: 200px;
  object-fit: contain;
  transition: transform .3s ease;
  background: #f8f9fa;
}

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

.solution-card .solution-icon
{
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, .95);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  backdrop-filter: blur(4px);
}

.solution-card .card-content
{
  padding: 1rem;
}

.solution-card h3
{
  font-size: 1.25rem;
  margin: 0 0 .5rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.solution-card h3 .bi
{
  color: #2e7d32;
  font-size: 1.1rem;
}

.solution-card p
{
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Events and Gallery: match solution-card visuals and add slider behavior */
.events,
.gallery
{
  padding: 4rem 0;
}

.card-slider
{
  position: relative;
  overflow: hidden;
}

.cards-track
{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 10px;
}

.cards-track
{
  touch-action: pan-x;
}

.cards-track>.card
{
  scroll-snap-align: start;
}

.card
{
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.card::before
{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(46, 125, 50, .28), rgba(102, 187, 106, .2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .8;
}

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

.card img
{
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card h3
{
  font-size: 1.25rem;
  margin: 1rem 1rem .5rem;
  color: #333;
}

.card p
{
  color: #666;
  padding: 0 1rem 1rem;
}

/* Section title icon alignment (for cards in the main grid) */
.grid .card .section-title
{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.grid .card .section-title .title-icon
{
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: inline-block;
  object-fit: contain;
  border-radius: 50%;
  padding: 8px;
  background: #2e7d32;
  border: 1px solid #2e7d32;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
  filter: brightness(0) invert(1);
}

.mission-vision .inline-icon
{
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  object-fit: contain;
}

/* Slider controls and dots */
.slider-prev,
.slider-next
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  border: 1px solid #cfe8d1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  color: #2e7d32;
}

.slider-prev
{
  left: 6px;
}

.slider-next
{
  right: 6px;
}

.slider-dots
{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.slider-dots button,
.slider-dots .dot
{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfd8dc;
  border: 0;
}

.slider-dots .active
{
  background: #2e7d32;
}

/* Pager (simple pagination scaffolding) */
.pager
{
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 1rem;
}

.pager .page
{
  padding: .4rem .7rem;
  border-radius: 10px;
  border: 1px solid #cfe8d1;
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: #2b2b2b;
}

.pager .page[aria-current="true"],
.pager .page.active
{
  background: #e8f5e9;
  color: #1b5e20;
  border-color: #b6e0b9;
  font-weight: 600;
}

/* Merchandise */
.merch
{
  padding: 4rem 0;
  background: #f8fbff;
}

.merch .section-header h2
{
  color: #111;
}

.merch-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.merch-card
{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  overflow: hidden;
  padding-bottom: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.merch-card:hover
{
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
}

.merch-card img
{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.merch-card h3
{
  margin: .75rem 1rem .25rem;
  font-size: 1.05rem;
  color: #222;
}

.merch-card .price
{
  display: flex;
  gap: .5rem;
  align-items: baseline;
  margin: 0 1rem .75rem;
}

.merch-card .price .old
{
  color: #90a4ae;
  text-decoration: line-through;
  font-size: .95rem;
}

.merch-card .price .new
{
  color: #1e88e5;
  font-weight: 700;
}

.merch-card .btn-add
{
  margin: 0 1rem;
  width: calc(100% - 2rem);
}

.merch-card .variants
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin: 0 1rem .75rem;
}

.merch-card .variants label
{
  display: grid;
  gap: .25rem;
  font-size: .9rem;
  color: #2b2b2b;
}

.merch-card select
{
  padding: .45rem .6rem;
  border-radius: 10px;
  border: 1px solid #cfd8dc;
  font: inherit;
}

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

@media (max-width: 520px)
{
  .merch-grid
  {
    grid-template-columns: 1fr;
  }
}

/* Donate Hero */
.donate-hero
{
  padding: 3rem 0;
  background: #fff;
}

.donate-grid
{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.25rem;
  align-items: center;
}

.donate-media img
{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.donate-content h2
{
  margin-bottom: .5rem;
  color: #2e7d32;
}

.donate-content p
{
  color: #2b2b2b;
  margin-bottom: .75rem;
}

.donate-actions
{
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}

.donate-hero .donate-actions .btn
{
  font-size: 1.05rem;
  padding: 12px 16px;
  border-radius: 12px;
}

.donate-hero .btn-primary
{
  box-shadow: 0 8px 20px rgba(46, 125, 50, .25);
}

.donate-hero .btn-secondary
{
  border: 2px solid #2e7d32;
  color: #2e7d32;
  background: #fff;
}

/* Currency toggle (TZS/USD) */
.donate-actions .currency-toggle
{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: #f3fbf4;
  border: 1px solid #d7ead9;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
  margin-right: .25rem;
}

.donate-actions .cur-pill
{
  border: 0;
  background: transparent;
  color: #1b5e20;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.donate-actions .cur-pill::before
{
  content: "";
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #e8f5e9;
  color: #1b5e20;
  font-size: .85rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px #c8e6c9;
}

.donate-actions .cur-pill[data-cur="USD"]::before
{
  content: "$";
}

.donate-actions .cur-pill[data-cur="TZS"]::before
{
  content: "TSh";
  font-size: .7rem;
  font-weight: 800;
}

.donate-actions .cur-pill:hover
{
  background: #e8f5e9;
}

.donate-actions .cur-pill.active
{
  background: #2e7d32;
  color: #fff;
  box-shadow: 0 8px 18px rgba(46, 125, 50, .28);
}

.donate-actions .cur-pill.active::before
{
  background: #fff;
  color: #2e7d32;
  box-shadow: inset 0 0 0 1px rgba(46, 125, 50, .25);
}

.donate-actions .cur-pill:focus-visible
{
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
}

/* Donate Modal */
.donate-modal
{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1200;
}

.donate-modal.active
{
  display: block;
}

.donate-backdrop
{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}

.donate-dialog
{
  position: relative;
  max-width: 720px;
  margin: 6vh auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  padding: 1.25rem;
  border: 1px solid #e8f5e9;
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.freq-badge
{
  position: absolute;
  top: 14px;
  right: 56px;
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 600;
  font-size: .85rem;
}

.donate-close
{
  position: absolute;
  top: 8px;
  right: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.1rem;
}

.frequency-toggle
{
  display: inline-flex;
  gap: .5rem;
  background: #f3fbf4;
  border: 1px solid #d7ead9;
  border-radius: 999px;
  padding: 4px;
  margin: .5rem 0 1rem;
}

.freq-pill
{
  border: none;
  background: transparent;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: #1b5e20;
}

.freq-pill.active
{
  background: #2e7d32;
  color: #fff;
}

.donate-form
{
  display: grid;
  gap: .75rem;
}

.form-row
{
  display: grid;
  gap: .25rem;
}

.form-row.two
{
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.form-row label
{
  font-weight: 600;
  color: #2b2b2b;
}

.form-row input
{
  padding: .6rem .7rem;
  border: 1px solid #cfd8dc;
  border-radius: 10px;
  font: inherit;
}

.payment-methods
{
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}

.method-card
{
  background: #f8faf8;
  border: 1px solid #e3f0e5;
  border-radius: 12px;
  padding: .9rem;
}

.method-card.active
{
  border-color: #2e7d32;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, .12) inset;
}

.mno-list
{
  margin: .25rem 0 0 1.25rem;
}

.copy-btn
{
  margin-top: .5rem;
}

.method-switch
{
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: .25rem;
}

.method-switch .switch
{
  padding: .5rem .9rem;
  border-radius: 999px;
  border: 1px solid #cfe8d1;
  background: #fff;
  cursor: pointer;
}

.form-actions
{
  display: flex;
  gap: .5rem;
  justify-content: flex-end;
  margin-top: .5rem;
}

@media (max-width: 992px)
{
  .donate-grid
  {
    grid-template-columns: 1fr;
  }

  .donate-media img
  {
    height: 260px;
  }
}

/* Donation modal small-screen layout */
@media (max-width: 640px)
{
  .donate-dialog
  {
    width: calc(100% - 24px);
    margin: 4vh 12px;
    padding: 1rem;
    border-radius: 12px;
  }

  .freq-badge
  {
    position: static;
    display: inline-block;
    margin: .25rem 0 .5rem;
  }

  .form-row.two
  {
    grid-template-columns: 1fr;
  }

  .form-actions
  {
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .form-actions .btn
  {
    flex: 1 1 48%;
  }
}

/* Our Solutions header as card */
.solutions .section-header
{
  background: #f3fbf4;
  border: 1px solid #d7ead9;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
  text-align: left;
  margin-bottom: 1.5rem;
}

.solutions .section-header h3
{
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .25rem;
}

.solutions .section-header h2
{
  color: #2b2b2b;
  font-weight: 600;
}

/* Impact */
.impact
{
  padding: 5rem 0;
  background: var(--surface-muted);
  text-align: center;
}

.impact h2
{
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.impact>p
{
  font-size: 1.05rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.impact-header-card
{
  text-align: left;
  background: #f3fbf4;
  border: 1px solid #d7ead9;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
  margin-bottom: 1.5rem;
}

.impact-header-card h2
{
  color: #2e7d32;
  margin: 0 0 .5rem;
}

.impact-header-card p
{
  margin: 0;
  color: #2b2b2b;
  line-height: 1.7;
}

.impact-visual
{
  margin: 2rem 0;
}

.impact-visual img
{
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

/* Theory of Change diagram */
.toc-diagram
{
  background: #f3fbf4;
  border: 1px solid #d7ead9;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.toc-row
{
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 16px;
}

.toc-box
{
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 12px;
}

.toc-title
{
  background: #2e7d32;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .9rem;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.toc-arrow
{
  width: 28px;
  display: grid;
  place-items: center;
}

.toc-arrow::after
{
  content: "";
  display: block;
  width: 28px;
  height: 12px;
  border-top: 3px solid #2e7d32;
  border-right: 3px solid #2e7d32;
  transform: rotate(45deg);
  margin-left: -6px;
}

.toc-outcomes
{
  border-top: 3px solid #2e7d32;
  padding-top: 10px;
  margin-top: 4px;
}

.toc-outcomes-label
{
  color: #2e7d32;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.toc-outcomes-bar
{
  background: #66bb6a;
  color: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
}

.toc-impact
{
  margin-top: 12px;
}

.toc-impact-label
{
  background: #2e7d32;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.toc-impact-bar
{
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #1b5e20;
  border-radius: 8px;
  padding: 10px 12px;
}

/* Journey */
.journey
{
  padding: 4rem 0;
}

.journey h2
{
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.journey>p
{
  text-align: center;
  color: #666;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.journey-header-card
{
  text-align: left;
  background: #f3fbf4;
  border: 1px solid #d7ead9;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
  margin-bottom: 1.5rem;
}

.journey-header-card h2
{
  color: #2e7d32;
  margin: 0 0 .5rem;
}

.journey-header-card p
{
  margin: 0;
  color: #2b2b2b;
  line-height: 1.7;
}

/* Our Story card on About Us page */
.journey .section-title
{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 1.5rem;
}

.journey .section-title i
{
  color: #2e7d32;
}

.story-card
{
  position: relative;
  background: linear-gradient(135deg, #f3fbf4 0%, #ffffff 100%);
  border-radius: 16px;
  border: 1px solid #d7ead9;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  padding: 1.75rem 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.story-card::before
{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(46, 125, 50, .25), rgba(102, 187, 106, .15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.story-card p
{
  color: #2b2b2b;
}

.story-card iframe
{
  width: 100%;
  height: 100%;
  border-radius: 14px;
  border: 0;
  display: block;
}

@media (max-width: 768px)
{
  .story-card
  {
    padding: 1.25rem 1rem;
  }
}

/* Responsive wrapper for story video (16:9) */
.story-video-wrap
{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  margin: 0 0 1.25rem;
}

.story-video-wrap iframe
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Growth Plan */
.growth-plan
{
  padding: 4rem 0;
  background: #fff;
}

.growth-header-card
{
  text-align: left;
  background: #f3fbf4;
  border: 1px solid #d7ead9;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
  margin-bottom: 1.5rem;
}

.growth-header-card h2
{
  color: #2e7d32;
  margin: 0 0 .5rem;
}

.growth-header-card p
{
  margin: 0 0 .5rem;
  color: #2b2b2b;
  line-height: 1.7;
}

.card-list
{
  margin: .25rem 0 .75rem 1.25rem;
}

.card-list li
{
  margin: .25rem 0;
}

.growth-cta-grid
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: .5rem;
}

.contact-card,
.cost-card
{
  background: #fff;
  border: 1px solid #e3f0e5;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .05);
}

.contact-card h3,
.cost-card h3
{
  margin: 0 0 .5rem;
  color: #2e7d32;
  font-size: 1.05rem;
}

/* Donate CTA */
.donate-cta-wrap
{
  margin: .25rem 0 1rem;
  display: flex;
  justify-content: flex-end;
  padding-right: 2px;
}

.donate-cta
{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: 18px 24px;
  border-radius: 99px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(46, 125, 50, .38);
  background: linear-gradient(90deg, #2e7d32, #43a047, #66bb6a);
  background-size: 200% 100%;
  animation: donateGradient 4s ease infinite;
  border: 2px solid rgba(255, 255, 255, .25);
}

.donate-blob
{
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 90px at -10% 50%, rgba(255, 255, 255, .25), transparent 60%), radial-gradient(700px 90px at 110% 50%, rgba(255, 255, 255, .25), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.donate-icon
{
  font-size: 1.35rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .2));
}

.donate-text strong
{
  display: block;
  line-height: 1.05;
  font-size: 1.2rem;
}

.donate-text em
{
  display: block;
  font-style: normal;
  font-weight: 600;
  opacity: .95;
  font-size: .95rem;
  line-height: 1.05;
}

.donate-cta:hover
{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(46, 125, 50, .48);
}

@keyframes donateGradient
{
  0%
  {
    background-position: 0% 50%;
  }

  50%
  {
    background-position: 100% 50%;
  }

  100%
  {
    background-position: 0% 50%;
  }
}

.timeline
{
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline-item
{
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-year
{
  min-width: 80px;
  font-weight: 700;
  color: #2e7d32;
}

/* Partners */
.partners,
.community-partners
{
  padding: 4rem 0;
  background: #f8f9fa;
}

.partners h2,
.community-partners h2
{
  text-align: center;
  margin-bottom: 1.5rem;
}

.partners-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  align-items: center;
  justify-items: center;
}

.partners-grid img
{
  width: 100%;
  max-width: 260px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  filter: saturate(.9) contrast(1.05);
}

/* Team cards: circular avatars and centered text */
.team-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.team-card
{
  text-align: center;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
  border: 1px solid rgba(46, 125, 50, .08);
}

.team-card .avatar
{
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin: 0 auto 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.team-card .name
{
  color: var(--primary-700);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 4px;
}

.team-card .role
{
  color: #6f93ff;
  font-weight: 600;
  margin: 0;
}

/* Awards */
.awards
{
  padding: 4rem 0;
}

.awards h2
{
  text-align: center;
  margin-bottom: 1.5rem;
}

.awards-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.award-card
{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.award-card img
{
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.award-card h3
{
  margin: .75rem 1rem .25rem;
}

.award-card p
{
  color: #666;
  padding: 0 1rem 1rem;
}

/* Our Approach */
.approach
{
  padding: 3rem 0;
  background: #fff;
}

.approach h2
{
  color: #2e7d32;
  margin-bottom: .5rem;
}

.approach p
{
  color: #2b2b2b;
  margin-bottom: .75rem;
}

.approach-visual
{
  display: grid;
  place-items: center;
  margin-top: .5rem;
}

.approach-visual img
{
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

/* Video Embed */
.video-embed
{
  padding: 5rem 0;
  background: #fff;
}

.video-embed h2
{
  text-align: center;
  margin-bottom: .5rem;
}

.video-embed .media-wrap
{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.video-embed .media-grid
{
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.video-embed .media-card
{
  background: #f3fbf4;
  border: 1px solid #d7ead9;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.video-embed .media-card.video
{
  padding: 0;
  overflow: hidden;
}

.video-embed .media-card .embed-responsive
{
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.video-embed .media-side
{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 14px;
}

.video-embed .media-side h3
{
  margin: .25rem 0 .25rem;
  color: #2e7d32;
  font-size: 1.25rem;
}

.video-embed .media-side p
{
  color: #2b2b2b;
  line-height: 1.65;
}

.video-embed .media-points
{
  list-style: none;
  display: grid;
  gap: .4rem;
  margin: .25rem 0 .5rem;
  padding-left: 0;
}

.video-embed .media-points li
{
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: .5rem;
  color: #455a64;
}

.video-embed .media-points li .dot
{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2e7d32;
  margin-top: .45rem;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, .12);
}

.video-embed .media-cta
{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 10px 14px;
  border-radius: 10px;
  background: #2e7d32;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  width: fit-content;
  box-shadow: 0 10px 22px rgba(46, 125, 50, .28);
  border: 2px solid rgba(255, 255, 255, .3);
}

.video-embed .media-cta:hover
{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(46, 125, 50, .36);
}

.video-embed .media-meta
{
  display: flex;
  gap: .75rem;
  align-items: center;
  color: #607d8b;
  font-size: .9rem;
  margin-top: .25rem;
}

.video-embed .badge
{
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
  font-weight: 700;
  font-size: .8rem;
}

@media (max-width: 992px)
{
  .video-embed .media-grid
  {
    grid-template-columns: 1fr;
  }
}

.video-embed .lead
{
  color: #2b2b2b;
  margin: .25rem 0 0;
}

.video-embed .embed-responsive
{
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  margin: 0 auto;
}

.video-embed .embed-responsive iframe
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Branded, animated enhancements for story section */
.journey .media-card
{
  position: relative;
}

.journey .media-card.video
{
  border: 1px solid rgba(46, 125, 50, .15);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .10), 0 0 0 4px rgba(46, 125, 50, .06) inset;
}

.journey .media-card.media-side
{
  background: linear-gradient(180deg, #f7fbf8 0%, #eef7f0 100%);
  border: 1px solid #d7ead9;
}

.journey .media-side .badge
{
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
  box-shadow: 0 4px 10px rgba(46, 125, 50, .12);
}

.journey .media-side .brand-title
{
  background: linear-gradient(90deg, #1b5e20, #43a047, #66bb6a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.15;
}

.journey .media-side p
{
  font-size: 1.02rem;
}

.journey .media-points li
{
  animation: revealUp .6s ease both;
}

.journey .media-points li:nth-child(1)
{
  animation-delay: .05s;
}

.journey .media-points li:nth-child(2)
{
  animation-delay: .12s;
}

.journey .media-points li:nth-child(3)
{
  animation-delay: .18s;
}

@keyframes revealUp
{
  from
  {
    opacity: 0;
    transform: translateY(8px);
  }

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

.journey .media-cta
{
  background: linear-gradient(90deg, #2e7d32, #43a047, #66bb6a);
  border-color: rgba(255, 255, 255, .35);
  box-shadow: 0 12px 26px rgba(46, 125, 50, .32);
}

.journey .media-cta:hover
{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(46, 125, 50, .42);
}

/* Small screens: ensure top text then video stack looks intentional */
@media (max-width: 768px)
{
  .journey .media-grid
  {
    gap: 1rem;
  }

  .journey .media-side .brand-title
  {
    font-size: 1.4rem;
  }
}

/* Story video aligned to container width under the card */
.journey .journey-video-bleed
{
  width: 100%;
  padding: 0;
  margin-top: 8px;
}

.journey .journey-video-bleed .embed-responsive
{
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* Media Modal */
.media-modal
{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1100;
}

.media-modal.active
{
  display: block;
}

.media-backdrop
{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.media-dialog
{
  position: relative;
  width: min(1000px, 94vw);
  height: min(82vh, 900px);
  margin: 6vh auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.media-header
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  border-bottom: 1px solid #eef3ef;
}

.media-close
{
  background: #fff;
  border: 1px solid #cfd8dc;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.1rem;
}

.media-body
{
  position: relative;
}

.media-body iframe
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* About + Values + Mission */
.about-values
{
  padding: 3rem 0;
  background: #fff;
}

.about-values .about-intro
{
  width: 100%;
  margin: 0 0 1.5rem 0;
  color: #2b2b2b;
  font-size: 1.08rem;
  line-height: 1.75;
  background: #f3fbf4;
  border: 1px solid #d7ead9;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.values-card
{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: #f3fbf4;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  padding: 0;
  margin-bottom: 2rem;
  overflow: hidden;
}

.values-graphic
{
  padding: 14px;
  background: linear-gradient(180deg, #f1f8e9 0%, #e8f5e9 100%);
  border-right: 1px solid #d7ead9;
  display: grid;
  place-items: center;
}

.values-graphic .vg-icon
{
  font-size: 2rem;
  background: #fff;
  border: 1px solid #cfe8d1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
  margin: 6px;
}

.values-graphic
{
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  min-height: 260px;
  border-radius: 12px;
}

.values-list
{
  background: #f3fbf4;
  padding: 14px;
  border-left: 1px solid #d7ead9;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.values-list .values-header
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.values-list h3
{
  color: #2e7d32;
  margin: .25rem 0 .5rem;
}

.values-controls button
{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cfe8d1;
  background: #fff;
  cursor: pointer;
}

.values-controls button:hover
{
  background: #f7faf7;
  color: #2e7d32;
}

.values-scroller
{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: .75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 4px 12px .5rem;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: 12px;
  scroll-behavior: smooth;
  width: 100%;
}

.value-pill
{
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1rem;
  border: 1px solid #c8e6c9;
  border-radius: 9999px;
  background: #e8f5e9;
  color: #1b5e20;
  font-size: .95rem;
  scroll-snap-align: start;
  white-space: normal;
  line-height: 1.35;
}

.value-pill div
{
  display: block;
}

.value-pill .icon
{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2e7d32;
  display: inline-block;
}

.value-pill strong
{
  margin-right: .25rem;
}

.mission-card
{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  background: linear-gradient(180deg, #f1f8e9 0%, #e8f5e9 100%);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.mission-graphic
{
  width: 100%;
  height: 260px;
  border-radius: 12px;
  background: radial-gradient(200px 80px at 20% 30%, rgba(255, 255, 255, .7), transparent 60%), radial-gradient(200px 80px at 80% 70%, rgba(255, 255, 255, .7), transparent 60%), linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  border: 1px solid #d7ead9;
}

.mission-graphic .mg-badge
{
  position: absolute;
  top: 12px;
  background: #2e7d32;
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
  border: 2px solid rgba(255, 255, 255, .35);
}

.mission-graphic .mg-badge:nth-child(1)
{
  left: 12px;
}

.mission-graphic .mg-badge:nth-child(2)
{
  right: 12px;
  background: #43a047;
}

.mission-graphic .mg-icon
{
  font-size: 64px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .15));
}

.mission-content
{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: .25rem 1rem;
  min-width: 0;
}

.mission-header
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mission-controls button
{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cfe8d1;
  background: #fff;
  cursor: pointer;
}

.mission-controls button:hover
{
  background: #f7faf7;
  color: #2e7d32;
}

.mission-scroller
{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: .75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 4px 0 .5rem;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.mission-pill
{
  scroll-snap-align: start;
}

.mission-item
{
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
}

.mission-item h4
{
  margin: 0;
  color: #2e7d32;
}

.mission-item p
{
  margin: 0;
  color: #4a4a4a;
}

/* Testimonials */
.testimonials
{
  padding: 5rem 0;
  background: #fff;
}

.testimonials h2
{
  text-align: center;
  margin-bottom: 1.25rem;
}

.testimonials-slider
{
  position: relative;
  overflow: hidden;
}

.testimonial-slide
{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .5s ease, transform .5s ease;
}

.testimonial-slide.active
{
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.testimonial-content
{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  padding: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-content.has-media
{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 1.75rem;
  align-items: center;
}

.testimonial-body
{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.testimonial-body p
{
  font-size: 1.1rem;
  color: #333;
  margin: 0;
  line-height: 1.7;
}

.testimonial-content:not(.has-media) .testimonial-body p
{
  margin-bottom: 1rem;
}

.testimonial-media
{
  margin-bottom: 1.25rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}

.testimonial-media iframe,
.testimonial-media video
{
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.testimonial-author
{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: .5rem;
}

.testimonial-author.has-video
{
  align-items: flex-start;
}

.testimonial-author img
{
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.testimonial-author .author-info h4
{
  margin: 0;
  font-size: 1rem;
  color: #2e7d32;
}

.testimonial-author .author-info p
{
  margin: 0;
  color: #666;
  font-size: .9rem;
}

.testimonial-controls
{
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 1rem;
}

.testimonial-prev,
.testimonial-next
{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.testimonial-prev:hover,
.testimonial-next:hover
{
  background: #f7faf7;
  border-color: #cfe8d1;
  color: #2e7d32;
}

.testimonial-dots
{
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: .5rem;
}

.testimonial-dot
{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfd8dc;
}

.testimonial-dot.active
{
  background: #2e7d32;
}

@media (max-width: 992px)
{
  .testimonial-content.has-media
  {
    grid-template-columns: 1fr;
  }

  .testimonial-media
  {
    margin-bottom: 0;
  }
}

@media (max-width: 600px)
{
  .testimonial-content
  {
    padding: 1.25rem;
  }

  .testimonial-media iframe,
  .testimonial-media video
  {
    height: 220px;
  }
}

/* Team & Blog Cards */
.team-grid,
.blog-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.team-card,
.blog-card
{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  overflow: hidden;
}

.team-card
{
  text-align: center;
  padding-bottom: 1.25rem;
}

.team-card img,
.blog-card img
{
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Round avatar style for team */
.team-card>img
{
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 1.25rem auto 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  border: 6px solid #f5f7f9;
}

.card-body
{
  padding: 1rem 1.25rem;
}

.team-card h3,
.blog-card h3
{
  margin-bottom: .5rem;
}

.team-card p.role
{
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: .5rem;
}

/* Certification */
.certification
{
  padding: 3rem 0;
  background: #fff;
}

.certification-content
{
  text-align: center;
}

.certification-content img
{
  max-width: 220px;
  margin: .5rem auto;
}

/* Footer */
.footer
{
  background: linear-gradient(90deg, var(--primary-900) 0%, var(--primary-700) 100%);
  color: #fff;
  padding: 3.5rem 0 1.25rem;
}

.footer-content
{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand
{
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-logo
{
  width: 120px;
  height: auto;
}

.footer .badge-title
{
  font-weight: 700;
}

.footer-badge
{
  display: inline-block;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
}

.footer-badge img
{
  display: block;
  max-width: 160px;
  height: auto;
}

.footer-section h4
{
  margin-bottom: 1rem;
  color: #fff;
}

.footer-section ul
{
  list-style: none;
}

.footer-section a
{
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  transition: color .25s ease;
}

.footer-section a:hover
{
  color: #dcedc8;
}

.footer-bottom
{
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, .9);
}

/* Responsive */
@media (max-width: 992px)
{
  .footer-content
  {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px)
{
  .container
  {
    padding: 0 15px;
  }

  .container.wide
  {
    padding-left: max(15px, 4vw);
    padding-right: max(15px, 4vw);
  }

  .hero
  {
    padding: 3rem 0 0;
    margin-top: 0;
  }

  /* Default hero image centering for all pages */
  .hero-slide img
  {
    object-position: 50% 50%;
  }

  /* Slightly recenter only on the homepage hero to avoid excessive top bias */
  #home .hero-slide img
  {
    object-position: 50% 30%;
  }

  .hero-description
  {
    padding: 10px 12px;
  }

  .section-header h2
  {
    font-size: 1.6rem;
  }

  .stats-grid,
  .solutions-grid
  {
    grid-template-columns: 1fr;
  }

  .footer-content
  {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand
  {
    grid-column: 1 / -1;
  }

  .dropdown-menu
  {
    position: static;
    left: auto;
    transform: none;
    box-shadow: none;
    border: none;
    padding: .25rem 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
  }

  /* Off-canvas navigation */
  .nav
  {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 20px rgba(0, 0, 0, .12);
    transform: translateX(-100%);
    transition: transform .25s ease;
    padding: 80px 20px 20px;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav.active
  {
    transform: translateX(0);
  }

  .nav-list
  {
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    width: 100%;
    padding-right: 6px;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .nav-list li
  {
    width: 100%;
  }

  .nav-list a
  {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    color: #222;
  }

  .nav-list a:hover
  {
    background: #f0f7f1;
    color: #1b5e20;
  }

  .nav-list a:focus-visible
  {
    outline: 2px solid #2e7d32;
    outline-offset: 2px;
  }

  .nav-list a.active
  {
    background: #e8f5e9;
    color: #2e7d32;
  }

  /* Mobile dropdowns inside drawer */
  .dropdown
  {
    width: 100%;
  }

  .dropdown>a
  {
    justify-content: space-between;
  }

  .dropdown-menu
  {
    margin-top: 4px;
    background: transparent;
  }

  .dropdown-menu a
  {
    padding-left: 24px;
    border-radius: 8px;
  }

  .dropdown-menu a:hover
  {
    background: #eef6ef;
    color: #1b5e20;
  }

  /* Drawer scrollbar styling */
  .nav-list::-webkit-scrollbar
  {
    width: 6px;
  }

  .nav-list::-webkit-scrollbar-track
  {
    background: transparent;
  }

  .nav-list::-webkit-scrollbar-thumb
  {
    background: rgba(0, 0, 0, .2);
    border-radius: 4px;
  }

  .nav-list
  {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .25) transparent;
  }

  /* Show hamburger */
  .mobile-menu-toggle
  {
    display: inline-flex;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-content
  {
    grid-template-columns: auto 1fr auto;
  }

  .nav-list
  {
    justify-content: flex-start;
  }

  .header .container
  {
    position: relative;
  }

  /* Hide cart on mobile to separate icon */
  .header-actions .cart,
  .cart-link
  {
    display: none;
  }

  /* Page overlay when nav open */
  body.nav-open
  {
    overflow: hidden;
  }

  body.nav-open::after
  {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 250;
    pointer-events: none;
  }

  /* Get Involved quick section */
  .get-involved
  {
    padding: 3rem 0;
    background: #fff;
  }

  .gi-grid
  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }

  .gi-card
  {
    background: #f9fbfa;
    border: 1px solid #e3f0e5;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
  }

  .gi-card h3
  {
    margin: .25rem 0 .25rem;
  }

  .gi-card p
  {
    margin: 0 0 .5rem;
    color: #2b2b2b;
  }

  .gi-icon
  {
    font-size: 1.4rem;
  }

  /* Mini Cart Drawer */
  .mini-cart
  {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
  }

  .mini-cart.open
  {
    pointer-events: auto;
  }

  .mini-cart-backdrop
  {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    transition: opacity .2s ease;
  }

  .mini-cart.open .mini-cart-backdrop
  {
    opacity: 1;
  }

  .mini-cart-panel
  {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100%;
    background: #fff;
    border-left: 1px solid #eaeaea;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .2);
    transform: translateX(100%);
    transition: transform .25s ease;
    display: grid;
    grid-template-rows: auto 1fr auto;
  }

  .mini-cart.open .mini-cart-panel
  {
    transform: translateX(0);
  }

  .mini-cart-header
  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1rem;
    border-bottom: 1px solid #eee;
  }

  .mini-cart-header h4
  {
    margin: 0;
  }

  .mini-cart-close
  {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
  }

  .mini-cart-body
  {
    overflow: auto;
    padding: .75rem;
    display: grid;
    gap: .75rem;
  }

  .mini-cart-item
  {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: .6rem;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: .5rem;
  }

  .mini-cart-item img
  {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
  }

  .mini-cart-item .info
  {
    display: grid;
    gap: .25rem;
  }

  .mini-cart-item .meta
  {
    color: #607d8b;
    font-size: .85rem;
  }

  .mini-cart-item .line
  {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mini-cart-item .qty
  {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
  }

  .mini-cart-item .qbtn
  {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid #cfd8dc;
    background: #fff;
    cursor: pointer;
  }

  .mini-cart-item .remove
  {
    align-self: start;
    color: #e53935;
    background: transparent;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: .9rem;
  }

  .mini-cart-item .price
  {
    font-weight: 700;
    color: #1b5e20;
  }

  .mini-cart-empty
  {
    text-align: center;
    color: #777;
    padding: 2rem 0;
  }

  .mini-cart-footer
  {
    border-top: 1px solid #eee;
    padding: .9rem 1rem;
    display: grid;
    gap: .5rem;
  }

  .mini-cart-total
  {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }

  .mini-cart-actions
  {
    display: flex;
    gap: .5rem;
    justify-content: flex-end;
  }
}



/*mission $vison */

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

body
{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #f9fff9, #ffffff);
  color: #333;
  padding: 20px;
}

.container
{
  max-width: 1200px;
  margin: 0 auto;
}

/* 🌱 Header */
.header
{
  text-align: center;
  margin-bottom: 40px;
}

.header h1
{
  color: #2e7d32;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.header p
{
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* 🧩 Grid */
.grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
}

/* 💚 Card */
.card
{
  background: #fff;
  border: 1px solid #d6f2d6;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 128, 0, 0.08);
  padding: 22px 20px;
  transition: all 0.3s ease;
}

.card:hover
{
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 128, 0, 0.1);
}

/* Section Title */
.section-title
{
  text-align: center;
  color: #1b5e20;
  font-size: 1.6rem;
  margin-bottom: 18px;
  position: relative;
}

.section-title::after
{
  content: '';
  width: 50px;
  height: 3px;
  background: #4caf50;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

/* 🌿 Values List */
.values-list
{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.value-item
{
  display: flex;
  align-items: stretch;
  /* Make children fill height */
  background: white;
  border: 1px solid #2e7d32;
  border-radius: 6px;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  overflow: hidden;
  /* To contain the border-radius of children */
  color: #2e7d32;
  /* Green text */
}

.value-item>span
{
  display: flex;
  align-items: center;
  width: 100%;
}

.value-item:hover
{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 128, 0, 0.1);
}

.icon-box
{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2e7d32;
  padding: 12px;
  margin-right: 12px;
}

.value-icon
{
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

/* 🎯 Mission & Vision */
.mission-vision
{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission-item
{
  display: flex;
  align-items: center;
  background: #f4fcf4;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.mission-item:hover
{
  background: #e9fbe9;
}

.mission-icon
{
  font-size: 1.6rem;
  color: #2e7d32;
  margin-right: 10px;
  animation: float 3s ease-in-out infinite;
}

/* 📊 Stats */
.stats
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  text-align: center;
}

.stat-item
{
  background: #f4fcf4;
  border-radius: 10px;
  padding: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover
{
  background: #e9fbe9;
}

.stat-number
{
  color: #2e7d32;
  font-size: 1.8rem;
  font-weight: 600;
}

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

/* 🌟 Animations */
@keyframes pulse
{
  0%
  {
    transform: scale(1);
    opacity: 1;
  }

  50%
  {
    transform: scale(1.15);
    opacity: 0.9;
  }

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

@keyframes float
{
  0%
  {
    transform: translateY(0px);
  }

  50%
  {
    transform: translateY(-4px);
  }

  100%
  {
    transform: translateY(0px);
  }
}

/* 📱 Mobile */
@media (max-width: 768px)
{
  .section-title
  {
    font-size: 1.4rem;
  }

  .value-item,
  .mission-item
  {
    font-size: 0.9rem;
  }
}

/* Modern Team Section Styling */
.section-main-title
{
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e7d32;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(46, 125, 50, 0.3);
}

.section-main-title i
{
  color: #2e7d32;
  margin-right: 0.5rem;
  font-size: 2.2rem;
  filter: drop-shadow(0 2px 4px rgba(46, 125, 50, 0.4));
}

.section-title
{
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
  text-decoration: none;
  border-bottom: none;
}

.board-title
{
  color: #2e7d32 !important;
}

.board-title i
{
  color: #2e7d32 !important;
}

.staff-title
{
  color: #333 !important;
  margin-top: 4rem !important;
  /* Add extra spacing before staff section */
}

.staff-title i
{
  color: #666 !important;
}

.section-title i
{
  color: #2e7d32;
  margin-right: 0.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.section-title .title-icon
{
  height: 24px;
  width: 24px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

.section-title:hover .staff-title i
{
  color: #666 !important;
}

/* Consistent styling for all section title Font Awesome icons */
h2 i.fas,
h2 i.far,
h2 i.fab,
.section-title i.fas,
.section-title i.far,
.section-title i.fab
{
  color: #2e7d32;
  margin-right: 0.75rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  vertical-align: middle;
}

h2:hover i.fas,
h2:hover i.far,
h2:hover i.fab,
.section-title:hover i.fas,
.section-title:hover i.far,
.section-title:hover i.fab
{
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(46, 125, 50, 0.4));
}

/* Specific colors for different sections */
.journey h2 i
{
  color: #2e7d32;
}

.awards h2 i
{
  color: #e91e63;
}

.partners h2 i
{
  color: #2e7d32;
}

/* Animation Classes */
@keyframes fadeInUp
{
  from
  {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes slideInLeft
{
  from
  {
    opacity: 0;
    transform: translateX(-30px);
  }

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

.animate-fade-in
{
  animation: fadeInUp 1s ease-out;
}

.animate-slide-up
{
  animation: slideInLeft 0.8s ease-out;
  animation-fill-mode: both;
}

/* Responsive adjustments */
@media (max-width: 768px)
{
  .section-main-title
  {
    font-size: 2rem;
  }

  .section-main-title i
  {
    font-size: 1.8rem;
  }

  .section-title
  {
    font-size: 1.5rem;
  }

  .section-title i
  {
    font-size: 1.3rem;
  }
}

/* Mobile responsive for team layout */
@media (max-width: 992px)
{
  .section-main-title
  {
    text-align: center;
  }
}

/* Culture Section Styling */
.culture-card
{
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  margin-bottom: 2rem;
}

.culture-card:hover
{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(46, 125, 50, 0.15);
  border-color: #2e7d32;
}

.culture-icon
{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  transition: all 0.3s ease;
}

.culture-card:hover .culture-icon
{
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.culture-card img
{
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
}

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

.culture-content
{
  padding: 2rem;
  background: white;
  position: relative;
}

.culture-content h3
{
  font-size: 1.4rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.culture-content p
{
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive adjustments for culture cards */
@media (max-width: 768px)
{
  .culture-card
  {
    margin-bottom: 1.5rem;
  }

  .culture-icon
  {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    top: 15px;
    right: 15px;
  }

  .culture-content
  {
    padding: 1.5rem;
  }

  .culture-content h3
  {
    font-size: 1.2rem;
  }
}

/* Admin Story Content Styling */
.journey .card
{
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey .card:hover
{
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.journey .brand-title
{
  font-size: 1.8rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(46, 125, 50, 0.3);
}

.journey .card p
{
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.journey .card strong
{
  color: #2e7d32;
  font-weight: 600;
}

.journey .media-points
{
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.journey .media-points li
{
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.journey .media-points li:last-child
{
  border-bottom: none;
}

.journey .media-points li:before
{
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: #2e7d32;
  font-weight: bold;
  font-size: 1.1rem;
}

.journey .embed-responsive
{
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
}

.journey video
{
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
}

.journey .media-meta
{
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-top: 1rem;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.journey .section-title
{
  font-size: 1.5rem;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 1rem;
  text-align: center;
  text-decoration: none;
  border-bottom: none;
}

/* Mobile responsive for story content */
@media (max-width: 768px)
{
  .journey .card
  {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .journey .brand-title
  {
    font-size: 1.5rem;
  }

  .journey .card p
  {
    font-size: 1rem;
  }

  .journey .media-points li
  {
    padding-left: 1.5rem;
    font-size: 0.95rem;
  }

  .journey .media-points li:before
  {
    font-size: 1rem;
  }

  .journey video
  {
    max-height: 250px;
  }
}

/* Approach Section Styling */
.approach
{
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.approach .container
{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.approach-card
{
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.approach-card::before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2e7d32, #4caf50, #2e7d32);
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift
{

  0%,
  100%
  {
    background-position: 0% 50%;
  }

  50%
  {
    background-position: 100% 50%;
  }
}

.approach-card:hover
{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(46, 125, 50, 0.15);
  border-color: #2e7d32;
}

.approach-content h2
{
  font-size: 2.2rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(46, 125, 50, 0.3);
}

.approach-content>p
{
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.approach-features
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item
{
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-item::before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover
{
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #2e7d32;
}

.feature-item:hover::before
{
  opacity: 1;
}

.feature-item i
{
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover i
{
  transform: scale(1.1) rotate(5deg);
  color: #4caf50;
}

.feature-item h4
{
  font-size: 1.3rem;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 0.75rem;
}

.feature-item p
{
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Mobile responsive for approach section */
@media (max-width: 768px)
{
  .approach
  {
    padding: 2rem 0;
  }

  .approach .container
  {
    padding: 0 1rem;
  }

  .approach-card
  {
    padding: 2rem 1.5rem;
  }

  .approach-content h2
  {
    font-size: 1.8rem;
  }

  .approach-content>p
  {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .approach-features
  {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-item
  {
    padding: 1.5rem;
  }

  .feature-item i
  {
    font-size: 2rem;
  }

  .feature-item h4
  {
    font-size: 1.2rem;
  }
}

/* Research & Programs Page Styles */
.card-meta
{
  margin-top: 1rem;
}

.meta-tag
{
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.solution-card .card-meta .meta-tag
{
  background: rgba(102, 187, 106, 0.1);
  color: #43a047;
}

.cta-link
{
  color: #2e7d32;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.cta-link:hover
{
  border-bottom-color: #2e7d32;
}

.cta-section
{
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, .05) 0%, rgba(102, 187, 106, .05) 100%);
}

.cta-section .toc-impact-bar
{
  background: #fff;
  border: 2px solid rgba(46, 125, 50, 0.1);
}

.programs-section
{
  background: #f8f9fa;
}

.programs-section .section-header h2
{
  color: #2e7d32;
}

/* Enhanced card hover effects for research/programs */
.solution-card
{
  transition: all 0.3s ease;
}

.solution-card:hover
{
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

/* Mobile responsiveness for research page */
@media (max-width: 768px)
{
  .hero-actions
  {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .btn
  {
    width: 100%;
    text-align: center;
  }

  .section-header p
  {
    font-size: 1rem;
    line-height: 1.6;
  }

  .card-meta
  {
    margin-top: 0.75rem;
  }

  .meta-tag
  {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
  }
}

/* Shop Page Styles */
.shop-section
{
  padding: 4rem 0;
  background: #f8f9fa;
}

/* Shop Hero Section - Compact Version */
.shop-hero
{
  position: relative;
  height: 50vh;
  /* Reduced from original hero height */
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.shop-hero-slider
{
  position: relative;
  height: 100%;
}

.shop-hero-slide
{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.shop-hero-slide.active
{
  opacity: 1;
}

.shop-hero-slide img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85) contrast(1.05) saturate(1.1);
}

.shop-hero-overlay
{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .6) 100%);
  display: flex;
  align-items: center;
}

.shop-hero-content
{
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.shop-hero-title
{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.shop-hero-description
{
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
  line-height: 1.6;
  opacity: 0.95;
}

.shop-hero-actions
{
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Shop Hero Slider Controls */
.shop-hero-prev,
.shop-hero-next
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, .9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2e7d32;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.shop-hero-prev:hover,
.shop-hero-next:hover
{
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

.shop-hero-prev
{
  left: 2rem;
}

.shop-hero-next
{
  right: 2rem;
}

.shop-hero-dots
{
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.shop-hero-dots button
{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .7);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shop-hero-dots button.active
{
  background: #fff;
  border-color: #fff;
}

/* Mobile responsive for shop hero */
@media (max-width: 768px)
{
  .shop-hero
  {
    height: 40vh;
    min-height: 300px;
  }

  .shop-hero-prev,
  .shop-hero-next
  {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .shop-hero-prev
  {
    left: 1rem;
  }

  .shop-hero-next
  {
    right: 1rem;
  }

  .shop-hero-content
  {
    padding: 0 1rem;
  }

  .shop-hero-title
  {
    font-size: 2rem;
  }

  .shop-hero-description
  {
    font-size: 1rem;
  }

  .shop-hero-actions
  {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px)
{
  .shop-hero-dots
  {
    bottom: 1rem;
  }

  .shop-hero-dots button
  {
    width: 10px;
    height: 10px;
  }
}

.shop-layout
{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
}

.shop-sidebar
{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.sidebar-section
{
  padding: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.sidebar-section:last-child
{
  border-bottom: none;
}

.sidebar-section h3
{
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2e7d32;
}

.search-input-group
{
  display: flex;
  gap: 0.5rem;
}

.search-input-group .form-control
{
  flex: 1;
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding: 0.5rem 0.75rem;
}

.search-input-group .btn
{
  border-radius: 8px;
  padding: 0.5rem 1rem;
}

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

.category-list li
{
  margin-bottom: 0.5rem;
}

.category-list a
{
  display: block;
  padding: 0.5rem 0;
  color: #495057;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.category-list a:hover,
.category-list a.active
{
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  font-weight: 600;
}

.form-select
{
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 8px;
  background: #fff;
  font-size: 0.9rem;
}

.shop-main
{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  padding: 2rem;
  min-height: 600px;
}

.shop-header
{
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.results-info h2
{
  margin: 0 0 0.5rem 0;
  font-size: 1.8rem;
  color: #2e7d32;
}

.results-info p
{
  margin: 0;
  color: #6c757d;
  font-size: 0.95rem;
}

.products-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card
{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover
{
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.product-badge
{
  position: absolute;
  top: 10px;
  left: 10px;
  background: #2e7d32;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-image
{
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img
{
  transform: scale(1.05);
}

.product-overlay
{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay
{
  opacity: 1;
}

.quick-view-btn
{
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.product-card:hover .quick-view-btn
{
  transform: translateY(0);
}

.product-info
{
  padding: 1.5rem;
}

.product-info h3
{
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
}

.product-category
{
  margin: 0 0 0.75rem 0;
  font-size: 0.85rem;
  color: #6c757d;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-price
{
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2e7d32;
}

.product-actions
{
  margin-top: 1rem;
}

.add-to-cart-btn
{
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.add-to-cart-btn:hover
{
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, .3);
}

.out-of-stock
{
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  color: #6c757d;
  font-weight: 600;
}

.no-products
{
  text-align: center;
  padding: 4rem 2rem;
  color: #6c757d;
}

.no-products i
{
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-products h3
{
  margin: 0 0 1rem 0;
  color: #495057;
}

.no-products p
{
  margin: 0 0 2rem 0;
  font-size: 1.1rem;
}

/* Cart Styles */
.cart-btn
{
  position: relative;
  background: none;
  border: 2px solid #2e7d32;
  color: #2e7d32;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.1rem;
}

.cart-btn:hover
{
  background: #2e7d32;
  color: #fff;
}

.cart-count
{
  position: absolute;
  top: -8px;
  right: -8px;
  background: #dc3545;
  color: #fff;
  border-radius: 50%;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  display: none;
}

.cart-items-list
{
  max-height: 400px;
  overflow-y: auto;
}

.cart-item
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}

.cart-item:last-child
{
  border-bottom: none;
}

.cart-item-info h6
{
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: #333;
}

.cart-item-info p
{
  margin: 0;
  font-size: 0.85rem;
  color: #6c757d;
}

.cart-item-controls
{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-controls
{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-controls button
{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.quantity
{
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}

.item-total
{
  font-weight: 600;
  color: #2e7d32;
  min-width: 80px;
  text-align: right;
}

.cart-total
{
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid #e9ecef;
}

.total-row
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  color: #2e7d32;
}

/* Responsive Design */
@media (max-width: 1024px)
{
  .shop-layout
  {
    grid-template-columns: 250px 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px)
{
  .shop-layout
  {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .shop-sidebar
  {
    position: static;
  }

  .products-grid
  {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }

  .shop-main
  {
    padding: 1.5rem;
  }

  .sidebar-section
  {
    padding: 1rem;
  }
}

@media (max-width: 480px)
{
  .products-grid
  {
    grid-template-columns: 1fr;
  }

  .product-info
  {
    padding: 1rem;
  }

  .product-price
  {
    font-size: 1.1rem;
  }

  .cart-item
  {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .cart-item-controls
  {
    width: 100%;
    justify-content: space-between;
  }
}

/* Order Summary Styles for Shop Checkout */
.order-summary
{
  background: #fff;
  border: 2px solid #e8f5e9;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

.order-summary h4
{
  color: #2e7d32;
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-summary h4::before
{
  content: "🛒";
  font-size: 1.1em;
}

.order-items
{
  margin-bottom: 1.5rem;
}

.order-item
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

.order-item:last-child
{
  border-bottom: none;
}

.item-details h5
{
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

.item-details p
{
  margin: 0;
  font-size: 0.85rem;
  color: #6c757d;
}

.item-total
{
  font-weight: 600;
  color: #2e7d32;
  font-size: 1rem;
}

.order-total
{
  border-top: 2px solid #e8f5e9;
  padding-top: 1rem;
  text-align: center;
  font-size: 1.2rem;
  color: #2e7d32;
  font-weight: 700;
}

/* Footer Styles - Consistent with Project Color Scheme */
.footer
{
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  color: #fff;
  padding: 3rem 0 2rem;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-top: auto;
}

.footer-content
{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand
{
  margin-bottom: 1.5rem;
}

.footer-logo
{
  height: 60px !important;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-section h4
{
  color: #66bb6a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-section li
{
  margin-bottom: 0.5rem;
}

.footer-section a
{
  color: #e8f5e9;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-section a:hover
{
  color: #66bb6a;
}

.contact-info
{
  margin-top: 1rem;
}

.contact-info p
{
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #e8f5e9;
}

.social-links
{
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(102, 187, 106, 0.1);
  border-radius: 50%;
  color: #66bb6a;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover
{
  background: #66bb6a;
  color: #1b5e20;
  transform: translateY(-2px);
}

.footer-bottom
{
  border-top: 1px solid rgba(102, 187, 106, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p
{
  margin: 0;
  font-size: 0.9rem;
  color: #c8e6c9;
}

/* Footer Responsive */
@media (max-width: 768px)
{
  .footer-content
  {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer
  {
    padding: 2rem 0 1.5rem;
  }

  .footer-section
  {
    text-align: center;
  }

  .social-links
  {
    justify-content: center;
  }
}

@media (max-width: 480px)
{
  .footer-section h4
  {
    font-size: 1rem;
  }

  .footer-section a
  {
    font-size: 0.9rem;
  }

  .social-links
  {
    gap: 0.5rem;
  }

  .social-links a
  {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}