/* Global Styles */
:root {
  /* Primary Colors */
  --primary-color: #2c7744;
  --primary-dark: #1a4b2a;
  --primary-light: #4ca36b;
  
  /* Secondary Colors */
  --secondary-color: #1e4d8c;
  --secondary-dark: #0c2d5c;
  --secondary-light: #3a6fb8;
  
  /* Accent Colors */
  --accent-color: #f8b133;
  --accent-dark: #e69411;
  --accent-light: #fac666;
  
  /* Success Colors */
  --success-color: #28a745;
  --success-light: #48c767;
  --success-dark: #1e7e34;
  
  /* Text Colors */
  --text-color: #2c3e50;
  --text-light: #6c757d;
  --text-white: #ffffff;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  
  /* Other Variables */
  --border-radius: 8px;
  --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

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

/* Header Styles */
header {
  background: var(--bg-primary);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo h1 a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 24px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--gradient-primary);
  color: var(--text-white);
}

/* Marketplace Banner */
.marketplace-banner {
  background: linear-gradient(rgba(44, 119, 68, 0.9), rgba(26, 75, 42, 0.9)),
      url('../images/marketplace-banner.jpg') center/cover;
  position: relative;
  overflow: hidden;
}

.marketplace-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(44, 119, 68, 0.8) 0%, rgba(30, 77, 140, 0.8) 100%);
  z-index: 1;
}

.marketplace-banner .container {
  position: relative;
  z-index: 2;
}

.marketplace-banner h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

/* Search Section */
.search-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  padding: 40px 0;
}

.search-container {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: #4CAF50;
  outline: none;
}

