 body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfbf5; /* cream background */
  color: #333;
}

.km-container {
  text-align: center;
  padding: 50px 20px;
}

.km-subtitle {
  color: #2b7a2b;
  font-weight: bold;
  font-size: 18px;
}

.km-title {
  font-size: 34px;
  font-weight: 700;
  margin: 10px 0;
  color: #173d1d;
}

.km-desc {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #555;
}

/* Cards Section */
.km-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.km-card {
  width: 300px;
  background: #2b7a2b; /* green outer border */
  border-radius: 0 0 150px 150px;
  padding: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  clip-path: polygon(50% 0%, 100% 12%, 100% 100%, 0% 100%, 0% 12%);
  box-sizing: border-box;
}

.km-card-inner {
  background: white;
  border: 5px solid #ccc; /* gray inner border */
  border-radius: 0 0 140px 140px;
  overflow: hidden;
  position: relative;
  clip-path: polygon(50% 0%, 100% 12%, 100% 100%, 0% 100%, 0% 12%);
  height: 100%;
  box-sizing: border-box;
}

.km-card-inner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.km-icon {
  /* background: #ffcc33; */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  position: absolute;
  top: 180px;
  left: 50%;
   transform: translateX(-50%);
  /* box-shadow: 0px 2px 6px rgba(0,0,0,0.2); */
}
.km-icon img {
  width: 100%;   /* size of logo inside */
  height: 100%;
  object-fit: contain;
}

.km-card-content {
  padding: 70px 20px 40px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  text-align: center;
 }

.km-banner-wrapper {
  padding: 0 40px;
}
 
.km-banner {
  background: #173d1d url('/image/getintouch.jpg') no-repeat center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 10px 10px;
  margin-top: 60px;
  position: relative;
  border-radius: 12px;
margin:40px 40px 40px 40px
}
 .wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
}

.km-banner-text {
  font-size: 22px;
  font-weight: bold;
  max-width: 600px;
  padding: 20px 20px;
 
 
}

.km-banner-btn {
  background: #2bb673;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.km-banner-btn:hover {
  background: #249a60;
}

 
.km-farmer {
  position: absolute;
  right: 40px;
  bottom: 0;
  max-height: 170px;
}



 @media (max-width: 625px) {
  .wrapper {
    flex-direction: column;
    align-items: center; /* keep left-aligned */
  }

  .km-banner-btn {
    margin-top: 12px; /* space between text & button */
    
  }
  .km-banner img {
    display: none;
  }
  .km-banner{
    align-items: center;
  }
}









@media(max-width: 768px){
  .km-cards {
    flex-direction: column;
    align-items: center;
  }
  .km-banner {
    flex-direction: column;
    text-align: center;
    padding-bottom: 40px;
  }
  .km-farmer {
    position: static;
    margin-top: 20px;
  }
}