@media (max-width: 900px) {
  /* Only show dropdown-content for .dropdown with .dropbtn, not for links */
  .nav-links.show > li:not(:nth-child(4)) .dropdown-content {
    display: none !important;
  }
  .nav-links.show > li:nth-child(4) .dropdown-content {
    display: block !important;
  }
}
@media (max-width: 900px) {
  .nav-links.show {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 1001 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    padding: 40px 24px 24px 24px !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    overflow-y: auto;
  }
  .nav-links.show li {
    width: 100%;
    padding: 0.5rem 0;
  }
  .nav-links.show a:not(.contact-button a), .nav-links.show .dropbtn {
    color: #36bd15 !important;
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0;
    background: none;
    border: none;
  }
  /* Ensure .contact-button keeps its style in hamburger menu */
  .nav-links.show .contact-button {
    width: 100%;
    padding: 0.5rem 0;
    background: #f1720a !important;
    color: #fff !important;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 150px;
    margin-top: 12px;
  }
  .nav-links.show .contact-button a {
    color: #fff !important;
    text-align: center;
    width: 100%;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links.show .dropdown-content {
    position: static !important;
    background: #f9f9f9 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: 100% !important;
    min-width: unset !important;
    padding: 0 0 8px 0 !important;
    margin: 0 !important;
    z-index: 2;
    display: block !important;
    max-height: 300px;
    overflow-y: auto;
    border-top: 1px solid #e0f3e6;
  }
}
@media (max-width: 900px) {
  .navbar .link-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hamburger {
    order: 2;
    margin-left: auto;
    margin-right: 0;
  }
  .logo {
    order: 1;
  }
}
@media (max-width: 900px) {
  .navbar {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
}
/* Force hamburger bars green everywhere */
.hamburger div, .hamburger .bar {
  background-color: #36bd15 !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  background-image: url("/images/hero.webp"); /* Replace with your image */
  background-size: cover;
  /* background-position: center; */
  height: 80vh;
  width: 100%;
  position: relative;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /* Smoother gradient: dark at top, white at bottom */
  background: linear-gradient(90deg, #13291ab3, #09251580 75%, #0d302100);
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  text-align: left;
  padding: 0 20px;
  /* text-shadow: 2px 2px 4px #000000; */
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}

.hero-text p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
}

section {
  padding: 60px 20px;
  /* max-width: 1000px; */
  margin: auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #36bd15;
}

section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Footer */
.site-footer {
  background-color: #232525;
  padding: 60px 20px 20px;
  font-size: 0.95rem;
  color: #ffffff;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.footer-col {
  flex: 1;
  min-width: 200px;
}
.footer-col h4 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #ffffff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 15px;
}
.footer-col ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: #008a3d;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #9b9b9b;
}

/* Email Signup */
.email-signup {
  background-color: #008643;
  padding: 60px 20px;
  text-align: center;
  color: #000000;
}
.signup-container {
  max-width: 600px;
  margin: 0 auto;
}
.signup-container h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #ebebeb;
}
.signup-container p {
  font-size: 1rem;
  margin-bottom: 24px;
  color: #ffffff;
}
.signup-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.signup-form input[type="email"] {
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 60%;
  border-radius: 50px;
}

/* Font Awesome Brands */
.fa-brands {
  color: #f0f0f0;
  margin: 0 10px;
  font-size: 1.5rem;
}

.fa-brands:hover {
  color: #36bd15;
  transform: scale(1.1);
  transition: color 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #36bd15;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    display: none;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

.menu-toggle {
  display: none;
}

/* Navbar CSS */

.link-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  width: calc(100% - 50px);
  margin: 0 auto;
}

.logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  max-height: 60px;
  margin-bottom: 5px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 0;
}

.nav-links a {
  font-family: "Roboto", sans-serif;
  font-weight: 700 !important;
  color: #36bd15;
  text-decoration: none;
  background-color: #04aa6d00;
  font-size: 18px;
  border: none;
  padding: 10px 15px;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  display: inline-block;
  outline: none;
}

/* Dropdown Button */
.dropbtn {
  background-color: #04aa6d00;
  font-size: 18px;
  border: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700 !important;
  color: #36bd15;
  text-decoration: none;
  padding: 10px 15px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 18px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
  text-decoration: none;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  color: #fff;
  background-color: #36bd15;
  border-radius: 5px;
}

.mega-dropdown {
  position: relative;
}

.mega-dropdown:hover .mega-dropdown-content.with-image {
  display: flex;
}

.mega-dropdown-list .dropdown-link:hover,
.mega-dropdown-list .dropdown-link:focus {
  background: #f5f5f5;
  color: #36bd15;
}

