@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Poppins:wght@300;400;600&display=swap");

/* Global Reset and Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



/* Color Variables */
:root {
  --primary-color: #e3ff00;  /* e3ff00 72CC50 fcf75e */
  --text: #001f3f; /*--#001f3f */
  --secondary: #689f38; /* Medium green */
  --accent: #7cb342; /* Light green */
  --dark: #1b5e20; /* Dark green */
  --subeading: #8B572A;
}

/* Global serif-only font reset */
* {
  font-family: serif;
}

/* Body Styles */
body {
  font-family: serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  padding-bottom: 0px;
  background-color: white;
}

/* Optional: Maintain inheritance where needed */
.logo-text,
.nav-links li a,
.footer-section ul li,
.footer-links li,
.social-icons,
.mobile-toggle span {
  font-family: inherit;
}



/* >>>>>>>>>>>>>>>>>> Header Styles >>>>>>>>>>>>>>>>*/

header {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 45px;
  box-sizing: border-box;
}

/* Logo Container */
.logo-holder {
  display: flex;
  align-items: center;
  font-weight: 400;
  color: var(--text);
  flex-shrink: 0;
  z-index: 1001; /* Above mobile menu */
}

/* Brand Name/Logo */
.logo-text {
  font-size: clamp(22px, 4vw, 30px); /* Responsive font scaling */
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.4);
}

/* Ensure the link doesn't affect the logo's appearance */
.logo-link {
  text-decoration: none;  /* Removes underline */
  color: var(--text);       /* Inherits color from the parent */
}

/* Navigation Container */
nav {
  display: flex;
}

/* Navigation Links - Hidden on mobile by default */
.nav-links {
  display: none;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
  width: 100%;
}

/* Active mobile menu state */
.nav-links.active {
  display: flex;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color:var(--text);
  padding: 20px 15px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-out;
}

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

.nav-links li a {
  display: block;
  padding: 12px 15px;
  color:var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

.nav-links li a:hover,
.nav-links li a:focus {
  background-color: var(--primary-color);
  color: var(--text);
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Toggle animation when active */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Desktop Styles */
@media (min-width: 769px) {
  header {
    padding: 5px 30px;
  }

  .mobile-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
    width: auto;
    gap: 10px;
  }

  .nav-links li {
    width: auto;
  }

  .nav-links li a {
    padding: 8px 15px;
    font-size: 15px;
    text-align: left;
  }
}

/* Animation for mobile menu */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  font-family: 'Montserrat', sans-serif;

}



/* >>>>>>>>>>>>>> LANGUAGE >>>>>>>>>>>>>> */


/* Language Bar */
.top-language-bar {
  position: fixed;
  top: 45px; /* adjust based on header height */
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #001f3f;
  padding: 2px 5px;
  display: flex;
  justify-content: center;
  font-size: 16px;
  line-height: 1.2;
  box-sizing: border-box;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

}


main {
  margin-top: 25px; /* Adjust depending on header + language bar height */
}


.language-options a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  font-weight: 500;
  
}

.language-options a.active {
  color:var(--primary-color);
  text-decoration: none;
  margin: 0 5px;
  font-weight: 500;
  
}

.separator {
  color: white;  /* Light gray */
  margin: 0 5px;
  font-weight: normal;
}


.language-options a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Responsive tweak (optional for mobile center align) */
@media (max-width: 768px) {
  .top-language-bar {
    justify-content: center;
    font-size: 16px;
    background: var(--text);
  }
  
}


/* >>>>>>>>>>>>>> MAIN BODY >>>>>>>>>>>>>> */



