@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: "arialroundedmtbold";
  src: url("../../fonts/arialroundedmtbold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}


/* Fonts */
:root {
  --default-font: "arialroundedmtbold", , sans-serif;
  --heading-font: "arialroundedmtbold", sans-serif;
  --nav-font: "arialroundedmtbold", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #666666;
  --heading-color: #3C4533;
  --accent-color: #3C4533;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --black-color: #1F2937;
  --light-black-color: #4B5563;
  --orange-linear-gradient: linear-gradient(135deg, #E8825C 15%, #D67253 85%);

}

:root {
  --nav-color: #FFF1DB;
  --nav-hover-color: #FFF1DB;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #666666;
  --nav-dropdown-hover-color: #666666;
  --border-radius: 11px;
}


.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background: hsl(164.21deg 28.36% 86.86%);
  ;
  font-family: var(--heading-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 0;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {

  background: var(--nav-color);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: clamp(20px, 1.8vw, 23px);
  color: var(--heading-color);
  padding: 8px 25px;
  /* margin: 0 0 0 30px; */
  border-radius: var(--border-radius);
  transition: 0.3s;
  font-weight: 400;
  font-family: var(--heading-font);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--accent-color);
  background: var(--nav-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: var(--accent-color);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 1.2rem;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: clamp(26px, 3vw, 30px);
    color: var(--nav-color);
    font-family: var(--nav-font);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  /* .navmenu li:last-child a {
    padding-right: 0;
  } */

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-sec {
  background-color: #3C4533;
  color: #FFFFFF;
  padding: 80px 0 80px;
}

.footer-sec .footer-logo {
  max-width: 160px;
  margin-bottom: 20px;
}

.footer-sec .footer-text {
  max-width: 350px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #FFF1DB;
}

.footer-sec .btn-register {
  border: none;
  margin-top: 1rem;
  background: var(--nav-color);
  font-style: normal;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: clamp(20px, 1.8vw, 23px);
  color: var(--heading-color);
  padding: 8px 25px;
  border-radius: var(--border-radius);
  transition: 0.3s;
  font-weight: 400;
  font-family: var(--heading-font);
}

.footer-sec .btn-register:hover {
  background-color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-sec .footer-heading {
  margin-bottom: 1.5rem;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: clamp(20px, 2.2vw, 23px);
  color: #FFF1DB;
}

.footer-sec .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-sec .footer-links li {
  margin-bottom: 1.5rem;
}

.footer-sec .footer-links a {
  text-decoration: none;
  transition: color 0.3s ease;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: clamp(20px, 2.2vw, 23px);
  color: #FFF1DB;
}

.footer-sec .footer-links a:hover {
  color: #FFFFFF;
}

.footer-sec .newsletter-text {
  margin-bottom: 16px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: clamp(18px, 2vw, 19px);
  color: #FFF1DB;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}


.footer-sec .newsletter-form .form-control {
  border: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #3C4533;
  height: auto;
  background: #FFF1DB;
  border: 1.6px solid #FFF1DB;
}

.footer-sec .newsletter-form .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(234, 230, 220, 0.25);
}

.footer-sec .newsletter-form .btn-subscribe {
  background-color: #FFF1DB;
  color: #3E4A3D;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

.footer-sec .newsletter-form .btn-subscribe:hover {
  background-color: #FFFFFF;
}

.footer-sec .social-icons {
  margin-top: 24px;
}

.footer-sec .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #3E4A3D;
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #FFF1DB;
  border-radius: 20px;
}

.footer-sec .social-icons a:hover {
  background-color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-sec .footer-divider {
  border-color: 0.672583px solid #FFF1DB rgba(209, 213, 208, 0.2);
  margin: 40px 0 24px;


}

.footer-sec .copyright {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: clamp(20px, 2.2vw, 24px);
  color: #FFF1DB;
}

.footer-sec .whatsapp-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.footer-sec .whatsapp-chat a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-sec .whatsapp-chat .whatsapp-icon {
  width: 50px;
  height: 50px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-left: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.footer-sec .whatsapp-chat .whatsapp-icon:hover {
  transform: scale(1.1);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .footer-sec .footer-col {
    margin-bottom: 40px;
  }

  .footer-sec .whatsapp-chat {
    bottom: 20px;
    right: 20px;
  }

  .footer-sec .whatsapp-chat a span {
    display: none;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  background: url("../img/lsiting-banner.png") no-repeat center center / cover fixed;
}

.page-title .heading h1 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 48px);
  line-height: clamp(32px, 3.2vw, 48px);
  text-align: center;
  letter-spacing: -0.5px;
  color: #FFF1DB;
  margin-bottom: 1.5rem;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}


.page-title .heading p {

  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #FFF1DB;

}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0px;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
}

.hero h1 {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  line-height: clamp(40px, 4.8vw, 58px);
  color: #FFF1DB;
}

.hero p {

  margin: 1rem 0 2rem 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(22px, 2.4vw, 29px);
  text-align: center;
  color: #FFFFFF;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


/*--------------------------------------------------------------
# farmulax css starts here  farhan
--------------------------------------------------------------*/

.heading_1 {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  line-height: clamp(40px, 4.8vw, 58px);
  color: var(--heading-color);
}

.btn-bg,
.btn-bg:focus {

  background: var(--nav-color);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: clamp(20px, 1.8vw, 23px);
  color: var(--heading-color);
  padding: 1rem 25px;
  /* margin: 0 0 0 30px; */
  border-radius: var(--border-radius);
  transition: 0.3s;
  font-weight: 400;
  font-family: var(--heading-font);
}

.btn-bg:hover,
.btn-bg:focus:hover {
  color: var(--nav-color);
  background: var(--accent-color);
}

.btn_border,
.btn_border:focus {

  background: transparent;
  border: 1.5px solid var(--nav-color);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: clamp(20px, 1.8vw, 23px);
  color: var(--nav-color);
  padding: 1rem 25px;
  /* margin: 0 0 0 30px; */
  border-radius: var(--border-radius);
  transition: 0.3s;
  font-weight: 400;
  font-family: var(--heading-font);
}

.btn_border:hover,
.btn_border:focus:hover {
  color: var(--accent-color);
  background: var(--nav-color);
}

/* Overlap container */
.fresh-product {
  margin-top: -120px;
  position: relative;
  z-index: 2;
  background-color: transparent;
  padding: 0;
}

.fresh-card {
  overflow: hidden;
  transition: all 0.3s ease;
  background: #FFF1DB;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.fresh-card:hover {
  transform: translateY(-6px);
}

.fresh-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fresh-content {
  padding: 1.5rem;
}

.fresh-content h5 {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: clamp(1.5rem, 3vw, 1.75rem);
  letter-spacing: -0.5px;
  color: var(--black-color);
}

.fresh-content p {
  color: var(--light-black-color);
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: -0.5px;

}


.shop_category {
  width: 100%;
  /* min-height: 100vh; */
  position: relative;
  /* display: flex;
  align-items: start; */
  background: url(../img/shop-cat-bg.png) center center no-repeat;
  background-size: cover;
}


.sales-promotin-sec {
  background: var(--orange-linear-gradient);
  border-radius: 28px;

  overflow: hidden;
}

.sales-promotin-sec h2 {

  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48.7437px);
  line-height: clamp(40px, 5vw, 56px);
  color: #FFFFFF;
}

.sales-promotin-sec .btn-promo {
  background: #FFFFFF;
  padding: 14px 28px;
  margin-top: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24.3718px);
  line-height: clamp(24px, 2.6vw, 28px);
  color: #333333;
  border-radius: var(--border-radius);
}

.sales-promotin-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.cs_text {
  padding-left: 5vw;
}

.shop-category-sec {
  padding: 60px 0 0px 0px;
  background: transparent;
  text-align: center;
  position: relative;
}

.shop-category-sec h2 {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  line-height: clamp(38px, 4.5vw, 58px);
  text-align: center;
}

.shop-category-sec p.sub-title {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(22px, 2.4vw, 29px);
  text-align: center;
  margin-bottom: 30px;
  color: var(--default-color);
}

.section-title {
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(22px, 2.8vw, 35.16px);
  line-height: 100%;
  letter-spacing: 0%;
  margin: 25px 0 20px;
  color: var(--heading-color);

}

.category-item {
  text-align: center;
  margin-bottom: 30px;
  transition: 0.3s;
}

.category-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0px 4.39474px 6.5921px rgba(0, 0, 0, 0.1)) drop-shadow(0px 10.9868px 16.4803px rgba(0, 0, 0, 0.1));
  transition: 0.3s;
}

.category-item:hover img {
  transform: scale(1.05);
}

.category-item span {
  display: block;
  margin-top: 10px;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: clamp(24px, 2vw, 31px);
  letter-spacing: -0.549342px;
  color: var(--black-color);
}

.view-btn {
  margin-top: 20px;
}

.view-btn a {
  padding: 10px 20px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  border: 1px solid #3C4533;
  border-radius: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24.3718px);
  line-height: clamp(24px, 2.6vw, 28px);
  color: #333333;
}

.view-btn a:hover {
  background: #2f3b2f;
  color: #fff;
}


.how-it-works {
  padding: clamp(80px, 6vw, 112px) 0;
  background-color: var(--accent-color);
}

.how-it-works .main-heading {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  line-height: clamp(38px, 4.5vw, 58px);
  text-align: center;
  color: var(--nav-color);
  margin-bottom: 1rem;
}

.how-it-works .sub-heading {
  font-weight: 400;
  font-size: clamp(20px, 4vw, 32px);
  line-height: clamp(30px, 4.5vw, 50px);
  text-align: center;
  color: var(--nav-color);
  margin-bottom: 32px;
}

.how-it-works .card {
  border: 0;
  padding: 1.5rem;
  height: 100%;
  background: var(--nav-color);
  border-radius: 16px;
}

.how-it-works .card .icon-box {
  background-color: #FFFFFF;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.how-it-works .card .icon-box i {
  font-size: 24px;
  color: #2C2C2C;
}

.how-it-works .card .card-title {
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: clamp(1.5rem, 3vw, 1.75rem);
  color: #000000;
  font-family: var(--default-font);
}

.how-it-works .card .card-text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  line-height: 150%;
  color: #000000;
  margin-bottom: 0;
}


