@import url("https://fonts.googleapis.com/css?family=Noto+Serif+SC&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");
@font-face {
  font-family: BrugenField;
  src: url(brugenfield-ax9re.ttf);
}
@font-face {
  font-family: bestdeals;
  src: url(Best\ Deals.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: lightcyan;
  font-family: bestdeals;
}
h1 {
  font-family: BrugenField;
}
h2 {
  font-family: bestdeals;
}
.head h1{
  margin-bottom: -1%;
}

header {
  position: relative;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.logo {
  float: left;
  text-align: center;
  line-height: 60px;
  font-size: 36px;
  padding: 0 20px;
  color: #069370;
  font-weight: 700;
  text-decoration: none;
}
nav {
  float: right;
}
.clear {
  clear: both;
}
nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  display: block;
  margin: 10px 0;
  padding: 10px 20px;
  text-decoration: none;
  color: #262626;
}
nav ul li a.active,
nav ul li a:hover {
  background: #069370;
  color: #fff;
  transition: 0.5s;
}
/* @media (max-width: 1200px)
{
    header
    {
        margin: 20px;
    }
} */
@media (max-width: 768px) {
  .mean-toggle {
    display: block;
    width: auto;
    height: auto;
    margin: 10px;
    float: right;
    cursor: pointer;
    text-align: center;
    font-size: 30px;
    color: #069370;
  }
  .mean-toggle:before {
    content: "\f0c9";
    font-family: fontAwesome;
    line-height: 40px;
  }
  .mean-toggle.active:before {
    content: "\f00d";
  }
  nav {
    display: none;
  }
  nav.active {
    display: block;
    width: 100%;
  }
  nav.active ul {
    display: block;
  }
  nav.active ul li {
    margin: 0;
    text-align: center;
  }
}

/* ----------------------------------------
            HOME
-------------------------------------------*/

.carousel {
  width: 100%;
  background-color: #555;
  height: 600px;
  color: #eee;
  margin-top: -50px;
  position: relative;
}
.carousel .list {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.carousel .list .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.carousel .list .item::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  content: var(--title);
  font-size: 15em;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eee4;
  z-index: -1;
}
/* .carousel .list .item .image1{
    flex-shrink: 0;
    width: 300px;
    height: 525px;
    --left: -200px;
    background: 
        var(--img-src) var(--left) 0,
        url(../images/grocery.jpg) no-repeat;
    background-size: 100% auto;
    background-blend-mode: multiply;
    -webkit-mask-image: url(../images/soda.png);
    -webkit-mask-size: 100% auto;
    -webkit-mask-repeat: no-repeat;
    mask-image: url(../images/soda.png);
    mask-size: 100% auto;
    mask-repeat: no-repeat;
    transition: background 1s ease-in-out;
} */
.carousel .list .item .image {
  width: 100%;
  height: 100% !important;
}
.carousel .list .item .image img {
  width: 100%;
  height: 100% !important;
}
.carousel .list .item .content {
  width: 1140px;
  max-width: 90%;
  margin: auto;
  height: 100%;
  padding-top: 50px;
  box-sizing: border-box;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}
.carousel .list .item .info .title {
  font-size: 6em;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1em;
}
.carousel .list .item .info .category {
  opacity: 0.7;
}
.carousel .list .item .info .des {
  margin: 1em 0;
}
.carousel .list .item .info a {
  display: inline-flex;
  gap: 20px;
  text-decoration: none;
  color: #eee;
  font-weight: 500;
}
/* set active item */
.carousel .list .item {
  z-index: 1;
}
.carousel .list .item.active {
  z-index: 2;
}
.carousel .list .item.active .image {
  --left: 0;
}
/* arrows */
.arrows button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: monospace;
  background-color: #eee3;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: large;
  cursor: pointer;
  left: 10%;
  transition: background 0.5s, color 0.5s;
}
.arrows button#next {
  left: unset;
  right: 10%;
}
.arrows button:hover {
  background-color: #eee;
  color: #000;
}
.dots li {
  width: 15px;
  height: 15px;
  background-color: #eee5;
  border-radius: 50%;
  cursor: pointer;
}
.dots li.active {
  background-color: #eee;
}
.dots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: 30px;
  z-index: 2;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  transition: background 0.5s;
}
.carousel {
  overflow: hidden;
}
/* responsive */
@media screen and (max-width: 767px) {
  .carousel {
    height: 80vh;
  }
  .carousel .list .item .info {
    position: absolute;
    bottom: 10%;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    backdrop-filter: blur(20px);
  }
  .carousel .list .item .info .title {
    font-size: 2em;
  }
  .carousel .list .item .info .des {
    font-size: 0.8em;
    text-align: justify;
  }
  .carousel .list .item .content {
    justify-content: center;
    align-items: start;
  }
  .arrows button {
    top: unset;
    bottom: 20px;
  }
}

