/* ===== RESET ===== */
html {
    scroll-behavior: smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

/* ===== COLORS ===== */
:root{
    --primary:#ef4444;   /* green */
    --white:#ffffff;
}

/* ===== HEADER ===== */
.header{
    background:var(--white);
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.nav-container{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:4px 0;
}

 

/* ===== MENU ===== */
.nav-menu{
    display:flex;
    gap:30px;
}

.nav-menu a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    position:relative;
    transition:0.3s;
}

/* Unique hover effect */
.nav-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:var(--primary);
    transition:0.3s;
}

.nav-menu a:hover{
    color:var(--primary);
}

.nav-menu a:hover::after{
    width:100%;
}

/* ===== TOGGLE ===== */
.toggle-btn{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:var(--primary);
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

    .toggle-btn{
        display:block;
    }

    .nav-menu{
        position:absolute;
        top:80px;
        left:-100%;
        width:100%;
        background:white;
        flex-direction:column;
        text-align:center;
        gap:20px;
        padding:25px 0;
        box-shadow:0 5px 10px rgba(0,0,0,0.1);
        transition:0.4s;
    }

    .nav-menu.active{
        left:0;
    }
}

/* ===== UNIQUE FOOTER ===== */
.unique-footer{
    position:relative;
    margin-top:80px;
    background:linear-gradient(90deg, #ff8643, #ff36cf);
    color:white;
    text-align:center;
    overflow:hidden;
}

/* CURVED WAVE TOP */
.footer-wave{
    position:absolute;
    top:-60px;
    left:0;
    width:100%;
    height:120px;
    background:white;
    border-radius:0 0 50% 50%;
}

/* CONTENT */
.footer-content{
    position:relative;
    padding:90px 20px 35px;
    z-index:2;
}

/* LOGO */
.footer-logo{
    height:60px;
    margin-bottom:10px;
}

.footer-content h2{
    font-size:28px;
    margin-bottom:8px;
    font-weight:700;
}

.footer-content p{
    opacity:0.9;
    margin-bottom:25px;
}

/* LINKS */
.footer-links{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.footer-links a:hover{
    opacity:0.7;
    transform:translateY(-3px);
}

/* SOCIAL */
.footer-social{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:20px;
}

.footer-social a{
    color:white;
    text-decoration:none;
    padding:6px 14px;
    border:1px solid rgba(255,255,255,0.5);
    border-radius:20px;
    transition:0.3s;
}

.footer-social a:hover{
    background:white;
    color:#1fa64a;
}

/* COPYRIGHT */
.footer-copy{
    font-size:14px;
    opacity:0.85;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

    .footer-content{
        padding-top:80px;
    }

    .footer-links{
        gap:15px;
    }

    .footer-content h2{
        font-size:24px;
    }
}

/* ===== HERO BACKGROUND SECTION ===== */
.hero-bg{
    position:relative;
    width:100%;
    min-height:90vh;

    background:url("../images/meals.jpg") center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

/* DARK OVERLAY */
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

/* CONTENT */
.hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:800px;
    padding:20px;
}

/* BADGE */
.hero-badge{
    display:inline-block;
    background:#1fa64a;
    padding:8px 18px;
    border-radius:20px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

/* HEADING */
.hero-content h1{
    font-size:64px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:20px;
}

/* PARAGRAPH */
.hero-content p{
    font-size:20px;
    line-height:1.7;
    margin-bottom:30px;
    opacity:0.95;
}

/* BUTTONS */
.hero-btns{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.hero-btn{
    padding:13px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.hero-btn.primary{
    background:#1fa64a;
    color:white;
}

.hero-btn.primary:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,0.3);
}

.hero-btn.secondary{
    border:2px solid white;
    color:white;
}

.hero-btn.secondary:hover{
    background:white;
    color:#1fa64a;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:992px){

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:18px;
    }
}

/* Mobile */
@media(max-width:768px){

    .hero-bg{
        min-height:75vh;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-btn{
        padding:11px 22px;
    }
}

/* MAIN WRAPPER */
.nutrition-wrapper{
    position:relative;
    min-height:100vh;
    background:#a9ebb4;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
    overflow:hidden;
}

/* NETWORK CANVAS */
#network{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:0;
}

/* WHEELS */
.wheel{
    position:relative;
    z-index:2;
}

.left-wheel{
    width:520px;
}

.right-wheel{
    width:340px;
}

.wheel svg{
    width:100%;
}

/* CENTER IMAGES */
.center-img{
    position:absolute;
    width:220px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.food-img{
    position:absolute;
    width:100px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    border-radius: 50%;
}

/* HOVER GLOW */
.wheel:hover{
    filter:drop-shadow(0 0 20px rgba(255,255,255,0.8));
}

/* RESPONSIVE */
@media(max-width:992px){

    .left-wheel{
        width:360px;
    }

    .right-wheel{
        width:250px;
    }

    .center-img{
        width:150px;
    }

    .food-img{
        width:110px;
    }
}

/* ===== WHY CHOOSE US ===== */
.why-choose{
    width:90%;
    margin:80px auto;
    text-align:center;
}

.section-title h2{
    font-size:40px;
    color:#111;
    margin-bottom:12px;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.7;
}

/* GRID */
.why-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */
.why-card{
    background:#c2f5db;
    padding:30px 20px;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,0.12);
}

/* ICON */
.icon{
    font-size:38px;
    margin-bottom:15px;
}

/* TITLE */
.why-card h3{
    font-size:22px;
    margin-bottom:10px;
    color:black;
}

/* TEXT */
.why-card p{
    color:#555;
    line-height:1.6;
    font-size:15px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:992px){
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:34px;
    }
}

/* Mobile */
@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:15px;
    }
}

/* ===== STATS ===== */
.stats{
    background:#1fa64a;
    padding:60px 0;
    margin-top:70px;
}

.stats-grid{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    text-align:center;
}

.stat-box{
    color:white;
}

.stat-box h2{
    font-size:42px;
    margin-bottom:8px;
}

.stat-box p{
    font-size:16px;
}


/* ===== TRANSFORM ===== */
.transform{
    width:90%;
    margin:80px auto;
}

.transform-grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.transform-card{
    position:relative;
    overflow:hidden;
    border-radius:14px;
}