/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> INDEX STYLE >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.farmersvoice-hero-section {
    padding: 10px 20px 10px;
    max-width: 1400px;
    margin: auto;
  }
  
  .farmersvoice-hero {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: left;
    color: var(--text);
    overflow: hidden;
    margin-bottom: 10px;
  }
  
  .farmersvoice-hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .farmersvoice-hero-overlay {
    position: absolute;
    top: 80%;
    right: 3%;
    left: 3%;
    bottom: 2%;
    width: 95%;
    height: auto;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 5px;
  }
  
  .farmersvoice-hero-content {
    position: relative;
    top: 39%;
    width: 90%;
    padding: 10px;
    z-index: 1;
  }
  
  .farmersvoice-hero-category {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    background: rgba(255, 87, 34, 0.8);
    padding: 6px 12px;
    border-radius: 5px;
  }
  
  .farmersvoice-hero-title {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
    color: var(--text);
  }
  
  .farmersvoice-hero-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text);
  }
  
  
  
  /* Mobile View */
  @media (max-width: 768px) {
    .farmersvoice-hero {
      height: auto;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
  
    .farmersvoice-hero-image {
      position: relative;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px 20px 0 0;
      box-shadow:
        2px 0px 6px rgba(0, 0, 0, 0.05),
       -2px 0px 6px rgba(0, 0, 0, 0.05);
    }
  
    .farmersvoice-hero-overlay {
      display: none;
    }
  
    .farmersvoice-hero-content {
      position: relative;
      width: 100%;
      margin: 0 auto;
      text-align: center;
      padding: 10px;
      background: var(--primary-color);
      color: white;
      border-radius: 0 0 20px 20px;
      margin-top: -5px;
      margin-bottom: 5px;
      box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.04);
    }
  
    .farmersvoice-hero-title {
      font-size: 22px;
      color: var(--text);
    }
  
    .farmersvoice-hero-text {
      font-size: 14px;
    }
  
    .farmersvoice-hero-button {
      font-size: 12px;
      color: white;
      border: 2px solid white;
    }
  
    .farmersvoice-hero-button:hover {
      background: var(--text);
      color: white;
    }
  }
  


/* Suggested Articles Section */

/* Suggested Articles Section */
.suggested-articles {
  padding: 1rem 0;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.content-container-1400 {
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
}

.suggested-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  position: relative;
  display: inline-block; /* This is key for the underline width to match the text */
}

.suggested-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* align to the bottom of the text */
  width: 100%;
  height: 3px; /* thickness of the underline */
  background-color: var(--primary-color); /* underline color */
  border-radius: 2px;
}

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

.suggested-card {
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.suggested-card:hover {
  transform: translateY(-5px);
}

.suggested-image-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

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

.suggested-content {
  padding: 0.5rem;
  text-align: center;
}

.suggested-category {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--subeading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none; /* Ensure there's no underline on category */
}

.suggested-card h3 {
  font-size: 1.3rem;
  color: var(--text);
  line-height: 1.4;
  margin: 0.5rem 0 0;
  text-decoration: none; /* Ensure no underline on h3 */
}

/* Ensure <a> tags don't inherit underline */
.suggested-card a {
  text-decoration: none; /* Remove underline from <a> tags */
}

/* Prevent underline on alt text or image fallback text */
.suggested-card a img[alt] {
  text-decoration: none; /* Prevent underline on alt text of images */
}

/* Ensure alt text doesn't get underlined */
.suggested-card img[alt]:not([src]) {
  text-decoration: none; /* Prevent underline if image is missing */
}

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

  .content-container-1400 {
    padding: 0 15px;
  }
}


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ARTICLE STYLE >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */



/*  >>>>>>>>>>>>>>>>>> ARTICLE HEADER SECTION  >>>>>>>>>>>>>>>>>> */


.articletitle-feature {
    max-width: 900px;
    margin: 40px auto 20px; /* Reduced top and bottom margin */
    padding: 0 15px;
  }
  
  .articletitle-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px; /* Tighter gap */
    margin-bottom: 15px; /* Reduced from 25px */
  }
  
  .articletitle-tag {
    font-family:  sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text);
    padding: 4px 10px; /* Slightly reduced padding */
    border: 1px solid #ddd;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .articletitle-title {
  
    font-size: 2.3rem; /* Slightly smaller */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.5px;
    color: var(--text);
    text-align: center;
    margin-bottom: 8px; /* Reduced from 15px */
  }
  
  .articletitle-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 6px;
    background: var(--primary-color);
    margin: 1rem auto 0;
  }
  
  .articletitle-subtitle {
  
    font-size: 1.3rem; /* Slightly smaller */
    font-weight: 400;
    font-style: italic;
    color: var(--subeading);
    text-align: center;
    margin-bottom: 0; /* Removed bottom margin */
    padding-bottom: 15px; /* Reduced from 20px */
  
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .articletitle-feature {
      margin: 30px auto 15px;
    }
    .articletitle-title {
      font-size: 1.7rem; /* 28px */
      margin-bottom: 5px;
    }
    .articletitle-subtitle {
      font-size: 1.1rem; /* 18px */
      padding-bottom: 10px;
    }
  }
  
  
  
/* >>>>>>>>>>>>>>>>>> HERO SECTION >>>>>>>>>>>>>>>> */