/* Section */
.farm-owner-sec {
  background: #fffaf3 url(../img/farm-bg.png) center center no-repeat;
  /* background-size: cover; */
  background-position: 60% 100%;
  position: relative;
  overflow: hidden;
}



.farm-owner-sec .container {
  position: relative;
  z-index: 2;
}

.farm-owner-sec h2 {

  margin-bottom: 2rem;
  padding-left: 2rem;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  line-height: clamp(38px, 4.5vw, 58px);
}

.step-box {
  background: #FFF1DB;
  border-radius: 16px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  margin-bottom: 20px;
  transition: 0.3s ease;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.step-box:hover {
  transform: translateY(-3px);
}

.step-box .icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(60, 69, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #2f3e2f;
  flex-shrink: 0;
}

.step-box small {
  display: block;
  margin-bottom: 8px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: #D4A574;
}

.step-box h5 {

  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: clamp(20px, 1.4vw, 23px);
  color: #2C2C2C;

}

.step-box p {
  margin: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 150%;
  color: #000000;
}

/* Step alignment */
.step-1 {
  margin-left: 0;
}

.step-2 {
  margin-left: 90px;
}

.step-3 {
  margin-left: 180px;
}

/* Button */
.farm-btn {
  background: #2f3e2f;
  color: var(--nav-color);
  padding: 14px 36px;
  display: inline-block;
  margin-top: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24.3718px);
  line-height: clamp(24px, 2.6vw, 28px);
  border-radius: var(--border-radius);
}

.farm-btn:hover {
  background: #1f2a1f;
  color: #fff;
}


.featured-farms {

  background-color: #fffaf3;
}

.featured-farms .heading {
  text-align: center;
  margin-bottom: 60px;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  line-height: clamp(38px, 4.5vw, 58px);
}

.farm-card {
  background: var(--nav-color);
  border-radius: 24px;
  border: none;
  position: relative;
  padding: 20px 20px 30px 20px;
  height: 100%;
}

.farm-card .card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 25px;
  margin-bottom: 1.5rem;
}

.farm-card .card-category {
  font-style: normal;
  font-weight: 400;
  font-family: "Signika", sans-serif;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  color: #999999;

  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.farm-card .card-category::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #EDDD5E;
  border-radius: 50%;
}

.farm-card .card-title {
  margin-bottom: 10px;
  font-family: 'Signika';
  font-style: normal;
  font-weight: 500;
  font-size: clamp(16px, 4vw + 0.5rem, 24px);
  line-height: 1.208em;
  text-transform: capitalize;
  color: #404A3D;
}

