 .navbar-brand img {
      height: 88px;
    }
    .nav-link.active {
      color: #f16824;
      font-weight: bold;
      /*border-bottom: 2px solid green;*/
    }
  
.hero-section {
  position: relative;
  width: 100%;
}

.hero-slide {
  width: 100%;
  position: relative;
  height: 480px;
  background-size: cover;
  display: inline-flex;
  background-position: center;
  align-items: center;
  justify-content: center;
}

.overlay-content {
  /*background: rgba(0, 0, 0, 0.5);*/
  padding: 30px;
  border-radius: 10px;
  max-width: 80%;
  margin: auto;
}
.notice-section {
  background-color: #f9f9f9;
}

.notice-marquee {
  font-size: 1.2rem;
}
.healthy-banner {
  background-image: url('../img/home-bg-img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
}

.healthy-banner h2 {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
 .stats-banner {
  background-color: #02073d; /* Matching the green from image */
  padding: 50px 0;
}
.stats-banner h4 {
  font-size: 32px;
}
.btn-success {
  background-color: #02073d;
}
.organic-cta-banner {
  background-color: #2ca313; /* Matches green tone */
}
.text-success {
  color: #02073d !important;
}
.bg-success {
  background-color: #02073d !important;
}
.shop-online-banner {
  background-color: #02073d; /* Rich black */
}
.about-us-header {
  background-color: #052d67; /* Bright green */
  height: 200px;              /* You can adjust as needed */
  text-align: center;
}
.clients .img-fluid {
  max-height: 100px;
  object-fit: contain;
}
.product-list .img-fluid {
  height: 200px;
  object-fit: cover;
}
.product-list a {
    text-decoration: none;
}
.navbar-expand-lg .navbar-nav .nav-link {
  color: #000;
  font-weight: 500;
}
.navbar-nav .nav-link:hover {
    color: #f16824;
}  
.product-info p {
    font-size: 20px;
}
.navbar-expand-lg .navbar-collapse {
    margin-right: 5%;
}
.text-grey {
    color: #4c4c4cee;
}
.section-ptb {
    padding-top: 40px;
    padding-bottom: 60px;
}
.feature-box {
    position: relative;
    padding: 50px;
    border-radius: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #dddadcb0;
}
.feature-box h3 {
    font-size: 1.125rem;
    margin: 15px 0 0 0;
    color: #181717;
}
.feature-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.feature-items .feature-box:hover::after {
    height: 100%;
}
.feature-items .feature-box::after {
    content: '';
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: #d3e3fd;
    transition: all ease-in-out 0.35s;
    display: block;
    z-index: -1;
}
.section-title {
    margin-bottom: 30px;
}
.cta-section {
    background: #8d1105;
    padding: 70px 0 40px;
}
.cta-section .contact-info {
    overflow: hidden;
    float: right;
}
.cta-section .contact-info > div {
    float: left;
    position: relative;
    padding-left: 60px;
    padding-bottom: 5px;
    padding-top: 25px;
}
.cta-section .contact-info > div + div {
    margin-left: 26px;
}
.cta-section .contact-info i {
    position: absolute;
    left: 0;
}
.cta-section .contact-info .bi:before
 {
    font-size: 45px;
    font-size: 2.8125rem;
    color: #F7B403;
}
.cta-section h3, .cta-section h4 {
    color: #fff;
}
.cta-section p {
    color: #c9c9c9;
    margin: 0;
}
@media only screen and (max-width: 600px) {
  .hero-slide {
    height: 17vh;
  }
  .overlay-content {
    padding: 21px;
    max-width: 90%;
  }
  .feature-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 8px;
    }
   .feature-box {
        padding: 20px;
        width: 46%;
    } 
    .feature-box h3 {
        font-size: 0.85rem;
    }
 .cta-section .contact-info > div + div {
    margin-left: 3px;
}   
}