/* effect */
@keyframes transformAnimation {
  from {
    transform: translateX(var(--transform-from));
  }
  to {
    transform: translateX(var(--transform-to));
  }
}

.carousel.effect .item .image {
  animation: transformAnimation 1s ease-in-out 1 forwards;
}
.carousel.effect .item .info .title,
.carousel.effect .item .info .category,
.carousel.effect .item .info .des,
.carousel.effect .item .info a {
  animation: transformAnimation 1s ease-in-out 1 forwards;
}
.carousel.effect .item .info .category {
  animation-delay: 0.1s;
}
.carousel.effect .item .info .des {
  animation-delay: 0.2s;
}
.carousel.effect .item .info a {
  animation-delay: 0.3s;
}
.carousel.effect .item.active {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  animation: animationClipPath 0.9s ease-in-out 1 forwards;
}
@keyframes animationClipPath {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.carousel.effect {
  --transform: 300px;
}
.carousel.effect .item.active {
  --transform-from: calc(var(--transform) * -1);
  --transform-to: 0px;
}
.carousel.effect .item {
  --transform-from: 0;
  --transform-to: var(--transform);
}

/* ----------------------------------------
            ABOUT
-------------------------------------------*/
/* .head h1{
    font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.about-con p{
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
    word-spacing: 2.5px;
} */

/* ----------------------------------------
            ABOUT
-------------------------------------------*/
.about {
  overflow: hidden; /* Prevents unwanted horizontal scrolling */
}
.agriculture-section {
  padding: 10px 20px 90px 20px;
  position: relative;
}

/* Main Circular Image */
.circle-img {
  width: 100%;
  max-width: 400px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

/* Small Circular Image */
.small-circle {
  position: absolute;
  bottom: -20px;
  left: 15%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
}

/* Text Content */
.content-box {
  padding: 20px;
}

.content-box h2 {
  font-size: 28px;
  font-family: bestdeals;
  font-weight: 600;
  color: #2d3436;
}

.content-box p {
  font-size: 16px;
  color: #555;
}

.content-box ul {
  list-style: none;
  padding: 0;
}

.content-box ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.content-box ul li i {
  color: #0a6c60;
  margin-right: 8px;
}

/* Right-Side Info Boxes */
.info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.info-box-content {
  flex: 1;
  text-align: center;
  padding: 10px;
}

.info-box img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.info-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: white;
}

.info-box p {
  font-size: 14px;
  margin: 0;
  color: white;
}

.natural-farming {
  background: #0a6c60;
  color: white;
  display: flex;
  align-items: center;
  padding: 15px;
}

.quality-products {
  background: #0a6c60;
  color: white;
  display: flex;
  align-items: center;
  padding: 15px;
}

/* 🌿 Floating Leaf Animation */
.leaf {
  width: 163px;
  height: auto;
  position: absolute;
  z-index: 1000;
}
.leaf-top-left {
  position: absolute;
  top: 10%;
  left: -20%; /* Start slightly off-screen */
  width: 100px; /* Adjust size */
  animation: flyAcross 10s linear infinite;
}

/* Updated Keyframes */
@keyframes flyAcross {
  0% {
    left: -20%; /* Start outside the viewport */
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg) translateY(-10px); /* Slight tilt & bounce */
  }
  100% {
    left: 100vw; /* Stop at the screen edge instead of going beyond */
    transform: rotate(0deg);
  }
}

/* Ensure responsiveness */
@media (max-width: 992px) {
  .leaf-top-left {
    width: 80px; /* Smaller size for tablets */
    top: 5%;
    animation-duration: 8s;
  }
}

@media (max-width: 768px) {
  .leaf-top-left {
    width: 60px; /* Smaller size for mobile */
    top: 3%;
    animation-duration: 7s;
  }
}

/* .leaf-before-info {
    top: 30%;
    right: 20%;
} */

.leaf-bottom {
  bottom: 10px;
  right: -150px;
  animation: truckRide 10s linear infinite;
}
@keyframes truckRide {
  0% {
    right: -150px;
  }
  100% {
    right: calc(100vw - 140px);
  }
}

/* @keyframes floatLeaf {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
} */

