/** Shopify CDN: Minification failed

Line 2069:0 Expected "}" to go with "{"

**/

/* 
--------------------------
 ng-research-section 
Date :26-5-26
--------------------------- */


.ng-research-section{

  padding:80px 0 0;
  overflow:hidden;
}

/* LEFT */
.ng-research-section .ng-title {
    color: #fff;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
}

.ng-research-section .ng-title span{
  color:#b7f7d0;
}

.ng-research-section .ng-desc{
  color:#cfcfcf;
  margin-top:15px;
  font-size:16px;
}

/* BUTTON */
.ng-research-section .ng-btn {
    display: inline-block;
    margin-top: 20px;
    background: #00875D;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
}
/* RIGHT IMAGE BOX */
.ng-research-section .ng-image-box{
  position:relative;
  text-align:center;
}

.ng-research-section.ng-image-box img{
  width:100%;
  max-width:420px;
  display:block;
  margin:auto;
}

/* FLOATING TAGS */
.ng-tag {
    position: absolute;
    background: rgba(151, 151, 151, 0.33);
    color: rgba(255, 255, 255, 1);
    padding: 11px 35px;
    font-size: 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    text-align: justify;
}
big {
    font-family: 'Playfair Display';
    font-weight: bold;
    color: #ffff;
    font-size: 25px;
}
/* positions */
.tag1 {
    top: 10%;
    left: -19%;
}
.tag2 {
    top: -4%;
    right: 0;
}
.tag3 {
    bottom: 7%;
    right: -3%;
}
.tag4 {
    bottom: 7%;
    left: -3%;
}

/* BOTTOM SCROLL */
.ng-bottom-scroll {
    width: 100%;
    overflow: hidden;
    background: #00875D;
    padding: 12px 0;
    margin-top: 60px;
    color: #fff;
    font-weight: 500;
}
.ng-scroll-track{
  display:flex;
  width:max-content;
  animation:scroll 18s linear infinite;
}

.ng-scroll-track span {
    color: #fff;
    font-size: 14px;
    padding: 0 20px;
    white-space: nowrap;
    opacity: 0.85;
    font-weight: 500;
    font-family: Raleway;
}

@keyframes scroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

@media(max-width:991px){

  .ng-research-section{
    padding:50px 0 0;
  }

  .ng-title{
    font-size:28px;
    text-align:center;
  }

  .ng-desc{
    text-align:center;
  }

  .ng-btn{
    display:block;
    text-align:center;
    width:fit-content;
    margin:20px auto;
  }

  .ng-image-box img{
    max-width:280px;
  }

  /* reduce floating tags */
  .ng-tag{
    font-size:10px;
    padding:6px 10px;
  }

}

.ng-micro-section{
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* container */
.ng-micro-section .ng-container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID LAYOUT */
.ng-micro-section .ng-micro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 40px;
    justify-items: center;
}

/* LEFT + RIGHT TEXT */
.ng-micro-section .ng-micro-left h3, .ng-micro-section .ng-micro-right h3 {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.4;
    color: #2b2b2b;
    margin: 0;
}

/* highlight text */
.ng-micro-section .ng-micro-left span, .ng-micro-section .ng-micro-right span {
    color: #0aa35c;
    font-weight: 500;
    font-family: Raleway;
}

