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

html {
  scroll-behavior: smooth;
}

h1 {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 42px;
  }
}

h2 {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

body {
  font-family: "Kumbh Sans", sans-serif;
}

.button-primary {
  background-color: #1F5C29;
  color: #FFFFFF;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
  text-decoration: none;
}
.button-primary:hover {
  transition: 0.2s all ease-in-out;
  background-color: rgb(18.1463414634, 53.8536585366, 24);
}
@media screen and (max-width: 500px) {
  .button-primary {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
}

.button-secondary {
  background-color: transparent;
  color: #1F5C29;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
  text-decoration: none;
  border: 1.5px solid #1F5C29;
}
.button-secondary:hover {
  transition: 0.2s all ease-in-out;
  background-color: #1F5C29;
  color: #FFFFFF;
}
@media screen and (max-width: 500px) {
  .button-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

.center-div {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 1300px) {
  .center-div {
    max-width: 90%;
    margin: 0 auto;
    width: 100%;
  }
}
header.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #FFFFFF;
}
header.site-header .nav-wrapper {
  width: 100%;
}
header.site-header nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
header.site-header nav.navbar .logo {
  z-index: 2;
  max-width: 250px;
  width: 20%;
}
header.site-header nav.navbar .logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
header.site-header nav.navbar .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
header.site-header nav.navbar .nav-links li {
  display: flex;
  position: relative;
}
header.site-header nav.navbar .nav-links li a {
  text-decoration: none;
  font-family: "Kumbh Sans", sans-serif;
  color: #1E1E1E;
  font-weight: 400;
  transition: 0.2s all ease-in-out;
  font-size: 18px;
}
header.site-header nav.navbar .nav-links li a:hover {
  transition: 0.2s all ease-in-out;
  text-decoration: underline;
}
header.site-header nav.navbar .nav-links li.btn-primary a {
  text-decoration: none;
  background-color: #1F5C29;
  color: #FFFFFF;
  padding: 10px 20px;
  transition: 0.2s all ease-in-out;
  border-radius: 8px;
}
header.site-header nav.navbar .nav-links li.btn-primary a:hover {
  transition: 0.2s all ease-in-out;
  background-color: rgb(18.1463414634, 53.8536585366, 24);
}
header.site-header nav.navbar .nav-links li.menu-item-has-children > a {
  padding-right: 18px;
  position: relative;
}
header.site-header nav.navbar .nav-links li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  background-image: url("https://krishipathinnovate.com/wp-content/uploads/2025/12/right-arrow.png");
  width: 10px;
  height: 10px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
header.site-header nav.navbar .nav-links li.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  background-color: #FFFFFF;
  min-width: 200px;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: all 0.2s ease;
}
header.site-header nav.navbar .nav-links li.menu-item-has-children .sub-menu li {
  padding: 0;
  width: 100%;
}
header.site-header nav.navbar .nav-links li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  white-space: nowrap;
}
header.site-header nav.navbar .nav-links li.menu-item-has-children .sub-menu li a:hover {
  text-decoration: none;
}
header.site-header nav.navbar .nav-links li.menu-item-has-children .sub-menu li:hover {
  text-decoration: none;
  background-color: #f5f5f5;
}
header.site-header nav.navbar .nav-links li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
header.site-header nav.navbar .hamburger {
  display: none;
}
header.site-header nav.navbar .hamburger .hamburger-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 18px;
  width: 24px;
  cursor: pointer;
  z-index: 10;
}
header.site-header nav.navbar .hamburger .hamburger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: black;
  transition: all 0.3s;
}
header.site-header nav.navbar .hamburger .hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header.site-header nav.navbar .hamburger .hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
header.site-header nav.navbar .hamburger .hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
header.site-header .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
header.site-header .mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header.site-header .mobile-menu ul li {
  margin: 20px 0;
}
header.site-header .mobile-menu ul li a {
  text-decoration: none;
  font-family: "Kumbh Sans", sans-serif;
  color: #1E1E1E;
  font-weight: 400;
  transition: 0.2s all ease-in-out;
  font-size: 18px;
}
header.site-header .mobile-menu ul li.btn-primary a {
  text-decoration: none;
  border-radius: 8px;
  background-color: #1F5C29;
  color: #FFFFFF;
  padding: 10px 20px;
  transition: 0.2s all ease-in-out;
}
header.site-header .mobile-menu ul li.btn-primary a:hover {
  transition: 0.2s all ease-in-out;
  background-color: rgb(18.1463414634, 53.8536585366, 24);
}
header.site-header .mobile-menu ul li.menu-item-has-children > a {
  position: relative;
  padding-right: 24px;
}
header.site-header .mobile-menu ul li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("https://krishipathinnovate.com/wp-content/uploads/2025/12/right-arrow.png");
  width: 10px;
  height: 10px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
header.site-header .mobile-menu ul li.menu-item-has-children .sub-menu {
  display: none;
  margin-top: 10px;
}
header.site-header .mobile-menu ul li.menu-item-has-children .sub-menu li {
  margin: 10px 0;
}
header.site-header .mobile-menu ul li.menu-item-has-children .sub-menu li a {
  font-size: 16px;
}
header.site-header .mobile-menu ul li.menu-item-has-children.active .sub-menu {
  display: block;
}
header.site-header .mobile-menu .mobile-submenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #FFFFFF;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header.site-header .mobile-menu .mobile-submenu .submenu-close {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 20px;
  right: 20px;
  height: 18px;
  width: 24px;
  cursor: pointer;
  z-index: 10;
}
header.site-header .mobile-menu .mobile-submenu .submenu-close span {
  display: block;
  height: 2px;
  width: 100%;
  background: black;
  transition: all 0.3s;
}
header.site-header .mobile-menu .mobile-submenu .submenu-close span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header.site-header .mobile-menu .mobile-submenu .submenu-close span:nth-child(2) {
  opacity: 0;
}
header.site-header .mobile-menu .mobile-submenu .submenu-close span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
header.site-header .mobile-menu .mobile-submenu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header.site-header .mobile-menu .mobile-submenu ul li {
  margin: 20px 0;
}
header.site-header .mobile-menu .mobile-submenu ul li a {
  font-size: 18px;
  text-decoration: none;
  color: #1E1E1E;
}
header.site-header .mobile-menu .mobile-submenu.active {
  transform: translateX(0%);
}
header.site-header .mobile-menu.active {
  transform: translateX(0%);
  background-color: #FFFFFF;
}

@media screen and (max-width: 900px) {
  header.site-header nav.navbar .logo {
    max-width: 150px;
    width: 50%;
  }
  header.site-header nav.navbar .nav-links,
  header.site-header nav.navbar .nav-cta {
    display: none;
  }
  header.site-header nav.navbar .hamburger {
    display: block;
  }
}
.header-img {
  position: absolute;
  max-width: 900px;
  width: 100%;
  right: 0;
  top: 0%;
}