/* Responsive Adjustments */
@media (max-width: 768px) {
  .small-circle {
    width: 100px;
    height: 100px;
    bottom: -15px;
  }
  .circle-img {
    max-width: 300px;
  }
  .content-box h2 {
    font-size: 24px;
  }
  .info-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .info-box img {
    margin-bottom: 10px;
  }
}
/* ----------------------------------------
            PRODUCTS
-------------------------------------------*/
.products {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.pro-card {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
}

.card4 {
  background: pink;
}
.pro-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.pro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), #000);
  clip-path: circle(0% at 50% 50%);
  transition: 0.5s;
}

.pro-card:hover::before {
  clip-path: circle(150% at 50% 50%);
}

.pro-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 20px;
  transition: 0.5s;
  z-index: 2;
}

.pro-card:hover .pro-content {
  bottom: 0;
}

.pro-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #00ff99;
}

.pro-content p {
  font-size: 16px;
  line-height: 1.4;
}

/* ----------------------------------------
            CONTACT
-------------------------------------------*/
.form-group label {
  color: black;
  font-family: bestdeals;
}
.form-group {
  margin-bottom: 20px;
}
.form {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.con-icon {
  background-color: #dbb94e;
  padding: 15px;
  border-radius: 50%;
}
.con-icon i {
  font-size: 20px;
}
.con-add {
  font-family: bestdeals;
  font-size: 18px;
}

.divider{
     display: block;
    margin: 0 auto;
    /* margin-top: -6%; */
}


/* ----------------------------------------
            FOOTER
-------------------------------------------*/

.foot-card {
  background-color: #0a6c60;
  color: white;
  margin-top: 50px;
  border: none;
  border-radius: 100px 100px 0 0;
}

.head1 {
  font-weight: 900;
  font-size: 30px;
}

.bdr {
  border-bottom: 1.5px solid #ffb74d;
  width: 65px;
  margin-right: auto;
  margin-left: auto;
}

.card-footer {
  justify-content: space-between;
  border: none;
  background: none;
  border-bottom: 0.5px solid #e0b6b6;
}

.footer-right > i {
  margin-left: 15px;
}

.fa-hand-holding-usd {
  color: #ffb74d;
}

.fa-handshake {
  color: #ffb74d;
}

.card-title {
  margin-bottom: 0.75rem;
  font-weight: 900;
  font-size: 25px;
  margin-top: 1.75rem;
}

.learn-more {
  color: #ffb74d;
}

.fa-angle-right {
  margin-left: 10px;
}

.fa-3x {
  color: #ffb74d;
}

.card-content {
  padding-right: 40px;
  padding-left: 30px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.card-content > p {
  color: #9e9e9e;
}

.heading {
  position: relative;
  top: 75px;
}

.follow-text {
  color: #9e9e9e;
}
.footerul li a {
  color: white !important;
  text-decoration: none;
}
.footerul ul {
  list-style-type: none;
}

.footerul li::before {
  content: "🌍  ";
}

/* ----------------------------------------
            EXPORT
-------------------------------------------*/
.export {
  background-color: #0a6c60;
  /* clip-path: polygon(50% 13%, 63% 0, 100% 0, 100% 56%, 100% 100%, 53% 100%, 0 100%, 0 57%, 0 0, 35% 0); */
  clip-path: polygon(
    53% 0,
    53% 0,
    100% 18%,
    100% 56%,
    100% 100%,
    53% 100%,
    0 100%,
    0 57%,
    0 16%
  );
  /* clip-path: ellipse(75% 100% at 50% 0%); */
}
.expo-contact {
  border-radius: 30px;
}

/* ----------------------------------------
            SERVICE
-------------------------------------------*/
/* Service Section */
.service-section {
  position: relative;
  background: url(../images/map.jpg) no-repeat center center/cover; /* Background image */
  padding: 170px 20px; /* Adjusted height */
  text-align: center;
  border-radius: 40px 40px 0 0;
  color: white;
  overflow: hidden;
}

/* Add a semi-transparent black overlay */
/* .service-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 58, 58, 0.4); 
} */

/* Ensure content is above the overlay */
.service-section .container {
  position: relative;
  z-index: 1;
}

.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px;
  width: 230px;
  height: 180px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}

.service-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.service-box h3 {
  font-size: 19px;
  margin-bottom: 5px;
  color: white;
}

.service-box p {
  font-size: 16px;
  opacity: 0.9;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .service-section {
    padding: 40px 20px;
  }
  .service-container {
    flex-direction: column;
    align-items: center;
  }
  .service-box {
    width: 90%;
    max-width: 280px;
    height: auto;
    padding: 25px;
  }
}

/* text style */