.hero {
    width: 100%;
    padding: 0 20px;
    margin-top: 10px;
    box-sizing: border-box;
    position: relative;
  }
  
  .hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .hero-image {
    width: 100%;
    display: block;
    border-radius: 10px;
    height: 750px;
    object-fit: cover;
  }
  
  .herophoto1-credit {
    position: absolute;
    bottom: 10px;
    right: 30px;
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
    color: #fff;
    font-size: 12px;
    padding: 4px 4px;
    border-radius: 4px;
    font-style: italic;
    z-index: 2;
  }
  
  .hero-overlay {
    position: absolute;
    bottom: 5%;
    left: 3%;
    width: 94%;
    background-color: var(--primary-color); /* Fully opaque */
    padding: 12px;
    box-sizing: border-box;
    border-radius: 8px;
    transition: background-color 0.2s ease; /* Smooth effect */
  }
  
  .hero-overlay:hover {
    background-color:  var(--primary-color); /* Slightly darker green */
    /* OR: #c8ff5d (lighter green) */
  }
  
  
  
  
  .hero-title {
    color: var(--text);
    font-size: 1.8rem; /* Slightly reduced from 2rem */
    margin: 0;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .hero-image {
      height: 350px;
    }
  
    .hero-overlay {
      padding: 10px;
      width: 92%; /* Increased width */
      left: 4%; /* Adjusted to match */
    }
  
    .hero-title {
      font-size: 1.4rem; /* Slightly reduced */
    }
  }
  
  @media (max-width: 768px) {
    .hero-image {
      height: 300px;
    }
  
    .hero-overlay {
      padding: 8px;
      width: 92%; /* Maintained wide layout */
      left: 4%;
    }
  
    .hero-title {
      font-size: 1.1rem;
    }
    .herophoto1-credit {
      font-size: 8px;
      padding: 1px 3px;
      bottom: 3px;
      right: 25px;
      
    }
  }
  
  @media (max-width: 480px) {
    .hero-image {
      height: 250px;
    }
  
    .hero-overlay {
      padding: 6px;
      bottom: 3%;
      width: 90%; /* Very wide for mobile */
      left: 5%;
    }
  
    .hero-title {
      font-size: 0.95rem; /* Kept readable */
      line-height: 1.3;
    }
  
    .herophoto1-credit {
      font-size: 8px;
      padding: 1px 3px;
      bottom: 3px;
      right: 25px;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 360px) {
    .hero-title {
      font-size: 0.85rem;
      padding: 0 2px;
    }
  
    .hero-overlay {
      padding: 5px;
      bottom: 2%;
      width: 88%; /* Still quite wide */
      left: 6%;
    }
  }





/* >>>>>>>>>>>>>>>>>> ARTICLE META SECTION >>>>>>>>>>>>>>>>*/
/* ARTICLE META SECTION */
.article-meta-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: "Bodoni Moda", serif;
  }
  
  .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    width: 100%;
  }
  
  .byline {
    font-size: 0.875rem;
    color:var(--text);
    white-space: nowrap;
  }
  
  .date {
    font-size: 0.8125rem;
    color:var(--text);
    white-space: nowrap;
  }
  
  .divider {
    height: 1px;
    background: var(--primary-color);
    width: 100%;
    margin: 0 auto;
  }
  
  /* RESPONSIVE ADJUSTMENTS */
  @media (max-width: 768px) {
    .article-meta-container {
      padding: 0 15px;
    }
  
    .article-meta {
      flex-wrap: nowrap; /* Keep on same line */
    }
  }
  
  @media (max-width: 480px) {
    .article-meta-container {
      padding: 0 12px;
    }
  
    .byline,
    .date {
      font-size: 0.8125rem;
    }
  }
  
  
  
  /* >>>>>>>>>>>>>>>>>> ARTICLE CONTENT SECTION >>>>>>>>>>>>>>>>>> */
  
  
  .article-section {
    width: 100%;
    padding: 50px 20px;
    background-color: white; /* ✅ Light background for contrast */
  }
  
  .article-container {
    max-width: 1000px;
    margin: auto;
  }
  
  /* ✅ Lighter Text for Readability */
  .article-content p {
    font-size: 19px;
    line-height: 1.8; /* ✅ Increased line spacing for easy reading */
    color:var(--text); /* ✅ Lighter black for a softer contrast */
    font-weight: 400; /* ✅ Normal font-weight to reduce visual heaviness */
  }
  
  /* ✅ Introductory Paragraph Styling */
  .intro-section {
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
  }
  
  .intro-text {
  
    font-weight: 600; /* ✅ Medium boldness instead of full bold */
    font-size: 20px;
    color: var(--text); /* ✅ Slightly darker than body text for emphasis */
    margin: 0 0 15px 0 !important;
  }
  
  
 
  /* >>>>>>>>>>>>>>>>>> Article Section Container >>>>>>>>>>>>>>>>>> */
  
  
  .article-section-block {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 20px;
  
    line-height: 1.6;
  }
  
  /* ===== Article Subheading ===== */
  .article-subheading {
    font-size: clamp(1.75rem, 5vw, 2rem);
    font-weight: 700;
    color: var(--subeading);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
  }
  
  .article-subheading::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background:  var(--primary-color);
    margin: 1rem auto 0;
  }
  
  /* ===== Image Container with Overlay ===== */
  .image-container {
    position: relative;
    margin: 1.5rem 0 0.5rem; /* Reduced bottom margin from 1.5rem to 0.5rem */
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .article-image:hover {
    transform: scale(1.02);
  }
  
  /* ===== Photo Credit Overlay ===== */
  .photo-credit-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-style: italic;
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
  }
  
  .photo-credit-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
    padding: 6px 12px;
  }
  
  /* ===== Image Description ===== */
  .image-desc {
    font-size: 0.5rem;
    color: var(--subeading);
    font-weight: 500;
    background-color: var(--primary-color);
    padding: 0.65rem 1rem;
    border-radius: 6px;
    display: inline-block;
    margin: 0.25rem 0 0.5rem; /* Reduced top margin from 0.5rem to 0.25rem */
    border-left: 4px solid  var(--text);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  
  /* ===== Article Content ===== */
  .article-section-block p {
  
    line-height: 1.8;
    font-size: 20px;
    color: var(--text); /* ✅ Slightly darker than body text for emphasis */
    margin: 0 0 15px 0 !important;
  }
  
  
  
  
  
  /* ===== Responsive Adjustments ===== */
  @media (max-width: 768px) {
    .article-section-block {
      padding: 0 15px;
      
    }
    
    .photo-credit-overlay {
      font-size: 0.65rem;
      bottom: 8px;
      right: 8px;
      padding: 4px 8px;
    }
    
    .image-desc {
      font-size: 0.9rem;
      padding: 0.6rem 0.8rem;
    }
    
    .article-section-block p {
      font-size: 1rem;
      line-height: 1.7;
      font-size: 20px;
      color: var(--text); /* ✅ Slightly darker than body text for emphasis */
      margin: 0 0 15px 0 !important;
    }
  }
  
  @media (max-width: 480px) {
    .photo-credit-overlay {
      font-size: 0.6rem;
      padding: 3px 6px;
    }
    
    .image-desc {
      font-size: 0.85rem;
      border-left-width: 3px;
    }
  }
  
  
  


/* Floating vertical share bar - show only on desktop */
.floating-share-bar {
    position: fixed;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
  }
  
  .share-icon {
    background: #333;
    color: white;
    padding: 10px;
    text-align: center;
    transition: background 0.3s;
    border-bottom: 1px solid #555;
    font-size: 18px;
  }
  
  .share-icon:hover {
    background: #ff5722;
    color: white;
  }
  
  .fb { background: #3b5998; }
  .twitter { background: #1da1f2; }
  .whatsapp { background: #25d366; }
  .email { background: red; }
  
  .share-icon i {
    display: block;
  }
  
  /* Hide desktop share bar on mobile */
  @media (max-width: 768px) {
    .floating-share-bar {
      display: none;
    }
  }
  
 /* ============================= MOBILE SHARE BUTTON ============================== */
.mobile-share-wrapper {
    position: fixed;
    bottom: 55px;
    left: 20px;
    z-index: 999;
  }
  
  .share-toggle-button {
    width: 50px;
    height: 50px;
    background-color: red;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  
  .share-options {
    display: none; /* Hidden by default */
    position: absolute;
    bottom: 60px;
    left: 0;
    background-color: white;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  
  /* Visible state */
  .share-options.show {
    display: flex !important;
  }
  
  .share-options a {
    color: var(--text);
    font-size: 20px;
    text-decoration: none;
    display: flex;
  }
  
  @media (min-width: 769px) {
    .mobile-share-wrapper {
      display: none;
    }
  }
  
  
  

/* >>>>>>>>>>>>>> FOOTER SECTION >>>>>>>>>>>>>> */

.footer {
    background: var(--primary-color); /* Light green background */
    padding: 40px 20px;
      color: var(--text);
      align-content: center;
  
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-brand h1 {
    font-size: 42px;
    font-weight: bold;
    color: var(--text);
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
  }
  
  .footer-section h4 {
  
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text);
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    color: var(--text);
  }
  
  .footer-section ul li {
  
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text);
    cursor: pointer;
  }
  
  .footer-section ul li:hover {
    color: #ff5722; /* Orange color on hover */
  }
  
  .footer-section input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .footer-section button {
    margin-top: 10px;
    background: var(--text);
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Footer Top Section */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 50px;
    border-top: 1px solid #333;
  }
  
  /* Footer Bottom Section */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
  }
  
  .footer-bottom p {
  
    font-size: 14px;
    color: var(--text);
  }
  
  .footer-links {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  .footer-links li {
  
    font-size: 14px;
    cursor: pointer;
  }
  
  .footer-links li:hover {
    color: #ff5722; /* Orange color on hover */
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 15px; /* Space between icons */
  }
  
  .social-icons i {
    font-size: 20px; /* Icon size */
    color: var(--text); /* Icon color */
    cursor: pointer;
    transition: color 0.3s ease; /* Smooth color transition */
  }
  
  .social-icons i:hover {
    color: #ff5722; /* Orange color on hover */
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
  
    .footer-bottom {
      flex-direction: column; /* Stack elements vertically */
      text-align: center;
      gap: 10px; /* Space between elements */
    }
  }
  
  @media (max-width: 480px) {
    .footer-container {
      grid-template-columns: repeat(1, 1fr); /* 1 column on mobile */
      text-align: center;
    }
  
    .footer-bottom {
      flex-direction: column; /* Stack elements vertically */
      text-align: center;
      gap: 10px; /* Space between elements */
    }
  }
  
  





@media (max-width: 768px) {
  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color); /* Your theme color */
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text);
    font-size: 12px;
    text-decoration: none;
  }

  .nav-icon {
    width: 24px;
    height: 15px;
    margin-bottom: 2px;
    filter: none; /* Keeps SVG black */
  }

  .nav-label {
    color: var(--text);
  }
}

/* Hide on desktop screens */
@media (min-width: 769px) {
  .mobile-bottom-bar {
    display: none;
  }
}


/*================================= FOR ARTICLE ========================== */

.intro-stats {
  background-color: var(--primary-color);
  color: var(--text); /* Set readable text color */
  padding: 45px;
  border-radius: 10px;
  margin: 0px 10px 30px 10px; /* Further reduced top margin */
  font-size: 1.2rem;
  line-height: 1.4;
  font-family: sans-serif;
  font-weight: 400;
}


/* Bold inside paragraph */
.intro-stats strong {
  font-weight: 900;
}

/* Highlighted phrase */
.intro-stats .highlight {
  background-color:var(--subeading);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.intro-stats p {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.intro-stats ul {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem; /* ensures bullets are properly indented */
}

.urban-farming-intro {
  margin-bottom: 40px;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.urban-farming-intro ul {
  padding-left: 2.2rem; /* aligns bullets with title text after emoji */
  margin-top: 10px;
}

.urban-farming-intro li {
  margin-bottom: 6px;
  color: var(--text);
}


.section-title {
  display: flex;
  align-items: center;
  font-size: clamp(1.75rem, 5vw, 2rem);
  font-weight: bold;
  color: var(--subeading); /* Dark blue */
  margin-bottom: 8px;
}

.emoji {
  font-size: 1.6rem;
  margin-right: 10px;
}

.section-divider {
  border: none;
  height: 2px;
  background-color:var(--primary-color); /* Bright lime/yellow-green */
  margin: 0 0 20px 0;
}


.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.card {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-left: 4px solid var(--primary-color);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--text);
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial {
  background-color: var(--primary-color);
  padding: 15px;
  border-left: 4px solid var(--subeading);
  border-radius: 6px;
  font-style: italic;
  color: #2e7d32;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
th, td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: left;
}

th {
  background-color: #f0f9f4;
}


 /* FAQ Section */
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 15px;
            background-color: var(--light);
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text);
        }
        
        .faq-answer {
            padding: 15px;
            display: none;
            color: var(--text);
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }


        .comparison-table-container {
          overflow-x: auto;
          width: 100%;
        }
        
        .comparison-table {
          min-width: 600px;
          width: 100%;
          border-collapse: collapse;
          margin-top: 10px;
        }
        
        .comparison-table th,
        .comparison-table td {
          padding: 12px;
          text-align: left;
          border: 1px solid #ddd;
        }
        
        .comparison-table thead th {
          background-color: #f0f0f0;
          font-weight: bold;
        }