section.landing_hero {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(103.72deg, #CBF3D2 -7.98%, #F3FFD9 104.12%);
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 500px) {
  section.landing_hero {
    padding: 40px 0;
  }
}
section.landing_hero .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}
section.landing_hero .content-wrapper .text-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  section.landing_hero .content-wrapper .text-wrapper {
    width: 100%;
  }
}
section.landing_hero .content-wrapper .text-wrapper h1 {
  color: #000000;
  line-height: 1.3;
}
@media screen and (max-width: 500px) {
  section.landing_hero .content-wrapper .text-wrapper h1 {
    font-size: 32px;
  }
}
section.landing_hero .content-wrapper .text-wrapper p {
  font-size: 22px;
  line-height: 30px;
  color: #000000;
  font-weight: 400;
  font-family: "Kumbh Sans", sans-serif;
}
section.landing_hero .content-wrapper .text-wrapper .feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 500px) {
  section.landing_hero .content-wrapper .text-wrapper .feature-tags {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
section.landing_hero .content-wrapper .text-wrapper .feature-tags span {
  padding: 6px 14px;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 14px;
  border-radius: 100px;
  border: 1px solid #B3CCB7;
  display: flex;
  background-color: #FFFFFF;
}
@media screen and (max-width: 500px) {
  section.landing_hero .content-wrapper .text-wrapper .feature-tags span {
    align-items: center;
    gap: 5px;
  }
}
section.landing_hero .content-wrapper .text-wrapper .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 20px 10px;
  flex-wrap: wrap;
}
section.landing_hero .content-wrapper .text-wrapper .cta-wrapper a {
  text-decoration: none;
}
section.landing_hero .content-wrapper .image-wrapper {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
section.landing_hero .content-wrapper .image-wrapper img {
  width: 100%;
  display: block;
  position: absolute;
  max-width: 50%;
  right: 0;
  top: 0%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.landing_hero .content-wrapper .image-wrapper.responsive {
  display: none;
}
@media screen and (max-width: 900px) {
  section.landing_hero .content-wrapper .image-wrapper {
    display: none;
  }
  section.landing_hero .content-wrapper .image-wrapper img {
    display: none;
  }
  section.landing_hero .content-wrapper .image-wrapper.responsive {
    display: block;
    width: 100%;
  }
  section.landing_hero .content-wrapper .image-wrapper.responsive img {
    display: block;
    position: static;
    border-radius: 12px;
  }
}

section.left-with-text, section.right-with-text {
  width: 100%;
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.left-with-text, section.right-with-text {
    padding: 40px 0;
  }
}
section.left-with-text .content-wrapper, section.right-with-text .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
section.left-with-text .content-wrapper .image-wrapper, section.right-with-text .content-wrapper .image-wrapper {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 12px;
}
section.left-with-text .content-wrapper .image-wrapper img, section.right-with-text .content-wrapper .image-wrapper img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
}
section.left-with-text .content-wrapper .text-wrapper, section.right-with-text .content-wrapper .text-wrapper {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
  justify-content: center;
}
section.left-with-text .content-wrapper .text-wrapper h2, section.right-with-text .content-wrapper .text-wrapper h2 {
  line-height: 1.2;
  color: #000000;
}
section.left-with-text .content-wrapper .text-wrapper .image-wrapper.responsive, section.right-with-text .content-wrapper .text-wrapper .image-wrapper.responsive {
  display: none;
  width: 100%;
  margin: 25px 0;
}
section.left-with-text .content-wrapper .text-wrapper .image-wrapper.responsive img, section.right-with-text .content-wrapper .text-wrapper .image-wrapper.responsive img {
  width: 100%;
}
section.left-with-text .content-wrapper .text-wrapper p.sub-heading, section.right-with-text .content-wrapper .text-wrapper p.sub-heading {
  margin-top: 20px;
  font-size: 22px;
  line-height: 30px;
}
section.left-with-text .content-wrapper .text-wrapper ul, section.right-with-text .content-wrapper .text-wrapper ul {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: space-evenly;
}
section.left-with-text .content-wrapper .text-wrapper ul li, section.right-with-text .content-wrapper .text-wrapper ul li {
  position: relative;
  font-size: 18px;
  font-family: "Kumbh Sans", sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
section.left-with-text .content-wrapper .text-wrapper ul li .point-icon, section.right-with-text .content-wrapper .text-wrapper ul li .point-icon {
  min-width: 13px;
  display: flex;
  min-height: 13px;
  margin-top: 5px;
  max-width: 13px;
  max-height: 13px;
}
section.left-with-text .content-wrapper .text-wrapper ul li .point-icon img, section.right-with-text .content-wrapper .text-wrapper ul li .point-icon img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
section.left-with-text .content-wrapper .text-wrapper .inline-quote-wrapper, section.right-with-text .content-wrapper .text-wrapper .inline-quote-wrapper {
  margin: 50px 0 0 0;
  max-width: 900px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  background: linear-gradient(91.89deg, #CBF3D2 -8.08%, #F3FFD9 111.72%);
}
section.left-with-text .content-wrapper .text-wrapper .inline-quote-wrapper .quote-icon, section.right-with-text .content-wrapper .text-wrapper .inline-quote-wrapper .quote-icon {
  max-width: 80px;
  position: absolute;
  top: 0;
  transform: translate(0%, -50%) rotate(180deg);
  left: 30px;
}
section.left-with-text .content-wrapper .text-wrapper .inline-quote-wrapper .quote-icon img, section.right-with-text .content-wrapper .text-wrapper .inline-quote-wrapper .quote-icon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.left-with-text .content-wrapper .text-wrapper .inline-quote-wrapper .quote-text, section.right-with-text .content-wrapper .text-wrapper .inline-quote-wrapper .quote-text {
  font-family: "DM Sans", sans-serif;
  text-align: left;
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
}
@media screen and (max-width: 500px) {
  section.left-with-text .content-wrapper .text-wrapper .inline-quote-wrapper .quote-text, section.right-with-text .content-wrapper .text-wrapper .inline-quote-wrapper .quote-text {
    font-size: 20px;
  }
}
section.left-with-text.reverse-order .content-wrapper, section.right-with-text.reverse-order .content-wrapper {
  flex-direction: row-reverse;
}
section.left-with-text .quote-wrapper, section.right-with-text .quote-wrapper {
  margin: 50px auto 0 auto;
  max-width: 900px;
  padding: 30px 30px 30px 50px;
  border-radius: 10px;
  position: relative;
  background: linear-gradient(91.89deg, #CBF3D2 -8.08%, #F3FFD9 111.72%);
}
section.left-with-text .quote-wrapper .quote-icon, section.right-with-text .quote-wrapper .quote-icon {
  max-width: 80px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  left: 0px;
}
section.left-with-text .quote-wrapper .quote-icon img, section.right-with-text .quote-wrapper .quote-icon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.left-with-text .quote-wrapper p, section.right-with-text .quote-wrapper p {
  font-family: "DM Sans", sans-serif;
  text-align: center;
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
}
@media screen and (max-width: 500px) {
  section.left-with-text .quote-wrapper p, section.right-with-text .quote-wrapper p {
    font-size: 20px;
  }
}

@media screen and (max-width: 900px) {
  section.left-with-text .content-wrapper, section.right-with-text .content-wrapper {
    flex-direction: column;
  }
  section.left-with-text .content-wrapper .image-wrapper, section.right-with-text .content-wrapper .image-wrapper {
    display: none;
  }
  section.left-with-text .content-wrapper .text-wrapper, section.right-with-text .content-wrapper .text-wrapper {
    width: 100%;
  }
  section.left-with-text .content-wrapper .text-wrapper .image-wrapper.responsive, section.right-with-text .content-wrapper .text-wrapper .image-wrapper.responsive {
    display: block;
  }
  section.left-with-text.reverse-order .content-wrapper, section.right-with-text.reverse-order .content-wrapper {
    flex-direction: column-reverse;
  }
  section.left-with-text .quote-wrapper, section.right-with-text .quote-wrapper {
    padding-top: 30px;
    padding-left: 30px;
  }
  section.left-with-text .quote-wrapper .quote-icon, section.right-with-text .quote-wrapper .quote-icon {
    left: 50%;
    top: 0;
  }
}
section.system-timeline {
  padding: 50px 0;
  background-color: #F9F9F9;
}
section.system-timeline .section-header {
  max-width: 800px;
  margin: 0 auto 80px auto;
  text-align: center;
}
section.system-timeline .section-header p {
  margin-top: 20px;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  color: #000000;
}
section.system-timeline .timeline-steps {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 80px;
  /* Vertical line */
}
section.system-timeline .timeline-steps .timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background: #9fc28b;
}
section.system-timeline .timeline-steps .timeline-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  /* Ball */
}
section.system-timeline .timeline-steps .timeline-step .timeline-dot {
  position: absolute;
  left: 25px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cfcfcf;
  z-index: 2;
  margin-top: 20px;
}
section.system-timeline .timeline-steps .timeline-step .step-card {
  padding: 28px;
  border: 1px solid #9fc28b;
  border-radius: 8px;
  background: #fff;
  width: 100%;
}
section.system-timeline .timeline-steps .timeline-step.active .timeline-dot {
  background: #4f8f2f;
}
section.system-timeline .timeline-steps .timeline-step.active .step-card {
  border-color: #4f8f2f;
}
section.system-timeline .step-label {
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

section.info_grid {
  padding: 70px 0;
}
@media screen and (max-width: 500px) {
  section.info_grid {
    padding: 40px 0;
  }
}
section.info_grid .content-wrapper {
  text-align: center;
}
section.info_grid .content-wrapper p.sub-heading {
  max-width: 700px;
  margin: 20px auto 30px auto;
  font-size: 22px;
  line-height: 30px;
}
section.info_grid .content-wrapper .info-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
section.info_grid .content-wrapper .info-grid-container .info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 30px 30px 30px;
  background: #f9f9f9;
  border-radius: 12px;
  position: relative;
  margin-top: 60px;
}
section.info_grid .content-wrapper .info-grid-container .info-wrapper .info-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #1F5C29;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
section.info_grid .content-wrapper .info-grid-container .info-wrapper .info-icon img {
  max-width: 100%;
}
section.info_grid .content-wrapper .info-grid-container .info-wrapper p {
  margin: 0;
  max-width: none;
  font-size: 18px;
}

@media screen and (max-width: 1024px) {
  section.info_grid .content-wrapper p.sub-heading {
    margin-bottom: 40px;
  }
  section.info_grid .content-wrapper .info-grid-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  section.info_grid .content-wrapper .info-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 1440px) {
  section.landing_hero .content-wrapper .image-wrapper img {
    max-width: 650px;
  }
}
@media screen and (max-width: 1024px) {
  section.landing_hero .content-wrapper .image-wrapper img {
    max-width: 500px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  h1 {
    font-size: 40px;
  }
}
section.brands_carousel {
  padding: 50px 0;
  background: linear-gradient(91.89deg, #CBF3D2 -8.08%, #F3FFD9 111.72%);
}
section.brands_carousel .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.brands_carousel .content-wrapper p {
  max-width: 800px;
  margin-top: 20px;
  text-align: center;
  font-size: 22px;
  padding: 0 20px;
  line-height: 30px;
}
section.brands_carousel .content-wrapper .brands-swiper {
  width: 100%;
  padding: 0 10px;
  margin-top: 30px;
  overflow-x: hidden;
}
section.brands_carousel .content-wrapper .brands-swiper .swiper-slide {
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1294117647);
  padding: 10px;
  height: auto;
}
section.brands_carousel .content-wrapper .brands-swiper .swiper-slide .image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
section.brands_carousel .content-wrapper .brands-swiper .swiper-slide .image-wrapper img {
  width: auto;
  max-width: 100%;
  max-height: 120px;
}

section.how_it_works {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.how_it_works {
    padding: 40px 0;
  }
}
section.how_it_works#aboutPeople {
  scroll-margin-top: 150px;
}
section.how_it_works .content-wrapper {
  text-align: center;
}
section.how_it_works .content-wrapper h2 {
  margin-bottom: 15px;
}
section.how_it_works .content-wrapper .sub-heading {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 22px;
  line-height: 30px;
}
section.how_it_works .content-wrapper .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}
section.how_it_works .content-wrapper .steps-grid .step-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.how_it_works .content-wrapper .steps-grid .step-card .image-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
section.how_it_works .content-wrapper .steps-grid .step-card .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
section.how_it_works .content-wrapper .steps-grid .step-card .step-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #5A8E27;
}
section.how_it_works .content-wrapper .steps-grid .step-card h3 {
  margin-bottom: 10px;
  color: #000;
  font-weight: 700;
}
section.how_it_works .content-wrapper .steps-grid .step-card .content {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  text-align: start;
  width: 100%;
}
section.how_it_works .content-wrapper .steps-grid .step-card .content hr {
  width: 100%;
  background: #CACACA;
  height: 1px;
  border: 1px solid #CACACA;
  margin: 10px 0;
}
section.how_it_works .content-wrapper .steps-grid .step-card .content p img {
  max-width: 20px;
  margin-right: 5px;
}
section.how_it_works .content-wrapper .steps-grid .step-card .content .services_bullet p {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
}
section.how_it_works .content-wrapper .steps-grid .step-card a {
  margin-top: 15px;
}
section.how_it_works .content-wrapper .button-primary {
  padding: 12px 34px;
  text-decoration: none;
}
section.how_it_works.custom-display .content-wrapper .steps-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
section.how_it_works.custom-display .content-wrapper .steps-grid .step-card {
  width: 30%;
}
section.how_it_works.custom-display-2 .content-wrapper .steps-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 900px) {
  section.how_it_works.custom-display-2 .content-wrapper .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  section.how_it_works.custom-display-2 .content-wrapper .steps-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.how_it_works.custom-display-2 .content-wrapper .steps-grid .step-card {
  width: 100%;
}

@media screen and (max-width: 900px) {
  section.how_it_works .content-wrapper .steps-grid {
    grid-template-columns: 1fr;
  }
  section.how_it_works.custom-display .content-wrapper .steps-grid .step-card {
    width: 45%;
  }
}
@media screen and (max-width: 500px) {
  section.how_it_works.custom-display .content-wrapper .steps-grid .step-card {
    width: 100%;
  }
}
section.packages_preview {
  background: #F9F9F9;
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.packages_preview {
    padding: 40px 0;
  }
}
section.packages_preview .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  section.packages_preview .content-wrapper {
    align-items: flex-start;
  }
}
section.packages_preview .content-wrapper p.section-subtitle {
  color: #000000;
  max-width: 800px;
  text-align: center;
}
section.packages_preview .content-wrapper .packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
}
@media screen and (max-width: 900px) {
  section.packages_preview .content-wrapper .packages-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
section.packages_preview .content-wrapper .packages-grid .package-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #1F5C29;
}
section.packages_preview .content-wrapper .packages-grid .package-card span.package-price {
  font-size: 20px;
  color: #5A8E27;
  font-weight: 700;
  margin: 10px 0 15px 0;
}
section.packages_preview .content-wrapper .packages-grid .package-card p.package-desc {
  font-size: 20px;
  color: #000000;
  margin-bottom: 0.75rem;
}
section.packages_preview .content-wrapper .packages-grid .package-card ul {
  font-size: 18px;
  color: #000000;
  list-style: none;
  height: 100%;
}
section.packages_preview .content-wrapper .packages-grid .package-card ul li {
  padding-left: 20px;
  position: relative;
  margin: 10px 0;
}
section.packages_preview .content-wrapper .packages-grid .package-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  background-size: cover;
  width: 13px;
  height: 13px;
  background-image: url(../images/green-diamond.png);
}
section.packages_preview .content-wrapper .packages-grid .package-card .package-cta {
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  section.packages_preview .content-wrapper .packages-grid .package-card .package-cta button {
    width: 100%;
  }
}