.farm-card .badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.farm-card .badge-item {
  background: var(--accent-color);
  padding: 10px 16px;
  border-radius: 50px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #FFFFFF;
}

.farm-card .card-location {
  color: #6B6B6B;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.farm-card .card-location i {
  color: #D14424;
  font-size: 16px;
}

.farm-card .card-divider {
  border: none;
  border-top: 1px solid rgba(64, 74, 61, 0.1);
  margin: 0 0 16px 0;
}

.farm-card .card-desc {
  margin: 0;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #666666;
  max-width: 300px;
}

/* This creates the corner cutout effect from your image */
.farm-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68px;
  height: 68px;
  background: #fffaf3;
  border-top-left-radius: 24px;
}

.farm-card .corner-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 48px;
  height: 48px;
  background: var(--nav-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2C3A2C;
  text-decoration: none;
  z-index: 2;
  transition: 0.3s ease;
}

.farm-card .corner-btn:hover {
  background: #2C3A2C;
  color: #FFFFFF;
  transform: rotate(45deg);
}

.farm-card .corner-btn:hover svg path {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}


.view-all-btn {
  border: 1.5px solid #2C3A2C;
  background: transparent;
  color: #2C3A2C;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.view-all-btn:hover {
  background: #2C3A2C;
  color: #FFFFFF;
}


.latest-blog-sec {
  background-color: #fffaf3;

}

.latest-blog-sec .section-heading {

  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  line-height: clamp(38px, 4.5vw, 58px);
  margin-bottom: 60px;
  text-align: center;
}

.latest-blog-sec .blog-item .img-box {
  position: relative;
  border-radius: 27px;
  overflow: hidden;
  margin-bottom: 20px;
}

.latest-blog-sec .blog-item .img-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.latest-blog-sec .blog-item .tag {
  position: absolute;
  top: 18px;
  left: 16px;
  background: #FFFFFF;
  padding: 6px 12px;
  border-radius: 100px;
  font-family: 'Signika';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  color: #5B8C51;
}

.latest-blog-sec .blog-item .meta {
  font-size: 12px;
  color: #8A8A8A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.latest-blog-sec .blog-item .meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 0.453929px;
  text-transform: uppercase;
  color: #666666;

}

.latest-blog-sec .blog-item .meta i {
  font-size: 14px;
}

.latest-blog-sec .blog-item .title {
  margin-bottom: 10px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: clamp(26px, 2vw, 34px);
  color: #404A3D;
  max-width: 300px;
}

.latest-blog-sec .blog-item .read-btn {
  background-color: #FFF1DB;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: clamp(20px, 2.6vw, 25px);
  color: #333333;
}

.latest-blog-sec .blog-item .read-btn:hover {
  background-color: #FFEFD6;
  color: #1C1C1C;
}



.why-farmulax {
  background-color: var(--nav-color);

}

.why-farmulax .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--farm-green);
  margin-bottom: 3rem;
}

.why-farmulax .image-wrap {
  position: relative;
}

.why-farmulax .main-img {
  width: 100%;
  height: 550px;
  border-radius: 1.25rem;
  object-fit: cover;
}

.why-farmulax .overlay-img {
  position: absolute;
  top: -10%;
  left: -8%;
  width: 45%;
  border-radius: 1.5rem;
}

.why-farmulax .stat-card {
  position: absolute;
  bottom: 0%;
  right: 0%;
  background-color: #3C4533;
  color: #fff;
  padding: 1.25rem 1.75rem;
  border-radius: 1.5rem;
  border: 5px solid #F8F7F0;
  border-width: 24px;
}

.why-farmulax .stat-card h3 {
  margin: 0;
  font-family: 'Signika';
  font-style: normal;
  font-weight: 600;
  font-size: clamp(36px, 4vw, 58px);
  line-height: clamp(44px, 5vw, 66px);
  color: #FFF1DB;
}

.why-farmulax .stat-card p {
  margin: 0;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  color: #FFF1DB;
}

.why-farmulax .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.why-farmulax .feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: #3C4533;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.why-farmulax .feature-content h4 {
  font-family: 'Signika';
  font-style: normal;
  font-weight: 500;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.5px;
  color: #1F2937;
  margin-bottom: 0.25rem;
}

.why-farmulax .feature-content p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #3C4533;
}

/* Tablet and below */
@media (max-width: 991.98px) {
  .why-farmulax .overlay-img {
    top: -5%;
    left: -3%;
    width: 40%;
  }

  .why-farmulax .stat-card {
    bottom: -3%;
    right: -2%;
    padding: 1rem 1.25rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .why-farmulax {
    padding: 3rem 0;
  }

  .why-farmulax .section-title {
    margin-bottom: 2rem;
  }
  
  .hero {
      background: url(../img/Slider-2.png) top center no-repeat;
    }
  .why-farmulax .image-wrap {
    margin-bottom: 3rem;
  }

  .why-farmulax .overlay-img {
    width: 50%;
    border-width: 4px;
  }

  /* .why-farmulax .stat-card {
    border-width: 4px;
  } */
}



.ag-stats-section {
  position: relative;
  padding: 80px 0;
  background-image: url('../img/ag-num.jpg');
  background-size: cover;
  /* background-position: center;
      background-attachment: fixed;
      color: #2c3e2c; */
}

/* Warm overlay to match the design */
.ag-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(218, 186, 130, 0.85); */
  /* backdrop-filter: blur(2px); */
}

.ag-stats-section .container {
  position: relative;
  z-index: 2;
}

.ag-section-title {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: clamp(28px, 3vw, 40px);
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.ag-section-subtitle {
  max-width: 700px;
  margin: 0 auto 50px auto;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 20px);
  line-height: clamp(22px, 2.6vw, 28px);
  text-align: center;
  letter-spacing: -0.5px;
  color: #4B5563;
}

.ag-stat-card {
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #FFFAF3;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.ag-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ag-icon-wrap {
  width: 64px;
  height: 64px;
  background: #3C4533;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.ag-icon-wrap i {
  font-size: 28px;
  color: #ffffff;
}

/* Your requested class */
.ag-number {
  margin-bottom: 8px;
  font-family: 'Signika';
  font-style: normal;
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  line-height: clamp(32px, 3.6vw, 44px);
  text-align: center;
  letter-spacing: -0.5px;
  color: #3C4533;
}