#dropdown-preview-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #36bd15;
  text-align: center;
}

.divider-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Divider Line */
.line {
  flex: 1;
  height: 2px;
  background-color: #696969;
  margin-bottom: 0px;
  border-radius: 50px;
}

.center-text {
  white-space: nowrap;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #3c5c2e;
  font-size: 2rem;
}

/* Navbar styles */
/* Navbar container and navbar base styles */
.navbar-container {
  display: flex;
  justify-content: center;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 20;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  max-width: 100%;
  width: 100%;
  top: 0;
  z-index: 20;
  margin: 0 auto;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.37);
  transition: top 0.3s; /* Transition effect when sliding down (and up) */
}

@media (max-width: 900px) {
  .navbar-container {
    position: static;
    top: 0 !important;
  }
  .navbar {
    position: sticky;
    top: 0 !important;
    z-index: 1100;
  }
}

@media (min-width: 901px) {
  .navbar-container {
    position: fixed;
    top: 25px;
  }
  .navbar {
    position: fixed;
    top: 0;
    z-index: 20;
  }
}
.link-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  width: calc(100% - 50px);
  margin: 0 auto;
}
.nav-links {
 list-style: none;
  display: space-between;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: 10px 0;
}

.nav-links a {
  font-family: "Roboto", sans-serif;
  font-weight: 700 !important;
  color: #36bd15;
  text-decoration: none;
}

.nav-links li:not(.contact-button) > a:hover {
  color: #fff;
  background-color: #36bd15;
  border-radius: 5px;
  text-decoration: none;
}

.contact-button {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 10px 25px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #f1720a;
  text-decoration: none;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700 !important;
  border: none;
}

.contact-button a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.contact-button img {
  width: 30px;
  height: auto;
  margin-left: 10px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.contact-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #ff9100;
  border-radius: 0 50px 50px 0;
  z-index: -1;
  transition: width 0.4s ease;
}

.contact-button:hover::before {
  width: 120%;
  left: 0;
}

.contact-button:hover a {
  text-decoration: none;
}

.contact-button:hover img {
  filter: brightness(1) invert(0);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 20;
}

.hamburger div {
  width: 25px;
  height: 3px;
  color: #36bd15;
  background-color: #fff;
  margin: 4px 0; /* Adjust margin for better alignment */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger menu animation */
.hamburger.active div:nth-child(1) {
  transform: translate(0, 11px) rotate(-45deg);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: translate(0, -11px) rotate(45deg);
}

/* Overlay styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 15;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

.overlay.active {
  display: flex;
}

.overlay .overlay-nav-links {
  list-style: none; /* Remove bullet points */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  background: none; /* Remove background from links */
  z-index: 16; /* Ensure nav links are above the overlay */
}

.overlay .overlay-nav-links li {
  padding: 0.5rem 0; /* Match original padding */
}

.overlay .overlay-nav-links a {
  font-family: "Roboto", sans-serif;
  font-weight: 200 !important;
  color: #36bd15; /* Ensure text color is green */
  text-decoration: none;
  padding: 0 15px; /* Match original padding */
  text-align: left; /* Align text to the left */
}

.overlay .overlay-nav-links a:hover {
  text-decoration: underline; /* Match original hover effect */
}

/* Responsive styles for tablets */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 10px 20px;
  }

  .nav-links {
    display: none; /* Hide original nav links */
  }

  .hamburger {
    display: flex;
  }
}

/* Responsive styles for mobile devices */
@media screen and (max-width: 480px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 10px 15px;
  }

  .logo {
    max-height: 50px;
  }

  .nav-links {
    top: 50px;
  }

  .nav-links a {
    padding: 0 10px;
  }

  .contact-button {
    padding: 0.5rem 1.5rem;
  }

  .contact-button img {
    width: 25px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 20;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0; /* Adjust margin for better alignment */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Overlay styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #232525;
  z-index: 15;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

.overlay.active {
  display: flex;
}

.overlay .overlay-nav-links {
  list-style: none; /* Remove bullet points */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  background: none; /* Remove background from links */
  z-index: 16; /* Ensure nav links are above the overlay */
}

.overlay .overlay-nav-links li {
  padding: 0.5rem 0; /* Match original padding */
}

.overlay .overlay-nav-links a {
  font-family: "Roboto", sans-serif;
  font-weight: 200 !important;
  color: #fff; /* Ensure text color is white */
  text-decoration: none;
  padding: 0 15px; /* Match original padding */
  text-align: left; /* Align text to the left */
}

.overlay .overlay-nav-links a:hover {
  text-decoration: underline; /* Match original hover effect */
}

.partner-logos {
  padding: 60px 20px;
  /* background-color: #8bbe33; */
  text-align: center;
  max-width: 1200px;
}

.partner-logos h2 {
  color: #3c5c2e;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.logos img {
  max-height: 70px;
  max-width: 400px;
  object-fit: fill;
  transition: transform 0.3s ease;
}

.logos img:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .logos {
  /* Hamburger menu overlay: make links black */
  .nav-links.show a:not(.contact-button a),
  .nav-links.show .dropbtn {
    color: #111 !important;
  }
  /* About dropdown in hamburger: only open on click, default hidden */
  .nav-links.show > li:nth-child(4) .dropdown-content {
    display: none !important;
  }
  .nav-links.show > li:nth-child(4).dropdown-open .dropdown-content {
    display: block !important;
  }
    gap: 20px;
  }

  .logos img {
    max-width: 100px;
    max-height: 40px;
  }
}

