/* ===============================
   GOOGLE FONT USAGE
   -------------------------------
   H1 Banner       → Raleway
   Headings h2-h6  → Playfair Display
   Body Text       → Inter
================================ */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* ===============================
   HEADER (OVER BANNER)
================================ */

.site-header {
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.navbar {
    background: #f8f8f8f7;
    padding: 10px 0;
    background: rgba(44, 65, 67, 1);
    margin: 1rem 2rem;
    color: #fff;
    border-radius: 10px;
       transition: margin 0.3s ease, border-radius 0.3s ease;
}

.navbar-brand {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: #2f4f4f !important;
}
.nav-link:hover {
    text-decoration: none;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    color: #fff !important;
    margin-right: 20px;
}

a.btn.buy.rounded-pill.px-4 {
    background: rgba(239, 236, 214, 1);
    color: rgba(44, 65, 67, 1);
}
/* Desktop Buy Button */
.navbar .btn {
  font-family: 'Inter', sans-serif;
}

/* ===============================
   MOBILE MENU
================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #2f4f4f;
  transition: 0.4s ease-in-out;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-menu ul li {
  margin: 25px 0;
}

.mobile-menu a {
  font-family: 'Inter', sans-serif;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}



/* ===============================
   HERO / BANNER SECTION
================================ */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #f6f7e8;
  padding-top: 140px;
  position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0px;
    width: 100%;
    height: 80%;
    display: block;
    background-size: cover !important;
  

    background: url(../img/arrow1.svg) no-repeat center bottom;
}
/* Banner H1 */
.hero-section h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: #2f4f4fe6;
    line-height: 1.2;
}

.hero-section h1 span {
  font-weight: 700;
}

/* Quote / Watch-style text */
.hero-quote {
  font-family: 'Inter', sans-serif;
  margin-top: 30px;
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
}

/* ===============================
   OTHER HEADINGS
================================ */

h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #2f4f4f;
}

/* ===============================
   FOOTER
================================ */

.site-footer {
  background: #2f4f4f;
  color: #fff;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
}

/* ===============================
   SCROLL EFFECT (OPTIONAL)
================================ */

.navbar.scrolled {
  background: #2f4f4f;
  transition: background 0.3s ease;
}



.navbar.scrolled .nav-link, .navbar.scrolled .navbar-brand {
    /* color: #fff !important; */
    color: rgba(239, 236, 214, 1) !important;
}

/* ===============================
   QUOTE ROTATOR
================================ */

.hero-quote-wrapper {
  position: relative;
  margin-top: 30px;
  max-width: 420px;
}

/* Quotes */
.hero-quote {
  position: absolute;
  opacity: 0;
  font-style: italic;
  font-size: 1.4rem;
  color: #555;
  transition: opacity 0.6s ease;
  font-weight: 700;
}

.hero-quote.active {
  position: relative;
  opacity: 1;
}

/* Progress bar container */
.quote-progress {
  margin-top: 10px;
  height: 1px;
  background: #cfd6c6;
  overflow: hidden;
}

/* Progress animation */
.quote-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: #2f4f4f;
  animation: progressFill 4s linear infinite;
}
.banner-text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
/* Progress keyframes */
@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.float-product1 {
    animation: floatProduct 2s ease-in-out infinite;
    width: 60%;
}

@keyframes floatProduct1 {
  0% {
    transform: translateY(50px);
  }
  50% {
    transform: translateY(-900px);
  }
  100% {
    transform: translateY(0);
  }
}


.float-product {
    animation: floatProduct 3s ease-in-out infinite;
    width: 60%;
}

@keyframes floatProduct {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.neo-bg-text {
  bottom: 200px;
}

.neo-bottle {
  bottom: -260px;
}

.features-section {
  background-color: #f6f7e8; /* Light green-beige background */
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
}

.features-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0px;
    font-size: 0.9rem;
    color: #2f4f4f;
    gap: 12px;
}

.features-list li {
  display: flex;
  align-items: center;
}

.features-list li.separator {
  font-size: 0.8rem;
  color: #7c7c7c; /* muted dot color */
  padding: 0 8px;
  user-select: none;
}