/* CENTER IMAGE */
.ng-micro-section .ng-micro-center img{
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* BOTTOM TEXT */
.ng-micro-section .ng-micro-bottom{
  margin-top: 40px;
  text-align: center;
}

.ng-micro-section .ng-micro-bottom p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin: 0 auto;
    width: 70%;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* tablet */
@media (max-width: 991px){
  .ng-micro-section .ng-micro-grid{
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .ng-micro-section .ng-micro-left h3,
  .ng-micro-section .ng-micro-right h3{
    font-size: 18px;
  }

  .ng-micro-section .ng-micro-center img{
    max-width: 200px;
  }
}

/* mobile */
@media (max-width: 576px){
  .ng-micro-section{
    padding: 50px 0;
  }

  .ng-micro-section .ng-micro-left h3,
  .ng-micro-section .ng-micro-right h3{
    font-size: 22px;
  }

  .ng-micro-section .ng-micro-bottom p{
    font-size: 13px;
    width:95%;
  }
}

/* =========================
   LEAF GROW ANIMATION
========================= */

.ng-micro-section .ng-leaf-animate img{
  transform: scale(0.6);
  opacity: 0;
  transition: all 1.2s ease;
  filter: blur(4px);
}

/* when active */
.ng-micro-section .ng-leaf-animate.is-visible img{
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
}

.ng-micro-section .ng-type-loop{
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #0aa35c;


  width: 0;
  animation: typingLoop 3s steps(15) infinite, blink 0.7s infinite;
}

/* typing + reset loop */
@keyframes typingLoop{
  0%{
    width: 0;
  }
  40%{
    width: 8ch;
  }
  60%{
    width: 8ch;
  }
  100%{
    width: 0;
  }
}

/* cursor blink */
@keyframes blink{
  50%{
    border-color: transparent;
  }
}

.ng-image-box .ng-tag {
    position: absolute;
    background: rgba(255,255,255,0.12);
    color: #fff;
    /* padding: 10px 12px; */
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* font-size: 12px; */
    /* line-height: 1.3; */
    transform: scale(1);
    animation: ngZoomFloat 3.5s ease-in-out infinite;
    transition: all 0.3s ease;
}
@keyframes ngZoomFloat{

  0%{
    transform: scale(1) translateY(0);
    opacity: 0.9;
  }

  25%{
    transform: scale(1.08) translateY(-4px);
    opacity: 1;
  }

  50%{
    transform: scale(1.12) translateY(-6px);
  }

  75%{
    transform: scale(1.05) translateY(-3px);
  }

  100%{
    transform: scale(1) translateY(0);
    opacity: 0.9;
  }
}

.absorption-section{
    background:#000;
    padding:80px 0;
    overflow:hidden;
}

/* LEFT SIDE */

.absorption-content{
    color:#fff;
}

.absorption-title {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}

.absorption-title span {
    color: #00875D;
}

.absorption-text{
    color:#bdbdbd;
    font-size:16px;
    line-height:1.7;
    margin-bottom:18px;
}

/* RIGHT SIDE */

.absorption-bars{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:30px;
}

/* BAR CARD */

.bar-card{
    width:120px;
    text-align:center;
}

/* PERCENT */

.bar-percent{
    color:#fff;
    font-size:28px;
    font-weight:600;
    margin-bottom:14px;
}

/* BAR BG */

.bar-track{
    width:100%;
    height:330px;
    background:#4b4b4b;
    border-radius:8px;
    position:relative;
    overflow:hidden;
}

/* FILL */

.bar-fill{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:0%;
    transition:height 2s ease;
    /* border-radius:8px; */
}


/* COLORS */

.green-fill{
    background:linear-gradient(
        to top,
        #00c97b,
        #dff8e8
    );
}

.gray-fill{
    background:#b3b3b3;
}

.light-fill{
    background:#8f8f8f;
}

/* LABEL */
p.bar-label small {
    color: #00875D;
    /* font-size: 17px; */
    font-weight: 600;
}
.bar-label {
    color: #d2d2d2;
    font-size: 17px;
    line-height: 1.5;
    margin-top: 15px;
    text-align: left;
}

/* RESPONSIVE */

@media(max-width:991px){

    .absorption-content{
        margin-bottom:50px;
        text-align:center;
    }

    .absorption-title{
        font-size:42px;
    }

    .absorption-bars{
        gap:20px;
    }

    .bar-card{
        width:100px;
    }

    .bar-track{
        height:260px;
    }
}

@media(max-width:576px){

    .absorption-bars{
        flex-wrap:wrap;
    }

    .absorption-title{
        font-size:34px;
    }
}

/* N LOGO */

.n-logo {
    position: absolute;
    bottom: 20px;
    left: 24%;
    /* transform: translateX(-50%) rotate(-20deg); */
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    opacity: 0;
    transition: all .8s ease;
}

/* SHOW LOGO AFTER ANIMATION */

.bar-card.active .n-logo{
    opacity:1;
    bottom:32px;
}




.batch-section{
 
    padding:100px 0;
    position:relative;
    overflow:hidden;
}


/* HEADING */
.batch-section .batch-heading h2 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 500;
    color: #1e2c31;
}

.batch-section .batch-heading h2 span{
    color:#009c66;
}

/* SWIPER */
.batch-section .batchSwiper{
    overflow:visible;
}

/* CARD */
.batch-section .batch-card{
    background:#ffff;
    border-radius:18px;
    padding:14px;
    overflow:hidden;
    transition:.4s ease;
}

.batch-section .batch-card:hover{
    transform:translateY(-10px);
}

/* IMAGE */
.batch-section .batch-image{
    border-radius:14px;
    overflow:hidden;
}

.batch-section .batch-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.6s ease;
}

