
@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&family=Reenie+Beanie&display=swap');
:root {
  --darkgreen: #142a12;
  --mediangreen: #8EB305;
  --lightgreen: #e2e0c6;
  --gold: #d3ab75;
}
body {
  font-family: "Poppins", sans-serif;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
.section-padding{
  padding: 60px 0px;
}
.hero-section {
  background-color: var(--darkgreen);
  position: relative;
}
.hero-section .row{
  min-height: 80vh;
}
.primary-font {
  font-family: "Poppins", sans-serif;
  
}
.logo-brand img {
  height: 55px;
}
.secondary-font {
  font-family: "Reenie Beanie", cursive;
}
.text-medium-green{
  color: var(--mediangreen) !important;
}
.hero-content h4 {
  color: var(--gold);
  font-size: 40px;
}
.hero-content h1 {
   color: #ffffff;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 600;
  margin: 0 0 12px 0;
}
.hero-content {
  padding-bottom: 80px;
}

.learn-more-button {
  margin-top: 30px;
}

.learn-more-button a {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.learn-more-icon {
  width: 40px;
  height: 40px;
  background-color: var(--mediangreen);
  color: var(--darkgreen);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.learn-more-icon:hover {
  transform: scale(1.1);
  background-color: var(--mediangreen);
}

.learn-more-icon svg {
  width: 20px;
  height: 20px;
}
header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  top: 0;
  padding: 12px 0px;
}
header .nav-link {
  color: #ffffff;
  font-weight: 500;
  margin-left: 30px;
  text-transform: uppercase;
}
header .nav-link.active {
  color: var(--mediangreen) !important;
}
/* Food Waste Section */
.food-waste-section .fw-bg {
  background-image: url("../images/waste-management.jpg");
  background-size: cover;
  background-position: center right;
  background-attachment: fixed;
  
}
.food-waste-section .row{
  min-height: 80vh;
}
.fw-title {
  color: #ffffff;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 600;
  margin: 0 0 12px 0;
}
.fw-accent {
  color: var(--gold);
  font-size: 40px;
  font-family: "Reenie Beanie", cursive;
}
.fw-sub {
  color: rgba(255, 255, 255, 0.9);
  max-width: 380px;
  font-size: 16px;
}
.stats-card {
  background: linear-gradient(180deg, #cbdc6a 0%, #b6cf4e 100%);
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(16, 24, 12, 0.15);
}
.card-heading {
  color: #142a12;
  font-weight: 600;
}
.stat-item {
  width: 30%;
}
.stat-number {
  color: #142a12;
  line-height: 30px;
  margin-top: 8px;
  font-size: 60px;
 font-family: "Reenie Beanie", cursive;
 margin-bottom: 13px;
}
.stat-label {
  color: #142a12;
  font-size: 16px;
  font-weight: 400;
}
.card-contact {
  color: #142a12;
  font-size: 14px;
  margin-bottom: 0;
}
.card-arrow {
  display: inline-block;
  margin-left: 10px;
}

/* animation helpers */
.stat-item svg {
  display: block;
  margin: 0 auto;
}
.stat-number {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 991px) {
  .fw-title {
    font-size: 40px;
  }
  .stat-item {
    width: 32%;
  }
}
.hero-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
.circular-section {
  background: var(--darkgreen);
  color: var(--gold);
}
.circular-section .left-col {
  min-height: 480px;
  display: flex;
}
/* .circular-section .p-5 {
  max-width: 520px;
} */
.circular-title {
  margin: 0;
  color: var(--gold);
}
.circular-title .big {
  display: block;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 600;
  color: #d3ab75;
}
.handwritten {
  font-family: "Reenie Beanie", cursive;
  color: var(--mediangreen);
  font-size: 40px;
}
.circular-list{
  max-width: 520px;
  margin: 0 auto;
}
.circular-list li {
  border-bottom: 1px solid var(--gold);
}
.circular-list .icon {
  color: var(--gold);
  min-width: 28px;
}
.list-text {
  color: rgba(211, 171, 117, 0.95);
  font-size: 16px;
}
.right-col .circular-image {
  height: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .circular-title .big {
    font-size: 34px;
  }
  .right-col .circular-image {
    min-height: 320px;
  }
}

/* About Section */
.about-section {
 
  background: var(--darkgreen);
}
.about-section .row{
  min-height: 80vh;
  padding-top: 110px;
  padding-bottom: 60px;
}

.cow-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.cow-image:hover {
  transform: scale(1.05);
}

.points-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.point {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 25px 30px;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  pointer-events: none;
}

.point:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.point h5 {
  color: var(--darkgreen);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 20px;
  position: relative;
  z-index: 2;
}

.point p {
  color: #333;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.about-text-content {
  max-width: 550px;
}

.accent-text {
  color: var(--gold);
  font-size: 40px;
 
  margin-bottom: 0px;
  font-family: "Reenie Beanie", cursive;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text-content .section-title {
  color: white;
  font-size: 53px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 53px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.about-text-content p {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
}

@media (max-width: 767px) {

  
  
  .about-text-content .section-title {
    font-size: 36px;
  }
  
  .cow-image {
    max-width: 250px;
  }
  
  .accent-text {
    font-size: 22px;
  }
}

/* From Surplus to Solution Section */
.surplus-solution-section {
  background-color: #f8f5e6;
  padding: 80px 0;
}

.surplus-solution-section .section-title {
  color: var(--darkgreen);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Reenie Beanie", cursive;
}

.section-subtitle {
  color: #6c757d;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.journey-card {
 
  height: 100%;
  display: flex;
  
  
}

/* .journey-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
} */

.journey-image {
  
  
  margin-bottom: 30px;
}

.journey-image img {
 
  width: auto;
  object-fit: contain;
}

.journey-title {
  color: var(--darkgreen);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
  min-height: 50px;
}

.journey-description {
  color: #000;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
  max-width: 150px;
}

@media (max-width: 767px) {
  .surplus-solution-section .section-title {
    font-size: 36px;
    line-height: 36px;
  }
  
  .journey-card {
    padding: 30px 20px;
  }
  
  .journey-image {
    height: 150px;
  }
  
  .journey-image img {
    max-height: 130px;
  }
  
  .journey-title {
    font-size: 16px;
    min-height: auto;
  }
  
  .journey-description {
    font-size: 13px;
  }
}

/* How It Works Section */
.how-it-works-section {
  background: var(--darkgreen);
  color: white;
  padding: 80px 0;
}

.how-it-works-steps {
  position: relative;
}

.step {
  display: flex;
  align-items: flex-start;

  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 25px 0px;
  border-bottom: 1px solid var(--gold );
}

.step:hover {
  
  transform: translateX(10px);
}
/* 
.step.active {
  background: rgba(255, 255, 255, 0.15);
} */

.step.active::before {
  content: '▶';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mediangreen);
  font-size: 14px;
}




.step-icon img {
  width: 30px;
  height: 30px;
  
}
/* .step.active .step-icon img{
filter: brightness(0) invert(1);
} */

.step-content {
  flex: 1;
}

.step-title {
  color: var(--gold);
  font-size: 16px;

  transition: color 0.3s ease;
}

.step.active .step-title {
  color: var(--gold);
}

.step-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.how-it-works-image-container {
  position: relative;
  text-align: center;
}

.how-it-works-image-container img {
  max-height: 400px;
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0.9);
}

.how-it-works-image-container img.current-image {
  opacity: 1;
  transform: scale(1);
}

.image-caption {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-top: 20px;
  font-style: italic;
}

@media (max-width: 991px) {
  .how-it-works-section {
    padding: 60px 0;
  }
  
  .step {
    margin-bottom: 30px;
    padding: 15px;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .step-icon img {
    width: 25px;
    height: 25px;
  }
  
  .step-title {
    font-size: 18px;
  }
  
  .step-description {
    font-size: 13px;
  }
  
  .how-it-works-image-container img {
    max-height: 300px;
  }
}

@media (max-width: 767px) {
 
  
  .step.active::before {
    right: 15px;
  }
}

/* Who We Are & What We Do Section */
.who-we-are-section {
  background-color: var(--lightgreen);
  padding: 60px 0;
}

.who-we-are-section .row {
  display: flex;
  flex-wrap: wrap;
}

.who-we-are-section .col-md-4 {
  display: flex;
  flex-direction: column;
}

.feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-title {
  color: var(--mediangreen);
  font-size: 53px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 53px;
 
}

.section-description {
  color: var(--darkgreen);
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  color: var(--mediangreen);
}

.feature-icon svg {
  fill: var(--gold);
}

.feature-title {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-description {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

.image-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
}

.image-card:hover {
  transform: scale(1.02);
}

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

.cta-title {
  color: var(--gold);
  font-size: 53px;
  font-weight: 600;
  margin-bottom: 80px;
  line-height: 53px;
}

.btn-primary {
  background-color: var(--mediangreen);
  border-color: var(--mediangreen);
  color: white;
  padding: 12px 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--darkgreen);
  border-color: var(--darkgreen);
  transform: translateY(-2px);
}
footer{
  background: var(--lightgreen);
 padding-top: 60px;
 padding-bottom: 200px;
  border-top: 1px solid #8A865D;
  position: relative;
}
footer::after{
  background: url(../images/footer-bg.png);
  background-size: 100%;
  background-position: bottom ;
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  right: 0;
}
.footer-logo{
  max-width: 240px;
  margin-bottom: 15px;

}

.footer-nav {
 
  align-items: center;
  height: 100%;
}

.footer-link {
  color: #000;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}
.contact-page{
  background: var(--darkgreen);
  padding-top: 100px;
}

/* Contact Section Styles */
.contact-header {
  padding: 80px 0 40px 0;
}

.contact-content {
  padding: 60px 0;
  
}
.contact-info{
 background: #072404;
 padding: 30px;
 border-radius: 20px;
}
.contact-item {
  border-right: 1px solid #11340E;
}
.contact-icon svg{
  fill: var(--gold);
}
.contact-label{
  color: #AECD6C;
  font-family: "Reenie Beanie", cursive;
  font-size: 28px;
}
.contact-value{
  color: #fff;
  margin-bottom: 0px;
}
.contact-title {
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Reenie Beanie", cursive;
}

.contact-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-form {
 margin-top: 60px;
}

.contact-form .form-label {
  color: #AECD6C;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 20px;
    font-family: "Reenie Beanie", cursive;
}

.contact-form .form-control {
  background: #072404;
  border: none;
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 54px;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(211, 171, 117, 0.25);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-submit-btn {
  background:#AECD6C;
  color: var(--darkgreen);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  width: 100%;
}

.contact-submit-btn:hover {
  background: #c49a60;
  color: var(--darkgreen);
  transform: translateY(-2px);
 
}

.contact-image {
  text-align: center;
  padding: 40px 0;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}
.choose-list {
  text-align: center;
}
.choose-list img{
  border-radius: 25px;
}
.choose-list p{
  padding: 15px;
}
.vision-section{
  background: url(../images/vision-bg.jpg) center center/cover no-repeat;
  padding-top: 80px;
  padding-bottom: 80px;
}
.mission-section{
 background: url(../images/mission-bg.jpg) center center/cover no-repeat;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .contact-title {
    font-size: 40px;
  }
  
  .contact-content {
    padding: 40px 0;
  }
  
  .contact-image {
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .hero-section{
    padding: 20px 0;
  }
  header{
    padding: 20px 0;
    position: relative;
    padding: 20px;
    background: #072404;
  }
  .navbar-toggler{
    background: var(--mediangreen);
  }
  .navbar-collapse{
    position: absolute;
    right: 0;
    top: 70px;
    width: 50%;
    background: #072404;
    padding: 20px;
    z-index: 1000;
    border-radius: 20px;
    right: 20px;
  }
  .contact-title {
    font-size: 32px;
  }
  
  .contact-subtitle {
    font-size: 16px;
  }
  
  .contact-content {
    padding: 30px 0;
  }
  
  .contact-form {
    max-width: 100%;
    padding: 20px;
    margin-top: 30px;
  }
  .contact-page{
    padding-top: 20px;
  }
  .about-section .row{
    padding-top: 20px;
  }
  .stats-card{
    margin-bottom: 20px;
  }
  .circular-section{
    padding: 30px 0;
  }
  .who-we-are-section{
    padding: 30px 0px;
  }
}
@media (max-width: 767px) {
  /* html,body{
    overflow-x: hidden;
  } */
  .section-title {
    font-size: 32px;
  }
  
  .feature-card {
    margin-bottom: 30px;
  }
  
  .cta-title {
    font-size: 24px;
    line-height: 30px;
 
  }
}