.features-list li img {
  /* width: 18px;
  height: 18px; */
  margin-right: 6px;
  filter: invert(22%) sepia(7%) saturate(246%) hue-rotate(110deg) brightness(91%) contrast(83%);
  /* optional: tint icons to dark greenish */
}

.features-list li span {
  white-space: nowrap;
}

nav.navbar.navbar-expand-lg.navbar-light.fixed-top.scrolled {
    margin: 0px;
    border-radius: 0px;
     transition: margin 0.3s ease, border-radius 0.3s ease;
}
.problem-section {
    background: #f6f7e8;
    padding: 10rem 1.5rem;
    /* position: relative; */
    /* max-width: 1200px; */
    margin: auto;
    position: relative;
}

/* Cards */
.card {
    background: #2e3e3e;
 
    border-radius: 14px;
    padding: 3.5rem 3rem;
    display: flex;
    gap: 2rem;
    max-width: 760px;
    flex-direction: row;
}

/* Staggered positioning (desktop) */
.card-one {
  margin-bottom: 3rem;
}

.card-two {
  margin-left: auto;
}

/* Stat */
.stat h2 {
  font-size: 3.2rem;
  font-weight: 600;
  margin: 0;
  color: rgba(239, 236, 214, 1);
}

.stat span {
  font-size: 1.2rem;
  opacity: 0.9;
  color:rgba(239, 236, 214, 1);
  
}

/* Content */
.content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 0.5rem;
    color: rgba(239, 236, 214, 1);
    font-weight: 300;
}

.muted {
  opacity: 0.7;
}

.problem-section::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 59%;
    display: block;
    background-size: cover !important;
    background: url(../img/arrow4.svg) no-repeat center bottom;
}


.why-neogreens {
  background: #D3E0BB ;
  padding: 40px 20px;
  position: relative;
}
.why-neogreens::before {
    content: '';
    position: absolute;
    bottom: 300px;
    right: 0px;
    width: 23%;
    height: 55%;
    display: block;
    background-size: cover !important;
    background: url(../img/arrow6.svg) no-repeat center bottom;
    z-index: 999;
}

.why-box {

  margin: auto;
  background: rgba(239, 236, 214, 1);
  border-radius: 12px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid #a8b58a;
}

/* LEFT */
.why-content {
  max-width: 520px;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    /* color: #2f3b1f; */
    font-weight: 500;
}

.why-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
}

/* RIGHT */
.why-icons {
    display: flex;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 9px;
    align-items: center;
    width: 28%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
}

.why-icons img {
  justify-self: center;
   max-width: 80px;
  opacity: 0.9;
}