.ag-label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #4B5563;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .ag-stats-section {
    padding: 60px 0;
    background-attachment: scroll;
    /* Better performance on mobile */
  }

  .ag-stat-card {
    padding: 28px 20px;
  }
}


.regulatory-section {
  position: relative;
  overflow: hidden;
  background-image: url(../img/regulation-banner.png);
  background-size: cover;
  background-position: 100% 100%;
}



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

.regulatory-section .section-title {

  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  line-height: clamp(38px, 4.5vw, 58px);
  line-height: 1.2;
  margin-bottom: 3rem;

}

.info-card {
  padding: 2rem;
  height: 100%;
  border: none;
  transition: all 0.3s ease;
  background: #FFF1DB;
  border-radius: 16px;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  background: #3C4533;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
  background: #2A4A37;
  transform: scale(1.05);
}

.icon-wrapper i {
  color: #FFFFFF;
  font-size: 1.75rem;
  line-height: 1;
}

.card-title {
  margin-bottom: 0.875rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: clamp(24px, 3vw, 32px);
  letter-spacing: -0.5px;
  color: #1F2937;
  max-width: 300px;
}

.card-text {
  font-family: 'Inter';
  font-style: normal;

  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #4B5563;

  margin-bottom: 1.5rem;
  font-weight: 400;
}

.card-link {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #3C4533;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.card-link i {
  transition: transform 0.2s ease;
  font-size: 0.875rem;
}

.card-link:hover {
  color: #1E3829;
  gap: 0.75rem;
}

.card-link:hover i {
  transform: translateX(2px);
}

@media (max-width: 991.98px) {
  .regulatory-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.875rem;
    margin-bottom: 2.5rem;
  }

  .info-card {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .regulatory-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.625rem;
    margin-bottom: 2rem;
  }

  .info-card {
    padding: 1.75rem;
    border-radius: 16px;
  }

  .icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .icon-wrapper i {
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.125rem;
  }


}






.register-modal-form .modal-content {
  border: none;
  border-radius: 0;
  padding: 2rem;
}

.register-modal-form .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.register-modal-form .modal-title {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 25.34px);
  line-height: clamp(24px, 2.6vw, 28px);
  text-align: center;
  letter-spacing: -0.351974px;
  color: #1F2937;
  margin-bottom: 0;
}

.register-modal-form .modal-subtitle {
  margin-top: 1rem;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.351974px;
  color: #4B5563;
}

.register-card {
  border: none;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  cursor: pointer;
  background: #FFF1DB;
  border-radius: 9.03571px;
}

.register-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.register-card-icon {
  background-color: #3C4533;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.register-card-title {
  margin-bottom: 0.5rem;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  letter-spacing: -0.282366px;
  color: #1F2937;
}

.register-card-text {
  max-width: 28ch;
  margin: 0 auto;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 9px;
  line-height: 14px;
  text-align: center;
  letter-spacing: -0.282366px;
  color: #4B5563;
}

@media (max-width: 575.98px) {
  .register-modal-form .modal-title {
    font-size: 1.5rem;
  }

  .register-card {
    padding: 1.5rem 1rem;
  }
}

/*--------------------------------------------------------------
# farmulax Home page css ends here 
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# signup page css starts here farhan
--------------------------------------------------------------*/


/* Left sticky panel */
.hero-panel {
  background: #2B3A2B;
  border-radius: 0px;
}

.form_sec {
  /* padding-top: clamp(60px, 8vw, 180px); */
  padding: clamp(60px, 8vw, 100px);
  /* padding-left: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 180px); */
}

.scroll_sec {
  background-color: #fffaf3;
  padding-top: 80px;
}

/* .form_text {
  padding-top: 50px;
} */

.form_text h1 {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 45px);
  line-height: clamp(36px, 5vw, 45px);
  letter-spacing: -0.520139px;
  color: #FFFFFF;
}

.avg_para {

  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.520139px;
  color: #F9E49D;
}

.form_text p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: clamp(22px, 1.8vw, 29px);
  letter-spacing: -0.520139px;
  color: #F9E49D;
}

.hero-panel .stat-card {
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1.04028px solid rgba(255, 255, 255, 0.2);
  border-radius: 8.32222px;
}

.hero-panel .stat-icon {
  width: 42px;
  height: 42px;
  background-color: #F9E49D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.actve_farms {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: clamp(26px, 2.2vw, 33px);
  letter-spacing: -0.520139px;
  color: #FFFFFF;

}

.hero-panel .tractor-img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: 280px;
}

/* Right form section */
.create-account {
  background-color: #fffaf3;
}

.create-account .form-heading {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: clamp(32px, 2.8vw, 40px);
  text-align: center;
  letter-spacing: -0.5px;
  color: #1A4D2E;
}

.create-account .upload-circle {
  width: 90px;
  height: 90px;
  background-color: #2B3A2B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .2s;
}


.create-account.upload-circle {
  width: 88px;
  height: 88px;
  background-color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.create-account.upload-circle:hover {
  opacity: 0.95;
}

.create-account.upload-circle img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-text {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  line-height: clamp(20px, 1.5vw, 24px);
  text-align: center;
  letter-spacing: -0.5px;
  color: #4B5563;

}

.create-account .upload-circle:hover {
  opacity: 0.9;
}

.create-account .form-control {
  background-color: var(--brand-input);
  border: 1px solid #E5E0D5;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  height: 50px;
}

.create-account .form-control:focus {
  background-color: #fff;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 0.25rem rgba(212, 168, 83, 0.25);
}

.create-account .input-group-text {
  background-color: var(--brand-input);
  border: 1px solid #E5E0D5;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  color: #8B8B;
}

.create-account .input-group .form-control {
  border-left: 0;
  border-radius: 0 10px 10px 0;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: rgba(0, 0, 0, 0.5);
}

.create-account .btn-signup {
  padding: 0.875rem;
  border: none;
  background: #3C4533;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1), 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #FFF1DB;
}

.alrady_acc p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #4B5563;
}


.form_details {
  max-width: 480px;
  /* padding-top: clamp(60px, 8vw, 100px); */
  padding-bottom: clamp(60px, 8vw, 100px);
  margin: 0 auto;
}

.create-account .btn-signup:hover {
  background-color: #F9E49D;
  color: var(--accent-color);
}

.create-account .form-label {
  margin-bottom: 0.8rem;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: clamp(12px, 0.8vw, 14px);
  line-height: clamp(14px, 1vw, 17px);
  letter-spacing: -0.5px;
  color: #374151;
}

.scroll_sec .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}

.create-account a {

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.5px;
  text-decoration-line: underline;
  color: #1A4D2E;
}

.form-check-input[type=checkbox] {
  border-radius: 0;
  border: 0.5px solid #000000;
}

.alrady_acc a {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #1A4D2E;
}

/* Sticky + scroll behavior */
@media (min-width: 992px) {
  .hero-panel {
    position: sticky;
    top: 0;
    height: 100%;
    overflow: hidden;
  }

}

/*--------------------------------------------------------------
# signup page css ends here farhan
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# About  page css Starts here farhan
--------------------------------------------------------------*/

.farmolux-about-sec {
  /* padding: clamp(60px, 6vw, 100px) 0; */
  background-color: #F5F1E8;
}

.btn_outline {

  background: #FFF1DB;
  border: 1px solid #3C4533;
  border-radius: 12px;

  text-align: center;
  letter-spacing: -0.5px;

  padding: 0.85rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #111827;
}

.farmolux-vision-mission-sec {
  background-color: #fff;
}

.farmolux-about-sec .flx-heading,
.farmolux-vision-mission-sec .flx-heading {

  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: clamp(30px, 3.2vw, 48px);
  letter-spacing: -0.5px;
  color: #3C4533;
  margin-bottom: 1rem;
}

.farmolux-about-sec .flx-subheading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.5px;
  color: #374151;
}

.farmolux-about-sec .flx-text,
.farmolux-vision-mission-sec .flx-text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #3C4533;

}

.farmolux-about-sec .flx-img,
.farmolux-vision-mission-sec .flx-img {
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.1)) drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.1));
  border-radius: 24px;

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.farmolux-vision-mission-sec .flx-card {
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #FFF1DB;
  border: 2px solid #F5F1E8;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
}

.farmolux-vision-mission-sec .flx-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.farmolux-vision-mission-sec .flx-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: #fff;
}

.farmolux-vision-mission-sec .flx-icon-dark {
  background: #3C4533;
  border-radius: 9999px;
}

.farmolux-vision-mission-sec .flx-icon-yellow {
  background-color: #F4C430;
}

.farmolux-vision-mission-sec .row .col-lg-6:last-child .flx-card {
  background-color: transparent;
  border: 2px solid F5F1E8;
}

.farmolux-vision-mission-sec .flx-card-title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: clamp(26px, 2vw, 32px);
  letter-spacing: -0.5px;
  color: #3C4533;

  margin-bottom: 0.75rem;
}

.farmolux-vision-mission-sec .flx-card-text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #3C4533;
  margin-bottom: 0;
}


.marketplace-ecosystem {
  background-color: #F5F1E8;
}

.marketplace-ecosystem .section-title {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  line-height: clamp(26px, 3.2vw, 40px);
  text-align: center;
  letter-spacing: -0.5px;
  color: #3C4533;

}

.marketplace-ecosystem .section-subtitle {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #3C4533;

  max-width: 600px;
  margin: 0 auto 3.5rem auto;

}

.eco-card {
  border-radius: 16px;
  border: none;
  padding: 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.eco-card .icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.eco-card .card-title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.5px;
  color: #3C4533;

  margin-bottom: 0.5rem;
}

.eco-card .card-text {

  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 20px);
  line-height: clamp(20px, 2.4vw, 24px);
  letter-spacing: -0.5px;
  color: #3C4533;

  margin-bottom: 0;
}

.eco-card .bg-icon {
  position: absolute;
  right: 0px;
  top: auto;
  transform: translateY(-25%);
  pointer-events: none;
}

/* Card Color Variants */
.card-produce {
  background-color: #FFFFFF;
}

.card-produce .icon-wrapper {
  background-color: #3C4533;
  color: #FFFFFF;
}

.card-produce .bg-icon {
  color: #EAEAEA;
}

.card-equipment {
  background-color: #CDD2C9;
}

.card-equipment .icon-wrapper {
  background-color: #F4C430;
}

.card-equipment .bg-icon {
  color: #C8D1C3;
}

.card-supplies {
  background-color: #F2CCC0;
}

.card-supplies .icon-wrapper {
  background-color: #3C4533;
  color: #FFFFFF;
}

.card-supplies .bg-icon {
  color: #E5C5C3;
}

.card-services {
  background-color: #BFEAB7;
}

.card-services .icon-wrapper {
  background-color: #F4C430;

}

.card-services .bg-icon {
  color: #C0D9C0;
}

.card-rental {
  background-color: #FFFFFF;
}

.card-rental .icon-wrapper {
  background-color: #3C4533;

}



.card-artisan {
  background-color: #F5E6C8;
}

.card-artisan .icon-wrapper {
  background-color: #F4C430;

}




.search-wrapper {
  background-color: #FFF1DB;
  padding: 2rem 0;
  border-bottom: 1px solid #E5E7EB;
}

.search-input {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 12px;
  padding: 0.75rem 1rem 0.75rem 3rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: rgba(0, 0, 0, 0.5);
}

.search-input:focus {
  border-color: var(--btn-dark);
  box-shadow: 0 0.25rem rgba(45, 59, 45, 0.1);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.btn-search {
  background: #3C4533;
  border-radius: 12px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  padding: 0.85rem;
}

.btn-search:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.filter-card {
  padding: 1.5rem;
  position: sticky;
  top: 1.5rem;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
}

.filter-title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #111827;
}

.reset-link {
  color: #DC2626;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.reset-link:hover {
  text-decoration: underline;
}

.filter_search .form-label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.5px;
  color: #111827;
  margin-bottom: 1rem;
}

.filter-card .form-control {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: rgba(0, 0, 0, 0.5);
}

.btn-apply {
  background: #3C4533;
  border-radius: 12px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  border: none;
  padding: 0.75rem;

  width: 100%;
}

.btn-apply:hover {
  background-color: var(--black-color);
  color: #ffffff;
}

.results-header {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #111827;
}

.sort-select {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
}

.listing-card {
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
}

.listing-card:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-img-wrapper {
  position: relative;
  height: 200px;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  /* color: var(--text-primary); */
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.rating-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff;
  color: #000000;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rating-badge i {
  color: #FACC15;
  font-size: 0.75rem;
}

.card-body {
  padding: 1.25rem;
}

.farm-name {

  margin-bottom: 0.5rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 25px;
  letter-spacing: -0.5px;
  color: #111827;
}

.farm-location {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.5px;
  color: #4B5563;

  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.farm-description {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #4B5563;

  margin-bottom: 1rem;
   display: -webkit-box;
  -webkit-line-clamp: 2; /* Limits the text to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.farm-tags {
  display: flex;
  gap: 1rem;

  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.5px;
  color: #3C4533;

  margin-bottom: 1.25rem;
}

.farm-tag {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.btn-view {
  background: #3C4533;
  border-radius: 8px;
  border: none;
  padding: 0.625rem 1.5rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;

}

.btn-view:hover {
  background-color: var(--black-color);
  color: rgb(255, 255, 255);
}

.btn-call {
  border: 1px solid #3C4533;
  border-radius: 8px;
  border-radius: 10px;
  padding: 0.625rem 0.875rem;
  color: var(--text-primary);
}

.btn-call:hover {
  background: #F9FAFB;
}

.filter_search {
  padding: 50px 0;
  background-color: #fffaf3;
}

/*--------------------------------------------------------------
# About  page css ends here farhan
--------------------------------------------------------------*/

.glass_sec {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 15px;
  gap: 10px;
}

.glass_sec p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  /* padding: 8px; */
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin-bottom: 0;
}

.farms-details-sec {
  background-color: #fffaf3;
  padding-bottom: 0;
}

.farms-details-sec .btn-farm {
  background: #3C4533;
  border-radius: 8px;
  color: #fff;
  border: none;

  padding: 10px 20px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #FFF1DB;
  transition: all 0.2s ease;
}

.farms-details-sec .btn-farm:hover {
  background-color: #2d3a2f;
  color: #fff;
}

.farms-details-sec .btn-farm-outline {

  background: #FFF1DB;
  border: 2px solid #3C4533;
  border-radius: 8px;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #3C4533;
  transition: all 0.2s ease;
}

.farms-details-sec .btn-farm-outline:hover {
  background-color: var(--black-color);
  color: #fff;
}

.farms-details-sec .card-custom {
  border: none;
  padding: 2rem;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}

.farms-details-sec .detail-box {
  padding: 1.25rem;
  background: #F5F1E8;
  border-radius: 12px;
}

.farms-details-sec .farm-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

.farms-details-sec .owner-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.farms-details-sec h1 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: clamp(30px, 3vw, 48px);
  letter-spacing: -0.5px;
  color: #3C4533;
}

.loca_tetx {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #3C4533;

}

.farms-details-sec h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--farm-primary);
}

.farms-details-sec .section-title {
  margin: unset;
  margin-bottom: 1.5rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.5px;
  color: #2D5016;
}

.loca_par {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #111827;
  margin-bottom: 0.5rem;
}

.name_text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #111827;

}

.farm_owner {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #4B5563;
}

.farms-details-sec .col-lg-4 .card-custom {
  border: none;
  padding: 2rem;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.ity {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.5px;
  color: #4B5563;

}

.farms-details-sec p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #374151;

}

.farms-details-sec .icon-primary {
  color: var(--farm-primary);
}



.farms-details-sec .phone-box {
  background: #F5F1E8;
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

.farms-details-sec .verified-badge {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #374151;
}

.p_no {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.5px;
  color: #4B5563;

}

.text_num {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #3C4533;

}


.our-products {
  background-color: #fffaf3;
}

.our-products .section-title {
  margin-bottom: 48px !important;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: clamp(30px, 2.8vw, 40px);
  text-align: center;
  letter-spacing: -0.5px;
  color: #2B3A2B;
  margin: unset;
}

.our-products .product-card {
  overflow: hidden;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1), 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.our-products .product-card:hover {
  /* transform: translateY(-6px); */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.our-products .product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.our-products .card-body {
  padding: 20px;
}

.our-products .product-title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #111827;

  margin-bottom: 8px;
}

.our-products .product-farm {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #4B5563;

  margin-bottom: 4px;
}

.our-products .product-location {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: -0.5px;
  color: #6B7280;

  margin-bottom: 20px;
}

.our-products .product-location i {
  margin-right: 4px;
}

.our-products .btn-view-product {
  border: none;
  padding: 12px 24px;
  width: 100%;
  transition: background-color 0.2s ease;
  background: #F4C430;
  border-radius: 9999px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #3C4533;
}

.our-products .btn-view-product:hover {
  background-color: #D4A73C;
  color: #1A1A1A;
}

.our-products .badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #2D3A2E;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.contact_text {
  text-align: start;
}

.contact_text h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: clamp(20px, 2vw, 28px);
  letter-spacing: -0.5px;
  color: #111827;
}

.contact_text p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #2D5F3F;
}

.contact_text small {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #4B5563;

}

.c_feature {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
  background: #FFF1DB;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
}

.c_icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  background: rgba(45, 95, 63, 0.1);
  border-radius: 9999px;
  justify-content: center;
  color: #1e242e;
  font-size: clamp(18px, 2vw, 22px);
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.send_us_msg .form-wrapper {
  max-width: 640px;
  margin: 0 auto;

}

.send_us_msg {
  background-color: #FFFAF3;
}

.send_us_msg .form-title {

  margin-bottom: 48px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.5px;
  color: #111827;
  text-align: center;
}

.send_us_msg .form-label {
  margin-bottom: 8px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.5px;
  color: #374151;
}

.send_us_msg .form-control,
.send_us_msg .form-select {
  /* background: #FFFFFF; */
  border: 2px solid #E5E7EB;
  border-radius: 8px;

  padding: 12px 16px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: rgba(0, 0, 0, 0.5);

  transition: all 0.2s ease;
}

.send_us_msg .form-control:focus,
.send_us_msg .form-select:focus {
  border-color: var(--text-dark);
  box-shadow: 0 0 0 4px var(--focus-shadow);
  background-color: var(--input-bg);
}

.send_us_msg .form-control::placeholder {
  color: #9A9A9A;
}

.send_us_msg textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.send_us_msg .btn-submit {
  color: #FFFFFF;
  border: none;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  max-width: 280px;
  transition: all 0.2s ease;
  margin-top: 8px;
  background: #3C4533;
  border-radius: 16px;
}

.send_us_msg .btn-submit:hover {
  background-color: var(--black-color);
  color: #FFFFFF;

}

.send_us_msg .btn-submit:active {
  transform: translateY(0);
}

#blog_page .page-title .heading {
  padding: 80px 0;
  background: url(../img/blog-banner.png) no-repeat center center / cover fixed;
  height: 50vh;
  display: flex;
  align-items: end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 30% -170px;
}




.blogs.cards.sec {
  background-color: #fffaf3;
}

/* Tabs styling */
.nav-pills .nav-link {
  border-radius: 50px;
  padding: 10px 28px;
  color: #2B2B2B;
  font-weight: 500;
  font-size: 16px;
  background-color: transparent;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
  background-color: rgba(54, 73, 54, 0.08);
}

.nav-pills .nav-link.active {
  background-color: #404A3D;
  color: #fff;
}

/* Blog card styling */
.blog-card {
  margin-bottom: 40px;
}

.blog-card .card-img-wrapper {
  height: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 26px;
}

.blog-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.blog-card .card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 18px;
  background: #FFFFFF;
  border-radius: 13.0618px;
  font-family: 'Signika';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  letter-spacing: 0.435393px;
  text-transform: uppercase;
  color: #5B8C51;
}

.blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  color: #6B7A6B;
  font-size: 14px;
  text-transform: uppercase;
}

.blog-card .card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 19px;
  letter-spacing: 0.435393px;
  text-transform: uppercase;
  color: #666666;

}

.blog-card .card-meta i {
  font-size: 16px;
}

.blog-card .card-title {
  font-family: 'Signika';
  font-style: normal;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: clamp(24px, 2.3vw, 33px);
  color: #404A3D;
  margin-top: 12px;

  text-decoration: none;
  display: block;
}

.blog-card .card-title:hover {
  color: #2a392a;
}


#blog_details_page .page-title .heading {
  padding: 80px 0;
  background: url(../img/details-banner.png) no-repeat center center / cover fixed;
  height: 50vh;
  display: flex;
  align-items: end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 30% -170px;
}

/* blog details page css */
.blog-details {
  background-color: #fffaf3;
}

.blog-details .card {
  border: none;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}

.blog-details .main-img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-details .content p {
  margin-bottom: 1.5rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #374151;
  margin-bottom: 1.5rem;
}

.blog-details .content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.5px;
  color: #111827;
}

.pro-tip {
  border-left: 4px solid #3C4533;
  padding: 1.25rem;
  margin: 2rem 0;
  background: #F0FDF4;
  border-radius: 8px;
}


.blog-details .featured-card {
  border: none;
  background: linear-gradient(135deg, #FFF1DB 0%, #FFFAF3 70.71%);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-align: start;
}

.pro-tip h6 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #111827;
}

.pro-tip p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.sidebar .form-control {
  border-radius: 8px;
  border: 1px solid var(--border-light);
  padding: 0.6rem 0.75rem 0.6rem 2.5rem;
  background-color: var(--card-bg);
}

.sidebar .search-wrapper {
  position: relative;
  padding: 0;
  background: transparent;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: rgba(0, 0, 0, 0.5);
}

.sidebar .search-wrapper i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.sidebar h5 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #111827;
  margin-bottom: 1rem;
}

.blog-details .category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #374151;
}

.category-item:hover {
  color: var(--accent);
}

.category-item .count {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #9CA3AF;
}

.recent-post-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

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

.recent-post-item img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.recent-post-item h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.recent-post-item .date {
  font-size: 0.85rem;
  color: #999;
}

.featured-card {
  background-color: var(--featured-bg);
  text-align: center;
}

.featured-card .icon {
  margin-bottom: 0.75rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: #3C4533;
}



.featured-card h5 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: clamp(20px, 2vw, 28px);
  letter-spacing: -0.5px;
  color: #3C4533;
}

.featured-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.featured-card a {
  text-decoration: none;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #3C4533;
}

.register-cardss {
  text-align: center;
}

.register-cards .icon-circle {
  width: 56px;
  height: 56px;
  background-color: #E8F5E9;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.rfy {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: clamp(20px, 2vw, 28px);
  text-align: center;
  letter-spacing: -0.5px;
  color: #111827;
}

.ryf_text {


  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;

  text-align: center;
  letter-spacing: -0.5px;
  color: #4B5563;

}

.register-card .icon-circle {
  width: 56px;
  height: 56px;
  background-color: #E8F5E9;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.register-card .icon-circle i {
  font-size: 1.5rem;
  color: var(--accent);
}

.btn-custom {
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  width: 100%;
  background: #3C4533;
  border-radius: 8px;
}

.btn-custom:hover {
  background-color: var(--black-color);
  color: #fff;
}

.feature-list {
  max-width: 720px;
}

.feature-item {
  padding: 0.5rem 0;

  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #374151;

}

.warning_sec {
  border-left: 4px solid #F59E0B;
  padding: 1.25rem;
  margin: 2rem 0;
  background: #FFFBEB;
  border-radius: 8px;
}

.Key_Insight {
  border-left: 4px solid #3B82F6;
  padding: 1.25rem;
  margin: 2rem 0;
  background: #EFF6FF;
  border-radius: 8px;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  color: #3d4852;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}


.social-handles {
  color: #5f6368;
  font-size: 0.95rem;
}

.engagement-item {
  color: #5f6368;
  text-decoration: none;
  transition: color 0.2s ease;
}

.engagement-item:hover {
  color: #202124;
}

.engagement-item i {
  font-size: 1.25rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: #fff;
}

.share-facebook {
  background-color: #2563EB;
}

.share-whatsapp {
  background-color: #16A34A;
}

.share-twitter {
  background-color: #0EA5E9;
}

.share-link {
  background-color: #4B5563;
}

.share-btn i {
  font-size: 1.1rem;
}


.author-card {
  border: 1px solid #f0ebe5;
  background: #FFFFFF;
  border-radius: 16px;
}

.abt_authoer {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: clamp(20px, 2vw, 28px);
  letter-spacing: -0.5px;
  color: #111827;
}

.author-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.author-name {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #111827;

}

.related_text h5 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.5px;
  color: #111827;
  margin-bottom: 1rem;
}

.author-bio {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #4B5563;

}

.author-link {

  text-decoration: none;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #3C4533;
  transition: all 0.2s ease;
}

.author-link:hover {
  color: #000;
  gap: 0.5rem !important;
}


.subs-popup .modal-content {
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, #FFF1DB 0%, #FFFAF3 70.71%);
}

.subs-popup .modal-dialog {
  max-width: 560px;
}