/* Product Sections? */
.product-section {
  max-width: 1200px;
  /* margin: 0 auto; */
  /* padding: 40px 20px; */
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-row {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.product-card {
  flex: 1;
  background: #fff;
  /* padding: 20px; */
  border-radius: 12px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.37);
  text-align: center;
  max-height: 200px;
}

.product-card img {
  max-width: 100%;
  border-radius: 5px;
}

/* --- MOVED FROM index.html: Mobile & Responsive Styles --- */
@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    margin-left: auto;
  }
  .hamburger .bar {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #36bd15;
    border-radius: 2px;
    transition: 0.3s;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translate(0, 11px) rotate(-45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translate(0, -13px) rotate(45deg);
  }
  .nav-links .dropdown-content {
    position: static !important;
    min-width: 100vw !important;
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    border-radius: 0 0 12px 12px !important;
    padding: 0 0 8px 0 !important;
    margin: 0 !important;
    z-index: 2;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    border-top: 1px solid #e0f3e6;
  }
  .nav-links .dropdown.show .dropdown-content {
    display: block !important;
  }
  .nav-links .dropdown-content a {
    display: block;
    padding: 16px 28px 16px 24px;
    color: #111 !important;
    font-weight: 600;
    /* border-bottom: 1px solid #e0f3e6; */
    background: none;
    text-align: left;
    width: 100%;
    font-size: 1.08rem;
    opacity: 1;
  }
  .nav-links .dropdown-content a:last-child {
    border-bottom: none;
  }
  .nav-links .dropdown-content a:hover {
    background: #e0f3e6;
    color: #36bd15 !important;
  }
  /* Fix for dropdown-content being hidden by parent overflow */
  .nav-links {
    overflow: visible !important;
  }
  .navbar .link-container {
    overflow: visible !important;
  }
  /* Mobile: Make hero button one line */
  .hero .contact-button a {
    white-space: nowrap;
    font-size: 1.05rem;
    padding: 0 12px;
  }
  .hero .contact-button {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* Mobile: Increase left margin on hero text */
  .hero-text {
    margin-left: 24px;
    margin-right: 8px;
  }
  /* Mobile: Feature image below text */
  .feature-container {
    flex-direction: column !important;
  }
  .feature-text {
    order: 1;
  }
  .feature-image {
    order: 2;
    margin-top: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .feature-image img {
    max-width: 90vw;
    height: auto;
  }
  /* Mobile: Email signup form vertical, equal width */
  .signup-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .signup-form input[type="email"],
  .signup-form .contact-button {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .signup-form .contact-button {
    margin-top: 0;
  }
  /* Mobile: Make Trusted By logos larger */
  .partner-logos .logos img {
    max-width: 220px;
    width: 70vw;
    height: auto;
    margin: 0 10px 10px 10px;
  }
  /* Mobile Upgrade Grid to 2-column layout --- */
  .upgrade-section {
    position: relative;
    padding: 0;
  }
  .upgrade-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 100vw;
    overflow-x: unset !important;
    scroll-snap-type: none;
    padding: 0 0 8px 0;
    margin: 0;
    background: transparent;
  }
  .upgrade-grid::-webkit-scrollbar {
    display: none;
  }
  .upgrade-item {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    scroll-snap-align: unset;
    text-align: center;
    margin: 0;
    box-sizing: border-box;
    
  }
  .upgrade-arrow {
    display: none !important;
  }
  .upgrade-grid::before,
  .upgrade-grid::after {
    display: none !important;
    content: none !important;
  }
  .upgrade-grid-indicator {
    display: none !important;
  }
}
@media (min-width: 901px) {
  .hamburger {
    display: none !important;
  }
}

.product-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.product-large img {
  max-width: fit-content;
  border-radius: 5px;
}

.image-text-section {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  gap: 40px;
  align-items: center;
}

.image-text-section .image {
  flex: 1;
}

.image-text-section .image img {
  width: 100%;
  border-radius: 12px;
}

.image-text-section .text {
  flex: 1;
}

.image-text-section .text h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.image-text-section .text p {
  font-size: 1rem;
  color: #333;
}

/* Review Section */
.review-section {
  max-width: 1200px;
  margin: 60px auto;

  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.review-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333333;
}

.reviews-row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.review-card {
  flex: 1 1 30%;
  background: #36bd15;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  font-style: italic;
}

.review-card span {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  color: #444;
}

.feature-product-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
}

.feature-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #034d2f;
}

