
/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

/* Main Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --foreground: #171717;
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3e5339; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #468138; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the Main background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --default-color-rgb: 33, 37, 41;
  --contrast-color-rgb: 255, 255, 255;
  --primary-color: #468138;
  --secondary-color: #222;
  --light-color: #ffffff;
  --gray-color: #f3f3f3;
  --dark-gray: #555;
  --text-color: #333;
  --border-radius: 0; /* Square corners */
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --primary-color-rgb: 0, 123, 255; /* Replace with your actual primary color RGB values */
}

.custom-border {
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #ffffff1f;
  z-index: 2;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the Main colors to allow for more customization options */
:root {
  --nav-color: #3e5339; /* The default color of the main navmenu links */
  --nav-hover-color: #468138; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3e5339; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #468138; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override Main colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #468138;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #2c5521;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
  --header-offset: 96px; /* fallback; updated by JS based on header height */
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none !important;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.btn {
  padding: 0.8rem 1.5rem !important;
  border-radius: var(--border-radius) !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border: none !important;
}
.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--light-color) !important;
}

.btn-primary:hover {
  background-color: var(--nav-hover-color) !important;
}

.btn-outline-primary {
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  background-color: transparent !important;
  transition: all 0.3s ease !important;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  color: var(--light-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-light {
  background-color: var(--light-color) !important;
  color: var(--secondary-color) !important;
}

.btn-link {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.btn-link i {
  margin-left: 5px !important;
  transition: var(--transition) !important;
}

.btn-link:hover i {
  transform: translateX(5px) !important;
}

img {
  max-width: 100% !important;
  height: auto !important;
}

/* Prevent background scroll when mobile nav open */
.no-scroll {
  overflow: hidden;
}

.section-subtitle {
  display: block !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  letter-spacing: 1px !important;
}

.section-title {
  font-size: 2.5rem !important;
  margin-bottom: 2rem !important;
  color: var(--secondary-color) !important;
}

/* Video Button Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.8);
  }
  70% {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
  }
}

.video-btn {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  animation: pulse 2s infinite;
}

.video-btn i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

/*--------------------------------------------------------------
# Main Header
--------------------------------------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(45, 80, 22, 0.9);
}

/* Legacy .nav layout is replaced by Bootstrap .navbar */

.logo {
  height: 90px;
  width: auto;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Removed header-shrink behavior */

/* Navbar brand logo sizing */
.navbar .navbar-brand img {
  height: 90px !important;
  width: auto !important;
  max-width: none !important;
}

/* Small screens: reduce logo to 64px */
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    height: 64px !important;
  }
}

/* Smaller logos on small screens */
@media (max-width: 992px) {
  .logo {
    height: 64px;
  }
}

@media (max-width: 576px) {
  .logo {
    height: 54px;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4a7c23;
}

/* Remove custom mobile nav toggle/styles in favor of Bootstrap collapse */

/*--------------------------------------------------------------
  # Main Sections
  --------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
  # Main Section Titles
  --------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/* Hero Section */
.hero {
  /* min-height: calc(120vh - var(--header-offset)); */
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.9), rgba(74, 124, 35, 0.8)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23fff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23fff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding-top: var(--header-offset);
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff9900, #a25e3a);
  color: white;
  padding: 1rem 2.5rem;
  /* border-radius: 50px; */
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 165, 0, 0.4);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/* About Section */
.about-section {
  padding: 6rem 0;
}

.about-image-container {
  position: relative;
}

.about-image {
  width: 85%;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote-box {
  position: absolute;
  bottom: -50px;
  right: 0px;
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 2rem;
  max-width: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-box .quote-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  margin-bottom: 1rem;
}

.quote-box .quote-icon i {
  color: var(--light-color);
  font-size: 1.2rem;
}

.quote-box p {
  color: var(--light-color);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Creative quote card (glassmorphism) */
.quote-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(70, 129, 56, 0.12);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.quote-badge {
  position: absolute;
  top: -16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #6dcf5a, #2d5016);
  color: #fff;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.25);
}

.quote-badge i {
  font-size: 0.9rem;
}

.quote-accent {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #468138, #8fd469);
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.quote-text {
  color: #1e2a19;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.quote-meta {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #6b7a6a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.quote-author {
  font-weight: 600;
}

.quote-sep {
  opacity: 0.5;
}

.quote-author {
  font-size: 0.9rem;
  font-weight: 500;
}

.about-content {
  padding-left: 2rem;
}

.about-highlight {
  display: flex;
  margin: 2rem 0;
  padding-left: 1rem;
}

.highlight-bar {
  width: 4px;
  background-color: var(--primary-color);
  margin-right: 1rem;
  flex-shrink: 0;
}

.about-highlight p {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--secondary-color);
}

.about-features {
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.feature i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Mission Section */
.mission {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #2d5016, #4a7c23);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-content {
  font-size: 1.2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
}

/* Services Grid */
/* Solutions Section */

.service-card {
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-icon img {
  max-width: 60px;
  height: auto;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.service-card p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

.video-container {
  position: relative;
  margin-top: 1rem;
}

.video-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.video-card {
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  /* height: 100%; */
  transition: transform 0.3s ease;
  border: 1px solid #f0f0f0;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.play-button i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-left: 3px; /* Slight offset for play icon */
}

.header-card {
  border: none;
  background-color: transparent;
  padding-left: 0;
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left !important;
  line-height: 1.5;
}

.header-card .section-subtitle {
  color: var(--primary-color);
  /* margin-bottom: 1rem; */
}

.header-card .section-title {
  text-align: left !important;
  font-size: 1.2rem !important;
  margin-bottom: 0.5rem !important;
  color: var(--secondary-color);
  padding-bottom: 10px !important;
}

.header-card p {
  margin-bottom: 2rem;
}

.header-card .btn {
  align-self: flex-start;
  padding: 0.8rem 2rem;
}
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.health {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
}
.education {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
}
.legal {
  background: linear-gradient(135deg, #45b7d1, #2196f3);
}
.farming {
  background: linear-gradient(135deg, #96ceb4, #4a7c23);
}


.call-out-card {
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.9), rgba(74, 124, 35, 0.8)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23fff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23fff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

/* Impact Section */


.impact {
  padding: 6rem 0;
  background: linear-gradient(135deg, #2d5016, #4a7c23);
  color: white;
  text-align: center;
}

.impact .impact-title {
  color: white !important;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.impact .section-description,
.impact p {
  color: white !important;
}

.impact .stat-label {
  color: white !important;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  color: #ffa500;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  color: #2d5016;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Footer */
.footer {
  background: #2d5016;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 1s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-offset) + 8px);
  }

  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .page-header {
    min-height: 50vh;
    padding: calc(var(--header-offset, 120px) + 10px) 0 20px 0;
  }
  
  .page-header .page-title {
    font-size: 1.8rem;
    color: white;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Medium screens adjustments */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero-description {
    font-size: 1rem;
  }
}



/* Footer Appointment Style */
.footer-appointment-style {
    background: linear-gradient(180deg, #ffffff 0%, #f1f7fc 50%, #2d5016 100%);
    position: relative;
    padding: 60px 0 0;
    margin-top: 80px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(14, 58, 102, 0.15);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
    z-index: 2;
  }
  
  .footer-form-section {
    padding: 50px 40px;
    background: #ffffff;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group input,
  .form-group select {
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: #0E3A66;
    box-shadow: 0 0 0 3px rgba(14, 58, 102, 0.1);
  }
  
  .form-group input::placeholder {
    color: #9ca3af;
  }
  
.btn-book-appointment {
    background: linear-gradient(135deg, #468138 0%, #2d5016 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
.btn-book-appointment:hover {
    background: linear-gradient(135deg, #2d5016 0%, #468138 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 58, 102, 0.3);
  }
  
  .footer-info-section {
    padding: 50px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .info-header {
    margin-bottom: 40px;
  }
  
.info-label {
    color: #2d5016;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
.info-title {
    color: #2d5016;
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 20px;
    line-height: 1.2;
  }
  
  .info-description {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
.contact-icon {
    width: 50px;
    height: 50px;
    background: #468138;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .contact-icon i {
    color: white;
    font-size: 20px;
  }
  
  .contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
.contact-label {
    color: #2d5016;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .contact-value {
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
  }
  
.footer-bottom {
  background: linear-gradient(180deg, #2d5016 0%, #468138 55%, #cfead3 100%);
    color: white;
    padding: 30px 0;
    margin-top: 40px;
  }
  
  .footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 16px;
  }
  
  .footer-logo img {
    height: 80px !important;
    width: auto;
    filter: brightness(0) invert(1);
  }
  
  .footer-copyright {
    color: #cbd5e1;
    font-size: 14px;
  }
  
  .footer-links {
    display: flex;
    gap: 18px;
  }
  
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  gap: 8px;
}
.footer-newsletter input[type="email"],
.footer-newsletter input[name="email"] {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.75); }
.footer-newsletter button {
  background: #2d5016;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.footer-newsletter button:hover { background: #1f3a10; }

/* Social */
.footer-social { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; }
.footer-social a { color: rgba(255,255,255,0.85); font-size: 18px; text-decoration: none; }
.footer-social a:hover { color: #ffffff; }

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 16px 0 0;
}
  
  /* Responsive Design for Footer */
  @media (max-width: 768px) {
    .footer-card {
      grid-template-columns: 1fr;
      margin: 0 10px;
    }
  
    .footer-form-section,
    .footer-info-section {
      padding: 30px 25px;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .info-title {
      font-size: 24px;
    }
  
    .footer-bottom-content { grid-template-columns: 1fr; text-align: center; }
    .footer-links { justify-content: center; flex-wrap: wrap; }
    .footer-newsletter { justify-content: center; }
    /* Keep contact items side-by-side on small screens */
    .footer-info-section .contact-item { flex-direction: row; align-items: center; text-align: left; }
    .footer-info-section .contact-icon { width: 36px; height: 36px; }
    .footer-info-section .contact-icon i { font-size: 14px; }
  }
  
  @media (max-width: 480px) {
    .footer-appointment-style {
      padding: 40px 0 0;
    }
  
    .footer-form-section,
    .footer-info-section {
      padding: 25px 20px;
    }
  
    /* Still side-by-side, just tighter icons on extra-small */
    .footer-info-section .contact-item { flex-direction: row; text-align: left; }
    .footer-info-section .contact-icon { width: 32px; height: 32px; }
    .footer-info-section .contact-icon i { font-size: 13px; }
  }
  
/* Main header navigation (uppercase, bold, primary hover/underline) */
.navbar-expand-lg .navbar-nav .nav-link {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
  padding: 0.5rem 1rem;
  margin: 0 0.1rem;
}

.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link:focus,
.navbar-expand-lg .navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
}

.navbar-expand-lg .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.navbar-expand-lg .navbar-nav .nav-link:hover::after,
.navbar-expand-lg .navbar-nav .nav-link:focus::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--primary-color) !important;
  color: white !important;
  border-radius: 0 !important;
  padding: 0.5rem 1rem !important;
  margin: 0 0.1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: #2d5016 !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile navbar: avoid overflow; full-width tappable links */
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    margin: 0.1rem 0;
    text-transform: none;
    font-weight: 600;
  }
  .navbar .navbar-nav .nav-link::after { content: none; }
  .navbar { overflow-x: hidden; }
  .navbar-collapse { max-width: 100%; }
  .navbar .navbar-nav { width: 100%; }
}

  /* Floating Action Buttons (Global) */
  .floating-actions {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px 0 0 25px;
    padding: 15px 10px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
.floating-btn-arrow {
    background-color: #468138;
    color: #fff;
  }
  
.floating-btn-whatsapp {
    background-color: #468138;
    color: #fff;
  }
  
.floating-btn-contact {
    background-color: #468138;
    color: #fff;
  }
  
.floating-btn-phone {
    background-color: #468138;
    color: #fff;
  }
  
.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 22px rgba(70, 129, 56, 0.35);
    background-color: #2d5016;
    color: #fff;
  }
  
  .floating-btn i {
    font-size: 18px;
  }

/* Team Section */
.team-section .team-card {
  background: #ffffff;
  border: 1px solid #e8efe8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-section .team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.team-section .team-card.xl { border-radius: 20px; overflow: hidden; }
.team-section .team-photo {
  width: 100%;
  padding-top: 85%;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
}
.team-section .team-info { padding: 16px; text-align: center; }
.team-section .team-name { font-size: 1.1rem; font-weight: 700; margin: 0; }
.team-section .team-role { font-size: 0.9rem; color: #6b7a6a; margin-top: 4px; }

/* New Team Section Styles */
.team-intro {
  padding-right: 2rem;
}

.client-stats-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 2rem;
}

.stats-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.stats-content {
  flex: 1;
}

.stats-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2d5016;
  line-height: 1;
  margin-bottom: 4px;
}

.stats-label {
  color: #6b7a6a;
  font-weight: 600;
  font-size: 0.95rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-member-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.team-member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.member-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 16px;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.member-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 6px;
}

.member-role {
  color: #6b7a6a;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .team-intro {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .client-stats-box {
    margin-top: 1.5rem;
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Programs Page Styles */
.programs-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.programs-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23468138" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23468138" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23468138" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23468138" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23468138" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

/* Programs page specific hero styles */
.programs-hero .hero-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.programs-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2d5016;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* Programs page specific hero description */
.programs-hero .hero-description {
  font-size: 1.2rem;
  color: #6b7a6a;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Programs page specific description styles */
.approach-description,
.services-description,
.focus-description {
  font-size: 1rem;
  color: #6b7a6a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Four Pillars Section Styles */
.pillar-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-color), #5a8a3a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.pillar-description {
  font-size: 0.95rem;
  color: #6b7a6a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pillar-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.highlight-tag {
  background: #f8f9fa;
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #e9ecef;
}

.network-section {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.network-section .kv-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.impact-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7a6a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 0 0 auto;
}

.program-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program-card.healthcare::before { background: #e74c3c; }
.program-card.education::before { background: #3498db; }
.program-card.legal::before { background: #9b59b6; }
.program-card.agriculture::before { background: #27ae60; }

.program-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
}

.program-card.healthcare .program-icon { background: #e74c3c; }
.program-card.education .program-icon { background: #3498db; }
.program-card.legal .program-icon { background: #9b59b6; }
.program-card.agriculture .program-icon { background: #27ae60; }

.program-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d5016;
  margin: 0;
}

/* Program Sections */
.program-section {
  position: relative;
}

.program-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.program-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2d5016;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.program-description {
  font-size: 1.1rem;
  color: #6b7a6a;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.program-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(70,129,56,0.8) 0%, rgba(70,129,56,0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.program-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.overlay-content span {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Healthcare Section */
.healthcare-section {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.healthcare-section .program-badge {
  background: #e74c3c;
}

/* Education Section */
.education-section {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.education-section .program-badge {
  background: #3498db;
}

/* Legal Section */
.legal-section {
  background: linear-gradient(135deg, #f8f0ff 0%, #f0e6ff 100%);
}

.legal-section .program-badge {
  background: #9b59b6;
}

/* Agriculture Section */
.agriculture-section {
  background: linear-gradient(135deg, #f0fff4 0%, #e6ffe6 100%);
}

.agriculture-section .program-badge {
  background: #27ae60;
}

/* Approach Lists */
.approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.approach-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  font-weight: 500;
  color: #2d5016;
}

.approach-list li:last-child {
  border-bottom: none;
}

.approach-list i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.service-item span {
  font-weight: 600;
  color: #2d5016;
}

/* Impact Box */
.impact-box {
  background: white;
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-top: 2rem;
}

.impact-box h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 12px;
}

/* Framework Grid */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.framework-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.framework-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.framework-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.framework-content h5 {
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
}

.framework-content p {
  color: #6b7a6a;
  margin: 0;
  font-size: 0.95rem;
}

/* Goals List */
.goals-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.goal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.goal-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.goal-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.goal-item span {
  font-weight: 600;
  color: #2d5016;
}

/* Challenge Box */
.challenge-box {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 12px;
  padding: 20px;
  margin: 2rem 0;
}

.challenge-box h4 {
  color: #856404;
  font-weight: 700;
  margin-bottom: 12px;
}

.challenge-box p {
  color: #856404;
  margin: 0;
}

/* Services List */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Programs page specific service cards */
.programs-section .service-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.programs-section .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.programs-section .service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.programs-section .service-content h5 {
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 8px;
}

.programs-section .service-content p {
  color: #6b7a6a;
  margin: 0;
  font-size: 0.95rem;
}

/* Focus Areas */
.focus-areas {
  margin: 2rem 0;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.focus-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.focus-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.focus-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.focus-content h5 {
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 12px;
}

.focus-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.focus-content li {
  padding: 4px 0;
  color: #6b7a6a;
  position: relative;
  padding-left: 20px;
}

.focus-content li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Outcomes Grid */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.outcome-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.outcome-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.outcome-item span {
  font-weight: 600;
  color: #2d5016;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d5016 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grain)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 12px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-buttons .btn-outline-primary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-buttons .btn-outline-primary:hover {
  background: white;
  color: var(--primary-color);
  border-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .programs-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .program-title {
    font-size: 1.3rem;
  }
  
  .impact-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid,
  .framework-grid,
  .goals-list,
  .services-list,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .programs-hero .hero-title {
    font-size: 2rem;
  }
  
  .program-title {
    font-size: 1.2rem;
  }
  
  .focus-item {
    flex-direction: column;
    text-align: center;
  }
  
  .framework-item,
  .programs-section .service-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Get Involved Page Styles */
.involvement-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.involvement-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="involvement-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23468138" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23468138" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23468138" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23468138" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23468138" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23involvement-grain)"/></svg>');
  opacity: 0.3;
}

.impact-preview {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.impact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.impact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.impact-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d5016;
  margin: 0;
  line-height: 1;
}

.impact-text p {
  font-size: 0.9rem;
  color: #6b7a6a;
  margin: 0;
}

.involvement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.involvement-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.involvement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
}

.involvement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.involvement-card.volunteer::before { background: #e74c3c; }
.involvement-card.partner::before { background: #3498db; }
.involvement-card.donate::before { background: #27ae60; }
.involvement-card.advocate::before { background: #9b59b6; }

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
}

.involvement-card.volunteer .card-icon { background: #e74c3c; }
.involvement-card.partner .card-icon { background: #3498db; }
.involvement-card.donate .card-icon { background: #27ae60; }
.involvement-card.advocate .card-icon { background: #9b59b6; }

.involvement-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d5016;
  margin: 0 0 0.5rem 0;
}

.involvement-card p {
  color: #6b7a6a;
  margin: 0;
  font-size: 0.95rem;
}

/* Section Styles */
.section-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d5016;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.1rem;
  color: #6b7a6a;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Volunteer Section */
.volunteer-section {
  background: #ffffff;
}

.volunteer-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.volunteer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.volunteer-card.healthcare {
  border-left: 4px solid #e74c3c;
}

.volunteer-card.legal {
  border-left: 4px solid #9b59b6;
}

.volunteer-card.education {
  border-left: 4px solid #3498db;
}

.volunteer-card.agriculture {
  border-left: 4px solid #27ae60;
}

.volunteer-card.admin {
  border-left: 4px solid #f39c12;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 16px;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
}

.volunteer-card.healthcare .card-icon { background: #e74c3c; }
.volunteer-card.legal .card-icon { background: #9b59b6; }
.volunteer-card.education .card-icon { background: #3498db; }
.volunteer-card.agriculture .card-icon { background: #27ae60; }
.volunteer-card.admin .card-icon { background: #f39c12; }

.card-title h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d5016;
  margin: 0 0 4px 0;
}

.card-subtitle {
  font-size: 0.9rem;
  color: #6b7a6a;
  font-weight: 500;
}

.card-content {
  padding: 0 24px 24px;
}

.card-content p {
  color: #6b7a6a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.opportunity-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.opportunity-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #2d5016;
  font-weight: 500;
}

.opportunity-list i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
}

.time-commitment {
  font-size: 0.85rem;
  color: #6b7a6a;
  font-weight: 500;
}

/* Partnership Section */
.partnership-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partnership-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.partnership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.partnership-card.institutional .card-icon { background: #3498db; }
.partnership-card.corporate .card-icon { background: #2c3e50; }
.partnership-card.community .card-icon { background: #27ae60; }

.partnership-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d5016;
  margin: 1rem 0;
}

.partnership-card p {
  color: #6b7a6a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.partnership-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.partnership-list li {
  padding: 8px 0;
  color: #2d5016;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}

.partnership-list li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Donation Section */
.donation-section {
  background: #ffffff;
}

.donation-content {
  padding-right: 2rem;
}

.impact-areas h4 {
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 1rem;
}

.impact-list {
  display: grid;
  gap: 1rem;
}

.impact-list .impact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.impact-list .impact-item:hover {
  background: #e9ecef;
  transform: translateX(4px);
}

.impact-list .impact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.impact-list .impact-item span {
  color: #2d5016;
  font-weight: 500;
}

.donation-options h3 {
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 2rem;
}

.donation-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.donation-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.donation-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.donation-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d5016;
  margin: 1rem 0 0.5rem 0;
}

.donation-card p {
  color: #6b7a6a;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.amount-options {
  display: flex;
  gap: 8px;
  margin: 1rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.amount-btn {
  padding: 8px 16px;
  border: 2px solid #e9ecef;
  background: white;
  border-radius: 20px;
  font-weight: 600;
  color: #2d5016;
  transition: all 0.3s ease;
  cursor: pointer;
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
}

.sponsor-options,
.in-kind-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 1rem 0;
}

.sponsor-options span,
.in-kind-options span {
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #2d5016;
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-card h3 {
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.involvement-form .form-label {
  color: #2d5016;
  font-weight: 600;
  margin-bottom: 8px;
}

.involvement-form .form-control,
.involvement-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.involvement-form .form-control:focus,
.involvement-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(70, 129, 56, 0.25);
}

.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: fit-content;
}

.contact-info-card h3 {
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h5 {
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-text p {
  color: #6b7a6a;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .impact-preview {
    flex-direction: column;
    gap: 1rem;
  }
  
  .involvement-grid {
    grid-template-columns: 1fr;
  }
  
  .donation-cards {
    grid-template-columns: 1fr;
  }
  
  .sponsor-options,
  .in-kind-options {
    grid-template-columns: 1fr;
  }
  
  .donation-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
  }
  
  .card-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .amount-options {
    justify-content: center;
  }
}

/* Impact Page Styles */
.impact-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.impact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="impact-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23468138" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23468138" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23468138" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23468138" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23468138" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23impact-grain)"/></svg>');
  opacity: 0.3;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7a6a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.impact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(70,129,56,0.8) 0%, rgba(70,129,56,0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.hero-visual:hover .impact-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.overlay-content span {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Metrics Section */
.metrics-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.metric-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.metric-card.healthcare {
  border-top: 4px solid #e74c3c;
}

.metric-card.education {
  border-top: 4px solid #3498db;
}

.metric-card.legal {
  border-top: 4px solid #9b59b6;
}

.metric-card.agriculture {
  border-top: 4px solid #27ae60;
}

.metric-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.metric-card.healthcare .metric-icon { background: #e74c3c; }
.metric-card.education .metric-icon { background: #3498db; }
.metric-card.legal .metric-icon { background: #9b59b6; }
.metric-card.agriculture .metric-icon { background: #27ae60; }

.metric-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 1.5rem;
}

.metric-stats {
  display: grid;
  gap: 1rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
}

.stat-item .number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-item .label {
  font-size: 0.9rem;
  color: #6b7a6a;
  font-weight: 600;
}

/* Stories Section */
.story-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.story-card.healthcare {
  border-left: 4px solid #e74c3c;
}

.story-card.education {
  border-left: 4px solid #3498db;
}

.story-card.legal {
  border-left: 4px solid #9b59b6;
}

.story-card.agriculture {
  border-left: 4px solid #27ae60;
}

.story-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.story-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.story-content {
  padding: 2rem;
}

.story-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 1rem;
}

.story-excerpt {
  color: #6b7a6a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.story-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.story-metrics .metric {
  text-align: center;
}

.story-metrics .number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
}

.story-metrics .label {
  font-size: 0.8rem;
  color: #6b7a6a;
  font-weight: 600;
  text-transform: uppercase;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(70,129,56,0.9) 0%, rgba(70,129,56,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  text-align: center;
  color: white;
  padding: 1rem;
}

.gallery-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-content p {
  font-size: 0.9rem;
  margin: 0;
}

/* Reports Section */
.report-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.report-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.report-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.report-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 1rem;
}

.report-card p {
  color: #6b7a6a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.report-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1.5rem;
}

.report-stats .stat {
  text-align: center;
}

.report-stats .number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
}

.report-stats .label {
  font-size: 0.8rem;
  color: #6b7a6a;
  font-weight: 600;
}

/* News & Events Page Styles */
.news-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.news-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="news-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23468138" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23468138" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23468138" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23468138" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23468138" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23news-grain)"/></svg>');
  opacity: 0.3;
}

.news-categories {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.category-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.category-item span {
  font-weight: 600;
  color: #2d5016;
}

.news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(70,129,56,0.8) 0%, rgba(70,129,56,0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.hero-visual:hover .news-overlay {
  opacity: 1;
}

/* News Section */
.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-card.featured {
  display: flex;
  flex-direction: row;
}

.news-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.news-card.featured .news-image {
  width: 50%;
  height: auto;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-content {
  padding: 2rem;
}

.news-card.featured .news-content {
  width: 50%;
}

.news-content h3,
.news-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 1rem;
}

.news-content h4 {
  font-size: 1.2rem;
}

.news-content p {
  color: #6b7a6a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #6b7a6a;
}

.news-sidebar {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: fit-content;
}

.news-sidebar h4 {
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.news-list {
  display: grid;
  gap: 1rem;
}

.news-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.news-item:hover {
  background: #f8f9fa;
}

.news-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d5016;
  margin-bottom: 4px;
  line-height: 1.3;
}

.news-info .news-date {
  font-size: 0.8rem;
  color: #6b7a6a;
  position: static;
  background: none;
  padding: 0;
}

/* Events Section */
.events-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.event-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.event-card.featured {
  display: flex;
  flex-direction: row;
}

.event-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.event-card.featured .event-image {
  width: 40%;
  height: auto;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-color);
  color: white;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  min-width: 60px;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.event-date .month {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-content {
  padding: 2rem;
}

.event-card.featured .event-content {
  width: 60%;
}

.event-category {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.event-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 1rem;
}

.event-content p {
  color: #6b7a6a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.event-details {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #6b7a6a;
}

.detail-item i {
  color: var(--primary-color);
  width: 16px;
}

/* Blog Section */
.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-content {
  padding: 2rem;
}

.blog-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-content p {
  color: #6b7a6a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #6b7a6a;
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23468138" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23468138" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23468138" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23468138" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23468138" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grain)"/></svg>');
  opacity: 0.3;
}

.contact-quick-info {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.info-item i {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d5016;
  margin: 0 0 4px 0;
}

.info-item p {
  font-size: 0.9rem;
  color: #6b7a6a;
  margin: 0;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(70,129,56,0.8) 0%, rgba(70,129,56,0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.hero-visual:hover .contact-overlay {
  opacity: 1;
}

/* Contact Form Section */
.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-contact-form .form-label {
  color: #2d5016;
  font-weight: 600;
  margin-bottom: 8px;
}

.main-contact-form .form-control,
.main-contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.main-contact-form .form-control:focus,
.main-contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(70, 129, 56, 0.25);
}

/* Program Contacts Section */
.program-contacts-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.program-contact-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.program-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program-contact-card.healthcare {
  border-top: 4px solid #e74c3c;
}

.program-contact-card.education {
  border-top: 4px solid #3498db;
}

.program-contact-card.legal {
  border-top: 4px solid #9b59b6;
}

.program-contact-card.agriculture {
  border-top: 4px solid #27ae60;
}

.program-contact-card .card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.program-contact-card.healthcare .card-icon { background: #e74c3c; }
.program-contact-card.education .card-icon { background: #3498db; }
.program-contact-card.legal .card-icon { background: #9b59b6; }
.program-contact-card.agriculture .card-icon { background: #27ae60; }

.program-contact-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 8px;
  color: #6b7a6a;
}

.contact-info p strong {
  color: #2d5016;
  font-weight: 700;
}

/* Inquiries Section */
.inquiry-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.inquiry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.inquiry-card.partnership {
  border-left: 4px solid #3498db;
}

.inquiry-card.media {
  border-left: 4px solid #9b59b6;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 2rem 2rem 1rem;
}

.inquiry-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
}

.inquiry-card.partnership .card-icon { background: #3498db; }
.inquiry-card.media .card-icon { background: #9b59b6; }

.card-title h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d5016;
  margin: 0 0 8px 0;
}

.card-title p {
  color: #6b7a6a;
  margin: 0;
  line-height: 1.6;
}

.card-content {
  padding: 0 2rem 2rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
}

.detail-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.detail-item div strong {
  color: #2d5016;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.detail-item div span {
  color: #6b7a6a;
  font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d5016 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="newsletter-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23newsletter-grain)"/></svg>');
  opacity: 0.3;
}

.newsletter-content {
  position: relative;
  z-index: 2;
}

.newsletter-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.newsletter-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  margin-bottom: 2rem;
}

.newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-control {
  border: 2px solid white;
  border-radius: 25px 0 0 25px;
  padding: 12px 20px;
  font-size: 1rem;
}

.newsletter-form .form-control:focus {
  border-color: white;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.newsletter-form .btn {
  border-radius: 0 25px 25px 0;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.social-links h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .impact-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .news-categories {
    flex-direction: column;
    gap: 1rem;
  }
  
  .news-card.featured {
    flex-direction: column;
  }
  
  .news-card.featured .news-image,
  .news-card.featured .news-content {
    width: 100%;
  }
  
  .event-card.featured {
    flex-direction: column;
  }
  
  .event-card.featured .event-image,
  .event-card.featured .event-content {
    width: 100%;
  }
  
  .contact-quick-info {
    grid-template-columns: 1fr;
  }
  
  .newsletter-title {
    font-size: 2rem;
    color: white;
  }
  
  .social-icons {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .story-metrics {
    flex-direction: column;
    gap: 1rem;
  }
  
  .report-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
  }
}
.team-section .team-social { display: flex; justify-content: center; gap: 10px; list-style: none; padding: 0; margin: 12px 0 0; }
.team-section .team-social a { color: #468138; background: rgba(70,129,56,0.12); width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; }
.team-section .team-social a:hover { background: rgba(70,129,56,0.22); }

/* Team hero composite */
.team-figure { position: relative; }
.team-figure .ribbon-quote {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px 12px 16px;
  max-width: 320px;
}
.team-figure .ribbon-accent {
  position: absolute; left: -18px; top: 20px; width: 0; height: 0;
  border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-right: 18px solid #ff7a00;
}
.chip { background: rgba(70,129,56,0.1); border: 1px solid rgba(70,129,56,0.25); padding: 8px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.chip i { color: #468138; }
  
/* About hero redesign */
.about-hero .about-figure img { border-radius: 18px; }
.about-hero .accent-pill {
  position: absolute; left: 12px; top: 12px;
  background: rgba(70,129,56,0.9); color: #fff; padding: 6px 12px; border-radius: 999px; font-weight: 600; font-size: 0.85rem;
}
.about-hero .pull-quote { position: absolute; right: -12px; bottom: -16px; background: #fff; border-left: 4px solid #ff7a00; padding: 12px 14px; border-radius: 12px; max-width: 260px; }
.about-hero .pull-quote i { color: #ff7a00; margin-right: 6px; }
.about-lede { color: #6b7a6a; }
.kv-subsections { display: grid; gap: 14px; margin-top: 12px; }
.kv-item { background: #fff; border: 1px dashed rgba(70,129,56,0.35); border-radius: 12px; padding: 12px 14px; }
.kv-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #2d5016; }
/* remove chips from about hero intro (no longer used there, kept class for reuse) */
.check-item { background: rgba(70,129,56,0.08); border: 1px solid rgba(70,129,56,0.2); padding: 10px 12px; border-radius: 10px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.check-item i { color: #468138; }
.stat-card { background: #fff; border: 1px solid #e8efe8; border-radius: 12px; padding: 16px; text-align: center; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.stat-card .stat { font-size: 1.6rem; font-weight: 800; color: #2d5016; }
.stat-card .stat-label { color: #6b7a6a; font-weight: 600; }

/* About cards */
.about-cards .info-card, .info-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.values-list { padding-left: 18px; }
.values-list li { margin-bottom: 6px; }

/* Approach inspired feature list */
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 16px; margin-top: 8px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #2d5016; }
.icon-box { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,122,0,0.12); color: #ff7a00; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; }
@media (max-width: 576px) { .feature-list { grid-template-columns: 1fr; } }

.approach-card { border: none; border-radius: 0; padding: 0; background: transparent; }
.approach-hero { object-fit: cover; min-height: 420px; width: 100%; border-radius: 12px; }
.approach-media { object-fit: cover; width: 100%; border-radius: 10px; }
/* Page Header (used on inner pages) */
.page-header {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45,80,22,0.9), rgba(74,124,35,0.75));
  color: #fff;
  text-align: center;
  padding: calc(var(--header-offset, 120px) + 20px) 0 40px 0;
}

.page-header .page-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
}

.page-header .breadcrumb {
  display: inline-flex;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.page-header .breadcrumb a { color: #fff; text-decoration: none; }
.page-header .breadcrumb a:hover { color: #e6ffe6; }

  /* Responsive Design for Multi-Column Footer */
  @media (max-width: 1024px) {
    .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    
    .footer-company {
      max-width: none;
    }
  }
  
  @media (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .footer-bottom-content {
      flex-direction: column;
      text-align: center;
    }
  
    .floating-actions {
      right: 0;
      padding: 12px 8px;
      border-radius: 20px 0 0 20px;
    }
    
    .floating-btn {
      width: 45px;
      height: 45px;
      margin-bottom: 8px;
    }
    
    .floating-btn:last-child {
      margin-bottom: 0;
    }
    
    .floating-btn i {
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .footer-multi-column {
      padding: 40px 0 0;
    }
  
    .newsletter-form {
      flex-direction: column;
    }
  
    .newsletter-form button {
      width: 100%;
    }
  }