.subs-popup .modal-title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: clamp(24px, 2.6vw, 36px);
  text-align: center;
  letter-spacing: -0.5px;
  color: #111827;
}

.subs-popup .modal-desc {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #4B5563;

  max-width: 420px;
  margin: 0 auto 1.75rem auto;
}

.subs-popup .form-control {
  height: 54px;
  background-color: #FFFFFF;
  padding-left: 3rem;
  font-size: 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
}

.subs-popup .form-control:focus {
  border-color: #3A4D39;
  box-shadow: 0 0 0 0.25rem rgba(58, 77, 57, 0.15);
}

.subs-popup .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8A8A8A;
  z-index: 5;
}

.subs-popup .btn-subscribe {

  background: #3C4533;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1), 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  padding: 0.875rem 2.5rem;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
}

.subs-popup .btn-subscribe:hover {
  background-color: #2C3B2B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 77, 57, 0.25);
}

.subs-popup .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/*--------------------------------------------------------------
# farmulax css ends here farhan
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# farmulax media query css starts here  farhan
--------------------------------------------------------------*/

@media (max-width: 992px) {



  .farms-details-sec .farm-img {
    width: 110px;
    height: 110px;
  }

  .farms-details-sec h1 {
    font-size: 1.875rem;
  }

  .farms-details-sec .card-custom {
    padding: 1.5rem;
  }

  .filter-card {
    position: static;
    margin-bottom: 1.5rem;
  }

  .marketplace-ecosystem .section-title {
    font-size: 2.25rem;
  }

  .farmolux-about-sec,
  .farmolux-vision-mission-sec {
    padding: 3rem 0;
  }

  .latest-blog-sec {
    padding: 70px 0;
  }

  .latest-blog-sec .section-heading {
    font-size: 36px;
    margin-bottom: 48px;
  }

  .featured-farms .heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .step-2,
  .step-3 {
    margin-left: 0;
  }

  .farm-owner-sec h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .nav-pills {
    justify-content: flex-start !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    scrollbar-width: none;
    margin-bottom: 1rem !important;
  }

  .category-tabs {
    scrollbar-width: none;
  }

  .form_sec,
  .form_details {

    padding: 1.5rem !important;
  }

  .nav-pills .nav-link {
    white-space: nowrap;
    font-size: 14px;
    padding: 8px 20px;
  }

  .blog-card .card-title {
    font-size: 20px;
  }

  .our-products .section-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  .our-products {
    padding: 40px 0;
  }

  .latest-blog-sec {
    padding: 60px 0;
  }

  .latest-blog-sec .section-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .latest-blog-sec .blog-item .img-box img {
    height: 240px;
  }

  .latest-blog-sec .blog-item .title {
    font-size: 18px;
  }

  .featured-farms {
    padding: 60px 0;
  }

  .farm-card .card-image {
    height: 220px;
  }

  .how-it-works {
    padding: 60px 0;
  }

  .how-it-works .main-heading {
    font-size: 32px;
  }

  .how-it-works .sub-heading {
    font-size: 20px;
    margin-top: 48px;
  }

  .sales-promotin-sec {
    padding: 30px 20px;
    /* proper mobile padding */
    text-align: center;
  }

  .sales-promotin-sec .content {
    margin-bottom: 20px;
  }

  .hero-bg {
    height: 220px;
  }

  .fresh-product {
    margin-top: -80px;
  }

  .fresh-card img {
    height: 160px;
  }
}

@media (max-width: 640px) {}

@media (max-width: 576px) {

  .subs-popup .modal-content {
    padding: 2rem 1rem;
  }

  .subs-popup .btn-subscribe {
    width: 100%;
  }

  .social-handles {
    font-size: 0.9rem;
  }

  .share-btn {
    width: 36px;
    height: 36px;
  }

  .send_us_msg {
    padding: 40px 16px;
  }

  .send_us_msg .form-title {
    font-size: 1.75rem;
    margin-bottom: 36px;
  }

  .send_us_msg .btn-submit {
    max-width: 100%;
  }

  .farms-details-sec .card-custom {
    padding: 1.25rem;
  }

  .farms-details-sec h1 {
    font-size: 1.5rem;
  }

  .marketplace-ecosystem {
    padding: 50px 0;
  }

  .marketplace-ecosystem .section-title {
    font-size: 1.9rem;
  }

  .eco-card {
    padding: 1.5rem;
  }

  .step-box {
    flex-direction: row;
    align-items: flex-start;
  }

  .farm-owner-sec {
    padding: 70px 0;
  }

  .farm-owner-sec h2 {
    font-size: 24px;
  }

  .category-item img {
    width: 90px;
    height: 90px;
  }
}

.password-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
	max-width: 92%;

}
.field-wrapper2 {
  position: relative;
  display: inline-block;
  width: 100%;
	max-width: 92%;

}

.password-wrapper input {
  width: 100%;
  padding: 10px 40px 10px 12px; /* Extra right padding prevents text from overlapping the icon */
  box-sizing: border-box;
}

.password-wrapper a {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.password-wrapper svg {
  width: 20px;
  height: 20px;
  color: #666;
}

/* Helper class to toggle icon visibility */
.hidden {
  display: none !important;
}


/* new page css added 15 june  */

.season-calendar {

  padding: 40px 24px;
}

.season-calendar .section-title {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.15rem;
}

.season-calendar .section-icon {
  color: var(--text-dark);
  font-size: 1.4rem;
}

.month-pills {
  --bs-nav-pills-link-active-bg: var(--text-dark);
  --bs-nav-pills-border-radius: 50px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.month-pills .nav-item {
  flex: 0 0 auto;
}

.month-pills .nav-link {
  color: #3a3a3a;
  font-size: 1rem;
  padding: 8px 22px;
  white-space: nowrap;
}

.month-pills .nav-link.active {
  font-weight: 700;
}

.month-pills::-webkit-scrollbar {
  height: 4px;
}

.month-pills::-webkit-scrollbar-thumb {
  background: #d8d5d0;
  border-radius: 4px;
}

@media (min-width:768px) {
  .month-pills {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .month-pills .nav-item {
    flex: initial;
  }
}

.produce-card {
  background: #fff;
  border-radius: 18px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.produce-card img {
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(60, 60, 60, 0.75);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity .2s ease;
}

.produce-card:hover .card-overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
# farmulax media query css starts ends here 
--------------------------------------------------------------*/