section.testimonials {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.testimonials {
    padding: 40px 0;
  }
}
section.testimonials .content-wrapper {
  text-align: center;
}
section.testimonials .content-wrapper h2 {
  margin-bottom: 15px;
}
section.testimonials .content-wrapper p {
  max-width: 700px;
  margin: 0 auto 60px auto;
  font-size: 22px;
  line-height: 30px;
}
section.testimonials .content-wrapper .testimonial-swiper {
  width: 100%;
  position: relative;
  padding: 0 30px;
  overflow: hidden;
}
section.testimonials .content-wrapper .testimonial-swiper .background-image {
  position: absolute;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 100%;
}
section.testimonials .content-wrapper .testimonial-swiper .background-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide {
  height: auto;
  padding: 10px;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card {
  background: #ffffff;
  border: 1px solid #1F5C29;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card .quote-img {
  width: 20px;
  height: 20px;
  margin-bottom: 20px;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card .quote-img img {
  max-width: 100%;
  width: 100%;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card .testimonial-text {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  color: #000;
}
@media screen and (max-width: 768px) {
  section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card .testimonial-text {
    font-size: 18px;
  }
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card .testimonial-author strong {
  display: block;
  font-size: 18px;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card .testimonial-author span {
  font-size: 14px;
  color: #1F5C29;
  font-weight: 600;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card.video-testimonial {
  padding: 0;
  position: relative;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card.video-testimonial .video-wrapper {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card.video-testimonial .video-wrapper img.video-thumbnail {
  max-width: 100%;
  width: 100%;
  max-height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  height: 100%;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card.video-testimonial .video-wrapper button {
  width: 40px;
  height: 40px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  border-radius: 100%;
  padding: 10px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card.video-testimonial .video-wrapper button img {
  width: 100%;
  z-index: 2;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-slide .testimonial-card.video-testimonial .video-wrapper button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  animation: pulse 2s infinite;
  z-index: 1;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-button-prev,
section.testimonials .content-wrapper .testimonial-swiper .swiper-button-next {
  color: #000;
  width: 20px;
  height: 30px;
}
section.testimonials .content-wrapper .testimonial-swiper .swiper-button-prev svg,
section.testimonials .content-wrapper .testimonial-swiper .swiper-button-next svg {
  display: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
section.subscription_promo {
  background: #1F5C29;
  border-radius: 20px;
  margin: 50px auto -120px;
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 50px 20px;
  color: #FFFFFF;
}
@media screen and (max-width: 900px) {
  section.subscription_promo {
    max-width: 90%;
  }
}
section.subscription_promo .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
section.subscription_promo .content-wrapper h2 {
  margin-bottom: 20px;
}
section.subscription_promo .content-wrapper p {
  margin-bottom: 40px;
  font-size: 18px;
}
section.subscription_promo .content-wrapper .cta-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 500px) {
  section.subscription_promo .content-wrapper .cta-wrapper {
    flex-direction: column;
  }
}
section.subscription_promo .content-wrapper .cta-wrapper .button-primary {
  border: 1px solid #FFFFFF;
  background-color: #FFFFFF;
  color: #1F5C29;
  padding: 12px 34px;
}
section.subscription_promo .content-wrapper .cta-wrapper .button-primary:hover {
  background-color: #1F5C29;
  color: #FFFFFF;
}
section.subscription_promo .content-wrapper .cta-wrapper .button-secondary {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  background-color: #1F5C29;
}
section.subscription_promo .content-wrapper .cta-wrapper .button-secondary:hover {
  background-color: #FFFFFF;
  color: #1F5C29;
}

.floating-contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-contact-buttons .contact-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  background: #25d366;
}
.floating-contact-buttons .contact-btn img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.floating-contact-buttons .contact-btn:hover {
  transform: scale(1.08);
}
.floating-contact-buttons .contact-btn.call-btn {
  background: #00c853;
}
.floating-contact-buttons .contact-btn.whatsapp-btn {
  background: #25d366;
}
@media (max-width: 768px) {
  .floating-contact-buttons .floating-contact-buttons {
    bottom: 16px;
    right: 16px;
  }
  .floating-contact-buttons .floating-contact-buttons .contact-btn {
    width: 52px;
    height: 52px;
  }
}

footer.site-footer {
  padding: 200px 0 20px 0;
  background: #F9F9F9;
  position: relative;
  z-index: 1;
}
footer.site-footer .content-wrapper {
  display: flex;
  flex-direction: column;
}
footer.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
footer.site-footer .footer-grid .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer.site-footer .footer-grid .footer-brand .logo {
  max-width: 200px;
  width: 100%;
}
footer.site-footer .footer-grid .footer-brand .logo img {
  width: 100%;
  height: auto;
}
footer.site-footer .footer-grid .footer-brand .blog-banner {
  background: #e0e0e0;
  border-radius: 12px;
  text-align: center;
  max-width: 330px;
  display: flex;
}
footer.site-footer .footer-grid .footer-brand .blog-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
footer.site-footer .footer-grid .footer-brand .social-links {
  display: flex;
  gap: 12px;
}
footer.site-footer .footer-grid .footer-brand .social-links ul {
  display: flex;
  list-style-type: none;
  gap: 5px;
}
footer.site-footer .footer-grid .footer-brand .social-links ul li {
  background-color: #1F5C29;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
footer.site-footer .footer-grid .footer-brand .social-links a {
  text-decoration: none;
  background-color: #1F5C29;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
footer.site-footer .footer-grid .footer-brand .social-links a[href*=facebook] {
  background-image: url(https://krishipathinnovate.com/wp-content/uploads/2025/12/facebook.png);
}
footer.site-footer .footer-grid .footer-brand .social-links a[href*=instagram] {
  background-image: url(https://krishipathinnovate.com/wp-content/uploads/2025/12/instagram.png);
}
footer.site-footer .footer-grid .footer-brand .social-links a[href*=x] {
  background-image: url(https://krishipathinnovate.com/wp-content/uploads/2025/12/x-logo.png);
}
footer.site-footer .footer-grid .footer-brand .social-links a[href*=linkedin] {
  background-image: url(https://krishipathinnovate.com/wp-content/uploads/2025/12/linkedin.png);
}
footer.site-footer .footer-grid .footer-brand .social-links a[href*=youtube] {
  background-image: url(https://krishipathinnovate.com/wp-content/uploads/2025/12/youtube-icon.png);
}
footer.site-footer .footer-grid .footer-column h4 {
  color: #1E1E1E;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 15px;
}
footer.site-footer .footer-grid .footer-column ul {
  list-style: none;
}
footer.site-footer .footer-grid .footer-column ul li {
  margin-bottom: 10px;
}
footer.site-footer .footer-grid .footer-column ul li a {
  text-decoration: none;
  color: #1E1E1E;
  font-weight: 400;
  font-size: 18px;
}
footer.site-footer .footer-grid .footer-column .contact-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
footer.site-footer .footer-grid .footer-column .contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}
footer.site-footer .footer-grid .footer-column .contact-list li.icon-phone::before {
  background-image: url("https://krishipathinnovate.com/wp-content/uploads/2025/12/phone-icon.png");
}
footer.site-footer .footer-grid .footer-column .contact-list li.icon-email::before {
  background-image: url("https://krishipathinnovate.com/wp-content/uploads/2025/12/mail-icon.png");
}
footer.site-footer .footer-grid .footer-column .contact-list li.icon-location::before {
  background-image: url("https://krishipathinnovate.com/wp-content/uploads/2025/12/location-icon.png");
}
footer.site-footer .footer-contact {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  footer.site-footer .footer-contact {
    gap: 20px;
  }
}
footer.site-footer .footer-contact .contact-item {
  position: relative;
  padding-left: 20px;
}
footer.site-footer .footer-contact .contact-item a {
  text-decoration: none;
  color: #1E1E1E;
  font-weight: 400;
  font-size: 18px;
}
footer.site-footer .footer-contact .contact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}
footer.site-footer .footer-contact .contact-item.icon-phone::before {
  background-image: url("https://krishipathinnovate.com/wp-content/uploads/2025/12/phone-icon.png");
}
footer.site-footer .footer-contact .contact-item.icon-email::before {
  background-image: url("https://krishipathinnovate.com/wp-content/uploads/2025/12/mail-icon.png");
}
footer.site-footer .footer-contact .contact-item.icon-location::before {
  background-image: url("https://krishipathinnovate.com/wp-content/uploads/2025/12/location-icon.png");
}
footer.site-footer .footer-bottom {
  text-align: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

@media screen and (max-width: 900px) {
  footer.site-footer .footer-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
  footer.site-footer .footer-brand {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

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

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.video-modal-content {
  position: relative;
  max-width: 800px;
  width: 90%;
  margin: 10vh auto;
  background: #000;
}

.video-modal-body video {
  width: 100%;
  height: auto;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 30px;
  cursor: pointer;
}

section.marquee-horizontal {
  width: 100%;
  height: 60px;
  overflow: hidden;
  background: linear-gradient(90deg, #e6fbdc 0%, #f4ffe5 100%);
  display: flex;
  margin-top: 20px;
  align-items: center;
}
section.marquee-horizontal .track-horizontal {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee-horizontal 18s linear infinite;
}
@media screen and (max-width: 500px) {
  section.marquee-horizontal .track-horizontal {
    animation: marquee-horizontal 10s linear infinite;
  }
}
section.marquee-horizontal .marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  min-width: 33.333vw;
  justify-content: center;
  flex-shrink: 0;
}
section.marquee-horizontal .marquee-item img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
section.marquee-horizontal .marquee-item span {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

@keyframes marquee-horizontal {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Mobile */
@media (max-width: 600px) {
  section.marquee-horizontal {
    height: 50px;
  }
  section.marquee-horizontal .marquee-item {
    min-width: 50vw;
  }
  section.marquee-horizontal .marquee-item span {
    font-size: 14px;
  }
}
section.image-with-text-card {
  width: 100%;
  padding: 70px 0;
}
@media screen and (max-width: 500px) {
  section.image-with-text-card {
    padding: 40px 0;
  }
}
section.image-with-text-card .center-div {
  display: flex;
  justify-content: center;
}
section.image-with-text-card .content-wrapper {
  width: 100%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  overflow: hidden;
}
section.image-with-text-card .text-wrapper {
  width: 50%;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
section.image-with-text-card .text-wrapper h2 {
  color: #000;
}
section.image-with-text-card .text-wrapper p {
  margin: 20px 0 30px;
  font-size: 18px;
  line-height: 28px;
  color: #000;
}
section.image-with-text-card .image-wrapper {
  width: 50%;
  display: flex;
}
section.image-with-text-card .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Responsive */
@media screen and (max-width: 900px) {
  section.image-with-text-card .content-wrapper {
    flex-direction: column;
  }
  section.image-with-text-card .text-wrapper {
    width: 100%;
    padding: 40px;
  }
  section.image-with-text-card .image-wrapper {
    width: 100%;
    height: 260px;
  }
}
section.prebook-form {
  padding: 50px 0;
  padding-bottom: 0;
  text-align: center;
}
section.prebook-form .content-wrapper {
  width: 100%;
  display: flex;
}
section.prebook-form .content-wrapper .text-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
section.prebook-form .content-wrapper .text-wrapper p {
  font-size: 22px;
  line-height: 30px;
}
section.prebook-form .content-wrapper .text-wrapper .fluentform.fluentform_wrapper_3 {
  width: 100%;
}
section.prebook-form .content-wrapper .text-wrapper .fluentform.fluentform_wrapper_3 .custom-input-field {
  width: 100%;
  background-color: #F9F9F9;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 10px;
  font-size: 18px;
  color: #7D7D7D;
}
section.prebook-form .content-wrapper .text-wrapper .fluentform.fluentform_wrapper_3 .custom-button-submit {
  background-color: #1F5C29;
  color: #FFFFFF;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
  text-decoration: none;
  margin-top: 20px;
}
section.prebook-form .content-wrapper .text-wrapper .fluentform.fluentform_wrapper_3 .custom-button-submit:hover {
  transition: 0.2s all ease-in-out;
  background-color: rgb(18.1463414634, 53.8536585366, 24);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  section.prebook-form .content-wrapper .text-wrapper .fluentform.fluentform_wrapper_3 .frm-fluent-form .ff-t-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  section.prebook-form .content-wrapper .text-wrapper .fluentform.fluentform_wrapper_3 .frm-fluent-form .ff-t-container {
    grid-template-columns: 1fr;
  }
  section.prebook-form .content-wrapper .text-wrapper .fluentform.fluentform_wrapper_3 .ff-el-group {
    margin-bottom: 10px;
  }
}
section.prebook-form .fluentform {
  margin-top: 20px;
}

section.image-with-text {
  padding: 30px 0 50px 0;
  background: linear-gradient(91.89deg, #CBF3D2 0%, #F3FFD9 100%);
}
section.image-with-text .content-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}
section.image-with-text .content-wrapper .pill-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
section.image-with-text .content-wrapper .pill-wrapper .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  background: #f4f4f4;
  font-size: 14px;
  font-weight: 500;
}
section.image-with-text .content-wrapper .pill-wrapper .pill img {
  width: 14px;
  height: 14px;
}
section.image-with-text .content-wrapper .text-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  section.image-with-text .content-wrapper .text-wrapper {
    width: 100%;
  }
}
section.image-with-text .content-wrapper .text-wrapper h1 {
  color: #000000;
  line-height: 1.3;
}
@media screen and (max-width: 500px) {
  section.image-with-text .content-wrapper .text-wrapper h1 {
    font-size: 32px;
  }
}
section.image-with-text .content-wrapper .text-wrapper .description {
  display: flex;
  gap: 20px;
  flex-direction: column;
  font-size: 22px;
  line-height: 30px;
  color: #000;
  font-weight: 400;
}
section.image-with-text .content-wrapper .text-wrapper .description .gbb {
  font-size: 20px;
}
section.image-with-text .content-wrapper .text-wrapper .description .gbb img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
section.image-with-text .content-wrapper .text-wrapper .cta-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
section.image-with-text .content-wrapper .image-wrapper {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
section.image-with-text .content-wrapper .image-wrapper img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
section.image-with-text .content-wrapper .image-wrapper.responsive {
  display: none;
}
@media screen and (max-width: 900px) {
  section.image-with-text .content-wrapper .image-wrapper {
    display: none;
  }
  section.image-with-text .content-wrapper .image-wrapper img {
    display: none;
  }
  section.image-with-text .content-wrapper .image-wrapper.responsive {
    display: block;
    width: 100%;
  }
  section.image-with-text .content-wrapper .image-wrapper.responsive img {
    display: block;
    position: static;
    border-radius: 12px;
  }
}
section.image-with-text .content-wrapper.reverse .content-wrapper {
  direction: rtl;
}
section.image-with-text .content-wrapper.reverse .text-wrapper,
section.image-with-text .content-wrapper.reverse .image-wrapper {
  direction: ltr;
}
@media (max-width: 900px) {
  section.image-with-text .content-wrapper .content-wrapper {
    grid-template-columns: 1fr;
  }
  section.image-with-text .content-wrapper.reverse .content-wrapper {
    direction: ltr;
  }
}

section.icon-list-grid-image {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.icon-list-grid-image {
    padding: 30px 0;
  }
}
section.icon-list-grid-image h2 {
  text-align: center;
  margin-bottom: 20px;
}
section.icon-list-grid-image .subtitle {
  text-align: center;
  font-size: 22px;
  line-height: 30px;
  margin: 0 auto 60px;
}
section.icon-list-grid-image .content-wrapper {
  display: flex;
  gap: 60px;
  align-items: stretch;
}
section.icon-list-grid-image .content-wrapper .image-wrapper {
  width: 50%;
  display: flex;
}
section.icon-list-grid-image .content-wrapper .image-wrapper img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
section.icon-list-grid-image .content-wrapper .text-wrapper {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
section.icon-list-grid-image .content-wrapper .text-wrapper .card-wrapper {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  min-width: 260px;
  max-width: 45%;
}
section.icon-list-grid-image .content-wrapper .text-wrapper .card-wrapper .icon-wrapper {
  width: 100%;
  border-radius: 50%;
  background: #1f6b2f;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90px;
  padding: 10px;
  aspect-ratio: 1;
}
section.icon-list-grid-image .content-wrapper .text-wrapper .card-wrapper .icon-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 85%;
}
section.icon-list-grid-image .content-wrapper .text-wrapper .card-wrapper span {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 900px) {
  section.icon-list-grid-image .subtitle {
    margin-bottom: 30px;
  }
  section.icon-list-grid-image .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  section.icon-list-grid-image .content-wrapper .image-wrapper,
  section.icon-list-grid-image .content-wrapper .text-wrapper {
    width: 100%;
  }
}
@media (max-width: 600px) {
  section.icon-list-grid-image .content-wrapper .text-wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }
  section.icon-list-grid-image .content-wrapper .text-wrapper .card-wrapper {
    max-width: 100%;
  }
}
section.icon-list-grid-image.soil-testing-page .content-wrapper .text-wrapper .card-wrapper span {
  font-weight: 500;
}

section.farmer-focus {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.farmer-focus {
    padding: 30px 0;
  }
}
section.farmer-focus .content-wrapper {
  display: flex;
  gap: 60px;
  align-items: stretch;
}
section.farmer-focus .text-wrapper {
  width: 50%;
}
section.farmer-focus .text-wrapper h2 {
  margin-bottom: 16px;
}
section.farmer-focus .text-wrapper .subtitle {
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 30px;
}
section.farmer-focus .text-wrapper .image-wrapper.responsive {
  display: none;
  margin: 30px 0;
}
section.farmer-focus .text-wrapper .image-wrapper.responsive img {
  width: 100%;
  border-radius: 16px;
}
section.farmer-focus .text-wrapper .quote-wrapper {
  margin: 40px 0;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  background: linear-gradient(91.89deg, #CBF3D2 -8.08%, #F3FFD9 111.72%);
}
section.farmer-focus .text-wrapper .quote-wrapper .quote-icon {
  max-width: 80px;
  position: absolute;
  top: 0;
  transform: translate(0%, -50%) rotate(180deg);
  left: 30px;
}
section.farmer-focus .text-wrapper .quote-wrapper .quote-icon img {
  width: 100%;
}
section.farmer-focus .text-wrapper .quote-wrapper p {
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-align: start;
}
section.farmer-focus .text-wrapper .points-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
section.farmer-focus .text-wrapper .points-wrapper span {
  background: #f1f1f1;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #B3CCB7;
}
section.farmer-focus .image-wrapper.desktop {
  width: 50%;
  display: flex;
}
section.farmer-focus .image-wrapper.desktop img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
@media (max-width: 900px) {
  section.farmer-focus .content-wrapper {
    flex-direction: column;
  }
  section.farmer-focus .text-wrapper,
  section.farmer-focus .image-wrapper.desktop {
    width: 100%;
  }
  section.farmer-focus .image-wrapper.desktop {
    display: none;
  }
  section.farmer-focus .text-wrapper .image-wrapper.responsive {
    display: block;
  }
}
@media (max-width: 500px) {
  section.farmer-focus .quote-wrapper p {
    font-size: 20px;
  }
}

section.execution-flow {
  text-align: center;
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.execution-flow {
    padding: 30px 0;
  }
}
section.execution-flow h2 {
  margin-bottom: 16px;
}
section.execution-flow .subtitle {
  margin: 0 auto 60px;
  font-size: 22px;
  line-height: 30px;
}
section.execution-flow .flow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  section.execution-flow .flow-wrapper {
    flex-direction: column;
  }
}
section.execution-flow .flow-wrapper .flow-item {
  background: #dcf8d9;
  border-radius: 12px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  section.execution-flow .flow-wrapper .flow-item {
    width: 80%;
  }
}
section.execution-flow .flow-wrapper .flow-item .flow-icon {
  width: 50px;
  height: 50px;
}
section.execution-flow .flow-wrapper .flow-item .flow-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.execution-flow .flow-wrapper .flow-item span {
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  color: #000;
  font-style: italic;
  font-size: 22px;
  line-height: 30px;
}
section.execution-flow .flow-wrapper .flow-arrow {
  display: flex;
  align-items: center;
}
section.execution-flow .flow-wrapper .flow-arrow img {
  width: 30px;
}
@media (max-width: 500px) {
  section.execution-flow .flow-wrapper .flow-arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 900px) {
  section.execution-flow .flow-wrapper .flow-wrapper {
    flex-direction: column;
  }
}

section.csr-framework {
  padding: 50px 0;
}
section.csr-framework#csrFramework {
  padding-bottom: 50px;
  scroll-margin-top: 150px;
}
section.csr-framework#aboutMission {
  scroll-margin-top: 150px;
}
@media screen and (max-width: 500px) {
  section.csr-framework {
    padding: 30px 0;
  }
}
section.csr-framework .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
section.csr-framework .content-wrapper .subtitle {
  font-size: 22px;
  line-height: 30px;
  margin: 0 auto;
}
section.csr-framework .content-wrapper .section-comment {
  font-size: 22px;
  line-height: 30px;
  margin: 0 auto;
  color: #000;
  font-family: "DM Sans", sans-serif;
}
section.csr-framework .content-wrapper .cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  width: 100%;
  margin: 20px 0;
}
section.csr-framework .content-wrapper .cards-container .card-wrapper {
  background: #F9F9F9;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.2509803922);
  display: flex;
  flex-direction: column;
  text-align: start;
  align-items: flex-start;
  gap: 15px;
}
section.csr-framework .content-wrapper .cards-container .card-wrapper .icon-wrapper {
  width: 48px;
  height: 48px;
  background: #1f6b2f;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
section.csr-framework .content-wrapper .cards-container .card-wrapper .icon-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
section.csr-framework .content-wrapper .cards-container .card-wrapper h3 {
  font-weight: 700;
}
section.csr-framework .content-wrapper .cards-container .card-wrapper .card-text {
  font-size: 18px;
  font-weight: 400;
}
section.csr-framework .content-wrapper .cards-container .card-wrapper .card-text p img {
  max-width: 20px;
  margin-right: 5px;
}

section.dropdown-with-image {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.dropdown-with-image {
    padding: 40px 0;
  }
}
section.dropdown-with-image h2 {
  text-align: center;
  margin-bottom: 60px;
}
section.dropdown-with-image .content-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}
section.dropdown-with-image .content-wrapper .image-wrapper {
  width: 50%;
}
section.dropdown-with-image .content-wrapper .image-wrapper img {
  width: 100%;
  border-radius: 16px;
  display: block;
  transition: opacity 0.3s ease;
}
section.dropdown-with-image .content-wrapper .text-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.dropdown-with-image .content-wrapper .text-wrapper .dropdown-wrapper {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.dropdown-with-image .content-wrapper .text-wrapper .dropdown-wrapper .dropdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
section.dropdown-with-image .content-wrapper .text-wrapper .dropdown-wrapper .dropdown-header h3 {
  margin: 0;
  font-weight: 700;
}
section.dropdown-with-image .content-wrapper .text-wrapper .dropdown-wrapper .icon-wrapper {
  width: 50px;
  height: 50px;
  background: #1f6b2f;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 10px;
  justify-content: center;
}
section.dropdown-with-image .content-wrapper .text-wrapper .dropdown-wrapper .icon-wrapper img {
  width: 100%;
  height: auto;
}
section.dropdown-with-image .content-wrapper .text-wrapper .dropdown-wrapper .dropdown-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 18px;
  font-weight: 400;
  padding-left: 60px;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
section.dropdown-with-image .content-wrapper .text-wrapper .dropdown-wrapper .divider {
  position: relative;
  height: 5px;
  background: #e0e0e0;
  overflow: hidden;
  margin-left: 60px;
  transition: opacity 0.3s ease;
  opacity: 0.4;
}
section.dropdown-with-image .content-wrapper .text-wrapper .dropdown-wrapper .divider .green-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #1f6b2f;
  transform: scaleX(0);
  animation: progressBar 5s linear forwards;
  animation-play-state: paused;
  transform-origin: left;
}
section.dropdown-with-image .content-wrapper .text-wrapper .dropdown-wrapper.active .dropdown-content {
  max-height: 300px;
  opacity: 1;
}
section.dropdown-with-image .content-wrapper .text-wrapper .dropdown-wrapper.active .divider {
  opacity: 1;
}
section.dropdown-with-image .content-wrapper .text-wrapper .dropdown-wrapper.active .divider .green-line {
  animation-play-state: running;
}
section.dropdown-with-image .content-wrapper .text-wrapper .dropdown-wrapper.is-paused .green-line {
  animation-play-state: paused !important;
}
@media (max-width: 900px) {
  section.dropdown-with-image h2 {
    margin-bottom: 30px;
  }
  section.dropdown-with-image .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  section.dropdown-with-image .content-wrapper .image-wrapper,
  section.dropdown-with-image .content-wrapper .text-wrapper {
    width: 100%;
  }
}

@keyframes progressBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
section.impact-snapshot {
  text-align: center;
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.impact-snapshot {
    padding: 40px 0;
  }
}
section.impact-snapshot .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.impact-snapshot .content-wrapper .subtitle {
  font-size: 22px;
  line-height: 30px;
}
section.impact-snapshot .content-wrapper .cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
section.impact-snapshot .content-wrapper .cards-container .card-wrapper {
  background: #1f5f2a;
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
}
section.impact-snapshot .content-wrapper .cards-container .card-wrapper .heading-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
section.impact-snapshot .content-wrapper .cards-container .card-wrapper .heading-wrapper .icon-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.impact-snapshot .content-wrapper .cards-container .card-wrapper .heading-wrapper .icon-wrapper img {
  width: 100%;
}
section.impact-snapshot .content-wrapper .cards-container .card-wrapper .heading-wrapper .heading-text {
  font-size: 45px;
  color: #ffffff;
  font-weight: 700;
}
@media screen and (max-width: 500px) {
  section.impact-snapshot .content-wrapper .cards-container .card-wrapper .heading-wrapper .heading-text {
    font-size: 35px;
  }
}
section.impact-snapshot .content-wrapper .cards-container .card-wrapper .card-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
}
section.impact-snapshot.impact-snapshot--extended .content-wrapper .cards-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
section.impact-snapshot.impact-snapshot--extended .content-wrapper .cards-container .card-wrapper {
  min-width: 300px;
  width: 100%;
  max-width: 30%;
}

section.faq-section {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.faq-section {
    padding: 40px 0;
  }
}
section.faq-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.faq-section .content-wrapper h2 {
  text-align: center;
}
section.faq-section .content-wrapper .subtitle {
  text-align: center;
  font-size: 22px;
  line-height: 30px;
}
section.faq-section .content-wrapper .faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
}
section.faq-section .content-wrapper .faq-container .faq-wrapper {
  background: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
section.faq-section .content-wrapper .faq-container .faq-wrapper.active .faq-question {
  background: linear-gradient(91.89deg, #CBF3D2 -8.08%, #F3FFD9 111.72%);
  border-radius: 10px;
  transition: all 0.3s ease;
}
section.faq-section .content-wrapper .faq-container .faq-wrapper .faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  font-weight: 700;
  color: #000;
}
section.faq-section .content-wrapper .faq-container .faq-wrapper .faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
  padding: 7px;
}
section.faq-section .content-wrapper .faq-container .faq-wrapper .faq-icon img {
  width: 100%;
  height: auto;
  display: block;
}
section.faq-section .content-wrapper .faq-container .faq-wrapper .faq-answer {
  padding: 0 24px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.2s ease;
  font-size: 18px;
  font-weight: 400;
}
section.faq-section .content-wrapper .faq-container .faq-wrapper.active .faq-answer {
  transition: all 0.3s ease;
  max-height: 500px;
  opacity: 1;
  padding: 0 24px 20px;
  margin-top: 10px;
}
section.faq-section .content-wrapper .faq-container .faq-wrapper.active .faq-icon {
  transform: rotate(270deg);
}

section.csr-form-section, section.form-with-content {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.csr-form-section, section.form-with-content {
    padding: 40px 0;
  }
}
section.csr-form-section .center-div, section.form-with-content .center-div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
section.csr-form-section .center-div h1, section.form-with-content .center-div h1 {
  text-align: center;
  margin-bottom: 16px;
}
section.csr-form-section .center-div .subtitle, section.form-with-content .center-div .subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  color: #555;
}
section.csr-form-section .center-div .content-wrapper, section.form-with-content .center-div .content-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper, section.form-with-content .center-div .content-wrapper .form-wrapper {
  width: 100%;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap {
  width: 100%;
  /* Section headings inside form */
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff-el-section-break, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff-el-section-break {
  background: linear-gradient(91.89deg, #E7F4E8 -8.08%, #F3F9EE 111.72%);
  padding: 10px 16px;
  border-radius: 8px;
  margin: 24px 0 16px;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff-el-section-break h3,
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff-el-section-break h4, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff-el-section-break h3,
section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff-el-section-break h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #2F5D3A;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff_submit_btn_wrapper, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff_submit_btn_wrapper {
  display: flex;
  justify-content: center;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #E2E6DA;
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  font-size: 16px;
  color: #2C2C2C;
  padding: 12px 14px;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field::-moz-placeholder, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field::-moz-placeholder {
  color: #9A9A9A;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field::placeholder, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field::placeholder {
  color: #9A9A9A;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field:focus, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field:focus {
  outline: none;
  border-color: #1F5C29;
  box-shadow: 0 0 0 2px rgba(47, 93, 58, 0.1);
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field.radio, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field.radio {
  outline: none;
  border: none;
  display: flex;
  padding-left: 0;
  justify-content: space-between;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field.radio::before, section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field.radio::after, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field.radio::before, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field.radio::after {
  content: none;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field.radio .ff-el-input--content, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field.radio .ff-el-input--content {
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field.radio .ff-el-input--content .text-danger, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-input-field.radio .ff-el-input--content .text-danger {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff-el-form-check-label, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff-el-form-check-label {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 10px 12px;
  padding-left: 0;
  font-size: 16px;
  line-height: 30px;
  color: #000;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap label, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap label {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 18px;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff_submit_btn_wrapper::before, section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff_submit_btn_wrapper::after, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff_submit_btn_wrapper::before, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff_submit_btn_wrapper::after {
  content: none;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-button-submit, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-button-submit {
  background-color: #1F5C29;
  color: #FFFFFF;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
  margin-top: 20px;
  white-space: wrap;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-button-submit:hover, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-button-submit:hover {
  opacity: 1;
  background-color: rgb(18.1463414634, 53.8536585366, 24);
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-tick-container, section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .final_radio, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-tick-container, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .final_radio {
  border: none;
  box-sizing: unset;
  padding: 0;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-tick-container .ff-el-input--content, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .custom-tick-container .ff-el-input--content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .frm-fluent-form .ff-t-container, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .frm-fluent-form .ff-t-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .frm-fluent-form .ff-t-container, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .frm-fluent-form .ff-t-container {
    grid-template-columns: 1fr;
  }
  section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff-el-group, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .ff-el-group {
    margin-bottom: 12px;
  }
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .final_radio .ff-el-form-check-label, section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap .final_radio .ff-el-form-check-label {
  font-weight: 600;
  font-size: 18px;
}
section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap input[type=checkbox], section.csr-form-section .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap input[type=radio], section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap input[type=checkbox], section.form-with-content .center-div .content-wrapper .form-wrapper .fluentform.ffs_default_wrap input[type=radio] {
  accent-color: #1F5C29;
}
section.csr-form-section .center-div .content-wrapper .show-content, section.form-with-content .center-div .content-wrapper .show-content {
  width: 50%;
  display: none;
}
section.csr-form-section .center-div .content-wrapper .show-content p, section.form-with-content .center-div .content-wrapper .show-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
@media (max-width: 900px) {
  section.csr-form-section .center-div .content-wrapper, section.form-with-content .center-div .content-wrapper {
    flex-direction: column;
  }
  section.csr-form-section .center-div .content-wrapper .form-wrapper,
  section.csr-form-section .center-div .content-wrapper .show-content, section.form-with-content .center-div .content-wrapper .form-wrapper,
  section.form-with-content .center-div .content-wrapper .show-content {
    width: 100%;
  }
}

section.two-box-upgrade {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.two-box-upgrade {
    padding: 40px 0;
  }
}
section.two-box-upgrade .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
section.two-box-upgrade .content-wrapper h2 {
  text-align: center;
}
section.two-box-upgrade .content-wrapper .subheading {
  text-align: center;
  font-size: 22px;
  line-height: 30px;
}
section.two-box-upgrade .content-wrapper .box-arrow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.two-box-upgrade .content-wrapper .box-arrow img {
  max-width: 160px;
}
section.two-box-upgrade .content-wrapper .two-boxes-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}
section.two-box-upgrade .content-wrapper .two-boxes-container .box-wrapper {
  border-top: 2px solid #1F5C29;
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
section.two-box-upgrade .content-wrapper .two-boxes-container .box-wrapper .icon-wrapper {
  width: 40px;
}
section.two-box-upgrade .content-wrapper .two-boxes-container .box-wrapper .icon-wrapper img {
  width: 100%;
  display: block;
}
section.two-box-upgrade .content-wrapper .two-boxes-container .box-wrapper h3 {
  font-weight: 700;
}
section.two-box-upgrade .content-wrapper .two-boxes-container .box-wrapper .points-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  width: 100%;
}
section.two-box-upgrade .content-wrapper .two-boxes-container .box-wrapper .points-wrapper p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f7f7f7;
  font-size: 18px;
  line-height: 26px;
  position: relative;
  padding-left: 30px;
}
section.two-box-upgrade .content-wrapper .two-boxes-container .box-wrapper .points-wrapper p strong {
  font-weight: 600;
}
section.two-box-upgrade .content-wrapper .two-boxes-container .box-wrapper .points-wrapper p::before {
  content: "";
  display: flex;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 10px;
  top: 20px;
  background-size: cover;
}
section.two-box-upgrade .content-wrapper .two-boxes-container .box-wrapper:last-child .points-wrapper p {
  background: linear-gradient(91.89deg, #CBF3D2 -8.08%, #F3FFD9 111.72%);
}
section.two-box-upgrade .content-wrapper .two-boxes-container .box-wrapper:last-child .points-wrapper p::before {
  background-image: url("https://krishipathinnovate.com/wp-content/uploads/2026/01/green-tick.png");
}
section.two-box-upgrade .content-wrapper .two-boxes-container .box-wrapper:first-child .points-wrapper p::before {
  background-image: url("https://krishipathinnovate.com/wp-content/uploads/2025/12/green-diamond.png");
}
@media (max-width: 900px) {
  section.two-box-upgrade .content-wrapper .two-boxes-container {
    grid-template-columns: 1fr;
  }
  section.two-box-upgrade .content-wrapper .box-arrow {
    display: none;
  }
}

section.farmer-struggles {
  text-align: center;
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.farmer-struggles {
    padding: 40px 0;
  }
}
section.farmer-struggles .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.farmer-struggles .content-wrapper .subheading {
  text-align: center;
  font-size: 22px;
  line-height: 30px;
}
section.farmer-struggles .content-wrapper .points-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  section.farmer-struggles .content-wrapper .points-container {
    grid-template-columns: 1fr;
  }
}
section.farmer-struggles .content-wrapper .points-container .point-wrapper {
  background: #fdeeee;
  border-left: 4px solid #d93025;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}
section.farmer-struggles .content-wrapper .points-container .point-wrapper .point-text {
  font-size: 20px;
  line-height: 30px;
}
section.farmer-struggles .content-wrapper .points-container .point-wrapper .point-text strong {
  font-weight: 700;
}
section.farmer-struggles .content-wrapper .conclusion {
  font-size: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-weight: 700;
  flex-wrap: wrap;
  color: #000;
  font-style: italic;
}
section.farmer-struggles .content-wrapper .conclusion strong {
  color: #000000;
  font-weight: 700;
}
section.farmer-struggles .content-wrapper .conclusion em {
  color: #EB2C1B;
}
@media screen and (max-width: 600px) {
  section.farmer-struggles .content-wrapper .conclusion {
    font-size: 20px;
  }
}
section.farmer-struggles.fertilizer-page .content-wrapper .points-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
section.farmer-struggles.fertilizer-page .content-wrapper .points-container .point-wrapper {
  min-width: 400px;
}
section.farmer-struggles.research-page .content-wrapper .points-container {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  section.farmer-struggles.research-page .content-wrapper .points-container {
    grid-template-columns: 1fr;
  }
}

section.category-display {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.category-display {
    padding: 40px 0;
  }
}
section.category-display .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
section.category-display .content-wrapper .subtitle {
  font-size: 22px;
  line-height: 30px;
  max-width: 800px;
}
section.category-display .content-wrapper .cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section.category-display .content-wrapper .cards-container .card-wrapper {
  width: 100%;
  max-width: 270px;
  background: #f9f9f9;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  section.category-display .content-wrapper .cards-container .card-wrapper {
    width: 45%;
  }
}
section.category-display .content-wrapper .cards-container .card-wrapper .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1f6b2f;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.category-display .content-wrapper .cards-container .card-wrapper .icon-wrapper img {
  width: 60%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
section.category-display .content-wrapper .cards-container .card-wrapper h3 {
  font-weight: 700;
  font-size: 18px;
}
section.category-display .content-wrapper .cards-container .card-wrapper .card-text {
  font-size: 16px;
  line-height: 22px;
}
section.category-display .content-wrapper .cards-container .card-wrapper:last-child:nth-child(4n+1) {
  grid-column: 2/span 2;
}
section.category-display .content-wrapper .section-closure {
  font-size: 18px;
  font-style: italic;
  font-family: "DM Sans", sans-serif;
  color: #000;
}
@media screen and (max-width: 500px) {
  section.category-display {
    padding: 40px 0;
  }
  section.category-display .content-wrapper .subtitle {
    font-size: 18px;
  }
}
section.category-display.contact .cards-container {
  gap: 20px;
}
section.category-display.contact .cards-container .card-wrapper {
  max-width: 240px;
}
@media screen and (max-width: 500px) {
  section.category-display.contact .cards-container .card-wrapper {
    width: 100%;
  }
}
section.category-display.contact .cards-container .card-wrapper .icon-wrapper img {
  width: 95%;
}
section.category-display.contact .cards-container .card-wrapper:last-child:nth-child(4n+1) {
  grid-column: unset;
}

section.highlight-cta-panel {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.highlight-cta-panel {
    padding: 40px 0;
  }
}
@media screen and (max-width: 500px) {
  section.highlight-cta-panel {
    padding: 40px 0;
  }
}
section.highlight-cta-panel .content-wrapper {
  max-width: 920px;
  margin: 0 auto;
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(91.89deg, #CBF3D2 -8.08%, #F3FFD9 111.72%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 500px) {
  section.highlight-cta-panel .content-wrapper {
    padding: 30px 20px;
  }
}
section.highlight-cta-panel .content-wrapper h2 {
  color: #000;
  font-weight: 700;
}
section.highlight-cta-panel .content-wrapper h2 strong {
  color: #1f6b2f;
  font-weight: 700;
}
section.highlight-cta-panel .content-wrapper .subheading {
  font-size: 18px;
  line-height: 28px;
  color: #000;
}
section.highlight-cta-panel .content-wrapper .subheading p {
  margin: 0;
}
section.highlight-cta-panel .content-wrapper .subheading strong {
  font-weight: 600;
}
section.highlight-cta-panel .content-wrapper .button-primary {
  align-self: center;
}
section.highlight-cta-panel .content-wrapper .cta-wrapper {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 20px 10px;
  flex-wrap: wrap;
  justify-content: center;
}

section.centered-quote-highlight {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.centered-quote-highlight {
    padding: 40px 0;
  }
}
section.centered-quote-highlight {
  text-align: center;
}
section.centered-quote-highlight .content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
section.centered-quote-highlight .content-wrapper .badge {
  background: #E8F8DC;
  color: #000;
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}
section.centered-quote-highlight .content-wrapper .subtitle {
  font-size: 22px;
  line-height: 30px;
  color: #000000;
}
section.centered-quote-highlight .content-wrapper .quote-wrapper {
  position: relative;
  margin-top: 20px;
  background: linear-gradient(91.89deg, #CBF3D2 -8.08%, #F3FFD9 111.72%);
  padding: 24px 32px;
  border-radius: 12px;
  max-width: 800px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
}
section.centered-quote-highlight .content-wrapper .quote-wrapper .quote-icon {
  max-width: 60px;
  position: absolute;
  top: 0%;
  transform: translate(0%, -50%) rotate(180deg);
  left: 20px;
}
section.centered-quote-highlight .content-wrapper .quote-wrapper .quote-icon img {
  width: 100%;
}
section.centered-quote-highlight .content-wrapper .quote-wrapper .quote-text {
  font-style: italic;
  font-weight: 500;
  text-align: start;
  font-size: 18px;
  line-height: 1.2;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 600px) {
  section.centered-quote-highlight .content-wrapper {
    padding: 40px 0;
  }
  section.centered-quote-highlight .content-wrapper .quote-wrapper {
    padding: 20px;
  }
}

section.highlight-content-panel {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.highlight-content-panel {
    padding: 40px 0;
  }
}
section.highlight-content-panel .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(91.89deg, #CBF3D2 -8.08%, #F3FFD9 111.72%);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
section.highlight-content-panel .content-wrapper .image-wrapper {
  max-width: 200px;
}
section.highlight-content-panel .content-wrapper .image-wrapper img {
  width: 100%;
  display: block;
}
section.highlight-content-panel .content-wrapper .subheading {
  font-size: 22px;
  line-height: 32px;
  color: #000;
  font-family: "DM Sans", sans-serif;
}
section.highlight-content-panel .content-wrapper .points-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
section.highlight-content-panel .content-wrapper .points-list .point-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  color: #000;
}
section.highlight-content-panel .content-wrapper .points-list .point-item .point-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.highlight-content-panel .content-wrapper .points-list .point-item .point-icon img {
  width: 100%;
  height: auto;
}
section.highlight-content-panel .content-wrapper .points-list .point-item .point-text {
  font-weight: 500;
}
@media (max-width: 600px) {
  section.highlight-content-panel .content-wrapper {
    padding: 30px 20px;
  }
  section.highlight-content-panel .content-wrapper .points-list .point-item {
    font-size: 15px;
  }
}

section.split-highlight-panel {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.split-highlight-panel {
    padding: 40px 0;
  }
}
section.split-highlight-panel .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
section.split-highlight-panel .content-wrapper .subtitle {
  font-size: 22px;
  line-height: 28px;
  max-width: 700px;
  margin: 0 auto;
}
section.split-highlight-panel .content-wrapper .panel-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 30px;
}
section.split-highlight-panel .content-wrapper .panel-wrapper .left-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
section.split-highlight-panel .content-wrapper .panel-wrapper .left-panel h3 {
  font-weight: 700;
}
section.split-highlight-panel .content-wrapper .panel-wrapper .left-panel .points-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
section.split-highlight-panel .content-wrapper .panel-wrapper .left-panel .points-list .point-item {
  background: linear-gradient(91.89deg, #CBF3D2 -8.08%, #F3FFD9 111.72%);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
section.split-highlight-panel .content-wrapper .panel-wrapper .left-panel .points-list .point-item .point-icon {
  width: 35px;
  height: 35px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}
section.split-highlight-panel .content-wrapper .panel-wrapper .left-panel .points-list .point-item .point-icon img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.split-highlight-panel .content-wrapper .panel-wrapper .left-panel .points-list .point-item .point-text {
  font-size: 16px;
  line-height: 24px;
}
section.split-highlight-panel .content-wrapper .panel-wrapper .right-panel {
  background: #1f5f2a;
  color: #ffffff;
  border-radius: 14px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
section.split-highlight-panel .content-wrapper .panel-wrapper .right-panel h4 {
  font-size: 60px;
  font-weight: 800;
}
@media screen and (max-width: 500px) {
  section.split-highlight-panel .content-wrapper .panel-wrapper .right-panel h4 {
    font-size: 48px;
  }
}
section.split-highlight-panel .content-wrapper .panel-wrapper .right-panel .highlight-text {
  font-size: 18px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.split-highlight-panel .content-wrapper .panel-wrapper .right-panel .highlight-text strong {
  font-size: 22px;
}
section.split-highlight-panel .content-wrapper .panel-wrapper .right-panel .highlight-text .image-text strong {
  font-size: 18px;
}
section.split-highlight-panel .content-wrapper .panel-wrapper .right-panel .highlight-text .image-text img {
  width: 20px;
  height: 20px;
}
@media (max-width: 900px) {
  section.split-highlight-panel .content-wrapper .panel-wrapper {
    grid-template-columns: 1fr;
  }
}

section.dual-panel-info {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.dual-panel-info {
    padding: 40px 0;
  }
}
section.dual-panel-info .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section.dual-panel-info .content-wrapper h2 {
  text-align: center;
}
section.dual-panel-info .content-wrapper .panels-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  section.dual-panel-info .content-wrapper .panels-wrapper {
    grid-template-columns: 1fr;
  }
}
section.dual-panel-info .content-wrapper .panels-wrapper .left-panel {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  border: 1px solid #ffffff;
  border-top: 2px solid #1F5C29;
  padding: 40px 24px;
  background: #ffffff;
}
section.dual-panel-info .content-wrapper .panels-wrapper .left-panel h3 {
  font-weight: 700;
}
section.dual-panel-info .content-wrapper .panels-wrapper .left-panel .nutrient-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .left-panel .nutrient-panel .nutrient-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .left-panel .nutrient-panel .nutrient-group .group-label {
  font-size: 16px;
  text-transform: uppercase;
  color: #7D7D7D;
  font-weight: 600;
}
section.dual-panel-info .content-wrapper .panels-wrapper .left-panel .nutrient-panel .nutrient-group .nutrient-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .left-panel .nutrient-panel .nutrient-group .nutrient-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9f9f9;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 18px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .left-panel .nutrient-panel .nutrient-group .nutrient-list li img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  border: 1px solid #ffffff;
  border-top: 2px solid #1F5C29;
  padding: 40px 24px;
  background: #ffffff;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel h3 {
  font-weight: 700;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .info-box {
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .info-box .label {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 26px;
  color: #000000;
  font-weight: 500;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .info-box p {
  font-size: 18px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .quantity-box {
  background: #FFF2D4;
  border: 1px solid #D89C0F;
  padding: 30px 20px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .quantity-box .value {
  font-size: 38px;
  font-weight: 700;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .timing-box {
  background: #e5f9e7;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .timing-box .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .timing-box .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .timing-box .check-list li div {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  color: #000000;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .timing-box .check-list li img {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .timing-box .check-list li strong {
  font-size: 18px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .precision-box {
  background: #fff2cc;
  border: 1px solid #f0c36d;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .precision-box .precision-content {
  display: flex;
  align-items: center;
  gap: 14px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .precision-box .precision-content img {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background-color: #D89C0F;
  border-radius: 50%;
  padding: 10px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .precision-box .precision-content div {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  color: #000000;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .benefits-box {
  background: #f9f9f9;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .benefits-box .diamond-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .benefits-box .diamond-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
}
section.dual-panel-info .content-wrapper .panels-wrapper .right-panel .right-panel-boxes .benefits-box .diamond-list li img {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

section.form-with-image {
  padding: 50px 0;
  position: relative;
}
@media screen and (max-width: 500px) {
  section.form-with-image {
    padding: 40px 0;
  }
}
section.form-with-image h1 {
  text-align: center;
}
section.form-with-image .background-box {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 75%;
  z-index: -1;
  background: linear-gradient(91.89deg, #CBF3D2 -8.08%, #F3FFD9 111.72%);
}
@media screen and (max-width: 900px) {
  section.form-with-image .background-box {
    height: 100%;
  }
}
section.form-with-image .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 900px) {
  section.form-with-image .content-wrapper {
    flex-direction: column;
  }
}
section.form-with-image .content-wrapper h1 {
  line-height: 1.3;
}
section.form-with-image .content-wrapper .subheading {
  font-size: 22px;
  line-height: 30px;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
section.form-with-image .content-wrapper .box-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  justify-content: space-around;
}
@media screen and (max-width: 900px) {
  section.form-with-image .content-wrapper .box-container {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
section.form-with-image .content-wrapper .box-container .left-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
@media (max-width: 900px) {
  section.form-with-image .content-wrapper .box-container .left-box {
    width: 100%;
  }
}
section.form-with-image .content-wrapper .box-container .left-box h2 {
  text-align: center;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper {
  margin-top: 20px;
  width: 100%;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fluentform {
  width: 100%;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-input {
  width: 100%;
  background: #F2F2F2;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  border: 0;
  font-family: "Kumbh Sans", sans-serif;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-choices {
  font-family: "Kumbh Sans", sans-serif;
  border-radius: 10px;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-choices .ff-el-form-control, section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-choices .choices__inner, section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-choices .choices__list--dropdown {
  width: 100%;
  background: #F2F2F2;
  border-radius: 10px;
  padding: 14px 16px;
  border: 0;
  font-size: 16px;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-choices .choices__item, section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-choices .choices__input {
  font-size: 16px;
  line-height: unset;
  padding: 0;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-choices .choices__item--selectable {
  padding: 2px 10px;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-submit {
  background-color: #1F5C29;
  color: #FFFFFF;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
  text-decoration: none;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-submit:hover {
  transition: 0.2s all ease-in-out;
  background-color: rgb(18.1463414634, 53.8536585366, 24);
  opacity: 1;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-radio {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-radio::before {
  content: none;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-radio .ff-el-input--label {
  padding: 0;
  width: unset;
  font-size: 18px;
  color: #454545;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-radio .ff-el-input--content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  font-size: 18px;
  color: #454545;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .fwi-radio .ff-el-input--content .ff-el-form-check {
  margin-bottom: 0;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .ff_submit_btn_wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper {
  /* Grid layout for Fluent Form fields */
}
section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .ff-t-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 500px) {
  section.form-with-image .content-wrapper .box-container .left-box .form-wrapper .ff-t-container {
    grid-template-columns: 1fr;
  }
}
section.form-with-image .content-wrapper .box-container .right-box {
  width: 45%;
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  section.form-with-image .content-wrapper .box-container .right-box {
    width: 100%;
  }
}
section.form-with-image .content-wrapper .box-container .right-box img {
  width: 100%;
  border-radius: 16px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 900px) {
  section.form-with-image .content-wrapper .box-container .right-box img {
    width: 100%;
    max-width: 700px;
  }
}

section.text-list-with-image {
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  section.text-list-with-image {
    padding: 40px 0;
  }
}
section.text-list-with-image .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section.text-list-with-image .content-wrapper h2 {
  text-align: center;
}
section.text-list-with-image .content-wrapper .inner-wrapper {
  display: flex;
  gap: 50px;
  align-items: stretch;
}
@media screen and (max-width: 900px) {
  section.text-list-with-image .content-wrapper .inner-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
section.text-list-with-image .content-wrapper .inner-wrapper .left-panel {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  section.text-list-with-image .content-wrapper .inner-wrapper .left-panel {
    width: 100%;
  }
}
section.text-list-with-image .content-wrapper .inner-wrapper .left-panel .impact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #e9ffe3;
  padding: 16px 20px;
  border-radius: 10px;
}
section.text-list-with-image .content-wrapper .inner-wrapper .left-panel .impact-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  background: #FFFFFF;
  padding: 5px;
  border-radius: 100%;
}
section.text-list-with-image .content-wrapper .inner-wrapper .left-panel .impact-item .text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 18px;
}
section.text-list-with-image .content-wrapper .inner-wrapper .left-panel .impact-item .text strong {
  font-weight: 700;
}
section.text-list-with-image .content-wrapper .inner-wrapper .left-panel .impact-item .text span {
  font-size: 16px;
  color: #333;
}
section.text-list-with-image .content-wrapper .inner-wrapper .right-panel {
  width: 50%;
}
@media screen and (max-width: 900px) {
  section.text-list-with-image .content-wrapper .inner-wrapper .right-panel {
    width: 100%;
  }
}
section.text-list-with-image .content-wrapper .inner-wrapper .right-panel img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

section.privacy-content {
  padding: 60px 0;
}
section.privacy-content .content-wrapper {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.privacy-content .content-wrapper h1 {
  text-align: center;
}
section.privacy-content .content-wrapper .privacy-richtext {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
  line-height: 28px;
  color: #000;
}
section.privacy-content .content-wrapper .privacy-richtext h2, section.privacy-content .content-wrapper .privacy-richtext h3, section.privacy-content .content-wrapper .privacy-richtext h4 {
  margin-top: 20px;
  font-weight: 700;
}
section.privacy-content .content-wrapper .privacy-richtext p {
  margin: 0;
}
section.privacy-content .content-wrapper .privacy-richtext strong {
  font-weight: 700;
}
section.privacy-content .content-wrapper .privacy-richtext ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.privacy-content .content-wrapper .privacy-richtext ul li {
  position: relative;
  padding-left: 28px;
}
section.privacy-content .content-wrapper .privacy-richtext ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: var(--star-icon);
  background-size: contain;
  background-repeat: no-repeat;
}
section.privacy-content .content-wrapper .privacy-richtext ol {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  section.privacy-content {
    padding: 40px 0;
  }
  section.privacy-content .content-wrapper {
    max-width: 100%;
  }
}

section.blog-banner {
  background: linear-gradient(90deg, #cfe7c9, #e7f0c8);
  padding: 80px 0;
  text-align: center;
}
section.blog-banner h1 {
  margin: 0;
}

section.blog-listing {
  padding: 50px 0;
}
section.blog-listing .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.blog-listing .content-wrapper .section-title {
  text-align: center;
}
section.blog-listing .content-wrapper .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px) {
  section.blog-listing .content-wrapper .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  section.blog-listing .content-wrapper .cards-container {
    grid-template-columns: 1fr;
  }
}
section.blog-listing .content-wrapper .cards-container .card-wrapper {
  background: #f9f9f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1490196078);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
}
section.blog-listing .content-wrapper .cards-container .card-wrapper .image-wrapper {
  width: 100%;
  display: block;
  border-radius: 16px;
}
section.blog-listing .content-wrapper .cards-container .card-wrapper .image-wrapper img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
section.blog-listing .content-wrapper .cards-container .card-wrapper .card-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  height: 100%;
}
section.blog-listing .content-wrapper .cards-container .card-wrapper .card-content .meta-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.blog-listing .content-wrapper .cards-container .card-wrapper .card-content .meta-wrapper .author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #e0e0e0;
}
section.blog-listing .content-wrapper .cards-container .card-wrapper .card-content .meta-wrapper .author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.blog-listing .content-wrapper .cards-container .card-wrapper .card-content .meta-wrapper .meta-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #666;
}
section.blog-listing .content-wrapper .cards-container .card-wrapper .card-content .card-title {
  font-weight: 700;
  height: 100%;
}
section.blog-listing .content-wrapper .cards-container .card-wrapper .card-content .card-title a {
  color: #000;
  text-decoration: none;
  line-height: 1.3;
}
section.blog-listing .content-wrapper .cards-container .card-wrapper .card-content .read-more-button {
  margin-top: auto;
  border: 2px solid #1F5C29;
  color: #1F5C29;
  padding: 10px 16px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  width: 70%;
  transition: 0.2s;
}
section.blog-listing .content-wrapper .cards-container .card-wrapper .card-content .read-more-button:hover {
  background: #1F5C29;
  color: #fff;
}
section.blog-listing .content-wrapper .pagination-wrapper {
  display: flex;
  justify-content: center;
}
section.blog-listing .content-wrapper .pagination-wrapper .page-numbers {
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #ddd;
  text-decoration: none;
}
section.blog-listing .content-wrapper .pagination-wrapper .page-numbers.current {
  background: #1F5C29;
  color: #fff;
  border-color: #1F5C29;
}

.load-more-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.load-more-wrapper #load-more-btn {
  background: #1F5C29;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}
.load-more-wrapper #load-more-btn:hover {
  background: rgb(18.1463414634, 53.8536585366, 24);
}

section.blog-detail {
  padding: 50px 0;
}
section.blog-detail .breadcrumb {
  font-size: 14px;
  margin-bottom: 30px;
  color: #777;
}
section.blog-detail .breadcrumb a {
  color: #1f6b2f;
  text-decoration: none;
}
section.blog-detail .breadcrumb span {
  margin: 0 6px;
}
section.blog-detail .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section.blog-detail .content-wrapper .left-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.blog-detail .blog-header {
  display: flex;
  gap: 40px;
  align-items: center;
}
section.blog-detail .blog-header .header-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
section.blog-detail .blog-header .header-text .post-date {
  font-size: 14px;
  color: #1f6b2f;
}
section.blog-detail .blog-header .header-text h1 {
  line-height: 1.2;
}
section.blog-detail .blog-header .header-text .author-share {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
}
section.blog-detail .blog-header .header-text .author-share .author {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.blog-detail .blog-header .header-text .author-share .author .author-avatar {
  width: 40px;
  height: 40px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  overflow: hidden;
}
section.blog-detail .blog-header .header-text .author-share .author .author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.blog-detail .blog-header .header-text .author-share .author .author-info {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
section.blog-detail .blog-header .header-text .author-share .share {
  display: flex;
  align-items: center;
  gap: 8px;
}
section.blog-detail .blog-header .header-text .author-share .share a {
  text-decoration: none;
  background-color: #1F5C29;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  padding: 5px;
}
section.blog-detail .blog-header .header-text .author-share .share a img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.blog-detail .blog-header .header-image {
  width: 50%;
  max-height: 300px;
}
section.blog-detail .blog-header .header-image img {
  max-width: 100%;
  border-radius: 16px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  max-height: 300px;
}
@media (max-width: 900px) {
  section.blog-detail .blog-header {
    flex-direction: column;
  }
  section.blog-detail .blog-header .header-text,
  section.blog-detail .blog-header .header-image {
    width: 100%;
  }
}
section.blog-detail .post-layout {
  display: flex;
  margin-top: 20px;
  gap: 40px;
  align-items: flex-start;
}
section.blog-detail .post-layout .post-content {
  width: 65%;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.blog-detail .post-layout .post-content p {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
}
section.blog-detail .post-layout .post-content strong {
  font-weight: 700;
}
section.blog-detail .post-layout .post-content a {
  color: #1F5C29;
}
section.blog-detail .post-layout .post-content h2, section.blog-detail .post-layout .post-content h3, section.blog-detail .post-layout .post-content h4 {
  margin-top: 20px;
}
section.blog-detail .post-layout .post-content ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.blog-detail .post-layout .post-content ul li {
  position: relative;
  padding-left: 20px;
}
section.blog-detail .post-layout .post-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("https://krishipathinnovate.com/wp-content/uploads/2025/12/green-diamond.png");
  background-size: contain;
  background-repeat: no-repeat;
}
section.blog-detail .post-layout .post-content ol {
  padding-left: 20px;
}
section.blog-detail .post-layout .post-sidebar {
  width: 35%;
  position: sticky;
  top: 120px;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.1);
  width: 100%;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper h2 {
  text-align: center;
  margin: 10px 0;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .fluentform {
  width: 100%;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .custom-input-field {
  width: 100%;
  background: #F2F2F2;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  border: 0;
  font-family: "Kumbh Sans", sans-serif;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .fwi-choices {
  font-family: "Kumbh Sans", sans-serif;
  border-radius: 10px;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .fwi-choices .ff-el-form-control, section.blog-detail .post-layout .post-sidebar .form-wrapper .fwi-choices .choices__inner, section.blog-detail .post-layout .post-sidebar .form-wrapper .fwi-choices .choices__list--dropdown {
  width: 100%;
  background: #F2F2F2;
  border-radius: 10px;
  padding: 14px 16px;
  border: 0;
  font-size: 16px;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .fwi-choices .choices__item, section.blog-detail .post-layout .post-sidebar .form-wrapper .fwi-choices .choices__input {
  font-size: 16px;
  line-height: unset;
  padding: 0;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .fwi-choices .choices__item--selectable {
  padding: 2px 10px;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .custom-button-submit {
  background-color: #1F5C29;
  color: #FFFFFF;
  padding: 12px 24px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
  text-decoration: none;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .custom-button-submit:hover {
  transition: 0.2s all ease-in-out;
  background-color: rgb(18.1463414634, 53.8536585366, 24);
  opacity: 1;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .fwi-radio {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .fwi-radio::before {
  content: none;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .fwi-radio .ff-el-input--label {
  padding: 0;
  width: unset;
  font-size: 18px;
  color: #454545;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .fwi-radio .ff-el-input--content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  font-size: 18px;
  color: #454545;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .fwi-radio .ff-el-input--content .ff-el-form-check {
  margin-bottom: 0;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .ff_submit_btn_wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.blog-detail .post-layout .post-sidebar .form-wrapper {
  /* Grid layout for Fluent Form fields */
}
section.blog-detail .post-layout .post-sidebar .form-wrapper .ff-t-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 500px) {
  section.blog-detail .post-layout .post-sidebar .form-wrapper .ff-t-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  section.blog-detail .post-layout {
    flex-direction: column;
  }
  section.blog-detail .post-layout .post-content,
  section.blog-detail .post-layout .post-sidebar {
    width: 100%;
  }
  section.blog-detail .post-layout .post-sidebar {
    position: static;
  }
}

section.author-bio-section {
  padding: 50px 0;
}
section.author-bio-section .content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #f5f5f5;
  padding: 40px;
  border-radius: 12px;
}
section.author-bio-section .content-wrapper .image-wrapper {
  width: 180px;
}
section.author-bio-section .content-wrapper .image-wrapper img {
  width: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.author-bio-section .content-wrapper .text-wrapper {
  flex: 1;
}
section.author-bio-section .content-wrapper .text-wrapper .author-name {
  margin-bottom: 10px;
}
section.author-bio-section .content-wrapper .text-wrapper .author-designation {
  font-weight: 600;
  margin-bottom: 15px;
}
section.author-bio-section .content-wrapper .text-wrapper .author-bio {
  margin-bottom: 20px;
}
section.author-bio-section .content-wrapper .text-wrapper .share {
  display: flex;
  align-items: center;
  gap: 8px;
}
section.author-bio-section .content-wrapper .text-wrapper .share a {
  text-decoration: none;
  background-color: #1F5C29;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  padding: 5px;
}
section.author-bio-section .content-wrapper .text-wrapper .share a img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 900px) {
  section.author-bio-section .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  section.author-bio-section .content-wrapper .image-wrapper {
    width: 140px;
  }
}

section.team-section {
  padding: 50px 0;
}
section.team-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
section.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
}
section.team-section .team-grid .team-card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease;
}
section.team-section .team-grid .team-card:hover {
  transform: translateY(-4px);
}
section.team-section .team-grid .team-card .image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}
section.team-section .team-grid .team-card .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
section.team-section .team-grid .team-card h3 {
  margin-bottom: 5px;
  font-weight: 700;
}
section.team-section .team-grid .team-card .designation {
  font-size: 18px;
}
@media screen and (max-width: 1100px) {
  section.team-section .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 900px) {
  section.team-section .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  section.team-section .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
  overflow-y: auto;
}
.team-popup.active {
  display: block;
  overflow: hidden;
}
.team-popup .popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.team-popup .popup-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 800px) {
  .team-popup .popup-content {
    transform: translateY(-50%);
    top: 50%;
  }
}
.team-popup .popup-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #f5f5f5;
  padding: 40px;
  border-radius: 12px;
  position: relative;
}
.team-popup .popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}
.team-popup .image-wrapper {
  width: 180px;
  flex-shrink: 0;
}
.team-popup .image-wrapper img {
  width: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-popup .text-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: 70vh;
}
.team-popup .text-wrapper h3 {
  margin-bottom: 10px;
}
.team-popup .text-wrapper .designation {
  font-weight: 600;
  margin-bottom: 15px;
}
.team-popup .text-wrapper .bio {
  margin-bottom: 20px;
  overflow-y: auto;
  max-height: 45vh;
  padding-right: 6px;
  text-align: start;
  scrollbar-width: thin;
}
.team-popup .text-wrapper .linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1F5C29;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  padding: 5px;
}
.team-popup .text-wrapper .linkedin img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.team-popup {
  /* =====================
     Mobile Fix
  ====================== */
}
@media screen and (max-width: 900px) {
  .team-popup .popup-content {
    margin: 20px auto;
  }
  .team-popup .popup-inner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .team-popup .image-wrapper {
    width: 140px;
    margin: 0 auto;
  }
  .team-popup .text-wrapper {
    max-height: none;
    width: 100%;
  }
  .team-popup .text-wrapper .bio {
    max-height: 40vh;
  }
}

/* Prevent background scroll when popup open */
body.popup-open {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */