/********** Template CSS **********/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #009688;
  --light: #f6f7f8;
  --dark: #1a2a36;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  /* font-family: "DM Sans", sans-serif !important; */
}
h1,
h2,
h3,
h4,
h5,
h6,
span,
p {
  font-family: "DM Sans", sans-serif !important;
}

    .top-banner {
        background-color: rgb(109, 198, 167);
        height: fit-content;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        flex-wrap: wrap;
    }
    
    .top-banner div {
        display: flex;
        align-items: center;
    }
    
    .top-banner h1 {
        font-size: 16px;
        margin: 0 10px;
    }
    
    .top-banner img {
        margin: 0 5px;
    }
    
    .top-banner a {
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    
    .icon-list {
        display: flex;
        gap: 10px;
        margin-left: 30px;
        align-items: center;
    }
    
    .contact-info {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    @media (max-width: 768px) {
        .contact-info {
             display: none !important
        }
    
        .icon-list {
            margin-left: 0;
            justify-content: center; 
            width: 100%;
        }
    }

        
.col-lg-custom {
  flex: 0 0 auto;
  width: 22%;
}
/* typewriter */
.typewriter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.typewriter h3 {
  color: #fff;
  font-family: monospace;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid #47be9f; /* The typewriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.15em; /* Adjust as needed */
  animation: typing 6s steps(30, end) 0.6s,
    /* Increased the duration to slow down typing */ blink-caret 0.5s step-end 1
      normal both; /* Removed 'infinite' to run only once */
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
}

/* gallery css */

.title {
  background-color: #47be9f;
  color: white;
  padding: 12px;
  text-align: center;
}

#filter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px;
}

.filter-element {
  background-color: #47be9f;
  color: white;
  padding: 12px 24px;
  border-radius: 15px;
  margin: 6px;
  cursor: pointer;
}

.filter-element:hover {
  background-color: white;
  border: 2px solid #47be9f;
  color: #555555;
}

.filter-active {
  background-color: white;
  border: 2px solid #47be9f;
  color: #555555;
}

#gallery-container {
  width: 90%;
  margin: 0 auto;
  column-count: 3;
  column-gap: 0.5rem;
}

.gallery-image {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #919090;
  margin-bottom: 0.5rem;
}

.gallery-image.hide-image {
  display: none;
}

@media (max-width: 920px) {
  #gallery-container {
    column-count: 2;
  }
}

/* gallery css end */
.bg-image-section {
  background-image: url("../img//gradient-home.png");
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.dm-sans-title {
  font-family: "DM Sans", sans-serif !important;
  letter-spacing: 1.25px;
  font-weight: bold;
  font-size: 2.5rem !important;
  color: #555555 !important;
}
.dm-sans {
  font-family: "DM Sans", sans-serif;
}
/* Add this CSS code to your existing styles or within a <style> tag in the head of your HTML document */

@media (max-width: 767px) {
  /* Styles for screens smaller than 768px */
  .container-fluid.mx-auto {
    padding-left: 15px;
    padding-right: 15px;
  }

  .col-lg-6.mb-4 {
    max-width: 100%;
    margin: 0;
  }

  .form1 {
    width: 100%;
    font-size: 14px; /* Adjust font size for smaller screens */
  }

  button.btn.btn-primary.py-3.px-8 {
    width: 100%;
    padding: 8px; /* Adjust padding for better fit */
    font-size: 16px; /* Adjust font size for better readability on smaller screens */
  }
}

.service-icon {
  width: 130px !important; /* Adjust the width as needed */
  height: 130px !important; /* Adjust the height as needed */
  border-radius: 50%;
  overflow: hidden; /* Hide overflow to keep the image within the circle */
  position: relative;
  margin-bottom: 20%;

}

.service-icon img {
  max-width: 100%; /* Ensure the image takes the full width of the container */
  max-height: 100%; /* Ensure the image takes the full height of the container */ /* Ensures a circular shape */
  object-fit: cover; 
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
}
body {
  overflow-x: hidden !important;
}
.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.testimonial_area {
  width: 100%;
  overflow: hidden;
 
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.box-area {
  position: relative;
  margin: 20px;
  padding: 30px 20px;
  width: 400px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 5px 15px;
  margin-top: 35px;
}

.box-area .img-area {
  width: 150px;
  height: 90px;
  position: relative;
  margin: -65px auto 0;
  border: 5px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.box-area .img-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content {
  margin-top: 30px;
  color: #262626;
  font-size: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.home-testimonial-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.home-testimonial-desig {
  font-size: 14px;
  color: #666;
  margin: 5px 0 0;
}

@media only screen and (max-width: 1200px) {
  .box-area {
    width: calc(50% - 30px);
    min-width: 280px;
  }
}

@media only screen and (max-width: 768px) {
  .box-area {
    width: 100%;
    max-width: 400px;
  }
  
  .testimonials-wrapper {
    gap: 40px;
  }
}
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.text-box {
  background-color: #47be9f;
  color: white;
  text-align: center;
  padding: 10px;
  width: 262px;
  border-radius: 0.2rem;
  margin-bottom: 40px;
  height: 70px;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 75px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: var(--dark);
  /* font-size: 15px; */
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar-nav .nav-item.active {
  color: #47be9f;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
  .dm-sans-title {
    font-family: "DM Sans", sans-serif;
    letter-spacing: 1px;
    font-size: 1.5rem !important;
    font-weight: bold;
  }
  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .custom-height-lg {
    height: 460px;
    width: 300px;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .container-fluid.mx-auto {
    padding-left: 15px;
    padding-right: 15px;
  }

  .col-lg-6.mb-4 {
    max-width: 100%;
    margin-left: 0;
  }

  .form1 {
    width: 100%;
  }

  button.btn.btn-primary.py-3.px-8 {
    width: 100%;
    padding: 10px;
  }
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
}

.header-carousel .owl-dots {
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
  border-radius: 45px;
  transition: 0.5s;
}

.header-carousel .owl-dots .owl-dot.active {
  width: 60px;
  height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  border-radius: 45px;
  transition: 0.5s;
}
/* background video */
video {
  max-height: 800px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.page-header {
  background-image: url(../img/cover1.png);
  position: relative;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** About ***/
@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }
  .farmer-space {
    /* margin-left: 3.8rem !important; */
  }

  .about-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .about-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .about-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Service ***/
.service-item {
  padding: 30px 20px 20px 20px;
  margin-bottom: 50px;
  text-align: center;
  width: 19rem;
  height: 29rem;
  border: 1px solid #fff;
  position: relative;
  background: #fff;
  /* box-shadow: 0 0 45px rgba(0, 0, 0, 0.08); */
}
.service-item-farmer {
  padding: 20px 20px 20px 20px;
  width: 26rem;
  height: 29rem;
  border: 1px solid #fff;
  position: relative;
  background: #fff;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}
.service-item-farmer img {
  max-width: 100%;
  height: auto;
}
.service-item-blogs {

  padding: 20px 20px 20px 20px;
  width: 35rem;
  height: 26rem;
  border: 1px solid #fff;
  position: relative;
  background: #fff;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}
.service-item-index {
  padding: 30px 20px 20px 20px;
  margin-bottom: 50px;
  text-align: center !important;
  width: 19rem;
  border: 3px solid #47be9f;
  position: relative;
  background: white;
  /* box-shadow: 0 0 45px rgba(0, 0, 0, 0.08); */
}

.service-icon {
  position: relative;
  top: -16px;
  /* left: calc(50% - 48px); */
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  flex-direction: column;
  /* border: 2px solid grey; */
  text-align: center;
  width: 4.2rem;
  height: 4.2rem;
  transition: 0.5s;
}
.service-icon-testimonial {
  position: relative;
  top: -16px;
  left: calc(50% - 48px);
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* border: 2px solid grey; */
  text-align: center;
  width: 1.7rem;
  height: 1.7rem;
  transition: 0.5s;
}
/* form */
.form1 {
  border: none;
  border-bottom: 1px solid grey;
  background-color: transparent;
  border-radius: 0;
}
.show-more-blogs {
  width: 8rem;
  height: 2.5rem;
  border-radius: 0.4rem;
  margin-top: 1rem; /* Adjust as needed */
  background-color: white;
  border: 1px solid grey;
}

.btn-design {
  color: white;
  background-color: #47be9f;
}
.btn-design :hover {
  color: yellow;
  background-color: white !important;
}
/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Project Portfolio ***/
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--primary);
  border-color: var(--primary);
}

.portfolio-img {
  position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  background: var(--dark);
  transition: 0.5s;
}

.portfolio-img::before {
  left: 50%;
}

.portfolio-img::after {
  right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
  width: 51%;
  left: 0;
}

.portfolio-item:hover .portfolio-img::after {
  width: 51%;
  right: 0;
}

.portfolio-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 1;
  transition: 0.5s;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
  transition-delay: 0.3s;
}

/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
    max-width: 100% !important;
  }

  .quote-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .quote-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .quote-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.team-item img {
  border-radius: 8px 60px 0 0;
}

.team-item .team-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: #ffffff;
  transition: 0.5s;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
  .text-margin {
    margin: 0 8rem;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
  margin-bottom: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}

/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
    max-width: 100% !important;
  }

  .contact-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Footer ***/
.container {
  margin-top: 0;
}

.footer .btn.btn-social {
  margin-right: 5px;
  color: #747474;
  border: 1px solid #747474;
  border-radius: 38px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #747474;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Times New Roman";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: #ffffff;
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

.square {
  border-style: solid;
  border-width: 5px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
}
.square h1 {
  opacity: 1;
}

.textDiv {
  /* border: 1px solid black; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.textDivname {
  /* border: 1px solid black; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.textDivteam {
  /* border: 1px solid black; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.textDivname-team {
  /* border: 1px solid black; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* media queries final */
@media only screen and (min-width: 389px) and (max-width: 399px) and (orientation: portrait) {
  .navbar-logo {
    /* width: 80% !important; */
    height: 60% !important;
    margin-left: -10% !important;
    margin-top: 5px !important;
  }
  .ikp-responsive {
    /* max-width: fit-content; */
    /* max-height: fit-content; */
    height: 100px !important;
    width: 140px !important;
    /* width: fit-content; */
  }
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
  .navbar-logo{
    width: 233px !important;
    height: 65px !important;
  }
  .flex-dir{
    flex-direction: row !important;
  }
  .mar-img {
    margin-right: -100px !important;
  }
  .about-passion {
    font-size: x-large;
  }
  .responsive-video {
    height: 17.5rem !important;
    width: 55rem !important;
  }
  .responsive-about-img {
    max-width: 70% !important;
  }

  .dm-sans-soil {
    font-size: 1.1rem !important;
  }
  .m-left-lg {
    margin-left: 5.5rem !important;
  }
  .nav-contact {
    background-color: #47be9f !important;
    color: white !important;
    border-radius: 7px !important;
    padding: 0.5rem !important;
  }
  .farmer-stories-div {
    /* max-width: 1600px; */
    margin: 0 auto;
    /* text-align: center; */
  }
  .custom-img-class {
    padding-right: 0.8rem;
  }
  .custom-height-md{
    height: 110% !important;
  }
  .ikp-responsive {
    max-width: fit-content;
    max-height: fit-content;
    height: 120px;
    width: fit-content;
  }
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  .navbar-logo{
    width: 233px !important;
    height: 65px !important;
  }
  .ikp-responsive {
    max-width: fit-content;
    max-height: fit-content;
    height: 120px;
    width: fit-content;
  }
  .flex-dir{
    flex-direction: row !important;
  }
  .custom-height-md{
    height: 110% !important;
  }
  .service-item-blogs {
    padding: 20px 20px 20px 20px;
    margin-bottom: 50px;
    text-align: center;
    width: 35rem;
    height: 26rem;
    /* border: 1px solid #fff; */
    position: relative;
    background: #fff;
    /* box-shadow: 0 0 45px rgba(0, 0, 0, 0.08); */
  }
  .custom-img-class {
    padding-right: 0.8rem;
  }

  .nav-contact {
    background-color: #47be9f !important;
    color: white !important;
    border-radius: 7px !important;
    padding: 0.5rem !important;
  }
  .dm-sans-farmer {
    font-size: 1.08rem !important;
  }
  .dm-sans-farmer-name {
    font-size: 1rem !important;
  }
  .m-left-lg {
    margin-left: 5.5rem !important;
  }
  .dm-sans-soil {
    font-size: 0.95rem !important;
  }
  .home-numbers {
    font-size: 1.3rem !important;
  }
  .dm-sans-title {
    font-size: 2rem !important;
  }
  .dm-sans {
    font-size: 1.19rem !important;
  }
  .dm-sans-desig{
    font-size: 0.8rem !important;
  }
  .dm-sans-navbar {
    font-size: 0.95rem !important;
  }
  .home-testimonial-desig {
    font-size: 0.8rem !important;
  }
  .home-testimonial-name {
    font-size: 1rem !important;
  }
  .mar-img {
    margin-right: -30px !important;
  }
  .about-passion {
    font-size: x-large;
  }
  .dm-sans-title-offering {
    font-size: 2.5rem !important;
  }
  .responsive-video {
    height: 17.5rem !important;
    width: 55rem !important;
  }
  .responsive-about-img {
    max-width: 70% !important;
  }
  .farmer-stories-div {
    /* margin: 0 7rem; */
    /* max-width: 1600px; */
    margin: 0 auto;
    /* margin-right: 55px; */
  }
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
  .ikp-responsive {
    max-width: fit-content;
    max-height: fit-content;
    height: 100px;
    width: fit-content;
  }
  .flex-dir{
    flex-direction: row !important;
  }
  .farmer-stories-div {
    /* display: flex;
    /* align-items: center !important;
    justify-content: center !important; */
    /* margin: 0 auto !important;
    text-align: center;  */
    padding: 20px 20px 20px 20px;
    position: relative;
    padding-left: 50px;
    margin: auto;
    text-align: center;
  }
}
/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
  .dm-sans-soil {
    font-size: 1rem !important;
  }
  .nav-contact {
    color: #555555 !important;
  }
  .flex-dir{
    flex-direction: column !important;
  }
  .navbar-logo {
    /* width: 70% !important; */
    height: 55% !important;
    margin-left: -10% !important;
  }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
  .map-center{
    text-align: center !important;
  }
  .flex-dir{
    flex-direction: column !important;
  }
  .home-testimonial-desig {
    font-size: 0.7rem !important;
  }
  .home-testimonial-name {
    font-size: 0.8rem !important;
  }
  .footer-font{
    font-size: 85% !important;
  }
  .img-why-neoperk{
    margin: 0 !important;
    padding: 0 !important;
  }

  .custom-img-class {
    padding-right: 0rem !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .ikp-responsive {
    /* max-width: fit-content; */
    /* max-height: fit-content; */
    height: 100px !important;
    width: 140px !important;
    /* width: fit-content; */
  }
  .btn-social-mobile {
    width: 2.5rem;
    height: 2.5rem;
  }

  .fa-2x-mobile {
    font-size: 1.5rem;
  }
  .nav-contact {
    /* margin-left: -8px; */
    text-align: left;
    padding: 0;
  }
  .farmer-stories-div {
    /* display: flex;
    /* align-items: center !important;
    justify-content: center !important; */
    /* margin: 0 auto !important;
    text-align: center;  */
    padding: 20px 20px 20px 20px !important;
    position: relative;
    /* padding-left: 2rem !important; */
    /* margin: auto !important; */
    /* text-align: center !important; */
  }

  .padding-home {
    padding-top: 1.7rem !important;
  }
  .responsive-text-home {
    text-align: center !important;
  }
  .support-img {
    max-width: 80%;
    max-height: 80%;
  }
  .support-div {
    display: flex !important;
    margin: 0 auto !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .home-solution-img {
    height: 75%;
    width: 75%;
    margin-bottom: 30px;
  }
  .dm-sans-soil {
    font-size: 0.7rem !important;
  }
  .navbar-logo {
    /* width: 90% !important; */
    height: 75% !important;
    margin-left: -10% !important;
  }
  .dm-sans-title {
    font-size: 2rem !important;
  }
  .dm-sans {
    font-size: 1rem !important;
  }
  .company {
    padding-top: 2rem;
  }
  .col-footer {
    display: flex;
    align-items: center;
    margin: 0 auto;
    flex-direction: column;
  }
  .social-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .testimonial-text {
    font-size: 0.9rem;
  }
  .mar-img {
    margin-right: -105px !important;
  }
  .dm-sans-mid {
    font-size: 1.7rem !important;
  }
  .dm-sans-title-offering {
    font-size: 1.5rem !important;
  }
  .text-responsive-center {
    text-align: center !important;
  }
  .our-device-responsive {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto !important;
    align-items: center !important;
  }
  .responsive-video {
    height: 10rem !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto !important;
    align-items: center !important;
  }
  .responsive-about-img {
    width: 130% !important;
    height: 130% !important;
  }
  .linkedin-mb{
    padding-bottom: 25px !important;
  }
}
@media (max-width: 320px){
  .map-center{
    text-align: center !important;
  }
  .navbar-logo {
    /* width: 85% !important;  */
    height: 70% !important;
    /* margin-left: -10% !important; */
  }
  .nav-contact {
    /* margin-left: -2px; */
    text-align: left;
    padding: 0;
  }
  
  .testimonial-text {
    font-size: 0.8rem !important;
  }
  .home-testimonial-name {
    font-size: 0.7rem !important;
  }
  .home-testimonial-desig {
    font-size: 0.7rem !important;
  }
  .linkedin-mb{
    padding-bottom: 25px !important;
  }
    .support-img {
        width: 250px;
        height: 150px;
        object-fit: contain;
    }
}
.footer {
    background-color: #ECEFF1;
    padding: 3rem 0;
    font-family: 'DM Sans', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
}

.footer-left {
    max-width: 500px;
}

.brand-logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.store-badge {
    margin-bottom: 2.5rem;
}

.playstore-badge {
    max-width: 150px;
    height: auto;
    display: block;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-item i {
    color: #555;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.contact-item span {
    color: #000;
    font-weight: 500;
    min-width: 60px;
}

.contact-links {
    color: #555;
}

.contact-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: #000;
}

.footer-right {
    padding-top: 3rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.link-column h6 {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #000;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column ul li {
    margin-bottom: 0.8rem;
}

.link-column ul li a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.link-column ul li a:hover {
    opacity: 0.7;
}

.social-links {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.7rem;
    height: 3.7rem;
    border: 1px solid #000;
    border-radius: 50%;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #000;
    color: #fff;
}

.social-btn i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-right {
        padding-top: 0;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-links {
        flex: 1;
    }
}