.search-filters {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.search-filters select {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  min-width: 150px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.search-filters select:focus {
  border-color: #4CAF50;
  outline: none;
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.product-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.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);
}

.stock-status {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.in-stock {
  background: #e8f5e9;
  color: #2e7d32;
}

.out-of-stock {
  background: #ffebee;
  color: #c62828;
}

.organic {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #f1f8e9;
  color: #558b2f;
  border-radius: 4px;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.product-details {
  padding: 20px;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.product-specs {
  list-style: none;
  margin: 15px 0;
}

.product-specs li {
  margin: 5px 0;
  color: #666;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  box-shadow: 0 4px 15px rgba(44, 119, 68, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-primary);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--gradient-primary);
  color: var(--text-white);
  border-color: transparent;
}

/* Registration Form */
.registration-content {
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.registration-benefits {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.registration-form {
  display: none;
  background: linear-gradient(135deg, #1e4d8c 0%, #2c7744 100%);
  padding: 2rem;
  border-radius: 10px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.registration-form.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.registration-form .form-group label {
  color: white;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.registration-form .form-group input,
.registration-form .form-group select {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #333;
}

.registration-form .btn-primary {
  background: #f8b133;
  border: none;
  color: #1e4d8c;
  font-weight: 600;
  padding: 0.8rem 2rem;
  transition: all 0.3s ease;
}

.registration-form .btn-primary:hover {
  background: #ffc251;
  transform: translateY(-2px);
}

.toggle-form-btn {
  background: #1e4d8c;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
  margin-top: 1rem;
}

.toggle-form-btn:hover {
  background: #2c7744;
  transform: translateY(-2px);
}

.success-message {
  background: rgba(40, 167, 69, 0.9);
  color: white;
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1rem;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.step-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: bold;
}

/* Contact Section */
.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.contact-card {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-card i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-column h3 {
  margin-bottom: 20px;
}

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

.footer-column a {
  color: #fff;
  text-decoration: none;
  margin: 8px 0;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
      display: none;
  }
  
  .hamburger {
      display: block;
  }
  
  .registration-content {
      grid-template-columns: 1fr;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
  }
  
  .footer-links {
      grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.section-header,
.product-card,
.step-card,
.contact-card {
  animation: fadeIn 0.6s ease-out;
}

/* Other Styles */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  padding: 8rem 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--background-color), transparent);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 700px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

.mission {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mission-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-item {
  background-color: var(--background-color);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-bottom: 3px solid var(--primary-color);
}

.stat-item:nth-child(2) {
  border-bottom-color: var(--secondary-color);
}

.stat-item:nth-child(3) {
  border-bottom-color: var(--accent-color);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.stat-item:nth-child(2) i {
  color: var(--secondary-color);
}

.stat-item:nth-child(3) i {
  color: var(--accent-color);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.featured-programs {
  padding: 5rem 0;
}

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

.program-card {
  background-color: var(--background-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

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

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.program-card:hover::before {
  opacity: 0.1;
}

.program-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

.program-icon i {
  font-size: 2rem;
  color: var(--light-text);
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.program-card p {
  margin-bottom: 1.5rem;
  color: #666;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(5px);
}

.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.3) 0%, rgba(52, 152, 219, 0.3) 100%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 1rem 2.5rem;
}

.cta-section .btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.testimonials {
  padding: 5rem 0;
  background-color: var(--light-background);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial-card {
  background-color: var(--background-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

.testimonial-image {
  height: 200px;
  overflow: hidden;
}

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

.testimonial-content {
  padding: 2rem;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  color: rgba(39, 174, 96, 0.2);
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author h4 {
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  font-style: normal;
  color: #666;
  margin-bottom: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-text);
  position: relative;
  display: inline-block;
}

.footer-logo h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--light-text);
  position: relative;
  display: inline-block;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 0.8rem;
  color: var(--light-text);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 1.5rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/page-banner.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to top, var(--background-color), transparent);
}

.page-banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-banner p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.about-story {
  padding: 5rem 0;
}

.story-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.story-image {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.story-text {
  flex: 1;
  min-width: 300px;
}

.story-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.mission-vision {
  padding: 5rem 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mission-box,
.vision-box,
.values-box {
  background-color: var(--background-color);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-box::before,
.vision-box::before,
.values-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, transparent 100%);
  z-index: -1;
}

.vision-box::before {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, transparent 100%);
}

.values-box::before {
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.05) 0%, transparent 100%);
}

.mission-box:hover,
.vision-box:hover,
.values-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mission-box .icon,
.vision-box .icon,
.values-box .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-box .icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

.vision-box .icon {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.values-box .icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.mission-box .icon i,
.vision-box .icon i,
.values-box .icon i {
  font-size: 1.8rem;
  color: var(--light-text);
}

.mission-box h3,
.vision-box h3,
.values-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.mission-box p,
.vision-box p {
  color: #666;
  line-height: 1.8;
}

.mission-detail {
  margin-top: 1rem;
  font-size: 0.95rem;
  border-left: 3px solid var(--primary-color);
  padding-left: 1rem;
  background-color: rgba(39, 174, 96, 0.05);
  padding: 1rem;
  border-radius: 0 4px 4px 0;
}

.values-box ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: #666;
}

.values-box ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.team {
  padding: 5rem 0;
}

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

.team-member {
  background-color: var(--light-background);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

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

.member-info {
  padding: 1.5rem;
}

.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.member-info .position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-info .bio {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(39, 174, 96, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.partners {
  padding: 5rem 0;
  background-color: var(--light-background);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.partner-logo {
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.partner-logo:hover {
  transform: translateY(-5px);
}

.partner-logo img {
  max-width: 150px;
  max-height: 80px;
  margin-bottom: 1.5rem;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.partner-info {
  text-align: center;
  margin-top: 1rem;
}

.partner-info h4 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.partner-info p {
  color: #666;
  font-size: 0.9rem;
}

.partner-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: var(--background-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.partner-cta p {
  color: #666;
}

.partner-cta a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

.partner-cta a:hover {
  color: #219653;
}

.milestones {
  padding: 5rem 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 1.5rem;
  background-color: var(--background-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  left: 55%;
}

.timeline-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

.timeline-content::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--background-color);
  transform: rotate(45deg);
  top: calc(50% - 10px);
}

.timeline-item:nth-child(odd) .timeline-content::after {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::after {
  left: -10px;
}

.programs-overview {
  padding: 5rem 0;
  background-color: var(--light-background);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.overview-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.overview-text p {
  margin-bottom: 1.5rem;
}

.key-programs {
  padding: 5rem 0;
}

.key-programs .program-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  border-top: none;
  border-left: 4px solid var(--primary-color);
}

.key-programs .program-card:nth-child(2) {
  border-left-color: var(--secondary-color);
}

.key-programs .program-card:nth-child(2) .program-icon {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.key-programs .program-card:nth-child(3) {
  border-left-color: var(--accent-color);
}

.key-programs .program-card:nth-child(3) .program-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.key-programs .program-card:nth-child(4) {
  border-left-color: var(--success-color);
}

.key-programs .program-card:nth-child(4) .program-icon {
  background: linear-gradient(135deg, var(--success-color) 0%, #219653 100%);
  box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

.key-programs .program-card:nth-child(5) {
  border-left-color: var(--secondary-color);
}

.key-programs .program-card:nth-child(5) .program-icon {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.key-programs .program-card:nth-child(6) {
  border-left-color: var(--accent-color);
}

.key-programs .program-card:nth-child(6) .program-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.program-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.program-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.program-details {
  background-color: var(--light-background);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--primary-light);
}

.program-details h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--secondary-color);
}

.program-details ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.program-details ul li {
  margin-bottom: 0.5rem;
  position: relative;
  list-style-type: disc;
}

.success-stories {
  padding: 5rem 0;
  background-color: var(--light-background);
}

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

.story-card {
  background-color: var(--background-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-bottom: 4px solid var(--primary-color);
}

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

.story-card:nth-child(2) {
  border-bottom-color: var(--secondary-color);
}

.story-card:nth-child(3) {
  border-bottom-color: var(--accent-color);
}

.story-image {
  height: 200px;
  overflow: hidden;
}

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

.story-content {
  padding: 1.5rem;
}

.story-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.location {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.location::before {
  content: '\f3c5';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.program-registration {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
}

.registration-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.registration-benefits {
  margin: 2rem 0;
}

.registration-benefits li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.registration-benefits li i {
  color: var(--accent-light);
  margin-right: 1rem;
  font-size: 1.2rem;
  background-color: rgba(46, 204, 113, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.registration-cta {
  text-align: center;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.faq-section {
  padding: 5rem 0;
  background-color: var(--light-background);
}

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

.faq-item {
  background-color: var(--background-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.faq-item:hover {
  border-left-color: var(--primary-color);
}

.faq-item.active {
  border-left-color: var(--primary-color);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
}

.faq-toggle {
  color: var(--primary-color);
  background-color: rgba(46, 204, 113, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

@media (max-width: 992px) {
  .overview-content {
      grid-template-columns: 1fr;
  }
  
  .key-programs .program-card {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
  
  .registration-content {
      grid-template-columns: 1fr;
  }
}

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

@media (max-width: 992px) {
  .section-header h2 {
      font-size: 2.2rem;
  }
  
  .hero h1 {
      font-size: 3rem;
  }
  
  .hero h2 {
      font-size: 1.3rem;
  }
  
  .page-banner h1 {
      font-size: 2.5rem;
  }
  
  .timeline::before {
      left: 30px;
  }
  
  .timeline-dot {
      left: 30px;
  }
  
  .timeline-content {
      width: calc(100% - 80px);
      left: 80px !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::after,
  .timeline-item:nth-child(even) .timeline-content::after {
      left: -10px;
      right: auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: var(--background-color);
      width: 100%;
      text-align: center;
      transition: var(--transition);
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
      padding: 2rem 0;
  }
  
  .nav-links.active {
      left: 0;
  }
  
  .nav-links li {
      margin: 1.5rem 0;
  }
  
  .hamburger {
      display: block;
  }
  
  .hamburger.active .bar:nth-child(2) {
      opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero {
      padding: 8rem 0 4rem;
  }
  
  .hero h1 {
      font-size: 2.5rem;
  }
  
  .cta-buttons {
      flex-direction: column;
      gap: 1rem;
  }
  
  .mission-content, 
  .testimonial-slider,
  .story-content {
      flex-direction: column;
  }
  
  .stat-item {
      width: calc(50% - 1rem);
  }
  
  .footer-content {
      flex-direction: column;
  }
  
  .page-banner {
      padding: 7rem 0 3rem;
  }
  
  .page-banner h1 {
      font-size: 2.2rem;
  }
  
  .mission-detail {
      margin-top: 1rem;
      padding: 0.75rem;
  }
  
  .partners-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 576px) {
  .section-header h2 {
      font-size: 1.8rem;
  }
  
  .hero h1 {
      font-size: 2rem;
  }
  
  .hero h2 {
      font-size: 1.1rem;
  }
  
  .programs-grid,
  .team-grid {
      grid-template-columns: 1fr;
  }
  
  .stat-item {
      width: 100%;
  }
  
  .footer-links {
      flex-direction: column;
  }
  
  .page-banner h1 {
      font-size: 1.8rem;
  }
  
  .page-banner p {
      font-size: 1rem;
  }
  
  .timeline-content {
      width: calc(100% - 60px);
      left: 60px !important;
      padding: 1rem;
  }
  
  .timeline::before {
      left: 20px;
  }
  
  .timeline-dot {
      left: 20px;
      width: 15px;
      height: 15px;
  }
  
  .partners-grid {
      grid-template-columns: 1fr;
  }
}

.regions-overview {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
}

.regional-focus {
  padding: 5rem 0;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.region-card {
  background-color: var(--background-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.region-card:nth-child(2n) {
  border-top-color: var(--secondary-color);
}

.region-card:nth-child(3n) {
  border-top-color: var(--accent-color);
}

.region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

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

.region-card:hover .region-image img {
  transform: scale(1.1);
}

.region-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem 1rem;
}

.region-overlay h3 {
  color: var(--light-text);
  font-size: 1.5rem;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.region-content {
  padding: 2rem;
}

.region-content h3 {
  color: var(--text-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: none; /* Hide this heading since we show it in the overlay */
}

.region-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.region-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.key-crops h4,
.region-opportunities h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.key-crops h4::before {
  content: '\f06c'; /* leaf icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.region-opportunities h4::before {
  content: '\f0eb'; /* lightbulb icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.key-crops ul,
.region-opportunities ul {
  list-style: none;
  padding-left: 1.5rem;
}

.key-crops ul li,
.region-opportunities ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.key-crops ul li::before {
  content: '\f111'; /* circle icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.5rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--primary-color);
}

.region-opportunities ul li::before {
  content: '\f111'; /* circle icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.5rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--accent-color);
}

.success-story {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
  padding: 1.5rem;
  border-radius: 8px;
  position: relative;
}

.success-story h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.success-story h4::before {
  content: '\f10d'; /* quote icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.story-content p {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.story-author {
  font-weight: 600;
  color: var(--text-color);
  text-align: right;
}

.regional-impact {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 1200px) {
  .impact-stats {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .regions-grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .region-details {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
  
  .impact-stats {
      grid-template-columns: 1fr;
  }
}

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

.jobs-overview {
  padding: 80px 0;
  background-color: var(--light-background);
}

.overview-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
}

.overview-stats .stat-item {
  flex: 0 0 30%;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.overview-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.overview-stats .stat-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.overview-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 5px;
}

.overview-stats .stat-item p {
  font-size: 1rem;
  color: var(--text-light);
}

.current-openings {
  padding: 80px 0;
}

.jobs-filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  background-color: var(--light-background);
  padding: 20px;
  border-radius: 8px;
}

.filter-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.filter-item label {
  margin-right: 10px;
  font-weight: 500;
}

.filter-item select {
  padding: 8px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: white;
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.job-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
}

.job-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.job-type {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.full-time {
  background-color: rgba(255, 255, 255, 0.2);
}

.part-time {
  background-color: rgba(241, 196, 15, 0.8);
}

.contract {
  background-color: rgba(52, 152, 219, 0.8);
}

.job-details {
  padding: 25px;
}

.job-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.job-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

.job-description {
  margin-bottom: 20px;
  line-height: 1.6;
}

.job-requirements h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.job-requirements ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.job-requirements ul li {
  margin-bottom: 5px;
  position: relative;
  list-style-type: none;
}

.job-requirements ul li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.job-apply {
  display: inline-block;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not([disabled]) {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

.pagination-btn.active {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

.pagination-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.job-categories {
  padding: 80px 0;
  background-color: var(--light-background);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-card:hover::before {
  height: 8px;
}

.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-icon i {
  font-size: 1.8rem;
  color: white;
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.category-card p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.6;
}

.category-card ul {
  padding-left: 20px;
}

.category-card ul li {
  margin-bottom: 8px;
  position: relative;
  list-style-type: none;
  color: var(--text-color);
}

.category-card ul li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.how-to-apply {
  padding: 80px 0;
}

.application-process {
  margin-top: 40px;
  position: relative;
}

.application-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;
  height: 100%;
  width: 2px;
  background-color: var(--primary-light);
}

.process-step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 25px;
  z-index: 1;
}

.step-content {
  flex: 1;
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.application-note {
  background-color: var(--light-background);
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
}

.application-note h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.application-note ul {
  padding-left: 20px;
}

.application-note ul li {
  margin-bottom: 10px;
  position: relative;
  list-style-type: none;
  color: var(--text-color);
}

.application-note ul li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.application-note a {
  color: var(--primary-color);
  font-weight: 500;
}

.application-note a:hover {
  text-decoration: underline;
}

.job-testimonials {
  padding: 80px 0;
  background-color: var(--light-background);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .categories-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .overview-stats .stat-item {
      flex: 0 0 48%;
      margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .categories-grid {
      grid-template-columns: 1fr;
  }
  
  .overview-stats .stat-item {
      flex: 0 0 100%;
  }
  
  .jobs-filter {
      flex-direction: column;
  }
  
  .filter-item {
      width: 100%;
      margin-bottom: 15px;
  }
  
  .filter-item select {
      width: 100%;
  }
  
  .job-header {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .job-type {
      margin-top: 10px;
  }
  
  .job-meta {
      flex-direction: column;
      gap: 5px;
  }
  
  .cta-buttons {
      flex-direction: column;
  }
}

.resources-overview .resource-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.resources-overview .resource-category {
  flex: 1 1 200px;
  background-color: var(--light-background);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.resources-overview .resource-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.resources-overview .resource-category i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.resources-overview .resource-category h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.search-filter-section {
  background-color: var(--light-background);
  padding: 30px 0;
  margin: 30px 0;
}

.search-filter-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.search-box input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.search-box .search-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition);
}

.search-box .search-btn:hover {
  background-color: var(--primary-dark);
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group label {
  font-weight: 500;
}

.filter-group select {
  padding: 8px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: white;
  min-width: 180px;
}

.books-section {
  padding: 60px 0;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.book-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.book-image {
  height: 250px;
  overflow: hidden;
}

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

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

.book-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.book-author {
  color: var(--text-light);
  margin-bottom: 10px;
  font-style: italic;
}

.book-meta {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.book-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding-top: 15px;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-sm {
  padding: 8px 15px;
  font-size: 0.9rem;
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

.pdfs-section {
  padding: 60px 0;
  background-color: var(--light-background);
}

.pdfs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pdf-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
}

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

.pdf-icon {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.pdf-content {
  padding: 20px;
  flex: 1;
}

.pdf-meta {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.pdf-card .btn {
  margin-top: 20px;
}

.articles-section {
  padding: 60px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.article-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.article-image {
  height: 200px;
  overflow: hidden;
}

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

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

.article-content {
  padding: 20px;
}

.article-meta {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

.videos-section {
  padding: 60px 0;
  background-color: var(--light-background);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.video-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.video-thumbnail {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: var(--transition);
}

.video-card:hover .play-button {
  background-color: var(--primary-color);
}

.video-content {
  padding: 20px;
}

.video-meta {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.video-card .btn {
  margin-top: 15px;
}

.other-materials {
  padding: 60px 0;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.material-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
}

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

.material-icon {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.podcast .material-icon {
  background-color: #d4edda;
  color: #28a745;
}

.webinar .material-icon {
  background-color: #cce5ff;
  color: #0d6efd;
}

.infographic .material-icon {
  background-color: #f8d7da;
  color: #dc3545;
}

.toolkit .material-icon {
  background-color: #fff3cd;
  color: #ffc107;
}

.material-content {
  padding: 20px;
  flex: 1;
}

.material-meta {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.material-card .btn {
  margin-top: 20px;
}

.resource-request {
  padding: 80px 0;
  background-color: var(--light-background);
}

.request-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1 1 200px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: var(--primary-dark);
}

/* List Your Product Section */
.list-product-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
}

.list-product-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-top: 40px;
}

.list-product-benefits {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 30px;
  border-radius: var(--border-radius);
  height: fit-content;
}

.list-product-benefits h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.list-product-benefits ul {
  list-style: none;
  padding: 0;
}

.list-product-benefits li {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-product-benefits i {
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-product-form {
  background: var(--bg-primary);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group.half {
  margin-bottom: 20px;
}

.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  resize: vertical;
  font-family: inherit;
}

.form-group input[type="file"] {
  padding: 10px 0;
}

.form-group small {
  display: block;
  margin-top: 5px;
  color: var(--text-light);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

@media (max-width: 992px) {
  .list-product-content {
      grid-template-columns: 1fr;
  }
  
  .form-row {
      grid-template-columns: 1fr;
  }
}

/* Add these styles after your existing CSS */

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 2rem;
}

.spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #4CAF50;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error Message */
.error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    text-align: center;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not([disabled]) {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.pagination-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.pagination-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Product Card Improvements */
.product-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image img {
    transition: transform 0.3s ease;
}

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

.stock-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.out-of-stock {
    background: #ffebee;
    color: #c62828;
}

.organic {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #f1f8e9;
    color: #558b2f;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* Search and Filter Improvements */
.search-container {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.search-input input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input input:focus {
    border-color: #4CAF50;
    outline: none;
}

.search-filters {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.search-filters select {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    min-width: 150px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.search-filters select:focus {
    border-color: #4CAF50;
    outline: none;
} 