.feature-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  max-width: 100%;
  max-height: 600px;
}

/* Testimonial Section */
.testimonial-section {
  background: url("/images/rows.webp") center/cover no-repeat;
  padding: 0px;
  color: #1a1a1a;
  text-align: center;
}
.testimonial-overlay {
  background-color: rgba(185, 172, 172, 0.904);
  height: 100%;
  width: 100%;
}
.testimonial-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}
.testimonial-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 0.5rem;
  /* text-shadow: 1px 1px 4px #ffffff; */
}
.testimonial-subtitle {
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: bold;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  max-width: 300px;
  flex: 1;
  border-bottom: #00aa55 8px solid;
  /* Enhanced shadow for more depth */
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.22),
    0 16px 48px 0 rgba(0, 0, 0, 0.13), 0 1.5px 6px 0 rgba(0, 0, 0, 0.1),
    0 0.5px 1.5px 0 rgba(44, 62, 80, 0.08);
  transition: box-shadow 0.3s cubic-bezier(0.4, 2, 0.6, 1),
    transform 0.3s cubic-bezier(0.4, 2, 0.6, 1);
  margin-bottom: 24px;
  position: relative;
}
.testimonial-card .quote {
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
  font-style: italic;
}
.testimonial-card .highlight {
  color: #00aa55;
  font-weight: 700;
  font-size: 1.05rem;
}
.farmer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  margin-top: 18px;
}

.farmer-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #00aa55;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 170, 85, 0.1);
}

.farmer-info span {
  font-weight: 600;
  color: #024020;
  font-size: 1rem;
}

.tags span {
  border: 1px solid #36bd15;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: #36bd15;
  margin-right: 5px;
  display: inline-block;
  margin-top: 8px;
  background: #f6fff8;
  font-weight: 500;
}

.testimonial-cta {
  margin-top: 40px;
}
.farmer-button {
  display: inline-block;
  border: 4px solid #36bd15;
  color: #000000;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.farmer-button::before {
  background: #36bd15;
  color: white;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;

  border-radius: 0 50px 50px 0;
  z-index: -1;
  transition: width 0.4s ease;
}

.farmer-button:hover::before {
  width: 120%;
  color: #fff;
}

/* Steps Section */
.steps-section {
  /* background: #008643; */
  /* background: #F5F1E7; */
  background: #2e2e2e;
  color: #000;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  width: 100%;
  margin: 0 auto;
  min-height: 600px;
  flex-wrap: wrap;
}

.step-card {
  background: white;
  border-radius: 8px;
  padding: 0;
  text-align: center;
  position: relative;
  max-width: 320px;
  flex: 1;
  min-width: 320px;
  overflow: hidden;
  /* Deeper, more layered shadow for extra depth */
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.28),
    0 16px 48px 0 rgba(0, 0, 0, 0.18), 0 1.5px 6px 0 rgba(0, 0, 0, 0.18),
    0 0.5px 1.5px 0 rgba(44, 62, 80, 0.1);
  transition: box-shadow 0.3s cubic-bezier(0.4, 2, 0.6, 1),
    transform 0.3s cubic-bezier(0.4, 2, 0.6, 1);
  z-index: 1;
}

.step-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 0;
}

.step-card h3 {
  color: #024020;
  font-size: 1.6rem;
  margin: 20px 0 10px 0;
  padding: 0 20px;
}

.step-card p {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 20px;
  padding: 0 20px;
}

.step-card .upgrade-button {
  padding: 0 20px 20px 20px;
}

.solutions-grid .solution-card,
.solutions-grid .solution-card:link,
.solutions-grid .solution-card:visited,
.solutions-grid .solution-card:hover,
.solutions-grid .solution-card:active {
  text-decoration: none !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18), 0 1.5px 6px 0 rgba(0, 0, 0, 0.1);
}