.transform-card img{
    width:100%;
    display:block;
    transition:0.4s;
}

.transform-card:hover img{
    transform:scale(1.08);
}

.label{
    position:absolute;
    bottom:10px;
    left:10px;
    background:#1fa64a;
    color:white;
    padding:6px 14px;
    border-radius:20px;
    font-size:14px;
}


/* ===== SERVICES ===== */
.services{
    width:90%;
    margin:80px auto;
}

.service-grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    position:relative;
    overflow:hidden;
    border-radius:14px;
}

.service-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.4s;
}

.service-card:hover img{
    transform:scale(1.1);
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    display:flex;
    align-items:flex-end;
    padding:20px;
}

.overlay h3{
    color:white;
    font-size:24px;
}


/* ===== SCROLL ANIMATION ===== */
.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}


/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:992px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .transform-grid,
    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:768px){

    .stats-grid{
        grid-template-columns:1fr;
    }

    .transform-grid,
    .service-grid{
        grid-template-columns:1fr;
    }

    .stat-box h2{
        font-size:32px;
    }

    .overlay h3{
        font-size:20px;
    }
}

.goal-section{
    width:90%;
    margin:80px auto;
}

/* ===== TABS ===== */
.goal-tabs{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
    border-bottom:2px solid #e5e5e5;
    padding-bottom:15px;
}

.tab-btn{
    background:none;
    border:none;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    padding-bottom:10px;
    position:relative;
    color:#2f4f4f;
}

.tab-btn.active{
    color:#2e8b57;
}

.tab-btn.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-2px;
    width:100%;
    height:3px;
    background:#2e8b57;
}

/* ===== CONTENT ===== */
.goal-content{
    display:none;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    margin-top:60px;
}

.goal-content.active{
    display:flex;
}

.goal-text{
    flex:1;
}

.goal-text h1{
    font-size:58px;
    line-height:1.2;
    color:#2f4f4f;
    margin-bottom:20px;
}

.goal-text p{
    font-size:18px;
    color:#666;
    line-height:1.7;
    margin-bottom:30px;
    max-width:500px;
}

.goal-btn{
    background:#2e8b57;
    color:white;
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.goal-btn:hover{
    background:#246b45;
}

.goal-image{
    flex:1;
    text-align:center;
}

.goal-image img{
    width:100%;
    max-width:500px;
    border-radius:16px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
    .goal-text h1{
        font-size:42px;
    }
}

@media(max-width:768px){
    .goal-content{
        flex-direction:column;
        text-align:center;
    }

    .goal-text h1{
        font-size:30px;
    }

    .goal-tabs{
        justify-content:center;
    }
}


/* ===== CONTACT SECTION ===== */
.contact-section{
    width:90%;
    margin:100px auto;
}

.contact-container{
    display:flex;
    justify-content:space-between;
    gap:60px;
}

/* LEFT SIDE */
.contact-info{
    flex:1;
}

.contact-info h2{
    font-size:42px;
    color:#2e8b57;
    margin-bottom:20px;
}

.contact-info p{
    font-size:16px;
    color:#555;
    line-height:1.7;
    margin-bottom:15px;
}

.contact-details p{
    margin-bottom:8px;
}

/* RIGHT SIDE */
.contact-form{
    flex:1;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    padding:12px 15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#2e8b57;
}

.contact-form button{
    background:#2e8b57;
    color:white;
    padding:12px;
    border:none;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#246b45;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

    .contact-container{
        flex-direction:column;
    }

    .contact-info h2{
        font-size:30px;
    }
}

.contact-form select{
    padding:12px 15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    background:white;
    cursor:pointer;
}

.contact-form select:focus{
    outline:none;
    border-color:#2e8b57;
}


/* ===== TIMELINE SECTION ===== */
.timeline-section{
    width:90%;
    margin:120px auto;
    position:relative;
}

.timeline{
    position:relative;
    margin-top:70px;
}

/* CENTER LINE */
.timeline::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:4px;
    height:100%;
    background:#d9f2e3;
}

/* TIMELINE ITEM */
.timeline-item{
    width:50%;
    padding:20px 40px;
    position:relative;
}

.timeline-item.left{
    left:0;
    text-align:right;
}

.timeline-item.right{
    left:50%;
    text-align:left;
}

/* CONTENT CARD */
.timeline-content{
    background:#c2f5db;
    padding:30px;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    position:relative;
    transition:0.3s;
}

.timeline-content:hover{
    transform:translateY(-6px);
}

/* STEP NUMBER */
.step-number{
    font-size:28px;
    font-weight:700;
    color:black;
    margin-bottom:10px;
}

.timeline-content h3{
    font-size:22px;
    margin-bottom:10px;
    color:black;
}

.timeline-content p{
    font-size:15px;
    color:#555;
    line-height:1.6;
}

/* CIRCLE DOT */
.timeline-item::after{
    content:'';
    position:absolute;
    top:30px;
    width:18px;
    height:18px;
    background:#2e8b57;
    border-radius:50%;
    z-index:2;
}

.timeline-item.left::after{
    right:-9px;
}

.timeline-item.right::after{
    left:-9px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){

    .timeline-item{
        padding:20px;
    }
}

@media(max-width:768px){

    .timeline::before{
        left:20px;
    }

    .timeline-item{
        width:100%;
        padding-left:60px;
        margin-bottom:40px;
        text-align:left !important;
    }

    .timeline-item.right{
        left:0;
    }

    .timeline-item::after{
        left:11px;
    }
}

 

/* ================================
   SECTION TITLE
================================ */
.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.section-title h2{
    font-size:42px;
    color:#2f4f4f;
    margin-bottom:12px;
}

.section-title p{
    font-size:16px;
    color:#666;
    line-height:1.6;
}

/* ================================
   PRICING SECTION
================================ */
.pricing-section{
    width:90%;
    margin:120px auto;
}

/* GRID LAYOUT */
.pricing-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:stretch;
}

/* ================================
   PRICING CARD
================================ */
.pricing-card{
    background:#ffffff;
    padding:40px 25px;
    border-radius:22px;
    box-shadow:0 12px 30px rgba(0,0,0,0.06);
    position:relative;
    display:flex;
    flex-direction:column;
    transition:0.35s ease;
}

/* Hover effect */
.pricing-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* Popular Card */
.pricing-card.popular{
    border:2px solid #2e8b57;
}