.flow-container {
    position: relative;
    /* width: 1200px; */
 
    background: linear-gradient(180deg, #EFECD6 0%, #D3E0BB 100%);
}
/* PRODUCT */
.flow-container .product {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.flow-container .product img {
  width: 360px;
  filter: drop-shadow(0 20px 25px rgba(0,0,0,.2));
}

/* SVG LINES */
.flow-container svg {
    position: relative;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    transform: scaleY(1.3);
}
.flow-container  path {
    fill: none;
    stroke: #2f4f4f;
    stroke-width: 1px;
    stroke-dasharray: 6;
    animation: dash 2.5s linear infinite;
}

@keyframes dash {
  to { stroke-dashoffset: -20; }
}

/* DOT */
.flow-container  .dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #9fb36a;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
  z-index: 3;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(159,179,106,.5); }
  70% { box-shadow: 0 0 0 12px rgba(159,179,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(159,179,106,0); }
}

/* DOT POSITIONS */
.dot-1 {
    top: 19%;
    left: 25%;
}
.dot-2 {
    top: 53%;
    left: 16%;
}
.dot-3 {
    top: 71%;
    left: 32%;
}
.dot-4 {
    top: 19%;
    right: 27%;
}
.dot-5 {
    top: 47%;
    right: 27%;
}
.dot-6 {
    top: 53%;
    right: 29%;
}
.dot-7 {
    top: 73%;
    right: 29%;
}

/* CONTENT BOX */
.flow-container .box {
    position: absolute;
    /* background: #f6f6ef; */
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    color: #3b3b3b;
    /* box-shadow: 0 5px 12px rgba(0,0,0,.08); */
}
.flow-container .box h4 {
    margin: 0 0 6px;
    font-weight: normal;
    border: 1px solid #2f4f4f;
    padding: 10px;
    border-radius: 7px;
}
.flow-container .box ul {
    margin: 10px;
    padding-left: 24px;
}
section.flow-container .container {
    position: relative;
}
/* LEFT */
.microgreens { top: 80px;}
.probiotic { top: 350px;  }
.leaf { bottom: 90px;  }

/* RIGHT */
.fruits { top: 80px; right: 100px; }
.prebiotic { top: 300px; right: 100px; }
.ashwa { top: 390px; right: 80px; }
.digestive { bottom: 120px; right: 40px; }
.neo-scroll-wrapper::before {
    content: '';
    position: absolute;
    bottom: -400px;
    left: 0px;
    width: 50%;
    height: 100%;
    display: block;
    background-size: cover !important;
    background: url(../img/arrow5.svg) no-repeat center bottom;
    z-index: 999;
}
/* Gives scrolling space */
.neo-scroll-wrapper {
  height: 200vh; /* controls how long it stays sticky */
  position: relative;
    background:rgba(44, 65, 67, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Sticky pinned section */
.neo-parallax {
  position: sticky;
  top: 0;
  height: 100vh;

  overflow: hidden;

  color: #fff;
}

/* Top content */
.neo-content {
  text-align: center;
  padding-top: 120px;
  z-index: 3;
  position: relative;
}

.neo-content h2 {
    color: #fff;
    font-size: 3.2rem;
    margin-bottom: 20px;
}
.neo-content p {
    font-size: 17px;
    opacity: 0.85;
    color: rgba(239, 236, 214, 1);
}
/* Background text */
.neo-bg-text {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: rgba(255,255,255,0.08);
    z-index: 1;
    opacity: 0;
    white-space: nowrap;
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 500;
}

/* Bottle */
.neo-bottle {
    position: absolute;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
    /* width: 500px; */
    z-index: 2;
    /* opacity: 0; */
}


   /* Parent container for the section */
 .why-choose-container {
    /* max-width: 1200px; */
    padding: 6rem 0rem;
    /* padding: 0 20px; */
    text-align: center;
    background: rgba(239, 236, 214, 1);
}
        /* Title styling */
     .why-choose-container h2 {
    /* font-size: 36px; */
    /* color: #2e3b36; */
    margin-bottom: 20px;
    font-family: Playfair 'Playfair Display';
    font-size: 3.2rem;
    font-weight: 600;
    color: #2f4f4fe6;
    line-height: 1.2;
}

        /* Paragraph text styling */
     .why-choose-container p {
    font-size: 16px;
    color: rgba(103, 112, 113, 1);
    margin-bottom: 40px;
}
        /* Grid container for the 4 items */
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        /* Individual grid item */
        .why-choose-item {
            position: relative;
          
        
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        /* Image inside each grid item */
        .why-choose-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
           
        }

        /* Content inside each grid item */
.why-choose-item .content {
    padding: 15px;
    position: absolute;
    bottom: 0px;
    background-color: #0000003b;
    width: 100%;
    text-align: left;
    height: 100px;
}
        /* Title inside the content */
      .why-choose-item .content h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
}

        /* Description text inside the content */
        .why-choose-item .content p {
            color: #fff;
            font-size: 14px;
        }

        /* Hover effect on grid items */
      

  

    /* ===== SCROLL SECTION ===== */
    .scrolly {
      height: 400vh; /* steps count × 100vh */
      position: relative;
    }

    .scrolly-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* Background */
    .scrolly-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: background-image 0.6s ease;
      z-index: 1;
    }

    .scrolly-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
    }

    /* Content + Progress container */
    .scrolly-content {
      position: relative;
      z-index: 2;
      color: white;
     
    
      flex: 1;
    }

   .scrolly-content h2 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    color: #fff;
}

    .scrolly-content p {
      opacity: 0.8;
      margin-bottom: 20px;
    }

    .scrolly-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
}

    .step {
      font-size: 18px;
      margin-bottom: 14px;
      opacity: 0.4;
      transition: all 0.3s ease;
      position: relative;
    }

    .step.active {
      opacity: 1;
      transform: translateX(8px);
    }

    /* ===== PROGRESS BAR ===== */
    .progress-container {
      position: relative;
      width: 40px;
      height: 260px;
      margin-right: 20px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      z-index: 2;
    }

    .progress-bar {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 3px;
    }

    .progress-bar-fill {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      background: #fff;
      border-radius: 3px;
      top: 0;
      height: 0%;
      transition: height 0.25s ease;
      transform-origin: top;
    }

    /* Dots */
    .progress-dot {
      position: absolute;
      width: 16px;
      height: 16px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      margin: 0 auto;
      transition: background 0.3s ease, transform 0.3s ease;
      z-index: 3;
    }

    /* Positioning the dots on the right side of each step */
    .step .progress-dot {
      left: 100%;
      margin-left: 10px;
    }

    .progress-dot:last-child {
      margin-bottom: 0;
    }

    .progress-dot.active {
      background: #fff;
      transform: scale(1.3);
    }

    /* ===== LAYOUT ===== */
    .scrolly-sticky {
      display: flex;
      align-items: center;
      padding-left: 40px;
    }

    /* ===== NEXT SECTION ===== */
    .next-section {
      height: 100vh;
      display: grid;
      place-items: center;
      font-size: 36px;
      background: #f5f5f5;
    }