.batch-section .batch-card:hover img{
    transform:scale(1.08);
}

/* CONTENT */
.batch-section .batch-content{
    margin-top:18px;
}

/* TOP ROW (TITLE + NUMBER SAME LINE) */
.batch-section .content-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:15px;
}

/* TITLE */
.batch-section .content-top h4{
    font-size:24px;
    margin:0;
    line-height:1.3;
    color:#222;
    font-weight:500;
}

/* NUMBER */
.batch-section .content-top span{
    font-size:54px;
    font-weight:700;
    color:#1f9f68;
    line-height:1;
}

/* DESCRIPTION (HIDDEN) */
.batch-section .hover-desc{
    max-height:0;
    opacity:0;
    overflow:hidden;
    margin-top:0;
    transition:.4s ease;
    font-size:15px;
    color:#666;
    line-height:1.6;
}

/* SHOW ON HOVER */
.batch-section .batch-card:hover .hover-desc{
    max-height:120px;
    opacity:1;
    margin-top:12px;
}


/* =====================================================
   SECTION PARENT
===================================================== */

.research-section{
    background:#243636;
    color:#fff;
    padding:90px 0;
}

/* =====================================================
   HEADER
===================================================== */

.research-section .research-header{
    margin-bottom:30px;
}

.research-section .research-title {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.research-section .research-subtitle{
    font-size:16px;
    opacity:.7;
     margin-bottom: 15px;
     
}

/* =====================================================
   TABS WRAPPER
===================================================== */

.research-section .research-tabs {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* TAB BUTTON */
.research-section .research-tab-btn {
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: .3s ease;
}

/* ACTIVE TAB */
.research-section .research-tab-btn.active {
    background: #dff7e7;
    color: #000;
    border-color: #dff7e7;
    font-weight: 600;
}

/* =====================================================
   TAB CONTENT
===================================================== */

.research-section .research-tab-wrapper{
    margin-top:20px;
}

/* HIDE ALL */
.research-section .research-tab-content{
    display:none;
    animation:fadeUp .4s ease;
}

/* ACTIVE ONLY */
.research-section .research-tab-content.active {
    display: block;
    padding-top: 2rem;
}

/* TEXT */
.research-section .research-text h3{
    font-size:28px;
    margin-bottom:15px;
    color: #fff;
}

.research-section .research-text p {
    font-size: 15px;
    opacity: .8;
    line-height: 1.7;
    width: 80%;
}

/* IMAGE */
.research-section .research-image img{
    width:100%;
    border-radius:14px;
}

/* =====================================================
   ANIMATION
===================================================== */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   TRUST SECTION START
========================= */

.trust-section {
    background: #ffffff;
    padding: 70px 0;
    overflow: hidden;
}

/* Row */
.trust-section .row {
    align-items: center;
}

/* Left Content */
.trust-section .trust-content {
    max-width: 500px;
}

/* Heading */
.trust-section .trust-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    color: #1f1f1f;
    margin-bottom: 25px;
}

/* Green Text */
.trust-section .trust-title span {
    color: #00875D;
}

/* Paragraph */
.trust-section .trust-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 18px;
}