/* Badge */
.badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#2e8b57;
    color:#ffffff;
    padding:6px 16px;
    font-size:13px;
    border-radius:20px;
    font-weight:600;
}

/* ================================
   CARD TEXT
================================ */
.duration{
    font-size:22px;
    font-weight:700;
    color:#2f4f4f;
    margin-bottom:10px;
    text-align:center;
}

.price{
    font-size:38px;
    font-weight:700;
    color:#2e8b57;
    text-align:center;
    margin-bottom:22px;
}

/* ================================
   FEATURE LIST
================================ */
.feature-list{
    list-style:none;
    padding:0;
    margin-bottom:20px;
    flex-grow:1;
}

.feature-list li{
    position:relative;
    padding-left:24px;
    margin-bottom:11px;
    font-size:14px;
    color:#444;
    line-height:1.5;
}

/* Green Tick */
.feature-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    color:#2e8b57;
    font-size:14px;
}

/* ================================
   HIGHLIGHT TEXT
================================ */
.highlight{
    margin:15px 0 22px;
    padding:12px 15px;
    background:#f2fbf6;
    border-left:4px solid #2e8b57;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    color:#2e8b57;
}

/* ================================
   BUTTON
================================ */
.pricing-btn{
    display:block;
    text-align:center;
    background:#2e8b57;
    color:#ffffff;
    padding:13px 26px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.pricing-btn:hover{
    background:#246b45;
}

/* ================================
   RESPONSIVE DESIGN
================================ */

/* Large Tablet */
@media(max-width:1200px){
    .pricing-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Tablet */
@media(max-width:992px){
    .section-title h2{
        font-size:36px;
    }
}

/* Mobile */
@media(max-width:768px){
    .pricing-section{
        margin:80px auto;
    }

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .pricing-card{
        padding:35px 20px;
    }

    .section-title h2{
        font-size:30px;
    }

    .price{
        font-size:32px;
    }
}

/* Small Mobile */
@media(max-width:480px){
    .feature-list li{
        font-size:13px;
    }

    .highlight{
        font-size:13px;
    }
}


/* ================= SERVICES SECTION ================= */
.services-section{
    width:90%;
    margin:120px auto;
}

/* GRID */
.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

/* CARD */
.service-card{
    background:#c2f5db;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    text-align:center;
    transition:0.3s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.1);
}

/* ICON */
.service-icon{
    font-size:40px;
    margin-bottom:18px;
}

/* TITLE */
.service-card h3{
    font-size:20px;
    margin-bottom:12px;
    color:black;
}

/* TEXT */
.service-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* ================= CTA BLOCK ================= */
.services-cta{
    margin-top:80px;
    background:#f2fbf6;
    padding:50px 30px;
    border-radius:25px;
    text-align:center;
}

.services-cta h3{
    font-size:28px;
    margin-bottom:12px;
    color:#2e8b57;
}

.services-cta p{
    font-size:16px;
    color:#555;
    margin-bottom:20px;
}

.services-btn{
    display:inline-block;
    background:#2e8b57;
    color:#ffffff;
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.services-btn:hover{
    background:#246b45;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:992px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .services-section{
        margin:80px auto;
    }

    .services-cta{
        padding:35px 20px;
    }

    .services-cta h3{
        font-size:22px;
    }
}


/* ================= TESTIMONIAL ================= */

.testimonial-section{
width:90%;
margin:120px auto;
text-align:center;
}

.testimonial-wrapper{
position:relative;
display:flex;
align-items:center;
}

.testimonial-container{
overflow:hidden;
width:100%;
}

.testimonial-track{
display:flex;
transition:transform 0.5s ease;
}

/* CARD */

.testimonial-card{
min-width:33.33%;
padding:20px;
}

.testimonial-card p{
background:#ffffff;
padding:25px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
font-size:14px;
line-height:1.6;
color:#444;
margin-bottom:15px;
}

/* CLIENT INFO */

.client-info{
text-align:center;
}

.client-info img{
width:60px;
height:60px;
border-radius:50%;
margin-bottom:8px;
object-fit:cover;
}

.client-info h4{
font-size:16px;
color:#2f4f4f;
}

.client-info span{
font-size:13px;
color:#777;
}

/* BUTTONS */

.test-btn{
background:#2e8b57;
color:white;
border:none;
width:40px;
height:40px;
border-radius:50%;
cursor:pointer;
font-size:18px;
display:flex;
align-items:center;
justify-content:center;
position:absolute;
z-index:5;
}

.prev{
left:-20px;
}

.next{
right:-20px;
}

.test-btn:hover{
background:#246b45;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.testimonial-card{
min-width:50%;
}

}

@media(max-width:768px){

.testimonial-card{
min-width:100%;
}

.test-btn{
display:none;
}

}
.testimonial-track{
display:flex;
transition:transform 0.5s ease;
}

/* PAYMENT LOGOS */

.footer-payments{
display:flex;
justify-content:center;
align-items:center;
gap:20px;
margin:25px 0;
flex-wrap:wrap;
}

.footer-payments img{
height:65px;
opacity:0.9;
transition:0.3s;
}

.footer-payments img:hover{
opacity:1;
transform:scale(1.05);
}

/* LEGAL LINKS */

.footer-legal{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:10px;
}

.footer-legal a{
font-size:14px;
color:white;
text-decoration:none;
opacity:0.8;
transition:0.3s;
}

.footer-legal a:hover{
opacity:1;
text-decoration:underline;
}

/* RESPONSIVE */

@media(max-width:768px){

.footer-payments img{
height:26px;
}

.footer-legal{
gap:12px;
}

}


/* ================= FAQ SECTION ================= */

.faq-section{
width:90%;
margin:120px auto;
}

.faq-container{
max-width:800px;
margin:auto;
margin-top:50px;
}

/* FAQ ITEM */

.faq-item{
background:#ffffff;
border-radius:12px;
margin-bottom:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
overflow:hidden;
}

/* QUESTION */

.faq-question{
width:100%;
background:#c2f5db;
border:none;
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;
font-size:16px;
font-weight:600;
cursor:pointer;
color:black;
}

.faq-question span{
font-size:20px;
color:black;
}

/* ANSWER */