.progress-menu {
    display: flex;
}
.progress-dot {
    display: none;
}




/* Main section */
    .health-parallax {
      min-height:420vh;
      background: linear-gradient(#f6f8e8, #dfeac4);
    padding-top: 50px;
      position: relative;
    }

    /* Sticky Heading centered */
.health-parallax__heading {
    position: sticky;
    top: 140px;
    font-size: 5rem;
    /* max-width: 700px; */
    margin: 0px auto;
    text-align: center;
    z-index: 4;
    color: #333;
    opacity: 0.9;
    margin-bottom: 100px;
}

    /* Cards Container */
   .health-parallax__cards {
    position: relative;
    height: 100vh;
    margin-top: -787px;
}

    /* Individual Cards */
    .parallax-card {
      position: absolute;
      width: 300px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      transition: transform 0.1s linear;
      z-index: 5; /* Ensures cards can overlap heading */
    }

    /* Card Image */
    .parallax-card img {
      width: 100%;
      display: block;
    }

    /* Card Text */
    .parallax-card span {
        position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  font-size: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  width: 100%;   /* Make the width equal to the parent card */
  height: 80px;  /* Set a fixed height */
  text-align: center; /* Center the text horizontally */
  display: flex;
  justify-content: center; /* Center the text horizontally with flexbox */
  align-items: center;     /* Center the text vertically with flexbox */
  padding: 0 10px; 
    }

    /* Manual positioning for cards, ensuring overlap */
    .parallax-card:nth-child(1) { top: 10px; left: 10%; }
    .parallax-card:nth-child(2) { top: -90%; right: 12%; }
    .parallax-card:nth-child(3) { top: 380px; left: 18%; }
    .parallax-card:nth-child(4) { top: -320px; right: 10%; }



.health-parallax::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 59%;
    display: block;
    background-size: cover !important;
    background: url(../img/arrow3.svg) no-repeat center bottom;
}


.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 59%;
    display: block;
    background-size: cover !important;
    background: url(../img/arrow2.svg) no-repeat center bottom;
}


.footer {
    background: #324545;
    color: #f5f6f2;
    padding: 5rem 2rem 2rem;
    position: relative;
}