/* Solution Detail Page Styles */
.solution-detail-container {
  max-width: 900px;
  margin: 48px auto 60px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.13),
    0 1.5px 6px 0 rgba(0, 0, 0, 0.08);
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}
.solution-detail-image {
  width: 340px;
  max-width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(54, 189, 21, 0.1);
  background: #f0f8ec;
}
.solution-detail-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}
.solution-detail-text h2 {
  color: #034d2f;
  font-size: 2rem;
  margin-bottom: 8px;
}
.solution-detail-text p {
  color: #222;
  font-size: 1.15rem;
  line-height: 1.7;
}
.back-link {
  display: inline-block;
  margin-top: 32px;
  color: #36bd15;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.back-link:hover {
  color: #f1720a;
  text-decoration: underline;
}

/* Responsive for solution detail */
@media (max-width: 900px) {
  .solution-detail-container {
    flex-direction: column;
    padding: 24px 10px;
    gap: 24px;
    align-items: center;
  }
  .solution-detail-image {
    width: 100%;
    height: 200px;
  }
}

/* Hero section for detail page */
.hero-section {
  position: relative;
  height: 38vh;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: none;
  margin-bottom: 0;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #13291ab3, #09251580 75%, #0d302100),
    url("/images/hero-1.webp") center/cover no-repeat;
  z-index: 1;
  pointer-events: none;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
}
.hero-section h1 {
  font-size: 3rem;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 8px #184c2b99;
}
@media (max-width: 700px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .solution-detail-container {
    padding: 12px 2vw;
  }
}

.projects-title-container {
  max-width: 1075px;
  margin: 0 auto;
  text-align: left;
  padding-left: 25px;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.projects-title {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 35px;
}
/* Blog image */
.projimg {
  width: 100%;
  height: 400px;
  max-width: 1075px;
}

/* Blog image */
.projimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}


.blogp {
  text-align: left;
  font-family: "lato", sans-serif;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 10px;
  color: #000;
}
.project-gallery {
  max-width: 1075px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.project-gallery h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  margin-bottom: 5px;
}

/* Description Section */
.description {
  text-align: center;
  padding: 2rem;
  background-color: #000000;
  width: 100%;
}

.description h2 {
  margin: 0;
  font-size: 2rem;
}

.description p {
  margin: 1rem 0 0;
  font-size: 1rem;
  max-width: 800px;
}

/* --- Unified Card Styles for Capabilities and Solutions --- */
.capabilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}
.capability-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18), 0 1.5px 6px 0 rgba(0, 0, 0, 0.1);
  max-width: 340px;
  min-width: 260px;
  flex: 1 1 320px;
  padding: 0 0 18px 0;
  text-align: center;
  border-bottom: 8px solid #36bd15;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 0;
  overflow: hidden;
}
.capability-card:hover {
  border-bottom: 8px solid #f1720a;
}
.capability-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin: 0;
  background: #f0f8ec;
  display: block;
  box-shadow: 0 2px 8px rgba(54, 189, 21, 0.08);
}
.capability-card h3 {
  color: #034d2f;
  font-size: 1.2rem;
  margin: 18px 0 8px 0;
}
.capability-card p {
  color: #333;
  font-size: 1rem;
  margin: 0px 4px 10px 4px;
}
.capability-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.capability-tag {
  background: #e6ffe6;
  color: #36bd15;
  border-radius: 16px;
  padding: 3px 12px;
  font-size: 0.92rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .capabilities-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Style for the new request quote button to match the 'Explore All Solutions' button */
.upgrade-button-btn {
  margin-top: 32px;
  background: #36bd15;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background 0.2s;
}
.upgrade-button-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #008643;
  border-radius: 0 50px 50px 0;
  z-index: -1;
  transition: width 0.4s ease;
}
.upgrade-button-btn:hover::before {
  width: 120%;
}
@media (max-width: 700px) {
  .upgrade-button-btn {
    font-size: 1.1rem;
    padding: 10px 18px;
  }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  color: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  border-radius: 10px;
  z-index: 99999;
  display: none;
  padding: 14px;
}
.cookie-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.cookie-text p { margin: 6px 0 0 0; font-size: 0.95rem; color: #333; }
.cookie-actions { display: flex; gap: 8px; align-items: center; }
.cookie-btn { padding: 8px 12px; border-radius: 8px; border: none; cursor: pointer; font-weight: 700; }
.cookie-accept { background: #36bd15; color: #fff; }
.cookie-reject { background: #e6e6e6; color: #111; }
.cookie-manage { background: transparent; border: 1px solid #ccc; color: #111; }
.cookie-prefs { margin-top: 10px; display: flex; gap: 12px; flex-direction: column; }
@media (max-width: 700px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}