/* Image Box */
.trust-section .trust-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image */
.trust-section .trust-image-box img {
    max-width: 70%;
    border-radius: 18px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {

    .trust-section .trust-title {
        font-size: 34px;
    }

    .trust-section .trust-content {
        text-align: center;
        margin: auto;
    }
}

@media (max-width: 576px) {

    .trust-section .trust-title {
        font-size: 28px;
    }

    .trust-section .trust-text {
        font-size: 15px;
    }
}

/* =========================
   TRUST SECTION END
========================= */

/* ====================================
   COMMITMENT SECTION START
==================================== */

.commitment-section {
    background: #000;
    padding-top: 80px;
    overflow: hidden;
    position: relative;
}
/* Left Image Box */
.commitment-section .commitment-image-box {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    max-width: 520px;
}

/* Image */
.commitment-section .commitment-image-box img {
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

/* Overlay */
.commitment-section .commitment-overlay-content {
    position: absolute;
    top: 39px;
    left: 0px;
    z-index: 2;
    /* max-width: 320px; */
    background: linear-gradient(90deg, #050505 0%, #063f2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 24px 15px 24px 15px;
    margin-bottom: 22px;
    overflow: hidden;
    height: 70%;
    opacity: 0.8;
}
/* Heading */
.commitment-section .commitment-overlay-content h2 {
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

/* Right Cards */
.commitment-section .commitment-card {
    position: relative;
    background: linear-gradient(
        90deg,
        #050505 0%,
        #063f2d 100%
    );

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;

    padding: 24px 80px 24px 24px;
    margin-bottom: 22px;

    overflow: hidden;
}

/* Card Heading */
.commitment-section .commitment-card h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Card Paragraph */
.commitment-section .commitment-card p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Number */
.commitment-section .commitment-number {
    position: absolute;
    right: 20px;
    bottom: -8px;

    font-size: 60px;
    font-weight: 700;

    color: rgba(59, 124, 96, 0.35);

    line-height: 1;
}

/* Responsive */
@media (max-width: 991px) {

    .commitment-section .commitment-overlay-content {
        top: 25px;
        left: 25px;
    }

    .commitment-section .commitment-overlay-content h2 {
        font-size: 32px;
    }

    .commitment-section .commitment-image-box {
        margin: auto;
    }
}

@media (max-width: 767px) {

    .commitment-section {
        padding: 60px 0;
    }

    .commitment-section .commitment-overlay-content h2 {
        font-size: 26px;
    }

    .commitment-section .commitment-card {
        padding: 20px 60px 20px 20px;
    }

    .commitment-section .commitment-number {
        font-size: 42px;
    }
    /* the-science page */
.ng-research-section .ng-title {
   
    font-size: 35px;
  
}
big {
  
    font-size: 17px;
}
.ng-tag {
    font-size: 9px;
    padding: 4px 8px;
}
.tag1 {
    top: 12%;
    left: 2%;
}
.tag4 {
    bottom: 7%;
    left: 3%;
}
.tag2 {
    top: -4%;
    right: 10px;
}
.tag3 {
    bottom: 7%;
    right: 4%;
}
}

/* ====================================
   COMMITMENT SECTION END
==================================== */

/* ====================================
   CTA SCIENCE SECTION START
==================================== */

.cta-science-section {
    background: linear-gradient(
        90deg,
        #203739 0%,
        #1d3d3b 100%
    );

    padding: 100px 20px;
    text-align: center;
}

/* Content */
.cta-science-section .cta-science-content {
    max-width: 700px;
    margin: auto;
}

/* Title */
.cta-science-section .cta-science-title {
    color: #ffffff;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 28px;
}

/* Highlight Text */
.cta-science-section .cta-science-title span {
    font-weight: 700;
}

/* Paragraph */
.cta-science-section .cta-science-text {
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    line-height: 1.9;
    max-width: 620px;
    margin: 0 auto 35px;
}

/* Button */
.cta-science-section .cta-science-btn {
    display: inline-block;

    background: #00875D;
    color: #ffffff;

    padding: 14px 34px;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 500;

    text-decoration: none;
    transition: 0.3s ease;
}

/* Hover */
.cta-science-section .cta-science-btn:hover {
    background: #008f5d;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {

    .cta-science-section .cta-science-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {

    .absorption-text {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 7px;
}

.absorption-section {
   
    padding: 40px 0;
    
}
.batch-section .batch-heading h2 {
    font-size: 35px;
 
}
.batch-section {
    padding: 28px 0;
  
}
.research-section .research-title {
    font-size: 35px;
   
}
.research-section {
  
    padding: 35px 0;
}

.research-section .research-text p {
   
    width: 100%;
}
.col-lg-6.research-text {
    padding: 10px;
}

    .cta-science-section {
        padding: 30px 20px;
    }

    .cta-science-section .cta-science-title {
        font-size: 35px;
    }

    .cta-science-section .cta-science-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .cta-science-section .cta-science-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    .commitment-section .commitment-overlay-content {
    top: 25px;
    left: 10px;
}
.trust-section .trust-title {
    font-size: 35px;
}
.trust-section {

    padding: 40px 0;
   
}
.trust-section .trust-image-box img {
    max-width: 90%;
 
}

}

/* ====================================
   CTA SCIENCE SECTION END
==================================== */

/* 
Date 1-8-26
new layout css */

.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;

    /* Your background image */

    background-size: cover;

    padding: 80px 0;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    color: #25312c;
    margin-bottom: 25px;
}

.hero-title span {
    color: #63b11d;
    font-style: italic;
}

.hero-subtitle {
    font-size: 20px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 600;
}

.hero-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 35px;
}

.hero-btn {
    background: #23352f;
    color: #fff;
    border-radius: 40px;
    padding: 14px 35px;
    font-size: 16px;
    transition: .3s;
}

.hero-btn:hover {
    background: #182722;
    color: #fff;
}

/* Tablet */
@media (max-width: 991px) {

    .hero-section {
        min-height: 500px;
        padding: 70px 0;
        background-position: right center;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .hero-section {
        min-height: auto;
        padding: 60px 20px;

        /* Move background to keep spoon visible */
        background-position: 75% center;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
}

/* ----------------- */

.hero-text{
    display:flex;
    align-items:center;
    gap:20px;
}

.fixed-text{
    font-size:70px;
    color:#fff;
    margin:0;
    font-weight:600;
}

.text-slider{
    height:80px;
    overflow:hidden;
    position:relative;
}

.text-track{
    animation: slideWords 10s infinite;
}

.text-track div {
    height: 80px;
    line-height: 80px;
    font-size: 70px;
    font-style: italic;
    color: #DFFFDF;
    font-weight: 600;
}

@keyframes slideWords{

    0%,20%{
        transform:translateY(0);
    }

    25%,45%{
        transform:translateY(-80px);
    }

    50%,70%{
        transform:translateY(-160px);
    }

    75%,95%{
        transform:translateY(-240px);
    }

    100%{
        transform:translateY(-320px);
    }

}
.philosophy-section{
    background:#263730;
    color:#fff;
  
    padding-top:80px;
}
.row.our-philosophy {
    padding: 100px 0px;
}
.section-title{
    font-size:42px;
    font-weight:700;
    color:#44B000
}
/* ------------------- */

.daily-nutrition-section {
    padding: 55px 20px 0;
    background: linear-gradient(
        to bottom,
        #dfffdf 0%,
        #dfffdf 55%,
        #fff 100%
    );
    overflow: hidden;
}



.daily-nutrition-header {
    margin-bottom: 70px;
}

.daily-nutrition-subtitle {
    display: block;
    font-size: 22px;
    font-style: italic;
    color: #333;
    margin-bottom: 8px;

}

.daily-nutrition-title {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.5;
    color: #222;
    /* font-family: Georgia, serif; */
    margin: 0;
    font-style: italic;
        text-align: center;
}

.daily-nutrition-content {
    min-height: 500px; /* Replace with your image height */
    position: relative;
}

/* Tablet */
@media (max-width: 992px) {
    .daily-nutrition-section {
        padding: 60px 20px;
    }

    .daily-nutrition-title {
        font-size: 36px;
    }

    .daily-nutrition-subtitle {
        font-size: 20px;
    }

    .daily-nutrition-content {
        min-height: 420px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .daily-nutrition-section {
        padding: 50px 15px;
    }

    .daily-nutrition-title {
        font-size: 28px;
    }

    .daily-nutrition-subtitle {
        font-size: 18px;
    }

    .daily-nutrition-header {
        margin-bottom: 40px;
    }

    .daily-nutrition-content {
        min-height: 300px;
    }
}
.daily-nutrition-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.daily-nutrition-image {
    width: 100%;
  
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Tablet */
@media (max-width: 991px) {
    .daily-nutrition-image {
        max-width: 700px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .daily-nutrition-content {
        padding: 0 10px;
    }

    .daily-nutrition-image {
        max-width: 100%;
    }
}

/* ---------------------- */


/*=============================
  Designed With Purpose
==============================*/

.ng-purpose-section{
    padding:80px 0;
    background:#fff;
    border-radius:0 0 40px 40px;
    overflow:hidden;
}

.ng-purpose-image{
    text-align:center;
}

.ng-purpose-image img {
  
    width: 100%;
    height: auto;
    position: relative;
    float: right;
}



.ng-purpose-title{
    font-family:Georgia, serif;
    font-size:52px;
    line-height:1.15;
    font-weight:500;
    color:#2f3a35;
    margin-bottom:35px;
}

.ng-purpose-title span{
    color:#61b500;
    font-style:italic;
}

.ng-purpose-content p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:18px;
}

.ng-purpose-highlight{
    font-style:italic;
    color:#333;
    font-weight:500;
}

/* Tablet */

@media (max-width:991px){

    .ng-purpose-section{
        padding:70px 0;
    }

    .ng-purpose-title{
        font-size:40px;
    }

    .ng-purpose-content{
        margin-top:30px;
    }

    .ng-purpose-image img{
        max-width:280px;
    }

}

/* Mobile */

@media (max-width:767px){

    .cta-banner-area {
    padding: 30px 0;
    background: #fff;
}

    .ng-purpose-section{
        padding: 0px 20px;
        border-radius:25px;
    }

    .ng-purpose-image{
        margin-bottom:35px;
    }

    .ng-purpose-title{
        font-size:32px;
        text-align:center;
    }

    .ng-purpose-content{
        text-align:center;
    }

    .ng-purpose-content p{
        font-size:13px;
        line-height:1.7;
    }

   .ng-purpose-image img {
    max-width: 220px;
    float: none;
}

}

/* ----------------------- */

.root-section {
    padding: 50px 0px 0px;
    background: #000;
 border-radius: 35px 35px 0 0;
}


.root-section .root-title{
    color:#67c52f;
    font-size:48px;
    font-weight:700;
    font-style:italic;
    font-family:Georgia, serif;
    margin-bottom:45px;
}
.row.root-content {
    display: flex;
    justify-content: space-around;
}
.root-section .root-content{
    margin-bottom:45px;
}

.root-section .root-left-text {
    color: #fff;
    font-size: 24px;
    font-style: italic;
    line-height: 1.5;
    text-align: center;
}

.root-section .root-right-text{
    color:#d6d6d6;
    font-size:17px;
    line-height:1.8;
    margin: 20px;
}

.root-section .root-video{
    position:relative;
    border-radius:22px;
    overflow:hidden;
}

.root-section .video-thumbnail{
    position:relative;
    cursor:pointer;
}

.root-section .video-thumbnail img{
    width:100%;
    display:block;
    border-radius:22px;
}

.root-section .play-button{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    border:none;
    border-radius:50%;
    background:#67c52f;
    color:#fff;
    font-size:40px;
    cursor:pointer;
    transition:.3s;
}

.root-section .play-button:hover{
    transform:translate(-50%,-50%) scale(1.08);
}

.root-section iframe{
    border:0;
    border-radius:22px;
}

@media(max-width:991px){

 
    .root-section .root-title{
        font-size:36px;
    }

    .root-section .root-left-text,
    .root-section .root-right-text{
        text-align:center;
    }

    .root-section .play-button{
        width:65px;
        height:65px;
        font-size:28px;
    }

}
/* ................ */


.growth-cycle-section{
    padding:80px 0;
    background:#fff;
}

.growth-cycle-section .growth-cycle-image{
    text-align:center;
}
.growth-cycle-section .growth-cycle-image img {
    max-width: 70%;
    height: auto;
  
}

.growth-cycle-section .growth-cycle-content{
    background:linear-gradient(180deg,#f8fff8 0%,#dfffdc 100%);
    padding:60px 50px;
    border-radius:20px;
    height:100%;
}

.growth-cycle-section .growth-cycle-content h2{
    font-size:50px;
    font-weight:600;
    color:#36433b;
    margin-bottom:30px;
}

.growth-cycle-section .growth-cycle-content p{
    font-size:18px;
    line-height:1.8;
   
    margin-bottom:22px;
}

.growth-cycle-section .growth-cycle-content h5{
    font-size:22px;
    line-height:1.5;
    color:#5db11b;
    font-weight:600;
    margin:0;
}

@media (max-width:991px){

    .growth-cycle-section{
        padding: 0px 0;
    }

    .growth-cycle-section .growth-cycle-content{
        padding:40px 30px;
        margin-top:30px;
    }

    .growth-cycle-section .growth-cycle-content h2{
        font-size:40px;
    }

    .growth-cycle-section .growth-cycle-content h5{
        font-size:22px;
    }
}

@media (max-width:767px){


    .growth-cycle-section .growth-cycle-image img {

    float: none;
}
    .growth-cycle-section .growth-cycle-content{
        padding: 30px 20px;
        border-radius:15px;
    }

    .growth-cycle-section .growth-cycle-content h2{
        font-size:32px;
    }

    .growth-cycle-section .growth-cycle-content p{
        font-size:16px;
    }

    .growth-cycle-section .growth-cycle-content h5{
        font-size:20px;
    }

}

/* -------------------------- */

.freeze-drying-section{
    padding:80px 0;
    background:#fff;
}

.freeze-content-box{
    background:linear-gradient(180deg,#f8fff8 0%,#dfffdc 100%);
    padding:55px 45px;
    border-radius:20px;
    height:100%;
}

.freeze-content-box h2{
    font-size:52px;
    color:#37463e;
    margin-bottom:35px;
    font-weight:600;
}

.freeze-content-box h4{
    color:#58b51b;
    font-size:22px;
    line-height:1.4;
    font-weight:600;
    margin-bottom:30px;
}

.freeze-content-box p{
    color:#222;
    font-size:18px;
    line-height:1.7;
    margin-bottom:22px;
}

.freeze-content-box strong{
    font-weight:700;
}

.freeze-image{
    text-align:center;
}

.freeze-image img{
    width:100%;
    border-radius:12px;
    border:1px solid #7bcf52;
}

@media(max-width:991px){

    .freeze-content-box{
        margin-bottom:30px;
        padding:40px 30px;
    }

    .freeze-content-box h2{
        font-size:40px;
    }

    .freeze-content-box h4{
        font-size:24px;
    }
}

@media(max-width:767px){

    .freeze-content-box{
        padding:30px 20px;
    }

    .freeze-content-box h2{
        font-size:32px;
    }

    .freeze-content-box h4{
        font-size:20px;
    }

    .freeze-content-box p{
        font-size:16px;
    }
}

/* ------------------------ */

.quality-section {
    background: #fff;
    margin: 50px 0px;
}
.quality-box {
    background: #2f3f39;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.quality-left-text {
    padding-left: 50px;
}
.quality-box h2 {

    font-size: 48px;
}

.quality-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.95;
   
    border-radius: 50px;
}

.quality-box p {
    color: #f5f5f5;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .quality-box {
        padding: 30px 20px !important;
    }
      .quality-left-text {
    padding-left: 0px;
}
.quality-box p {
   
    font-size: 13px;
   
}
h2.text-center.text-white.fw-bold.mb-5 {
    margin-bottom: 0px !important;
}
.quality-section {
  
    margin: 0px 0px;
}
    .quality-box h2 {
        font-size: 32px;
    }

    .quality-icon {
        width: 55px;
        height: 55px;
    }

    .quality-box p {
        text-align: center;
    }
}
/* ----------------------- */

.routine-section{
    padding:60px 0;
     /* background:url("../images/science-bg3.png") center center/cover no-repeat; */
}

.routine-section .routine-wrapper {
    /* min-height: 520px; */
    border-radius: 20px;
    padding: 80px 0px;
    display: flex;
    align-items: center;
}

.routine-section .routine-title {
    color: #fff;
    font-size: 50px;
    line-height: 1.15;
    /* font-family: Georgia, serif; */
    font-weight: 500;
}

.routine-section .routine-title em{
    font-style:italic;
    font-weight:600;
}

.routine-section .routine-pill{
    display:inline-flex;
    align-items:center;
    background:#fff;
    border-radius:50px;
    padding:10px 18px;
    margin-bottom:18px;
    color:#444;
    font-size:16px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}
.routine-section {

    padding-bottom: 109px;
}
.routine-section .routine-check{
    width:24px;
    height:24px;
    background:#4CAF1A;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
    font-size:14px;
    font-weight:bold;
}

@media (max-width:991px){

    .routine-section .routine-wrapper{
        min-height:420px;
        padding:50px 30px;
    }

    .routine-section .routine-title{
        font-size:42px;
    }

}

@media (max-width:576px){

    .routine-section .routine-wrapper{
        min-height:350px;
        padding:40px 20px;
    }

    .routine-section .routine-title{
        font-size:32px;
    }

    .routine-section .routine-pill{
        display:flex;
        width:100%;
        font-size:14px;
    }

}
/* ---------------------- */

.cta-banner-area{
    padding:70px 0;
    background:#fff;
}

.cta-banner-box{
    max-width:700px;
    margin:0 auto;
}

.cta-small-text{
    font-size:16px;
    color:#444;
    margin-bottom:8px;
}

.cta-main-text{
    font-size:34px;
    font-weight:400;
    color:#333;
    margin-bottom:10px;
}

.cta-highlight-text {
    font-size: 90px;
    /* font-family: Georgia, serif; */
    font-style: italic;
    font-weight: 700;
    color: #49b000;
    line-height: 1.1;
    margin-bottom: 35px;
}

.cta-green-btn{
    background:#49b000;
    color:#fff;
    border-radius:50px;
    padding:14px 50px;
    min-width:210px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.cta-green-btn:hover{
    background:#3e9800;
    color:#fff;
}

@media (max-width:768px){

    .cta-main-text{
        font-size:28px;
    }

    .cta-highlight-text{
        font-size:46px;
    }

    .cta-green-btn{
        width:100%;
        max-width:300px;
    }