/* ---------- TOP ---------- */
.footer-top {
  
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.footer-left h2 {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.2;
    color: rgba(239, 236, 214, 1);
}
.footer-left p {
  margin: 1.5rem 0;
  opacity: 0.85;
}

.footer-cta {
  display: flex;
  gap: 1rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid #cfd6c3;
  color: #f5f6f2;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- PRODUCT IMAGE ---------- */
.footer-right img {
    max-width: 66%;
}

/* ---------- BOTTOM ---------- */
.footer-bottom {
 
  margin: 4rem auto 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
}

.socials span {
  margin-right: 0.8rem;
  opacity: 0.8;
  cursor: pointer;
}

.footer-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #f5f6f2;
    opacity: 0.85;
    font-weight: 300;
}

.footer-right {
    position: relative;
    width: 46%;
    height: 260px;
    display: block;
    margin: 0 auto;
}

/* Main pack */
.img-pack {
    width: 440px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}
/* Stick packs */
.img-sticks {
    width: 241px;
    position: absolute;
    left: 200px;
    bottom: -80px;
    transform: rotate(-8deg);
    z-index: 1;
}
.brand img {
    width: 130px;
}


/* ---------- LEGAL ---------- */
.socials img {
    width: 20px;
    margin: 10px 0px;
}
.footer-legal {

  margin: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-legal a {
  color: inherit;
  margin-left: 1rem;
  text-decoration: none;
}

i#mobileMenuBtn {
    display: none;
}

.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2f4f4f;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* show button */
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ---------- MOBILE ---------- */
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .neo-content {
    padding: 20px;
}
i#mobileMenuBtn {
    display: block;
}
.float-product {
   
    padding: 20px;
}
li.separator {
    display: none;
}
a.btn.btn-light.mt-3 {
    color: #000;
    font-size: 1.4rem;
}
.features-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    margin: 0px;
    font-size: 1.4rem;
    color: #2f4f4f;
    gap: 12px;
    flex-direction: column;
}
  .hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: #f6f7e8;
    padding-top: 140px;
    position: relative;
}

  .why-box {
    flex-direction: column;
    text-align: center;
  }

  .why-icons {
    grid-template-columns: repeat(3, 1fr);
  }

    .why-choose-grid {
                grid-template-columns: 1fr;
            }

   .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links a {
    margin: 0 0.8rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-right {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 0rem;
    margin-top: 2rem;
     flex-direction: row-reverse;
  }

  .img-pack,
  .img-sticks {
    position: static;
    transform: none;
    width: 160px;

  }
  img.img-pack.float-product1 {
    position: absolute;
    right: 17px;
    top: 41px;
}
.hero-section {
    min-height: 50vh;
  
 
}
  .card {
    flex-direction: column;
    padding: 2rem;
  }

  .card-two {
    margin-left: 0;
  }

  .stat h2 {
    font-size: 2.5rem;
  }

  .hero-section {
    text-align: center;
    padding-top: 160px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }
    .hero-quote-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
  
.problem-section {
   
    padding: 2rem 1.5rem;
 
}
.neo-content h2 {
   
    font-size: 2.2rem;
  

}
.neo-bg-text {
 
    font-size: 50px;
      bottom: 350px;
  
}

section.flow-container {
    display: none;
}
.why-neogreens {
  
    padding: 30px 7px;
    
}
.why-icons {
    display: flex;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 9px;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
}
.scrolly-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #fff;
}
.health-parallax__heading {
    position: relative;
    top: 40px;
    font-size: 2rem;
    /* max-width: 700px; */
    margin: 0px auto;
    text-align: center;
    z-index: 4;
    color: #333;
    opacity: 0.9;
    margin-bottom: 0px;
}
  .health-parallax__cards {
    position: static !important;
    transform: none !important;
  }

  .parallax-card {
    transform: none !important;
    margin-bottom: 20px;
  }
.health-parallax__cards {
    position: relative;
    height: 63vh;
    margin-top: -1107px;
}
.parallax-card:nth-child(1) {
    top: 12%;
    left: 10%;
}
.parallax-card:nth-child(2) {
    top: 35%;
    right: 11%;
}
.parallax-card:nth-child(3) {
    top: 56%;
    left: 11%;
}
.parallax-card:nth-child(4) {
    top: 78%;
    right: 13%;
}
.health-parallax {
    min-height: 230vh;
    background: linear-gradient(#f6f8e8, #dfeac4);
    padding-top: 50px;
    position: relative;
}
.footer {
    background: #324545;
    color: #f5f6f2;
    padding: 2rem 1rem 0rem;
    position: relative;
}
.footer-left h2 {
    font-size: 2rem;
  
}
.neo-bottle {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    /* width: 500px; */
    z-index: 2;
    /* opacity: 0; */
}



}