.faq-answer{
max-height:0;
overflow:hidden;
transition:0.35s ease;
padding:0 20px;
}

.faq-answer p{
font-size:14px;
color:#555;
line-height:1.6;
padding-bottom:20px;
}

/* ACTIVE STATE */

.faq-item.active .faq-answer{
max-height:200px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

.faq-section{
margin:80px auto;
}

.faq-question{
font-size:15px;
padding:16px;
}

}

/* ================= WHY NUTRIFIST ================= */

.why-nutrifist{
width:90%;
margin:120px auto;
}

.why-container{
display:flex;
gap:60px;
align-items:center;
}

/* LEFT SIDE */

.why-left{
flex:1;
}

.why-tag{
background:#e9f7ef;
color:#2e8b57;
padding:6px 14px;
border-radius:20px;
font-size:13px;
font-weight:600;
display:inline-block;
margin-bottom:15px;
}

.why-left h2{
font-size:40px;
margin-bottom:15px;
color:#2f4f4f;
}

.why-left p{
font-size:16px;
color:#555;
line-height:1.7;
margin-bottom:25px;
max-width:500px;
}

.why-btn{
background:#2e8b57;
color:white;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.why-btn:hover{
background:#246b45;
}

/* RIGHT SIDE */

.why-right{
flex:1;
display:flex;
flex-direction:column;
gap:20px;
}

/* FEATURE ITEM */

.why-feature{
display:flex;
gap:20px;
align-items:flex-start;
padding:18px 20px;
background:#c2f5db;
border-radius:14px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
transition:0.3s;
}

.why-feature:hover{
transform:translateX(6px);
}

/* NUMBER */

.why-number{
font-size:20px;
font-weight:700;
color:#2e8b57;
min-width:40px;
}

/* TEXT */

.why-feature h3{
font-size:18px;
margin-bottom:6px;
color:black;
}

.why-feature p{
font-size:14px;
color:#555;
line-height:1.6;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.why-container{
flex-direction:column;
}

.why-left{
text-align:center;
}

.why-left p{
margin:auto;
margin-bottom:25px;
}

}

@media(max-width:768px){

.why-left h2{
font-size:32px;
}

}


/* ================= ABOUT NUTRIFIST ================= */

.about-nutrifist{
width:90%;
margin:30px auto;
}

.about-container{
display:flex;
gap:60px;
align-items:flex-start;
}

/* LEFT */

.about-left{
flex:1;
}

.about-tag{
background:#f0dde6;
color:var(--primary);
padding:6px 14px;
border-radius:20px;
font-size:13px;
font-weight:600;
display:inline-block;
margin-bottom:15px;
}

.about-left h2{
font-size:40px;
margin-bottom:18px;
color:#2f4f4f;
}

.about-left p{
font-size:16px;
color:#555;
line-height:1.7;
margin-bottom:15px;
}

/* RIGHT */

.about-right{
flex:1;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

/* CARDS */

.about-card{
background:#f1a4a4;
padding:25px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:0.3s;
}

.about-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 35px rgba(0,0,0,0.1);
}

.about-card h3{
font-size:18px;
margin-bottom:8px;
color:black;
}

.about-card p{
font-size:14px;
color:#555;
line-height:1.6;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.about-container{
flex-direction:column;
}

.about-left{
text-align:center;
}

.about-right{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.about-left h2{
font-size:30px;
}

.about-right{
grid-template-columns:1fr;
}

.about-nutrifist{
margin:80px auto;
}

}

.about-card h3 i{
color:var(--primary);
margin-right:8px;
font-size:18px;
}

.service-icon{
width:60px;
height:60px;
background:#f2fbf6;
color:var(--primary);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
margin:0 auto 18px;
}

/* ================= PAGE HERO ================= */

.page-hero{
position:relative;
height:350px;
background:url("/static/images/about_banner.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

/* DARK OVERLAY */

.page-hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}

/* CONTENT */

.page-hero-content{
position:relative;
z-index:2;
}

.page-hero h1{
font-size:42px;
margin-bottom:10px;
}

/* BREADCRUMB */

.breadcrumb{
font-size:16px;
}

.breadcrumb a{
color:#9df3c4;
text-decoration:none;
font-weight:600;
}

.breadcrumb span{
margin:0 6px;
color:#fff;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

.page-hero{
height:260px;
padding:20px;
}

.page-hero h1{
font-size:30px;
}

.breadcrumb{
font-size:14px;
}

}

/* ===== COMPANY STORY ===== */

.company-story-section{
width:90%;
margin:120px auto;
}

.story-container{
margin-top:60px;
display:flex;
flex-direction:column;
gap:50px;
}

/* row */

.story-row{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
}

/* reverse layout */

.story-row.reverse{
flex-direction:row-reverse;
}

/* text */

.story-text{
flex:1;
background:#ffffff;
padding:30px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.story-text h3{
font-size:22px;
margin-bottom:10px;
color:#2f4f4f;
}

.story-text p{
font-size:15px;
line-height:1.7;
color:#555;
}

/* icon */

.story-icon{
width:90px;
height:90px;
background:#2e8b57;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:32px;
flex-shrink:0;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.story-row{
flex-direction:column;
text-align:center;
}

.story-row.reverse{
flex-direction:column;
}

.story-icon{
margin-top:10px;
}

}

@media(max-width:768px){

.company-story-section{
margin:80px auto;
}

.story-text{
padding:25px;
}

.story-icon{
width:70px;
height:70px;
font-size:24px;
}

}

/* ===== FOUNDER SECTION ===== */

.founder-section{
width:90%;
margin:120px auto;
}

.founder-container{
display:flex;
align-items:center;
gap:60px;
}

/* IMAGE */

.founder-image{
flex:1;
text-align:center;
}

.founder-image img{
width:100%;
max-width:380px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* CONTENT */

.founder-content{
flex:1;
}

.founder-tag{
background:#e9f7ef;
color:#2e8b57;
padding:6px 14px;
border-radius:20px;
font-size:13px;
font-weight:600;
display:inline-block;
margin-bottom:12px;
}

.founder-content h2{
font-size:38px;
margin-bottom:10px;
color:#2f4f4f;
}

.founder-content h3{
font-size:24px;
margin-bottom:5px;
}

.founder-role{
color:#2e8b57;
font-weight:600;
margin-bottom:15px;
}

.founder-text{
font-size:15px;
line-height:1.7;
color:#555;
margin-bottom:18px;
}

.founder-quote{
background:#f2fbf6;
padding:15px;
border-left:4px solid #2e8b57;
border-radius:6px;
font-style:italic;
margin-bottom:20px;
}

/* SOCIAL */

.founder-social a{
margin-right:15px;
font-size:18px;
color:#2e8b57;
transition:0.3s;
}

.founder-social a:hover{
color:#1f6e44;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.founder-container{
flex-direction:column;
text-align:center;
}

.founder-content{
max-width:600px;
}

}

@media(max-width:768px){

.founder-content h2{
font-size:30px;
}

.founder-image img{
max-width:300px;
}

}

/* ===== WHY NUTRIFIST ===== */

.why-nutrifist{
width:90%;
margin:120px auto;
}

.why-container{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:60px;
align-items:start;
}

/* LEFT INTRO */

.why-intro h2{
font-size:38px;
margin-bottom:15px;
color:#2f4f4f;
}

.why-intro p{
font-size:16px;
line-height:1.7;
color:#555;
}

/* FEATURE LIST */

.why-features{
display:flex;
flex-direction:column;
gap:25px;
}

/* ITEM */

.why-item{
display:flex;
gap:20px;
padding-bottom:20px;
border-bottom:1px solid #eaeaea;
}

/* ICON */

.why-icon{
width:50px;
height:50px;
background:#f2fbf6;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#2e8b57;
font-size:20px;
flex-shrink:0;
}

/* TEXT */

.why-text h3{
font-size:18px;
margin-bottom:5px;
color:#2f4f4f;
}

.why-text p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.why-container{
grid-template-columns:1fr;
}

.why-intro{
text-align:center;
}

}

@media(max-width:768px){

.why-nutrifist{
margin:80px auto;
}

.why-intro h2{
font-size:30px;
}

}
/* small heading label */

.why-label{
display:inline-block;
background:#e9f7ef;
color:#2e8b57;
padding:6px 14px;
border-radius:20px;
font-size:12px;
font-weight:600;
letter-spacing:1px;
margin-bottom:12px;
}

/* ===== CLIENT RESULTS ===== */

.client-results{
width:90%;
margin:120px auto;
text-align:center;
}

/* heading */

.results-header{
margin-bottom:50px;
}

.results-label{
display:inline-block;
background:#e9f7ef;
color:#2e8b57;
padding:6px 14px;
border-radius:20px;
font-size:12px;
font-weight:600;
letter-spacing:1px;
margin-bottom:10px;
}

.results-header h2{
font-size:38px;
margin-bottom:10px;
color:#2f4f4f;
}

.results-header p{
font-size:16px;
color:#666;
}

/* grid */

.results-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* card */

.result-card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.result-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

/* image */

.result-image{
position:relative;
}

.result-image img{
width:100%;
height:420px;
object-fit:cover;
}

/* badge */

.result-badge{
position:absolute;
top:15px;
left:15px;
background:#2e8b57;
color:white;
padding:6px 12px;
font-size:12px;
border-radius:20px;
}

/* info */

.result-info{
padding:20px;
}

.result-info h3{
margin-bottom:6px;
color:#2f4f4f;
}

.result-info p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.results-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.results-grid{
grid-template-columns:1fr;
}

.client-results{
margin:80px auto;
}

.results-header h2{
font-size:30px;
}

}


/* ===== CTA SECTION ===== */

.cta-section{
width:90%;
margin:120px auto;
background:#2e8b57;
border-radius:20px;
padding:70px 40px;
text-align:center;
color:white;
}

.cta-container{
max-width:700px;
margin:auto;
}

.cta-container h2{
font-size:40px;
margin-bottom:15px;
}

.cta-container p{
font-size:16px;
line-height:1.7;
margin-bottom:30px;
opacity:0.9;
}

/* buttons */

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.cta-btn{
padding:14px 28px;
border-radius:30px;
font-weight:600;
text-decoration:none;
transition:0.3s;
}

/* primary */

.primary-btn{
background:white;
color:#2e8b57;
}

.primary-btn:hover{
background:#f5f5f5;
}

/* secondary */

.secondary-btn{
border:2px solid white;
color:white;
}

.secondary-btn:hover{
background:white;
color:#2e8b57;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

.cta-section{
padding:50px 25px;
margin:80px auto;
}

.cta-container h2{
font-size:30px;
}

.cta-container p{
font-size:15px;
}

.cta-buttons{
flex-direction:column;
}

.cta-btn{
width:100%;
text-align:center;
}

}

/* ===== POLICY PAGE ===== */

.policy-page{
width:90%;
margin:120px auto;
}

.policy-container{
max-width:900px;
margin:auto;
}

.policy-container h1{
font-size:42px;
margin-bottom:10px;
color:#2f4f4f;
}

.policy-date{
color:#888;
margin-bottom:30px;
}

.policy-container h3{
margin-top:25px;
margin-bottom:8px;
color:#2e8b57;
}

.policy-container p{
line-height:1.7;
color:#555;
font-size:15px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

.policy-page{
margin:80px auto;
}

.policy-container h1{
font-size:30px;
}

.policy-container p{
font-size:14px;
}

}


/* ===== POLICY PAGE ===== */

.policy-page{
width:90%;
margin:120px auto;
}

.policy-container{
max-width:900px;
margin:auto;
}

/* heading */

.policy-container h1{
font-size:42px;
margin-bottom:10px;
color:#2f4f4f;
}

/* date */

.policy-date{
color:#888;
margin-bottom:25px;
}

/* intro */

.policy-intro{
font-size:16px;
margin-bottom:30px;
line-height:1.7;
color:#555;
}

/* section titles */

.policy-container h3{
margin-top:25px;
margin-bottom:8px;
color:#2e8b57;
}

/* text */

.policy-container p{
line-height:1.7;
color:#555;
font-size:15px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

.policy-page{
margin:80px auto;
}

.policy-container h1{
font-size:30px;
}

.policy-container p{
font-size:14px;
}

.policy-intro{
font-size:15px;
}

}


.contact-details a{
color:#2e8b57;
text-decoration:none;
font-weight:500;
}

.contact-details a:hover{
text-decoration:underline;
}

.recent-inquiries{
padding:80px 0;
text-align:center;
}

.inquiry-list{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:30px;
}

.inquiry-card{
background:#fff;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.inquiry-card h4{
color:#2e8b57;
margin-bottom:6px;
}

/* responsive */

@media(max-width:768px){

.inquiry-list{
grid-template-columns:1fr;
}

}

.icon{
width:60px;
height:60px;
background:#e9f7ef;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:#2e8b57;
margin:0 auto 15px;
}

.rw-hero-section{
    width:100%;
    /* min-height:90vh; */
    display:flex;
    align-items:center;
    position:relative;
    background-image:url("../images/hero_bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    
}


.rw-hero-container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    padding:10px 20px;
}

/* overlay for better text visibility */
.rw-hero-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.rw-hero-content{
    max-width:800px;
    padding-left: 66px;
}

.rw-hero-title{
    font-size:44px;
    line-height:1.35;
    font-weight:700;
    color:white;
}

.rw-hero-title span{
    color:var(--primary);
}

.rw-hero-highlight{
    margin-top:22px;
    display:inline-block;
    background:#d8ffd8;
    padding:12px 20px;
    font-weight:600;
    font-size:15px;
    color:#111;
    border-radius:6px;
}

.rw-hero-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.rw-btn{
    padding:14px 28px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.rw-btn-brochure{
    background:var(--primary);
    color:white;
}

.rw-btn-brochure:hover{
    background:var(--primary);
}

.rw-btn-apply{
    background:white;
    color:var(--primary);
    border:2px solid var(--primary);
}

.rw-btn-apply:hover{
    background:var(--primary);
    color:white;
}

@media (max-width:768px){

.rw-hero-title{
    font-size:32px;
}

.rw-hero-highlight{
    font-size:14px;
    padding:10px 14px;
}

.rw-btn{
    width:100%;
    max-width:220px;
}

}

@media (max-width:480px){

.rw-hero-title{
    font-size:26px;
}

.rw-hero-section{
    padding:60px 15px;
}

}


/* SECTION */

.nv-testimonial-section{
padding:80px 20px;
background:#f7fff8;
}

/* CONTAINER */

.nv-testimonial-container{
max-width:850px;
margin:auto;
}

/* TITLE */

.nv-testimonial-title{
text-align:center;
font-size:34px;
font-weight:700;
margin-bottom:50px;
color:#1b4332;
}

/* GRID */

.nv-testimonial-grid{
display:flex;
flex-direction:column;
gap:30px;
}

/* CARD */

.nv-testimonial-card{
background:#c2f5db;
padding:32px;
border-radius:18px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
overflow:hidden;
}

.nv-testimonial-card:hover{
transform:translateY(-4px);
}

/* HEADER */

.nv-review-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:12px;
flex-wrap:wrap;
}

.nv-review-user{
display:flex;
flex-direction:column;
}

.nv-review-name{
font-size:20px;
font-weight:700;
margin:0;
color:#0b3d2e;
}

.nv-review-verified{
font-size:13px;
color:#0f9d58;
font-weight:600;
margin-top:3px;
}

/* STARS */

.nv-review-stars{
color:#ffb703;
font-size:18px;
letter-spacing:3px;
}

/* DATE */

.nv-review-meta{
font-size:14px;
color:#355f50;
margin-bottom:10px;
}

/* REVIEW TEXT */

.nv-review-text{
font-size:16px;
line-height:1.8;
color:#1d3557;
margin-top:10px;

word-wrap:break-word;
overflow-wrap:break-word;
word-break:break-word;
white-space:normal;
}

/* HIDDEN TEXT */

.nv-more-text{
display:none;
}

/* BUTTON */

.nv-read-toggle{
display:block;
margin-top:8px;
background:none;
border:none;
color:#0f9d58;
font-weight:600;
cursor:pointer;
font-size:14px;
padding:0;
}

.nv-read-toggle:hover{
text-decoration:underline;
}

/* CTA */

.nv-testimonial-cta{
background:#e8fff3;
padding:40px;
border-radius:18px;
text-align:center;
}

.nv-testimonial-cta h3{
font-size:26px;
color:#0b3d2e;
margin-bottom:10px;
}

.nv-testimonial-cta p{
font-size:16px;
color:#355f50;
margin-bottom:20px;
}

.nv-cta-btn{
display:inline-block;
background:#0f9d58;
color:white;
padding:14px 30px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.nv-cta-btn:hover{
background:#0b7d45;
}

/* TABLET */

@media (max-width:768px){

.nv-testimonial-container{
max-width:600px;
}
/* .nv-testimonial-cta{
    background: none;
} */

.nv-testimonial-card{
padding:26px;
}

.nv-review-text{
font-size:15px;
}

}

/* MOBILE */

@media (max-width:480px){

.nv-testimonial-section{
padding:60px 15px;
}

.nv-testimonial-title{
font-size:26px;
}

.nv-review-name{
font-size:18px;
}

.nv-review-text{
font-size:14px;
}

.nv-review-stars{
font-size:16px;
}

}

/* ===== MINI CTA ===== */

.zr-mini-cta-sec{

    width:100%;
    display:flex;
    justify-content:center;
    padding:40px 15px;
}

.zr-mini-cta-box{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    max-width:520px;
    width:100%;

    padding:16px 22px;

    background:linear-gradient(135deg,#7ee8a3,#42c978);

    border-radius:10px;

    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.zr-mini-cta-text{

    font-size:18px;
    font-weight:700;
    color:white;
}

.zr-mini-cta-btn{

    background:#0c1c38;
    color:white;

    text-decoration:none;

    padding:8px 18px;

    border-radius:20px;

    font-size:14px;
    font-weight:600;

    transition:0.3s;
}

.zr-mini-cta-btn:hover{

    transform:translateY(-2px);
    background:#08142a;
}


/* ===== MOBILE ===== */

@media(max-width:520px){

.zr-mini-cta-box{

    flex-direction:column;
    text-align:center;
}

}

/* ===== CTA AREA ===== */

.lg-wellness-cta-area{

    width:100%;
    padding:70px 20px;

    display:flex;
    justify-content:center;
}



/* CTA CARD */

.lg-wellness-cta-card{

    max-width:520px;
    width:100%;

    background:linear-gradient(135deg,#c8f9d7,#8df1a9);

    border-radius:14px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,0.12);
}



/* TEXT */

.lg-wellness-cta-text{

    font-size:24px;
    font-weight:700;

    line-height:1.5;

    color:#1a3c2c;

    margin-bottom:28px;
}



/* BUTTON */

.lg-wellness-cta-btn{

    display:inline-block;

    padding:14px 34px;

    border-radius:30px;

    text-decoration:none;

    font-weight:700;

    color:#2c6e49;

    background:white;

    transition:all .3s ease;

    box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.lg-wellness-cta-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 8px 25px rgba(0,0,0,0.2);
}



/* ===== TABLET ===== */

@media(max-width:768px){

.lg-wellness-cta-text{

    font-size:21px;
}

}



/* ===== MOBILE ===== */

@media(max-width:480px){

.lg-wellness-cta-card{

    padding:30px 20px;
}

.lg-wellness-cta-text{

    font-size:18px;
}

.lg-wellness-cta-btn{

    padding:12px 26px;
    font-size:14px;
}

}

/* ===== STOP SCROLL CTA ===== */

.nv-stopscroll-cta{

    width:100%;
    padding:60px 20px;

    display:flex;
    justify-content:center;
}



/* CARD */

.nv-stopscroll-box{

    max-width:480px;
    width:100%;

    padding:36px 28px;

    border-radius:14px;

    text-align:center;

    background:linear-gradient(135deg,#d7ffe4,#9af3ba);

    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}



/* TEXT */

.nv-stopscroll-text{

    font-size:22px;
    font-weight:700;

    line-height:1.5;

    color:#1d5c3d;

    margin-bottom:25px;
}



/* BUTTON */

.nv-stopscroll-btn{

    display:inline-block;

    padding:12px 30px;

    border-radius:30px;

    background:white;

    color:#1d7a52;

    font-weight:700;

    text-decoration:none;

    transition:all .3s ease;

    box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.nv-stopscroll-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}



/* ===== TABLET ===== */

@media(max-width:768px){

.nv-stopscroll-text{

    font-size:20px;
}

}



/* ===== MOBILE ===== */

@media(max-width:480px){

.nv-stopscroll-box{

    padding:28px 20px;
}

.nv-stopscroll-text{

    font-size:17px;
}

.nv-stopscroll-btn{

    padding:10px 24px;
    font-size:14px;
}

}

/* ===== SUCCESS CTA SECTION ===== */

.xr-successcta-section{

    width:100%;
    padding:70px 20px;

    display:flex;
    justify-content:center;
}



/* CARD */

.xr-successcta-card{

    max-width:520px;
    width:100%;

    padding:40px 30px;

    text-align:center;

    border-radius:16px;

    background:linear-gradient(135deg,#d6ffe6,#8df5b2);

    box-shadow:0 12px 35px rgba(0,0,0,0.12);
}



/* TITLE */

.xr-successcta-title{

    font-size:26px;
    font-weight:800;

    color:#1a6b48;

    margin-bottom:12px;
}



/* TEXT */

.xr-successcta-text{

    font-size:16px;
    color:#2d7c59;

    line-height:1.6;

    margin-bottom:26px;
}



/* BUTTON */

.xr-successcta-button{

    display:inline-block;

    padding:14px 32px;

    border-radius:30px;

    text-decoration:none;

    font-weight:700;

    color:#1f7a54;

    background:white;

    transition:all .3s ease;

    box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.xr-successcta-button:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}



/* ===== TABLET ===== */

@media(max-width:768px){

.xr-successcta-title{

    font-size:22px;
}

.xr-successcta-text{

    font-size:15px;
}

}



/* ===== MOBILE ===== */

@media(max-width:480px){

.xr-successcta-card{

    padding:30px 22px;
}

.xr-successcta-title{

    font-size:20px;
}

.xr-successcta-text{

    font-size:14px;
}

.xr-successcta-button{

    padding:12px 26px;
    font-size:14px;
}

}

/* ===== NUTRIFIST TRUST SECTION ===== */

.nf-trust-section{

    width:100%;
    padding:70px 20px;

    border-radius:20px;

    background:#f8faf9;

    border:1px solid #dfe7e2;
}



/* WRAPPER */

.nf-trust-wrapper{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:60px;

    flex-wrap:wrap;

    margin-bottom:40px;
}



/* LEFT */

.nf-rating-title{

    font-size:24px;
    font-weight:700;

    margin-bottom:15px;
}

.nf-rating-score{

    font-size:20px;
    font-weight:600;

    margin-bottom:5px;
}

.nf-rating-note{

    font-size:14px;
    color:#666;
}



/* RIGHT BARS */

.nf-rating-bars{

    background:#9e9e9e;

    padding:25px;

    border-radius:20px;

    width:320px;
}

.nf-bar-row{

    display:flex;
    align-items:center;

    gap:10px;

    margin:8px 0;
}

.nf-bar{

    flex:1;

    height:8px;

    background:#d7d7d7;

    border-radius:20px;

    overflow:hidden;
}

.nf-bar-fill{

    height:100%;

    background:#f6b800;
}



/* DESCRIPTION */

.nf-trust-description{

    max-width:900px;

    margin:auto;

    text-align:center;

    font-size:16px;

    line-height:1.7;

    color:#333;

    margin-bottom:30px;
}



/* TAGS */

.nf-trust-tags{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;
}

.nf-trust-tags span{

    background:#2ecc71;

    color:white;

    padding:10px 18px;

    border-radius:25px;

    font-weight:600;

    font-size:14px;
}



/* ===== RESPONSIVE ===== */

@media(max-width:768px){

.nf-rating-bars{

    width:100%;
}

.nf-trust-description{

    font-size:15px;
}

}

@media(max-width:480px){

.nf-rating-title{

    font-size:20px;
}

.nf-rating-score{

    font-size:18px;
}

.nf-trust-tags span{

    font-size:13px;
}

}

 .logo{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
}

.logo-img{
    width:100%;
    height:60px;
    object-fit:contain;
}

.nf-logo-text{
    font-size:22px;
    font-weight:600;
    color:#000;
}

    /* HERO BANNER */

.nf-banner{
    padding:60px 20px;
}

.nf-banner-container{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.nf-banner-title{
    font-size:44px;
    font-weight:800;
    color:#111;
    margin-bottom:10px;
}

.nf-banner-highlight{
    font-size:20px;
    color:#555;
    margin-bottom:30px;
}

.nf-banner-highlight span{
    color:#ef4444;
    font-weight:700;
}

.nf-banner-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.nf-banner-btn-primary{
    background:#ef4444;
    color:white;
    padding:12px 26px;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
}

.nf-banner-btn-outline{
    border:2px solid #ef4444;
    color:#ef4444;
    padding:12px 26px;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
}

.nf-banner-btn-primary:hover{
    background:#dc2626;
}

.nf-banner-btn-outline:hover{
    background:#ef4444;
    color:white;
}

/* RESPONSIVE */

@media(max-width:768px){

.nf-banner-title{
    font-size:32px;
}

.nf-banner-highlight{
    font-size:18px;
}

}

@media(max-width:480px){

.nf-banner-title{
    font-size:26px;
}

.nf-banner-highlight{
    font-size:16px;
}

.nf-banner-buttons a{
    width:100%;
    text-align:center;
}

}



/* HERO SECTION */

.nfhx-hero{
padding:20px 20px;
overflow:hidden;
}

.nfhx-container{
max-width:1300px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
flex-wrap:wrap;
}


/* LEFT CONTENT */

.nfhx-left{
flex:1;
min-width:260px;
}

.nfhx-badge{
display:inline-block;
background:#e48787;
color:white;
padding:6px 14px;
border-radius:20px;
font-size:13px;
margin-bottom:15px;
font-weight:500;
}

.nfhx-title{
font-size:46px;
font-weight:800;
margin-bottom:12px;
line-height:1.2;
}

.nfhx-sub{
font-size:19px;
color:#555;
margin-bottom:25px;
}

.nfhx-sub span{
color:#ef4444;
font-weight:700;
}


/* FEATURE TAGS */

.nfhx-tags{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-bottom:25px;
}

.nfhx-tags span{
background:#fff;
border:1px solid #eee;
padding:6px 12px;
border-radius:20px;
font-size:13px;
}


/* BUTTON */

.nfhx-btn{
background:#ef4444;
color:white;
padding:13px 26px;
border-radius:30px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:.3s;
}

.nfhx-btn:hover{
background:#dc2626;
}


/* RIGHT SIDE */

.nfhx-right{
flex:1;
position:relative;
height:360px;
min-width:260px;
}


/* GLOW CIRCLE */

.nfhx-glow{
width:260px;
height:260px;
background:radial-gradient(circle,#ef4444,#fca5a5);
border-radius:50%;
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
filter:blur(30px);
opacity:.8;
}


/* GLASS CARDS */

.nfhx-card{
position:absolute;
padding:10px 16px;
border-radius:12px;
font-size:14px;
backdrop-filter:blur(10px);
background:rgba(255,255,255,0.6);
border:1px solid rgba(255,255,255,0.4);
box-shadow:0 10px 30px rgba(0,0,0,.08);
animation:nfhxFloat 6s ease-in-out infinite;
transition:.3s;
font-weight:500;
}

.nfhx-card:hover{
transform:translateY(-6px) scale(1.05);
box-shadow:0 15px 40px rgba(0,0,0,.15);
}


/* CARD POSITIONS */

.c1{top:10px;left:20px;}
.c2{top:90px;right:0;}
.c3{bottom:120px;left:0;}
.c4{bottom:20px;right:20px;}
.c5{top:170px;left:90px;}


/* FLOATING ANIMATION */

@keyframes nfhxFloat{

0%{transform:translateY(0);}
50%{transform:translateY(-12px);}
100%{transform:translateY(0);}

}


/* TABLET */

@media(max-width:900px){

.nfhx-container{
flex-direction:column;
text-align:center;
}

.nfhx-title{
font-size:34px;
}

.nfhx-right{
height:300px;
}

.nfhx-tags{
justify-content:center;
}

}


/* MOBILE */

@media(max-width:600px){

.nfhx-title{
font-size:28px;
}

.nfhx-sub{
font-size:17px;
}

.nfhx-right{
height:auto;
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:8px;
margin-top:20px;
position:static;
}

/* disable floating */

.nfhx-card{
animation:none;
position:static;
transform:none;
margin:6px;
display:inline-block;
font-size:12px;
padding:7px 10px;
}

/* hide glow */

.nfhx-glow{
display:none;
}

}


/* SECTION */
.nf-goal-section{
width:100%;
padding:60px 5%;
background:#ffebcf;
font-family:Arial;
}

/* TABS */

.nf-goal-tabs{
display:flex;
flex-wrap:wrap;
gap:10px;
justify-content:center;
margin-bottom:40px;
}

.nf-tab-btn{
padding:10px 22px;
border:none;
background:white;
border-radius:30px;
font-size:15px;
cursor:pointer;
transition:0.3s;
}

.nf-tab-btn.active{
background:#ff8643;
color:white;
}

/* CONTENT */

.nf-goal-wrapper{
max-width:1200px;
margin:auto;
}

.nf-goal-content{
display:none;
align-items:center;
justify-content:space-between;
gap:50px;
}

.nf-goal-content.active{
display:flex;
}

/* TEXT */

.nf-goal-text{
flex:1;
}

.nf-goal-text h1{
font-size:42px;
margin-bottom:15px;
color:#222;
}

.nf-goal-text p{
font-size:17px;
color:#555;
margin-bottom:25px;
line-height:1.6;
}

.nf-goal-btn{
display:inline-block;
padding:12px 26px;
background:#ff8643;
color:white;
text-decoration:none;
border-radius:30px;
font-size:15px;
}

/* IMAGE */

.nf-goal-image{
flex:1;
text-align:center;
}

.nf-goal-image img{
width:100%;
max-width:450px;
border-radius:12px;
}

/* RESPONSIVE */

@media(max-width:992px){

.nf-goal-content{
flex-direction:column;
text-align:center;
}

.nf-goal-text h1{
font-size:32px;
}

}

@media(max-width:600px){

.nf-goal-tabs{
gap:8px;
}

.nf-tab-btn{
font-size:13px;
padding:8px 16px;
}

.nf-goal-text h1{
font-size:26px;
}

.nf-goal-text p{
font-size:15px;
}

}