*{
    padding: 0;
    margin: 0;
}

body{
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;

.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "width" 100;
}}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0px;   /* space between logo and text */
}

.logo {
    width: 80px;
    height: 80px;
    padding-bottom: 10px;
    padding-left: 10px;
    object-fit: contain;
}

.logo-section h1 {
    margin: 0;
    font-size: 2rem;
}

.navbar h1{
    color:rgb(23, 153, 110);
    text-align: left;
    margin: 0;
}

.hero {
    padding-right: 50px;
    padding-left: 20px;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: 300px;
    width: 100%;
    object-fit: cover;
    margin-top: 10px;
}

.offer-image{
    width: 250px;
    height: 250px;
    object-fit: cover;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.navbar-brand {
    display: flex;
    gap:10px;
    align-items: centre;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, 
rgba(0, 0, 0, 0.23) 0px 6px 6px;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: white;
}

.navbar-brand h1{
    margin: 0;
    color: rgb(23, 153, 110);
    line-height: 1;
     position: relative;
    top: 30px;
}

.navbar-links{
    display: flex;
    column-gap: 20px;
    margin-left: auto;
}

.navbar-links a{
    text-decoration: none;
    color: #1D232C;
    transition: 0.3s;
}

.navbar-links a.active{
    color: rgb(23, 153, 110);
    font-weight: bold;
}

.side-navbar-links a.active {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.navbar-links a:hover{
    text-decoration: underline;
    color: #1D232C;
}

.navbar-menu-toggle{
    display: none
}

/*Side Navbar*/

.side-navbar{
    background-color: rgb(23, 153, 110);
    width: 40%;
    height: calc(100% - 90px);
    position: fixed;
    top:90px;
    left:-60%;
    padding: 20px;
    color:white;
    transition: 2s;
    z-index: 998;
}

.side-navbar-link{
    margin-bottom: 30px;  
}

.side-navbar-links a{
    text-decoration: none;
    color: white; 
}

.side-navbar-links a:hover{
    text-decoration: underline;
}

/*Header*/

/* =========================================
   HOME PAGE DESIGN
========================================= */

/* HERO */

.home-hero{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 70px 6%;
    background-color: rgb(235,245,241);
}

.home-hero-content{
    max-width: 600px;
}

.home-label,
.section-label{
    color: rgb(23,153,110);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.home-hero h1{
    font-size: 48px;
    line-height: 1.2;
    color: #1D232C;
    margin: 15px 0 25px;
}

.home-hero h1 span{
    color: rgb(23,153,110);
}

.home-hero p{
    color: #555;
    line-height: 1.8;
}

.home-hero-image{
    width: 48%;
}

.home-hero-image img{
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 25px;
}

/* BUTTONS */

.hero-buttons{
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.primary-button,
.secondary-button{
    padding: 13px 22px;
    border-radius: 6px;
    cursor: pointer;

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s;
}


.primary-button{
    background-color: rgb(23,153,110);

    color: white;

    border: 2px solid rgb(23,153,110);
}


.primary-button:hover{
    transform: translateY(-3px);
}


.secondary-button{
    background-color: white;

    color: rgb(23,153,110);

    border: 2px solid rgb(23,153,110);
}


.secondary-button:hover{
    background-color: rgb(235,245,241);
}


.primary-button i,
.secondary-button i{
    margin-left: 7px;
}


/* WELCOME */

.welcome-section{
    display: flex;

    align-items: center;

    gap: 60px;

    padding: 80px 7%;
}


.welcome-image{
    width: 45%;
}


.welcome-image img{
    width: 100%;

    height: 350px;

    object-fit: cover;

    border-radius: 20px;
}


.welcome-content{
    flex: 1;
}


.welcome-content h2{
    font-size: 36px;

    color: #1D232C;

    margin: 12px 0 20px;
}


.welcome-content h2 span{
    color: rgb(23,153,110);
}


.welcome-content p{
    color: #666;

    line-height: 1.8;
}


.text-link{
    display: inline-block;

    margin-top: 10px;

    color: rgb(23,153,110);

    text-decoration: none;

    font-weight: bold;
}


.text-link:hover{
    text-decoration: underline;
}


/* SECTION HEADING */

.section-heading{
    max-width: 700px;

    text-align: center;

    margin: 0 auto 45px;
}


.section-heading h2{
    font-size: 34px;

    color: #1D232C;

    margin: 12px 0 15px;
}


.section-heading h2 span{
    color: rgb(23,153,110);
}


.section-heading p{
    color: #666;

    line-height: 1.7;
}


/* WHY SECTION */

.why-section{
    padding: 80px 7%;

    background-color: #fafcfb;
}


.why-cards{
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 20px;
}


.why-card{
    background-color: white;

    padding: 30px 22px;

    border-radius: 15px;

    text-align: center;

    border: 1px solid #e4eee9;

    transition: 0.3s;
}


.why-card:hover{
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


.why-icon{
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background-color: rgb(235,245,241);
    color: rgb(23,153,110);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.why-card h3{
    color: #1D232C;
}


.why-card p{
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* SUPPORT */

.support-section{
    padding: 80px 7%;
}

.support-cards{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.support-card{
    padding: 25px;
    border-radius: 15px;
    background-color: rgb(235,245,241);
    transition: 0.3s;
}

.support-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.support-card > i{
    font-size: 28px;
    color: rgb(23,153,110);
    margin-bottom: 15px;
}

.support-card h3{
    font-size: 18px;
    color: #1D232C;
}

.support-card p{
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.center-button{
    text-align: center;
    margin-top: 40px;
}

/* JOURNEY */

.journey-section{
    padding: 80px 7%;
    background-color: #fafcfb;
}

.journey-steps{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.journey-step{
    position: relative;
    text-align: center;
    padding: 20px;
}

.step-number{
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgb(23,153,110);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 17px;
}

.journey-step h3{
    color: #1D232C;
    font-size: 18px;
}

.journey-step p{
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* EDUCATION */
.education-section{
    padding: 80px 7%;
}

.education-cards{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.education-card{
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: 0.3s;
}

.education-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.education-image img{
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.education-content{
    padding: 22px;
}

.education-content span{
    color: rgb(23,153,110);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
}

.education-content h3{
    color: #1D232C;
    font-size: 20px;
    margin: 10px 0;
}

.education-content p{
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.education-content a{
    color: rgb(23,153,110);
    font-weight: bold;
    text-decoration: none;
}

/* BRAND STATEMENT */

.brand-statement{
    text-align: center;
    padding: 80px 20px;
    background-color: rgb(235,245,241);
}

.brand-leaf{
    font-size: 35px;
    margin-bottom: 15px;
}

.brand-statement h2{
    font-size: 32px;
    color: #1D232C;
    margin-bottom: 5px;
}

.brand-statement h2 span{
    color: rgb(23,153,110);
}

.brand-statement p{
    margin-top: 25px;
    color: rgb(23,153,110);
    font-size: 20px;
    font-weight: bold;
}

/* FINAL CTA */

.final-cta{
    margin: 70px 7%;
    padding: 50px;
    border-radius: 20px;
    background-color: rgb(23,153,110);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.final-cta .section-label{
    color: white;
}

.final-cta h2{
    font-size: 34px;
    margin: 12px 0 15px;
}

.final-cta p{
    line-height: 1.7;
    max-width: 700px;
}

.white-button{
    background-color: white;
    color: rgb(23,153,110);
    border-color: white;
    white-space: nowrap;
}

.white-button:hover{
    background-color: #f4f4f4;
}

.header{
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 50px;
}

.header-button{
    background-color:rgb(23, 153, 110);
    color: white;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.about{
    padding: 40px;
}

.about-container-1{
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-container-1 div{
    background-color: rgb(235, 245, 241);
    border-radius: 10px;
    padding: 10px;
}

.service{
    padding: 20px;
}

/* .services-page h1 {
    margin-left: 0;
    text-align: center;
} */

.service-container-1{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-container-2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.service-container-2 div{
    background-color: rgb(235, 245, 241);
    border-radius: 10px;
    padding: 15px;
}

h1, h2, h3 {
    margin-bottom: 16px;
}

p {
    margin-bottom: 18px;
    line-height: 1.7;
}

/* .footer{
    margin-top: 20px;
    padding: 40px;
    background-color:rgb(23, 153, 110);
    color: white;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: #e8fff7;
    text-decoration: underline;
} */

/* Footer */

.footer {
    background-color: rgb(23, 153, 110);
    color: white;
    padding: 50px 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}

.footer-box-1,
.footer-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-box-1 h2 {
    color: white;
    margin-bottom: 15px;
}

.footer-box h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-tagline {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
}

.footer-description {
    max-width: 380px;
    color: #e8fff7;
    margin-bottom: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
}


.footer-whatsapp-button:hover {
    background-color: white;
    color: rgb(23, 153, 110) !important;
    text-decoration: none;
}

/* Social media icons */

.footer-icon-container {
    display: flex;
    gap: 18px;
    margin: 8px 0 22px;
}

.footer-icon-container a {
    font-size: 24px;
}

.footer-icon-container a:hover {
    text-decoration: none;
    transform: translateY(-2px);
}


/* Connect section */

.footer-connect-text {
    color: #e8fff7;
    max-width: 300px;
}

.footer-whatsapp-text {
    margin-top: 5px;
    margin-bottom: 8px;
}

.footer-whatsapp-button {
    display: inline-block;
    border: 1px solid white;
    padding: 9px 16px;
    border-radius: 7px;
    margin-top: 3px;
}

.footer-whatsapp-button:hover {
    background-color: white;
    color: rgb(23, 153, 110);
    text-decoration: none;
}


/* Bottom copyright */

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #e8fff7;
}



/* Consultation Page */

.consultation-page {
    padding: 50px 20px;
    background-color: #f8fbfa;
    min-height: 80vh;
}

.consultation-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.consultation-box h1 {
    text-align: center;
    color: rgb(23, 153, 110);
    margin-bottom: 10px;
}

.consultation-intro {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.consultation-field {
    margin-bottom: 20px;
}

.consultation-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1D232C;
}

.consultation-field input,
.consultation-field select,
.consultation-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
}

.consultation-field input:focus,
.consultation-field select:focus,
.consultation-field textarea:focus {
    outline: none;
    border-color: rgb(23, 153, 110);
}

.consultation-field textarea {
    resize: vertical;
}

.consultation-row {
    display: flex;
    gap: 20px;
}

.consultation-row .consultation-field {
    flex: 1;
}

.consultation-submit {
    width: 100%;
    padding: 13px;
    background-color: rgb(23, 153, 110);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.consultation-submit:hover {
    background-color: rgb(19, 130, 94);
}


.pricing-page {
    padding: 60px 50px;
    max-width: 1200px;
    margin: auto;
}

.pricing-heading {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-heading h1 {
    color: rgb(23, 153, 110);
    margin-bottom: 15px;
}

.pricing-heading p {
    max-width: 700px;
    margin: auto;
}


/* Four package blocks */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


/* Individual package */

.pricing-card {
    background-color: rgb(235, 245, 241);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgb(23, 153, 110);
}


/* Clickable package heading */

.pricing-card summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 25px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: rgb(23, 153, 110);
}


/* Remove default arrow */

.pricing-card summary::-webkit-details-marker {
    display: none;
}


/* Package icon */

.pricing-icon {
    font-size: 28px;
}


/* Package name */

.pricing-name {
    font-size: 22px;
    flex: 1;
}


/* Arrow */

.pricing-arrow {
    transition: transform 0.3s ease;
}


/* Rotate arrow when opened */

.pricing-card[open] .pricing-arrow {
    transform: rotate(180deg);
}


/* Details */

.pricing-details {
    padding: 0 25px 30px 25px;
    border-top: 1px solid rgba(23, 153, 110, 0.2);
}


.pricing-price {
    font-size: 26px;
    font-weight: 700;
    color: rgb(23, 153, 110);
    margin: 20px 0;
}


.pricing-details ul {
    padding-left: 22px;
    margin-bottom: 20px;
}


.pricing-details li {
    margin-bottom: 10px;
    line-height: 1.5;
}


.pricing-includes {
    font-weight: 600;
}


.pricing-tamil {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 20px;
}


/* Choose package button */

.pricing-button {
    display: inline-block;
    background-color: rgb(23, 153, 110);
    color: white;
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 5px;
    margin-top: 10px;
    transition: 0.3s ease;
}


.pricing-button:hover {
    background-color: rgb(18, 125, 90);
    color: white;
}

.how-it-works-page {
    padding: 60px 40px;
    max-width: 1100px;
    margin: auto;
}


/* Heading */

.how-it-works-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.how-it-works-heading h1 {
    color: rgb(23, 153, 110);
    font-size: 38px;
    margin-bottom: 15px;
}

.how-it-works-heading p {
    line-height: 1.8;
}


/* =========================================
   FLOW CHART
========================================= */

.nutrition-flow {
    position: relative;
    max-width: 900px;
    margin: auto;
}


/* Individual step */

.flow-step {
    display: grid;
    grid-template-columns: 80px 100px 1fr;
    align-items: center;
    gap: 25px;

    background-color: rgb(235, 245, 241);

    border-radius: 15px;

    padding: 30px;

    position: relative;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);

    transition: 0.3s ease;
}


.flow-step:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}


/* Number */

.flow-number {
    font-size: 28px;
    font-weight: 800;

    color: rgb(23, 153, 110);

    text-align: center;
}


/* Icon */

.flow-icon {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background-color: rgb(23, 153, 110);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 27px;
}


/* Content */

.flow-content h2 {
    color: rgb(23, 153, 110);

    font-size: 24px;

    margin-bottom: 12px;
}


.flow-content p {
    line-height: 1.7;

    margin-bottom: 12px;
}


/* Small highlighted text */

.flow-highlight {
    display: inline-block;

    font-size: 14px;

    color: rgb(23, 153, 110);

    font-weight: 600;

    line-height: 1.6;
}


/* =========================================
   CONNECTING LINE
========================================= */

.flow-connector {
    width: 4px;

    height: 55px;

    background-color: rgb(23, 153, 110);

    margin: 0 auto;

    border-radius: 10px;

    position: relative;
}


/* Arrow at bottom of connector */

.flow-connector::after {
    content: "";

    position: absolute;

    bottom: -1px;

    left: 50%;

    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 7px solid transparent;
    border-right: 7px solid transparent;

    border-top: 10px solid rgb(23, 153, 110);
}


/* =========================================
   CTA
========================================= */

.how-it-works-cta {
    text-align: center;

    margin-top: 70px;

    padding: 40px 25px;

    background-color: rgb(23, 153, 110);

    border-radius: 15px;

    color: white;
}


.how-it-works-cta h2 {
    margin-bottom: 12px;
}


.how-it-works-cta p {
    margin-bottom: 25px;
}


.how-it-works-button {
    display: inline-block;

    background-color: white;

    color: rgb(23, 153, 110);

    text-decoration: none;

    padding: 12px 22px;

    border-radius: 6px;

    font-weight: 700;

    transition: 0.3s ease;
}


.how-it-works-button:hover {
    background-color: #e8fff7;
}

/* =========================================
   ABOUT US PAGE
========================================= */

.about-page{
    padding: 0 5%;
    background-color: #ffffff;
}


/* HERO */

.about-hero{
    min-height: 430px;
    margin: 30px 0 70px;
    padding: 60px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgb(23, 153, 110), rgb(35, 177, 132));
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.about-hero-content{
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.about-badge{
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background-color: rgba(255,255,255,0.18);
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.about-hero h1{
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.about-hero p{
    max-width: 650px;
    font-size: 18px;
    line-height: 1.8;
}

.about-hero-button{
    display: inline-block;
    margin-top: 15px;
    padding: 13px 25px;
    background-color: white;
    color: rgb(23, 153, 110);
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.about-hero-button:hover{
    transform: translateY(-3px);
}

.about-hero-shape{
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    transform: rotate(-15deg);
}

.about-hero-shape i{
    color: rgba(255,255,255,0.8);
}


/* COMMON SECTION HEADING */

.about-section-heading{
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.about-section-heading h2{
    font-size: 34px;
    color: #1d232c;
    margin-top: 10px;
}

.about-section-label{
    color: rgb(23, 153, 110);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
}


/* INTRODUCTION */

.about-introduction{
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 90px;
}

.about-intro-text h2{
    font-size: 36px;
    margin: 12px 0 20px;
}

.about-intro-text p{
    color: #555;
    line-height: 1.8;
}

.about-intro-card{
    padding: 40px 30px;
    border-radius: 20px;
    background-color: rgb(235, 245, 241);
    text-align: center;
    border: 1px solid rgba(23,153,110,0.12);
}

.about-intro-card i{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgb(23,153,110);
    color: white;
    font-size: 28px;
}

.about-intro-card h3{
    font-size: 21px;
    line-height: 1.4;
}

.about-intro-card p{
    color: #555;
    line-height: 1.7;
}


/* MISSION & VISION */

.mission-vision-section{
    padding: 75px 5%;
    margin-bottom: 90px;
    background-color: #f7faf9;
    border-radius: 25px;
}

.mission-vision-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.mission-card,
.vision-card{
    padding: 35px;
    border-radius: 18px;
    background-color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.about-card-icon{
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background-color: rgb(235,245,241);
    color: rgb(23,153,110);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3{
    font-size: 24px;
}

.mission-card p,
.vision-card p{
    color: #555;
    line-height: 1.8;
}


/* PRINCIPLES */

.principles-section{
    max-width: 1100px;
    margin: 0 auto 100px;
}

.principles-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.about-principle-card{
    padding: 35px 28px;
    border-radius: 18px;
    background-color: rgb(235,245,241);
    text-align: center;
    transition: 0.3s;
}

.about-principle-card:hover{
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.principle-icon{
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgb(23,153,110);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.about-principle-card h3{
    font-size: 21px;
}

.about-principle-card p{
    color: #555;
    line-height: 1.7;
}


/* PROFESSIONAL SUPPORT */

.professional-section{
    max-width: 1050px;
    margin: 0 auto 100px;
    padding: 50px;
    border-radius: 25px;
    background-color: rgb(23,153,110);
    color: white;
    display: flex;
    gap: 45px;
    align-items: flex-start;
}

.professional-icon{
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

.professional-content .about-section-label{
    color: #dffff3;
}

.professional-content h2{
    font-size: 34px;
    margin-top: 10px;
}

.professional-content p{
    line-height: 1.8;
}

.professional-points{
    margin-top: 25px;
}

.professional-points div{
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.professional-points i{
    color: #dffff3;
}

.medical-note{
    margin-top: 25px;
    padding: 18px;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.12);
    line-height: 1.6;
}


/* SUPPORT */

.support-section{
    max-width: 1100px;
    margin: 0 auto 100px;
}

.support-section .about-section-heading p{
    color: #666;
}

.support-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.support-item{
    padding: 22px 15px;
    border-radius: 14px;
    background-color: #f7faf9;
    border: 1px solid #e3efeb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    min-height: 110px;
    transition: 0.3s;
}

.support-item:hover{
    background-color: rgb(235,245,241);
    transform: translateY(-4px);
}

.support-item i{
    color: rgb(23,153,110);
    font-size: 25px;
}

.support-item span{
    font-weight: 600;
    color: #333;
}


/* DIGITAL CARE */

.digital-about-section{
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 60px;
    border-radius: 25px;
    background-color: rgb(235,245,241);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.digital-about-content{
    max-width: 700px;
}

.digital-about-content h2{
    font-size: 34px;
    margin-top: 12px;
}

.digital-about-content p{
    color: #555;
    line-height: 1.8;
}

.digital-tagline{
    margin-top: 25px;
    padding: 20px;
    border-left: 4px solid rgb(23,153,110);
    background-color: white;
    display: flex;
    gap: 15px;
    align-items: center;
    border-radius: 8px;
}

.digital-tagline i{
    color: rgb(23,153,110);
    font-size: 25px;
}

.digital-tagline div{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.digital-tagline strong{
    color: rgb(23,153,110);
}

.digital-about-visual{
    min-width: 220px;
}

.digital-circle{
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(23,153,110);
    font-size: 75px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* WHY NUTRIYEARN */

.why-section{
    max-width: 1100px;
    margin: 0 auto 100px;
}

.why-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.why-not-card,
.why-yes-card{
    padding: 35px;
    border-radius: 20px;
}

.why-not-card{
    background-color: #fff5f5;
    border: 1px solid #f3dada;
}

.why-yes-card{
    background-color: rgb(235,245,241);
    border: 1px solid #d4ebe2;
}

.why-title{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.why-title h3{
    margin: 0;
    font-size: 23px;
}

.why-x,
.why-check{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
}

.why-x{
    background-color: #ffe0e0;
    color: #d44;
}

.why-check{
    background-color: rgb(23,153,110);
    color: white;
}

.why-grid ul{
    list-style: none;
}

.why-grid li{
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.why-not-card li::before{
    content: "×";
    color: #d44;
    font-weight: bold;
    margin-right: 10px;
}

.why-yes-card li::before{
    content: "✓";
    color: rgb(23,153,110);
    font-weight: bold;
    margin-right: 10px;
}


/* FINAL CTA */

.about-cta{
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 45px 50px;
    border-radius: 22px;
    background-color: rgb(23,153,110);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-cta span{
    font-size: 12px;
    letter-spacing: 1.5px;
}

.about-cta h2{
    font-size: 30px;
    margin: 10px 0;
}

.about-cta p{
    margin: 0;
}

.about-cta a{
    white-space: nowrap;
    background-color: white;
    color: rgb(23,153,110);
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.about-cta a:hover{
    transform: translateY(-3px);
}

/* =========================================
   SERVICES PAGE
========================================= */

.services-page{
    max-width: 1200px;
    margin: auto;
    padding: 35px 5% 70px;
}


/* =========================================
   HERO
========================================= */

.services-hero{
    min-height: 400px;
    padding: 55px;
    border-radius: 25px;
    background-color: rgb(235,245,241);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
    margin-bottom: 80px;
}

.services-hero-content{
    max-width: 750px;
}

.services-label{
    color: rgb(23,153,110);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.7px;
}

.services-hero h1{
    font-size: 44px;
    line-height: 1.2;
    margin: 15px 0 20px;
    color: #1d232c;
}

.services-hero h1 span{
    color: rgb(23,153,110);
}

.services-hero p{
    color: #555;
    line-height: 1.8;
}

.services-hero-icon{
    min-width: 190px;
    height: 190px;

    border-radius: 50%;

    background-color: rgb(23,153,110);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 75px;
}


/* =========================================
   SECTION HEADING
========================================= */

.services-heading{
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.services-heading h2{
    font-size: 34px;
    margin: 12px 0;
    color: #1d232c;
}

.services-heading p{
    color: #666;
    line-height: 1.7;
}


/* =========================================
   SERVICE CARDS
========================================= */

.services-cards{
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 25px;

    margin-bottom: 90px;
}


.main-service-card{
    padding: 35px;

    border-radius: 20px;

    background-color: white;

    border: 1px solid #e4eee9;

    position: relative;

    transition: 0.3s ease;
}


.main-service-card:hover{
    transform: translateY(-7px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);

    border-color: rgb(23,153,110);
}


.service-number{
    position: absolute;

    top: 20px;
    right: 25px;

    font-size: 13px;

    font-weight: bold;

    color: #b7d8cc;
}


.service-icon{
    width: 65px;
    height: 65px;

    border-radius: 16px;

    background-color: rgb(235,245,241);

    color: rgb(23,153,110);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 26px;

    margin-bottom: 20px;
}


.main-service-card h3{
    color: rgb(23,153,110);

    font-size: 22px;

    margin-bottom: 14px;
}


.main-service-card p{
    color: #555;

    line-height: 1.75;
}


.main-service-card h4{
    margin-top: 22px;

    margin-bottom: 12px;

    color: #333;
}


.main-service-card ul{
    padding-left: 20px;
}


.main-service-card li{
    margin-bottom: 9px;

    color: #555;

    line-height: 1.5;
}


.featured-service{
    background-color: rgb(235,245,241);

    border-color: rgba(23,153,110,0.2);
}


/* =========================================
   SERVICE NOTES
========================================= */

.service-note{
    display: flex;

    gap: 10px;

    margin-top: 20px;

    padding: 14px;

    border-radius: 10px;

    background-color: #f7f7f7;

    font-size: 13px;

    line-height: 1.6;

    color: #666;
}


.service-note i{
    color: rgb(23,153,110);

    margin-top: 3px;
}


.service-highlight{
    display: flex;

    gap: 12px;

    align-items: center;

    margin-top: 22px;

    padding: 16px;

    background-color: white;

    border-radius: 10px;

    color: rgb(23,153,110);

    font-weight: 600;

    line-height: 1.5;
}


.service-highlight i{
    font-size: 20px;
}


/* =========================================
   LIFE STAGES
========================================= */

.life-stage{
    display: flex;

    gap: 15px;

    padding: 15px 0;

    border-bottom: 1px solid #e5e5e5;
}


.life-stage:last-child{
    border-bottom: none;
}


.life-stage > i{
    min-width: 40px;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background-color: rgb(235,245,241);

    color: rgb(23,153,110);
}


.life-stage strong{
    display: block;

    margin-bottom: 4px;

    color: #333;
}


.life-stage p{
    margin: 0;

    font-size: 14px;
}


/* =========================================
   OUR APPROACH
========================================= */

.service-approach{
    padding: 65px 5%;

    border-radius: 25px;

    background-color: #f7faf9;

    margin-bottom: 70px;
}


.approach-heading{
    text-align: center;

    max-width: 700px;

    margin: 0 auto 40px;
}


.approach-heading h2{
    font-size: 34px;

    margin: 12px 0;

    color: #1d232c;
}


.approach-heading p{
    color: #666;

    line-height: 1.7;
}


/* =========================================
   APPROACH COLUMNS
========================================= */

.approach-columns{
    max-width: 900px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.approach-no,
.approach-yes{
    padding: 25px;

    border-radius: 15px;
}


.approach-no{
    background-color: #fff5f5;

    border: 1px solid #f0d8d8;
}


.approach-yes{
    background-color: rgb(235,245,241);

    border: 1px solid #d3e9e0;
}


.approach-title{
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 12px;
}


.approach-title span{
    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    font-weight: bold;
}


.approach-no .approach-title span{
    background-color: #ffe1e1;

    color: #c44;
}


.approach-yes .approach-title span{
    background-color: rgb(23,153,110);

    color: white;
}


.approach-title h3{
    margin: 0;

    font-size: 19px;
}


.approach-no p,
.approach-yes p{
    margin: 0;

    color: #555;

    line-height: 1.7;
}


/* =========================================
   PROCESS FLOW
========================================= */

.nutrition-process{
    margin-top: 60px;
}


.process-heading{
    text-align: center;

    margin-bottom: 35px;
}


.process-heading h3{
    font-size: 25px;

    color: rgb(23,153,110);
}


.process-flow{
    display: flex;

    align-items: flex-start;

    justify-content: center;

    gap: 12px;
}


.process-step{
    width: 170px;

    text-align: center;
}


.process-circle{
    width: 65px;
    height: 65px;

    border-radius: 50%;

    margin: 0 auto 15px;

    background-color: rgb(23,153,110);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: bold;

    font-size: 14px;
}


.process-step h4{
    color: #333;

    margin-bottom: 8px;
}


.process-step p{
    color: #666;

    font-size: 13px;

    line-height: 1.6;
}


.process-arrow{
    color: rgb(23,153,110);

    font-size: 25px;

    padding-top: 18px;
}


/* =========================================
   FINAL CTA
========================================= */

.services-final-cta{
    padding: 45px 50px;

    border-radius: 20px;

    background-color: rgb(23,153,110);

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.services-final-cta > div:first-child{
    max-width: 700px;
}


.services-final-cta span{
    font-size: 12px;

    letter-spacing: 1.5px;
}


.services-final-cta h2{
    font-size: 30px;

    line-height: 1.4;

    margin: 10px 0;
}


.services-final-cta p{
    margin: 0;

    line-height: 1.7;
}


.services-cta-buttons{
    display: flex;

    gap: 12px;

    flex-shrink: 0;
}


.services-cta-buttons a{
    padding: 13px 20px;

    border-radius: 7px;

    background-color: white;

    color: rgb(23,153,110);

    text-decoration: none;

    font-weight: bold;

    white-space: nowrap;

    transition: 0.3s;
}


.services-cta-buttons a:hover{
    transform: translateY(-3px);
}


.services-cta-buttons .secondary-cta{
    background-color: transparent;

    color: white;

    border: 1px solid white;
}

/* =========================================
   CONTACT US PAGE
========================================= */

.contact-page{
    max-width: 1200px;
    margin: auto;
    padding: 35px 5% 70px;
}


/* =========================================
   HERO
========================================= */

.contact-hero{
    min-height: 350px;

    padding: 55px;

    border-radius: 25px;

    background-color: rgb(235,245,241);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 75px;
}


.contact-hero-content{
    max-width: 750px;
}


.contact-label{
    color: rgb(23,153,110);

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 1.7px;
}


.contact-hero h1{
    font-size: 42px;

    line-height: 1.25;

    color: #1d232c;

    margin: 15px 0 20px;
}


.contact-hero h1 span{
    color: rgb(23,153,110);

    display: block;
}


.contact-hero p{
    color: #555;

    line-height: 1.8;
}


.contact-hero-icon{
    width: 180px;

    height: 180px;

    min-width: 180px;

    border-radius: 50%;

    background-color: rgb(23,153,110);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 65px;
}


/* =========================================
   HEADING
========================================= */

.contact-heading{
    text-align: center;

    max-width: 700px;

    margin: 0 auto 40px;
}


.contact-heading h2{
    font-size: 34px;

    color: #1d232c;

    margin: 12px 0;
}


.contact-heading p{
    color: #666;

    line-height: 1.7;
}


/* =========================================
   CONTACT CARDS
========================================= */

.contact-cards{
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 25px;

    margin-bottom: 55px;
}


.contact-card{
    background-color: white;

    border: 1px solid #e3eee9;

    border-radius: 20px;

    padding: 35px 25px;

    text-align: center;

    transition: 0.3s ease;
}


.contact-card:hover{
    transform: translateY(-7px);

    border-color: rgb(23,153,110);

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}


.contact-icon{
    width: 65px;

    height: 65px;

    margin: 0 auto 20px;

    border-radius: 16px;

    background-color: rgb(235,245,241);

    color: rgb(23,153,110);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 27px;
}


.contact-card h3{
    color: #1d232c;

    font-size: 21px;

    margin-bottom: 12px;
}


.contact-card p{
    color: #666;

    line-height: 1.7;

    font-size: 14px;

    min-height: 70px;
}


.contact-card > a{
    color: rgb(23,153,110);

    font-weight: bold;

    text-decoration: none;

    word-break: break-word;
}


.contact-card > a:hover{
    text-decoration: underline;
}


/* =========================================
   SOCIAL MEDIA
========================================= */

.contact-socials{
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.contact-socials a{
    color: rgb(23,153,110);

    text-decoration: none;

    font-weight: 600;

    font-size: 14px;
}


.contact-socials a:hover{
    text-decoration: underline;
}


.contact-socials i{
    width: 22px;
}


/* =========================================
   WHATSAPP CTA
========================================= */

.contact-whatsapp{
    background-color: rgb(23,153,110);

    color: white;

    border-radius: 20px;

    padding: 35px 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}


.whatsapp-content{
    display: flex;

    align-items: center;

    gap: 20px;
}


.whatsapp-icon{
    width: 65px;

    height: 65px;

    min-width: 65px;

    border-radius: 50%;

    background-color: white;

    color: rgb(23,153,110);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;
}


.whatsapp-content span{
    font-size: 12px;

    letter-spacing: 1.5px;

    font-weight: bold;
}


.whatsapp-content h2{
    margin: 7px 0;

    font-size: 26px;
}


.whatsapp-content p{
    margin: 0;

    line-height: 1.6;
}


.contact-whatsapp > a{
    background-color: white;

    color: rgb(23,153,110);

    padding: 14px 22px;

    border-radius: 7px;

    text-decoration: none;

    font-weight: bold;

    white-space: nowrap;

    transition: 0.3s;
}


.contact-whatsapp > a:hover{
    transform: translateY(-3px);
}


/* =========================================
   RESPONSE TIME
========================================= */

.response-time{
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 25px 30px;

    border-radius: 15px;

    background-color: rgb(235,245,241);

    margin-bottom: 65px;
}


.response-time > i{
    width: 50px;

    height: 50px;

    min-width: 50px;

    border-radius: 50%;

    background-color: white;

    color: rgb(23,153,110);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;
}


.response-time h3{
    margin-bottom: 5px;

    color: #1d232c;
}


.response-time p{
    margin: 0;

    color: #666;
}


/* =========================================
   FINAL MESSAGE
========================================= */

.contact-final{
    text-align: center;

    padding: 20px;

    margin-bottom: 45px;
}


.contact-final-icon{
    font-size: 35px;

    margin-bottom: 10px;
}


.contact-final h2{
    max-width: 650px;

    margin: auto;

    font-size: 32px;

    line-height: 1.4;

    color: #1d232c;
}


.contact-final p{
    margin: 18px 0 3px;

    color: rgb(23,153,110);

    font-size: 19px;
}


.contact-final span{
    color: #777;

    font-style: italic;
}


/* =========================================
   DISCLAIMER
========================================= */

.contact-disclaimer{
    max-width: 950px;

    margin: auto;

    padding: 20px 25px;

    border-left: 4px solid rgb(23,153,110);

    background-color: #f7f7f7;

    color: #666;

    font-size: 13px;

    line-height: 1.7;
}


.contact-disclaimer strong{
    color: #444;
}

/* =========================================
   NUTRITION ARTICLE PAGES
========================================= */

.nutrition-article-page{
    max-width: 1100px;

    margin: auto;

    padding-bottom: 70px;
}


/* ARTICLE HERO */

.nutrition-article-hero{
    background-color: rgb(235,245,241);

    text-align: center;

    padding: 75px 30px;

    margin-bottom: 50px;
}


.nutrition-article-label{
    color: rgb(23,153,110);

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1.7px;
}


.nutrition-article-hero h1{
    max-width: 800px;

    margin: 15px auto;

    font-size: 45px;

    line-height: 1.25;

    color: #1D232C;
}


.nutrition-article-hero h1 span{
    color: rgb(23,153,110);
}


.nutrition-article-hero p{
    max-width: 700px;

    margin: auto;

    color: #666;

    line-height: 1.8;

    font-size: 17px;
}


/* ARTICLE CONTENT */

.nutrition-article-content{
    max-width: 800px;

    margin: auto;

    padding: 0 25px;
}


.nutrition-article-image{
    margin-bottom: 35px;
}


.nutrition-article-image img{
    width: 100%;

    max-height: 430px;

    object-fit: cover;

    border-radius: 18px;
}


.nutrition-article-content p{
    color: #555;

    line-height: 1.9;

    font-size: 16px;

    margin-bottom: 22px;
}


.nutrition-article-content h2{
    color: #1D232C;

    font-size: 27px;

    margin-top: 45px;

    margin-bottom: 18px;
}


/* HIGHLIGHT */

.article-highlight{
    display: flex;

    gap: 20px;

    align-items: flex-start;

    background-color: rgb(235,245,241);

    padding: 25px;

    border-radius: 15px;

    margin: 35px 0;
}


.article-highlight > i{
    color: rgb(23,153,110);

    font-size: 28px;

    margin-top: 4px;
}


.article-highlight h3{
    color: #1D232C;

    margin-bottom: 8px;
}


.article-highlight p{
    margin-bottom: 0;
}


/* LIST */

.article-list{
    background-color: #fafcfb;

    padding: 22px 25px;

    border-radius: 12px;

    margin: 25px 0;
}


.article-list div{
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 13px;

    color: #555;
}


.article-list div:last-child{
    margin-bottom: 0;
}


.article-list i{
    color: rgb(23,153,110);

    margin-top: 5px;
}


/* TAKEAWAY */

.article-takeaway{
    margin-top: 50px;

    padding: 35px;

    background-color: rgb(23,153,110);

    color: white;

    border-radius: 18px;

    text-align: center;
}


.article-takeaway span{
    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1.5px;
}


.article-takeaway h2{
    color: white;

    max-width: 650px;

    margin: 15px auto 0;

    font-size: 25px;

    line-height: 1.5;
}


/* CTA */

.nutrition-article-cta{
    max-width: 800px;

    margin: 60px auto 0;

    padding: 45px 30px;

    text-align: center;

    background-color: #fafcfb;

    border-radius: 18px;

    border: 1px solid #e3eee9;
}


.nutrition-article-cta h2{
    color: #1D232C;

    font-size: 28px;

    margin-bottom: 12px;
}


.nutrition-article-cta p{
    color: #666;

    line-height: 1.7;

    margin-bottom: 25px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-icon-container a:hover,
.footer-whatsapp-button:hover {
    text-decoration: none;
}


/* Media Query*/

@media screen and (max-width:800px) {
    .navbar-menu-toggle{
        display:block;
        margin-left: auto;
        cursor: pointer;
    }
    .navbar-links{
        display: none;
    }
    .hero-image{
        display: none;
    }
    .service-container-1{
        display: none;
    }
    .service-container-2{
        flex-direction: column;
    }
    .consultation-box {
        padding: 25px;
    }

    .consultation-row {
        flex-direction: column;
        gap: 0;
    }

    .pricing-page {
        padding: 40px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-name {
        font-size: 19px;
    }

    .pricing-card summary {
        padding: 20px;
    }

    .pricing-details {
        padding: 0 20px 25px 20px;
    }

    .how-it-works-page {
        padding: 40px 20px;
    }


    .how-it-works-heading {
        margin-bottom: 40px;
    }


    .how-it-works-heading h1 {
        font-size: 30px;
    }


    .flow-step {
        grid-template-columns: 55px 70px 1fr;

        gap: 15px;

        padding: 22px 18px;
    }


    .flow-number {
        font-size: 20px;
    }


    .flow-icon {
        width: 55px;
        height: 55px;

        font-size: 21px;
    }


    .flow-content h2 {
        font-size: 19px;
    }


    .flow-content p {
        font-size: 14px;
    }


    .flow-highlight {
        font-size: 13px;
    }


    .flow-connector {
        height: 40px;
    }

    .about-page{
        padding: 0 20px;
    }

    .about-hero{
        margin-top: 20px;
        padding: 40px 25px;
        min-height: auto;
    }

    .about-hero h1{
        font-size: 36px;
    }

    .about-hero p{
        font-size: 16px;
    }

    .about-hero-shape{
        display: none;
    }

    .about-introduction{
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .about-intro-text h2{
        font-size: 30px;
    }

    .mission-vision-section{
        padding: 45px 20px;
        margin-bottom: 60px;
    }

    .mission-vision-grid{
        grid-template-columns: 1fr;
    }

    .principles-section{
        margin-bottom: 60px;
    }

    .principles-grid{
        grid-template-columns: 1fr;
    }

    .professional-section{
        padding: 35px 25px;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 60px;
    }

    .professional-content h2{
        font-size: 29px;
    }

    .support-section{
        margin-bottom: 60px;
    }

    .support-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .digital-about-section{
        padding: 40px 25px;
        flex-direction: column;
        margin-bottom: 60px;
    }

    .digital-about-content h2{
        font-size: 29px;
    }

    .why-section{
        margin-bottom: 60px;
    }

    .why-grid{
        grid-template-columns: 1fr;
    }

    .about-cta{
        padding: 35px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-cta h2{
        font-size: 26px;
    }

     .services-page{
        padding: 25px 20px 50px;
    }


    .services-hero{
        padding: 40px 25px;

        flex-direction: column;

        text-align: center;

        margin-bottom: 55px;
    }


    .services-hero h1{
        font-size: 34px;
    }


    .services-hero-icon{
        min-width: 130px;

        width: 130px;

        height: 130px;

        font-size: 50px;
    }


    .services-cards{
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 60px;
    }


    .main-service-card{
        padding: 28px 23px;
    }


    .service-approach{
        padding: 45px 20px;
    }


    .approach-heading h2{
        font-size: 28px;
    }


    .approach-columns{
        grid-template-columns: 1fr;
    }


    .process-flow{
        flex-direction: column;

        align-items: center;

        gap: 5px;
    }


    .process-step{
        width: 100%;

        max-width: 280px;
    }


    .process-arrow{
        transform: rotate(90deg);

        padding: 0;

        margin: 3px 0;
    }


    .services-final-cta{
        padding: 35px 25px;

        flex-direction: column;

        align-items: flex-start;
    }


    .services-final-cta h2{
        font-size: 26px;
    }


    .services-cta-buttons{
        flex-direction: column;

        width: 100%;
    }


    .services-cta-buttons a{
        text-align: center;
    }

    .contact-page{
        padding: 25px 20px 50px;
    }


    .contact-hero{
        padding: 40px 25px;

        flex-direction: column;

        text-align: center;

        margin-bottom: 55px;
    }


    .contact-hero h1{
        font-size: 33px;
    }


    .contact-hero-icon{
        width: 130px;

        height: 130px;

        min-width: 130px;

        font-size: 50px;
    }


    .contact-cards{
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .contact-card{
        padding: 30px 22px;
    }


    .contact-card p{
        min-height: auto;
    }


    .contact-whatsapp{
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 25px;
    }


    .whatsapp-content{
        align-items: flex-start;
    }


    .contact-whatsapp > a{
        width: 100%;

        text-align: center;

        box-sizing: border-box;
    }


    .response-time{
        align-items: flex-start;

        padding: 20px;
    }


    .contact-final h2{
        font-size: 27px;
    }


    .contact-disclaimer{
        padding: 18px;
    }

    .nutrition-article-page{
        padding-bottom: 40px;
    }


    .nutrition-article-hero{
        padding: 55px 20px;

        margin-bottom: 35px;
    }


    .nutrition-article-hero h1{
        font-size: 34px;
    }


    .nutrition-article-hero p{
        font-size: 15px;
    }


    .nutrition-article-content{
        padding: 0 20px;
    }


    .nutrition-article-content h2{
        font-size: 24px;
    }


    .nutrition-article-image img{
        max-height: 300px;
    }


    .article-highlight{
        padding: 20px;

        gap: 15px;
    }


    .article-takeaway{
        padding: 28px 20px;
    }


    .article-takeaway h2{
        font-size: 21px;
    }


    .nutrition-article-cta{
        margin: 45px 20px 0;

        padding: 35px 20px;
    }

     .footer {
        padding: 40px 25px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

}


/* =========================================================
   NUTRITION TIPS PAGE
   ========================================================= */


.nutrition-tips-page {
    width: 100%;
    background-color: white;
}



/* =========================================================
   HERO
   ========================================================= */

.nutrition-tips-hero {
    background-color: rgb(235, 245, 241);
    padding: 90px 30px;
    text-align: center;
}


.nutrition-tips-hero-content {
    max-width: 850px;
    margin: auto;
}


.nutrition-tips-label {
    display: inline-block;
    color: rgb(23, 153, 110);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}


.nutrition-tips-hero h2 {
    color: #1D232C;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 22px;
}


.nutrition-tips-hero h2 span {
    color: rgb(23, 153, 110);
}


.nutrition-tips-hero p {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}



/* =========================================================
   INTRODUCTION
   ========================================================= */

.nutrition-tips-intro {
    max-width: 850px;
    margin: auto;
    padding: 75px 25px 45px;
    text-align: center;
}


.nutrition-tips-small-label {
    display: inline-block;
    color: rgb(23, 153, 110);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 15px;
}


.nutrition-tips-intro h2 {
    color: #1D232C;
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 18px;
}


.nutrition-tips-intro p {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}



/* =========================================================
   ARTICLE GRID
   ========================================================= */

.nutrition-tips-articles {
    max-width: 1150px;
    margin: auto;
    padding: 20px 30px 80px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}



/* =========================================================
   ARTICLE CARD
   ========================================================= */

.nutrition-tip-card {
    background-color: white;
    border: 1px solid #e5eee9;
    border-radius: 18px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}


.nutrition-tip-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}



/* =========================================================
   ARTICLE IMAGE
   ========================================================= */

.nutrition-tip-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}


.nutrition-tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


.nutrition-tip-card:hover
.nutrition-tip-image img {
    transform: scale(1.05);
}


.nutrition-tip-category {
    position: absolute;

    left: 18px;
    bottom: 18px;

    background-color: white;
    color: rgb(23, 153, 110);

    padding: 7px 11px;

    border-radius: 20px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}



/* =========================================================
   ARTICLE CONTENT
   ========================================================= */

.nutrition-tip-content {
    padding: 28px 25px 30px;

    display: flex;
    flex-direction: column;

    flex: 1;
}


.nutrition-tip-number {
    color: rgb(23, 153, 110);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    margin-bottom: 12px;
}


.nutrition-tip-content h3 {
    color: #1D232C;

    font-size: 22px;
    line-height: 1.4;

    margin-bottom: 14px;
}


.nutrition-tip-content p {
    color: #666;

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 25px;
}


.nutrition-tip-read-more {
    margin-top: auto;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: rgb(23, 153, 110);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: gap 0.3s ease;
}


.nutrition-tip-read-more:hover {
    color: rgb(19, 135, 98);
    text-decoration: none;
    gap: 14px;
}


.nutrition-tip-read-more i {
    font-size: 12px;
}



/* =========================================================
   MORE ARTICLES / COMING SOON
   ========================================================= */

.nutrition-tips-coming {
    max-width: 1050px;
    margin: 0 auto 80px;

    padding: 35px 40px;

    background-color: #fafcfb;

    border: 1px solid #e1eee9;

    border-radius: 18px;

    display: flex;
    align-items: center;

    gap: 25px;
}


.nutrition-tips-coming-icon {
    min-width: 65px;
    width: 65px;
    height: 65px;

    border-radius: 50%;

    background-color: rgb(235, 245, 241);

    display: flex;
    align-items: center;
    justify-content: center;
}


.nutrition-tips-coming-icon i {
    color: rgb(23, 153, 110);
    font-size: 25px;
}


.nutrition-tips-coming-content span {
    color: rgb(23, 153, 110);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.6px;
}


.nutrition-tips-coming-content h2 {
    color: #1D232C;

    font-size: 23px;

    margin: 7px 0 8px;
}


.nutrition-tips-coming-content p {
    color: #666;

    font-size: 14px;
    line-height: 1.7;

    max-width: 750px;
}



/* =========================================================
   CTA
   ========================================================= */

.nutrition-tips-cta {
    max-width: 900px;

    margin: 0 auto 80px;

    padding: 60px 35px;

    background-color: rgb(23, 153, 110);

    border-radius: 20px;

    text-align: center;

    color: white;
}


.nutrition-tips-cta > span {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


.nutrition-tips-cta h2 {
    color: white;

    font-size: 32px;
    line-height: 1.3;

    margin: 15px auto;
}


.nutrition-tips-cta p {
    max-width: 680px;

    margin: 0 auto 28px;

    color: #e8fff7;

    font-size: 15px;
    line-height: 1.8;
}


.nutrition-tips-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    background-color: white;

    color: rgb(23, 153, 110);

    padding: 12px 22px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}


.nutrition-tips-cta-button:hover {
    background-color: #e8fff7;

    color: rgb(23, 153, 110);

    text-decoration: none;

    transform: translateY(-2px);
}



/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 800px) {


    /* Hero */

    .nutrition-tips-hero {
        padding: 65px 20px;
    }


    .nutrition-tips-hero h2 {
        font-size: 36px;
    }


    .nutrition-tips-hero p {
        font-size: 15px;
    }



    /* Introduction */

    .nutrition-tips-intro {
        padding: 55px 20px 35px;
    }


    .nutrition-tips-intro h2 {
        font-size: 28px;
    }


    .nutrition-tips-intro p {
        font-size: 15px;
    }



    /* Articles */

    .nutrition-tips-articles {
        grid-template-columns: 1fr;

        padding: 20px 20px 55px;

        gap: 25px;
    }


    .nutrition-tip-image {
        height: 230px;
    }


    .nutrition-tip-content h3 {
        font-size: 21px;
    }



    /* Coming soon */

    .nutrition-tips-coming {
        margin: 0 20px 55px;

        padding: 28px 22px;

        flex-direction: column;

        text-align: center;
    }


    .nutrition-tips-coming-content p {
        font-size: 14px;
    }



    /* CTA */

    .nutrition-tips-cta {
        margin: 0 20px 55px;

        padding: 45px 22px;
    }


    .nutrition-tips-cta h2 {
        font-size: 27px;
    }


    .nutrition-tips-cta p {
        font-size: 14px;
    }





    /* =========================================================
   NUTRIYEARN - MOBILE RESPONSIVE DESIGN - Correction for Home page
   ========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}


/* =========================================================
   MOBILE NAVBAR
   ========================================================= */

@media screen and (max-width: 768px) {

    .navbar {
        width: 100%;
        min-height: 80px;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .navbar .logo {
        width: 65px;
        height: 65px;
        padding: 0;
        object-fit: contain;
        flex-shrink: 0;
    }

    .navbar h1 {
        font-size: 25px;
        margin: 0;
        flex: 1;
    }

    .navbar-links {
        display: none;
    }

    .navbar-menu-toggle {
        display: block;
        font-size: 25px;
        flex-shrink: 0;
        cursor: pointer;
    }


    /* =====================================================
       HERO
       ===================================================== */

    .home-hero {
        width: 100%;
        padding: 45px 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .home-hero-content {
        width: 100%;
        max-width: 100%;
    }

    .home-hero h1 {
        font-size: 34px;
        line-height: 1.25;
        margin: 15px 0 20px;
    }

    .home-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .home-hero-image {
        width: 100%;
        max-width: 100%;
    }

    .home-hero-image img {
        width: 100%;
        height: 300px;
        display: block;
        object-fit: cover;
        border-radius: 20px;
    }


    /* =====================================================
       HERO BUTTONS
       ===================================================== */

    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-buttons button {
        width: 100%;
    }


    /* =====================================================
       WELCOME
       ===================================================== */

    .welcome-section {
        width: 100%;
        padding: 55px 20px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .welcome-image {
        width: 100%;
    }

    .welcome-image img {
        width: 100%;
        height: 280px;
        display: block;
    }

    .welcome-content {
        width: 100%;
    }

    .welcome-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .welcome-content p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================================
       SECTION HEADINGS
       ===================================================== */

    .section-heading {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .section-heading h2 {
        font-size: 29px;
        line-height: 1.3;
    }

    .section-heading p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================================
       WHY NUTRIYEARN
       ===================================================== */

    .why-section {
        width: 100%;
        padding: 55px 20px;
        overflow: hidden;
    }

    .why-cards {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .why-card {
        width: 100%;
        min-width: 0;
        padding: 30px 25px;
    }

    .why-card h3 {
        font-size: 22px;
    }

    .why-card p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================================
       SUPPORT
       ===================================================== */

    .support-section {
        width: 100%;
        padding: 55px 20px;
        overflow: hidden;
    }

    .support-cards {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .support-card {
        width: 100%;
        min-width: 0;
        padding: 30px 25px;
    }

    .support-card h3 {
        font-size: 21px;
    }

    .support-card p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================================
       HOW IT WORKS
       ===================================================== */

    .journey-section {
        width: 100%;
        padding: 55px 20px;
        overflow: hidden;
    }

    .journey-steps {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .journey-step {
        width: 100%;
        min-width: 0;
    }


    /* =====================================================
       NUTRITION EDUCATION
       ===================================================== */

    .education-section {
        width: 100%;
        padding: 55px 20px;
        overflow: hidden;
    }

    .education-cards {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .education-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .education-image {
        width: 100%;
    }

    .education-image img {
        width: 100%;
        height: 230px;
        display: block;
        object-fit: cover;
    }

    .education-content {
        width: 100%;
        padding: 25px;
    }

    .education-content h3 {
        font-size: 25px;
        line-height: 1.3;
        overflow-wrap: break-word;
    }

    .education-content p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================================
       BRAND STATEMENT
       ===================================================== */

    .brand-statement {
        width: 100%;
        padding: 55px 20px;
        text-align: center;
        overflow: hidden;
    }

    .brand-statement h2 {
        font-size: 27px;
        line-height: 1.4;
    }


    /* =====================================================
       FINAL CTA
       ===================================================== */

    .final-cta {
        width: 100%;
        padding: 55px 20px;
        overflow: hidden;
    }

    .final-cta h2 {
        font-size: 30px;
        line-height: 1.3;
    }


    /* =====================================================
       CENTER BUTTONS
       ===================================================== */

    .center-button {
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }

    .center-button button {
        max-width: 100%;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .footer {
        width: 100%;
        overflow: hidden;
    }

    .footer-container {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px 20px;
    }

    .footer-box,
    .footer-box-1 {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

}

@media screen and (max-width: 768px) {

    .final-cta {
        display: flex;
        flex-direction: column;
    }

    .final-cta > div:first-child {
        width: 100%;
    }

    .cta-button-container {
        width: 100%;
        margin-top: 25px;
        text-align: center;
    }

    .cta-button-container .white-button {
        width: 100%;
        max-width: 300px;
    }

}

}