  /* HERO SECTION */

.nxhero-sec{
padding:30px 20px;
background:linear-gradient(135deg,#fff3ec,#ffe6f7);
color:#222;
overflow:hidden;
}



.nxhero-wrap{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

/* LEFT */

.nxhero-left{
flex:1;
min-width:300px;
}

.nxhero-badge{
display:inline-block;
background:linear-gradient(90deg,#ff8643,#ff36cf);
padding:8px 16px;
border-radius:30px;
font-size:14px;
margin-bottom:20px;
color:white;
}

.nxhero-title{
font-size:48px;
font-weight:700;
margin-bottom:20px;
line-height:1.2;
color:#222;
}

.nxhero-sub{
font-size:18px;
margin-bottom:25px;
color:#444;
}

.nxhero-sub span{
color:#ff36cf;
font-weight:600;
}

.nxhero-tags{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-bottom:30px;
}

.nxhero-tags span{
background:white;
padding:8px 14px;
border-radius:20px;
font-size:14px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.nxhero-btn{
display:inline-block;
background:linear-gradient(90deg,#ff8643,#ff36cf);
color:white;
padding:14px 28px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.nxhero-btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* RIGHT SIDE */

.nxhero-right{
flex:1;
min-width:300px;
position:relative;
height:320px;
}

/* Glow */

.nxhero-glow{
position:absolute;
width:260px;
height:260px;
background:radial-gradient(circle,#ff864344,transparent);
border-radius:50%;
top:30px;
left:50%;
transform:translateX(-50%);
filter:blur(40px);
}

/* CARDS */

.nxhero-card{
position:absolute;
background:white;
color:#ff36cf;
padding:14px 20px;
border-radius:16px;
font-weight:600;
box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* CARD POSITIONS */

.nxcard1{top:0;left:10%;}
.nxcard2{top:60px;right:10%;}
.nxcard3{top:140px;left:0;}
.nxcard4{top:200px;right:0;}
.nxcard5{bottom:0;left:40%;}

/* RESPONSIVE */

@media(max-width:900px){

.nxhero-wrap{
flex-direction:column;
text-align:center;
}

.nxhero-tags{
justify-content:center;
}

.nxhero-right{
height:250px;
margin-top:40px;
}

.nxhero-title{
font-size:36px;
}

}

@media(max-width:500px){

.nxhero-title{
font-size:28px;
}

.nxhero-sub{
font-size:16px;
}

.nxhero-card{
font-size:13px;
padding:10px 14px;
}

}


 
.nfcta-line-sec{
padding:10px 20px;
}

.nfcta-line-wrap{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;
padding:25px 35px;
border-radius:40px;
background:linear-gradient(90deg,#ff8643,#ff36cf);
color:white;
}

.nfcta-line-text{
font-size:22px;
font-weight:600;
margin:0;
}

.nfcta-line-text span{
font-weight:700;
}

.nfcta-line-btn{
background:white;
color:#ff36cf;
padding:12px 26px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.nfcta-line-btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* RESPONSIVE */

@media(max-width:700px){

.nfcta-line-wrap{
flex-direction:column;
text-align:center;
border-radius:25px;
}

.nfcta-line-text{
font-size:18px;
}

}


 
.nfabt-sec{
padding:20px 20px;
background:linear-gradient(135deg,#fff3ec,#ffe6f7);
}

.nfabt-wrap{
max-width:1200px;
margin:auto;
display:flex;
align-items:flex-start;
justify-content:space-between;
gap:5px;
flex-wrap:wrap;
}

/* LEFT */

.nfabt-left{
flex:1;
min-width:300px;
}

.nfabt-tag{
display:inline-block;
background:linear-gradient(90deg,#ff8643,#ff36cf);
color:white;
padding:6px 16px;
border-radius:30px;
font-size:14px;
margin-bottom:15px;
}

.nfabt-title{
font-size:36px;
margin-bottom:20px;
color:#222;
}

.nfabt-text{
color:#555;
margin-bottom:15px;
line-height:1.7;
}

/* RIGHT */

.nfabt-right{
flex:1;
min-width:300px;
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

/* CARD */

.nfabt-card{
background:white;
padding:22px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.nfabt-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.nfabt-card h3{
font-size:18px;
margin-bottom:10px;
color:#ff36cf;
display:flex;
align-items:center;
gap:8px;
}

.nfabt-card p{
color:#555;
font-size:14px;
line-height:1.6;
}

/* RESPONSIVE */

@media(max-width:900px){

.nfabt-wrap{
flex-direction:column;
}

.nfabt-right{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.nfabt-title{
font-size:28px;
}

.nfabt-right{
grid-template-columns:1fr;
}

.nfabt-card{
padding:18px;
}

}


 
.nfwhyx-sec{
padding:10px 20px;

}

.nfwhyx-wrap{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

/* LEFT */

.nfwhyx-left{
flex:1;
min-width:280px;
}

.nfwhyx-tag{
display:inline-block;
background:linear-gradient(90deg,#ff8643,#ff36cf);
color:white;
padding:6px 16px;
border-radius:30px;
font-size:14px;
margin-bottom:15px;
}

.nfwhyx-title{
font-size:36px;
margin-bottom:15px;
}

.nfwhyx-text{
color:#555;
margin-bottom:25px;
line-height:1.7;
}

.nfwhyx-btn{
display:inline-block;
background:linear-gradient(90deg,#ff8643,#ff36cf);
color:white;
padding:12px 26px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.nfwhyx-btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* RIGHT FEATURES */

.nfwhyx-right{
flex:1;
min-width:280px;
display:flex;
flex-direction:column;
gap:20px;
}

.nfwhyx-feature{
display:flex;
gap:16px;
align-items:flex-start;
background:white;
padding:18px;
border-radius:12px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.nfwhyx-number{
font-size:22px;
font-weight:bold;
background:linear-gradient(90deg,#ff8643,#ff36cf);
-webkit-background-clip:text;
color:transparent;
}

/* SECOND WHY SECTION */

.nfwhyx2-sec{
padding:80px 20px;
}

.nfwhyx2-title{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:50px;
}

.nfwhyx2-title h2{
font-size:36px;
margin-bottom:10px;
}

.nfwhyx2-title p{
color:#666;
}

/* GRID */

.nfwhyx2-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.nfwhyx2-card{
background:white;
padding:25px;
border-radius:14px;
text-align:center;
box-shadow:0 8px 22px rgba(0,0,0,0.08);
transition:0.3s;
}

.nfwhyx2-card:hover{
transform:translateY(-6px);
}

.nfwhyx2-icon{
font-size:28px;
color:#ff36cf;
margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:900px){

.nfwhyx-wrap{
flex-direction:column;
}

.nfwhyx2-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.nfwhyx-title{
font-size:28px;
}

.nfwhyx2-title h2{
font-size:28px;
}

.nfwhyx2-grid{
grid-template-columns:1fr;
}

}





/* HERO SECTION */

.nfhero-section{

background:linear-gradient(135deg,#ff8643,#ff36cf);
padding:10px 20px;
text-align:center;
color:white;
font-family:Arial;

}

.nfhero-container{

max-width:900px;
margin:auto;

}


/* TITLE */

.nfhero-title{

font-size:48px;
font-weight:700;
margin-bottom:20px;
line-height:1.2;

}


/* SUBTITLE */

.nfhero-subtitle{

font-size:18px;
margin-bottom:35px;
opacity:0.95;

}

.nfhero-subtitle span{

font-weight:700;
color:#fff;

}


/* BUTTONS */

.nfhero-buttons{

display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;

}

.nfhero-btn-primary{

background:white;
color:#ff8643;
padding:12px 26px;
border-radius:30px;
text-decoration:none;
font-weight:600;
font-size:14px;
transition:0.3s;

}

.nfhero-btn-primary:hover{

transform:translateY(-2px);
box-shadow:0 5px 12px rgba(0,0,0,0.15);

}


.nfhero-btn-outline{

border:2px solid white;
color:white;
padding:11px 26px;
border-radius:30px;
text-decoration:none;
font-weight:600;
font-size:14px;
transition:0.3s;

}

.nfhero-btn-outline:hover{

background:white;
color:#ff36cf;

}


/* RESPONSIVE */

@media(max-width:768px){

.nfhero-title{
font-size:32px;
}

.nfhero-subtitle{
font-size:16px;
display: none;
}

.nfhero-section{
padding:10px 20px;
}

}


 
/* SECTION */

.nftrans-section{

padding:20px 20px;
background:#fff;
font-family:Arial;

}

.nftrans-container{

max-width:1250px;
margin:auto;

}


/* TITLE */

.nftrans-title{

text-align:center;
margin-bottom:50px;

}

.nftrans-title h2{

font-size:34px;
margin-bottom:10px;
color:#222;

}

.nftrans-title p{

color:#777;
font-size:16px;

}


/* GRID */

.nftrans-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;

}


/* CARD */

.nftrans-card{

position:relative;
overflow:hidden;
border-radius:14px;
cursor:pointer;

}

.nftrans-card img{

width:100%;
display:block;
border-radius:14px;
transition:0.4s;

}

.nftrans-card:hover img{

transform:scale(1.05);

}


/* LABEL */

.nftrans-label{

position:absolute;
bottom:12px;
left:12px;

background:linear-gradient(45deg,#ff8643,#ff36cf);
color:white;

padding:6px 14px;
font-size:13px;
border-radius:20px;
font-weight:600;

}


/* RESPONSIVE */

@media(max-width:900px){

.nftrans-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.nftrans-grid{

grid-template-columns:1fr;

}

.nftrans-title h2{

font-size:26px;

}

}




/* SECTION */

.nfsvc-section{
background:#fff;
font-family:Arial;
}

.nfsvc-container{
max-width:1200px;
margin:auto;
}


/* TITLE */

.nfsvc-title{
text-align:center;
margin-bottom:35px;
}

.nfsvc-title h2{
font-size:32px;
color:#222;
margin-bottom:8px;
}

.nfsvc-title p{
color:#777;
font-size:15px;
}


/* GRID */

.nfsvc-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;

}


/* CARD */

.nfsvc-card{

background:linear-gradient(135deg,#fff3ec,#ffe6f7);
border-radius:12px;
border:1px solid #f1f1f1;
text-align:center;
padding:20px;
transition:0.3s;

}

.nfsvc-card:hover{

transform:translateY(-4px);
box-shadow:0 8px 20px rgba(0,0,0,0.08);

}


/* ICON */

.nfsvc-icon{

width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:12px;

background:linear-gradient(135deg,#ff8643,#ff36cf);
color:white;
border-radius:50%;
font-size:20px;

}


/* TEXT */

.nfsvc-card h3{
font-size:18px;
margin-bottom:8px;
color:#222;
}

.nfsvc-card p{
font-size:14px;
color:#666;
line-height:1.5;
}


/* CTA */

.nfsvc-cta{

text-align:center;
margin-top:35px;

}

.nfsvc-cta h3{

font-size:24px;
margin-bottom:8px;

}

.nfsvc-cta p{

color:#666;
margin-bottom:15px;

}


/* BUTTON */

.nfsvc-btn{

background:linear-gradient(135deg,#ff8643,#ff36cf);
color:white;
text-decoration:none;
padding:12px 26px;
border-radius:30px;
font-size:14px;
font-weight:600;
display:inline-block;
transition:0.3s;

}

.nfsvc-btn:hover{

opacity:0.9;

}


/* RESPONSIVE */

@media(max-width:900px){

.nfsvc-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.nfsvc-grid{
grid-template-columns:1fr;
}

.nfsvc-title h2{
font-size:26px;
}

}



 hr{
    margin-top: 1rem;
    
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* SECTION */

.nftrust-section{
background:#fff;
font-family:Arial;
padding: 22px 20px;
}

.nftrust-container{
max-width:1300px;
margin:auto;
}


/* WRAPPER */

.nftrust-wrapper{

display:flex;
gap:40px;
justify-content:space-between;
flex-wrap:wrap;

}


/* LEFT */

.nftrust-rating{
flex:1;
}

.nftrust-title{
font-size:22px;
margin-bottom:10px;
color:#222;
}

.nftrust-score{

font-size:18px;
margin-bottom:6px;

}

.nftrust-score span{
font-weight:600;
color:#ff8643;
}

.nftrust-note{
color:#777;
font-size:14px;
}


/* BARS */

.nftrust-bars{
flex:1;
}

.nftrust-row{

display:flex;
align-items:center;
gap:10px;
margin-bottom:8px;

}

.nftrust-bar{

flex:1;
height:8px;
background:#eee;
border-radius:20px;
overflow:hidden;

}

.nftrust-fill{

height:100%;
background:linear-gradient(90deg,#ff8643,#ff36cf);

}


/* DESCRIPTION */

.nftrust-desc{

margin-top:25px;
color:#555;
font-size:15px;
line-height:1.6;

}


/* TAGS */

.nftrust-tags{

margin-top:18px;
display:flex;
flex-wrap:wrap;
gap:10px;

}

.nftrust-tags span{

background:linear-gradient(135deg,#ff8643,#ff36cf);
color:white;
font-size:13px;
padding:6px 14px;
border-radius:20px;

}


/* RESPONSIVE */

@media(max-width:768px){

.nftrust-wrapper{
flex-direction:column;
}

}




    .nf-review-carousel{

padding:80px 40px;
background:#fff;
overflow:hidden;

}

.nf-review-title{

text-align:center;
font-size:32px;
margin-bottom:50px;
color:#333;

}

.nf-review-carousel-wrapper{

display:flex;
flex-direction:column;
gap:30px;

}


/* TRACK */

.nf-review-track{

display:flex;
gap:25px;
width:max-content;

}


/* CARD */

.nf-review-card{

width:260px;
flex-shrink:0;

}

.nf-review-card img{

width:100%;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.15);

}


/* LEFT SLIDE */

.nf-slide-left{

animation:slideLeft 25s linear infinite;

}

@keyframes slideLeft{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


/* RIGHT SLIDE */

.nf-slide-right{

animation:slideRight 25s linear infinite;

}

@keyframes slideRight{

0%{
transform:translateX(-50%);
}

100%{
transform:translateX(0);
}

}


/* RESPONSIVE */

@media(max-width:900px){

.nf-review-card{

width:200px;

}

}

@media(max-width:600px){

.nf-review-card{

width:160px;

}

.nf-review-title{

font-size:26px;

}

}


.nf-form-section{

padding:60px 20px;
background:#fff;
display:flex;
justify-content:center;

}

.nf-form-container{

max-width:900px;
width:100%;
border:2px solid transparent;
border-radius:12px;
padding:40px;
background:
linear-gradient(#fff,#fff) padding-box,
linear-gradient(135deg,#ff8643,#ff36cf) border-box;

}

.nf-form-title{

text-align:center;
font-size:28px;
margin-bottom:30px;
color:#333;

}

.nf-form-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;

}

.nf-form-group{

display:flex;
flex-direction:column;

}

.nf-form-group label{

font-size:14px;
margin-bottom:6px;
color:#444;

}

.nf-form-group input,
.nf-form-group select,
.nf-form-group textarea{

padding:12px;
border:1px solid #ddd;
border-radius:8px;
font-size:14px;
outline:none;
transition:0.3s;

}

.nf-form-group input:focus,
.nf-form-group select:focus,
.nf-form-group textarea:focus{

border-color:#ff8643;

}

.nf-form-group textarea{

resize:none;
height:110px;

}

.nf-full{

grid-column:span 2;

}


/* BUTTON */

.nf-form-btn{

grid-column:span 2;
padding:14px;
border:none;
border-radius:30px;
background:linear-gradient(135deg,#ff8643,#ff36cf);
color:white;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:0.3s;

}

.nf-form-btn:hover{

opacity:0.9;

}


/* RESPONSIVE */

@media(max-width:700px){

.nf-form-grid{

grid-template-columns:1fr;

}

.nf-full{

grid-column:span 1;

}

.nf-form-btn{

grid-column:span 1;

}

}



.nf-contact-help{

padding:20px 40px;
background:linear-gradient(135deg,#f5f5f5,#fff);
text-align:center;

}

.nf-contact-container{

max-width:1300px;
margin:auto;

}

.nf-contact-title{

font-size:32px;
margin-bottom:50px;
color:#333;

}

.nf-contact-title span{

color:#ff8643;

}


/* GRID */

.nf-contact-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}


/* CARD */

.nf-contact-card{

background:white;
padding:35px 25px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;

}

.nf-contact-card:hover{

transform:translateY(-6px);

}


/* ICON */

.nf-contact-icon{

width:55px;
height:55px;
margin:auto;
margin-bottom:15px;

display:flex;
align-items:center;
justify-content:center;

background:linear-gradient(135deg,#ff8643,#ff36cf);
color:white;
font-size:22px;
border-radius:50%;

}


/* TEXT */

.nf-contact-card h3{

margin-bottom:10px;
color:#222;

}

.nf-contact-card p{

font-size:14px;
color:#666;
margin-bottom:15px;

}


/* BUTTON */

.nf-contact-btn{

display:inline-block;
padding:10px 22px;
border-radius:30px;
background:linear-gradient(135deg,#ff8643,#ff36cf);
color:white;
text-decoration:none;
font-size:14px;
font-weight:600;

}


/* RESPONSIVE */

@media(max-width:900px){

.nf-contact-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.nf-contact-grid{

grid-template-columns:1fr;

}

.nf-contact-title{

font-size:26px;

}

}


/* ===== NUTRIFIST FOUNDER SECTION ===== */

.nffounderx-section{
padding:80px 20px;
background:#fff;
font-family:Arial, sans-serif;
}


/* CONTAINER */

.nffounderx-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
gap:50px;
flex-wrap:wrap;
}


/* IMAGE */

.nffounderx-image img{
width:100%;
max-width:380px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}


/* CONTENT */

.nffounderx-content{
flex:1;
}


/* TAG */

.nffounderx-tag{
display:inline-block;
background:linear-gradient(135deg,#ff8643,#ff36cf);
color:white;
padding:6px 16px;
border-radius:20px;
font-size:12px;
margin-bottom:12px;
}


/* HEADINGS */

.nffounderx-content h2{
font-size:32px;
margin-bottom:6px;
color:#222;
}

.nffounderx-content h3{
font-size:22px;
margin-bottom:6px;
color:#ff8643;
}


/* ROLE */

.nffounderx-role{
font-size:14px;
color:#666;
margin-bottom:14px;
}


/* TEXT */

.nffounderx-text{
font-size:15px;
line-height:1.7;
color:#555;
margin-bottom:14px;
}


/* QUOTE */

.nffounderx-quote{
font-style:italic;
color:#ff36cf;
margin-bottom:20px;
}


/* SOCIAL */

.nffounderx-social a{
display:inline-flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
margin-right:10px;

background:linear-gradient(135deg,#ff8643,#ff36cf);
color:white;

border-radius:50%;
font-size:16px;
transition:0.3s;
}

.nffounderx-social a:hover{
transform:translateY(-3px);
}


/* RESPONSIVE */

@media(max-width:768px){

.nffounderx-container{
flex-direction:column;
text-align:center;
}

.nffounderx-image img{
max-width:260px;
}

}


/* ===== CLIENT RESULTS SECTION ===== */

.nfresultx-section{
padding:10px 20px;
background:#fff;
font-family:Arial, sans-serif;
}


/* HEADER */

.nfresultx-header{
text-align:center;
margin-bottom:50px;
}

.nfresultx-label{
display:inline-block;
background:linear-gradient(135deg,#ff8643,#ff36cf);
color:white;
padding:5px 14px;
border-radius:20px;
font-size:12px;
margin-bottom:10px;
}

.nfresultx-header h2{
font-size:34px;
margin-bottom:8px;
color:#222;
}

.nfresultx-header p{
color:#666;
font-size:15px;
}


/* GRID */

.nfresultx-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}


/* CARD */

.nfresultx-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.06);
transition:0.3s;
}

.nfresultx-card:hover{
transform:translateY(-6px);
}


/* IMAGE */

.nfresultx-image{
position:relative;
}

.nfresultx-image img{
width:100%;
display:block;
}


/* BADGE */

.nfresultx-badge{
position:absolute;
top:10px;
left:10px;

background:linear-gradient(135deg,#ff8643,#ff36cf);
color:white;

padding:4px 12px;
border-radius:20px;
font-size:12px;
}


/* INFO */

.nfresultx-info{
padding:18px;
}

.nfresultx-info h3{
font-size:18px;
margin-bottom:6px;
color:#222;
}

.nfresultx-info p{
font-size:14px;
color:#666;
line-height:1.5;
}


/* RESPONSIVE */

@media(max-width:900px){

.nfresultx-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.nfresultx-grid{
grid-template-columns:1fr;
}

.nfresultx-header h2{
font-size:26px;
}

}

/* ===== NUTRIFIST CTA SECTION ===== */

.nfctaflow-section{

padding:20px 20px;

background:linear-gradient(135deg,#ff8643,#ff36cf);

color:white;

text-align:center;

font-family:Arial, sans-serif;

}


/* CONTAINER */

.nfctaflow-container{

max-width:900px;
margin:auto;

}


/* TITLE */

.nfctaflow-container h2{

font-size:34px;
margin-bottom:12px;

}


/* TEXT */

.nfctaflow-container p{

font-size:16px;
line-height:1.6;
margin-bottom:30px;
opacity:0.95;

}


/* BUTTON WRAPPER */

.nfctaflow-buttons{

display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;

}


/* BUTTON BASE */

.nfctaflow-btn{

padding:12px 26px;
border-radius:30px;
text-decoration:none;
font-size:14px;
font-weight:600;
transition:0.3s;

}


/* PRIMARY BUTTON */

.nfctaflow-primary{

background:white;
color:#ff8643;

}

.nfctaflow-primary:hover{

background:#fff5ef;

}


/* SECONDARY BUTTON */

.nfctaflow-secondary{

border:2px solid white;
color:white;

}

.nfctaflow-secondary:hover{

background:white;
color:#ff36cf;

}


/* RESPONSIVE */

@media(max-width:600px){

.nfctaflow-container h2{

font-size:26px;

}

}


/* ============================= */
/* NUTRIFIST PROCESS SECTION */
/* ============================= */

.nf-process{
max-width:900px;
margin:auto;
padding:60px 20px;
}

.nf-process-title{
text-align:center;
font-size:32px;
font-weight:700;
margin-bottom:50px;
color:#ff8643;
}

/* ============================= */
/* TIMELINE */
/* ============================= */

.nf-timeline{
position:relative;
}

/* GRADIENT LINE */

.nf-timeline::before{
content:"";
position:absolute;
left:24px;
top:0;
width:4px;
height:100%;
background:linear-gradient(#ff8643,#ff36cf);
border-radius:10px;
}

/* ============================= */
/* STEP */
/* ============================= */

.nf-step{
display:flex;
align-items:flex-start;
margin-bottom:35px;
opacity:0;
transform:translateY(40px);
transition:all 0.7s ease;
}

/* ============================= */
/* ICON */
/* ============================= */

.nf-step-icon{
min-width:50px;
height:50px;
background:linear-gradient(45deg,#ff8643,#ff36cf);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:18px;
margin-right:18px;
box-shadow:0 6px 18px rgba(0,0,0,0.15);
animation:iconPulse 2.5s infinite;
position:relative;
z-index:2;
}

/* ICON ANIMATION */

@keyframes iconPulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.15);
}

100%{
transform:scale(1);
}

}

/* ============================= */
/* CONTENT */
/* ============================= */

.nf-step-content h3{
font-size:18px;
margin-bottom:6px;
color:#222;
}

.nf-step-content p{
font-size:14px;
line-height:1.6;
color:#555;
}

/* ============================= */
/* SCROLL REVEAL */
/* ============================= */

.nf-step.show{
opacity:1;
transform:translateY(0);
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width:600px){

.nf-process{
padding:40px 15px;
}

.nf-process-title{
font-size:26px;
}

.nf-step-content h3{
font-size:16px;
}

}

/* ============================= */
/* DESKTOP ZIG-ZAG TIMELINE */
/* ============================= */
/* ============================= */
/* DESKTOP ZIG-ZAG TIMELINE */
/* ============================= */

@media (min-width:900px){

.nf-process{
max-width:1100px;
padding:15px 20px;
}

/* CENTER LINE */

.nf-timeline::before{
left:50%;
transform:translateX(-50%);
}

/* STEP */

.nf-step{
width:50%;
position:relative;
margin-bottom:50px; /* pehle 70px tha */
}

/* LEFT SIDE */

.nf-step:nth-child(odd){
left:0;
padding-right:50px; /* pehle 80px tha */
flex-direction:row-reverse;
text-align:right;
}

/* RIGHT SIDE */

.nf-step:nth-child(even){
left:50%;
padding-left:50px; /* pehle 80px tha */
}

/* ICON POSITION */

.nf-step:nth-child(odd) .nf-step-icon{
margin-left:15px;
margin-right:0;
}

.nf-step:nth-child(even) .nf-step-icon{
margin-right:15px;
}

}


/* whatsapp float button */

/* WHATSAPP CHATBOT FLOAT */

.nf-whatsapp-chat{
position:fixed;
bottom:20px;
right:20px;
display:flex;
align-items:center;
gap:12px;
z-index:9999;
}

/* MESSAGE BUBBLE */

.nf-chat-bubble{
background:white;
padding:10px 14px;
border-radius:10px;
font-size:14px;
box-shadow:0 6px 20px rgba(0,0,0,0.15);
animation:nfChatFloat 2.5s infinite;
}

/* BUTTON */

.nf-whatsapp-button{
width:55px;
height:55px;
background:linear-gradient(45deg,#ff8643,#ff36cf);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:26px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.25);
transition:0.3s;
}

.nf-whatsapp-button:hover{
transform:scale(1.1);
}

/* FLOAT ANIMATION */

@keyframes nfChatFloat{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-5px);
}

100%{
transform:translateY(0px);
}

}

/* MOBILE */

@media(max-width:600px){

.nf-chat-bubble{
font-size:13px;
padding:8px 12px;
}

.nf-whatsapp-button{
width:50px;
height:50px;
font-size:24px;
}

}

.nfwhyx-icon{
width:45px;
height:45px;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
color:white;
background:linear-gradient(45deg,#ff8643,#ff36cf);
margin-right:15px;
flex-shrink:0;
}



/* ================= SERVICES SECTION ================= */

.nf-services-sec{
padding:17px 20px;
}

.nf-services-wrap{
max-width:1150px;
margin:auto;
text-align:center;
}

.nf-services-heading{
font-size:32px;
font-weight:700;
margin-bottom:10px;
color:#222;
}

.nf-services-sub{
color:#666;
max-width:650px;
margin:auto;
margin-bottom:45px;
}

/* GRID */

.nf-services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

/* CARD */

.nf-service-card{
position:relative;
height:220px;
border-radius:14px;
overflow:hidden;
background-size:cover;
background-position:center;
display:flex;
align-items:flex-end;
transition:0.4s;
}

/* OVERLAY */

.nf-service-overlay{
width:100%;
padding:20px;
background:linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
color:white;
}

/* TEXT */

.nf-service-overlay h3{
font-size:18px;
margin-bottom:6px;
}

.nf-service-overlay p{
font-size:14px;
margin-bottom:12px;
line-height:1.5;
}

/* BUTTON */

.nf-service-btn{
display:inline-block;
padding:8px 16px;
font-size:13px;
border-radius:20px;
text-decoration:none;
color:white;
background:linear-gradient(45deg,#ff8643,#ff36cf);
transition:0.3s;
}

.nf-service-btn:hover{
opacity:0.9;
}

/* HOVER */

.nf-service-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* TABLET */

@media (max-width:900px){

.nf-services-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media (max-width:600px){

.nf-services-sec{
padding:19px 15px;
}

.nf-services-heading{
font-size:26px;
}

.nf-services-grid{
grid-template-columns:1fr;
}

.nf-service-card{
height:200px;
}

}

/* plans page css*/

/* ===============================
   NUTRIFIST PLANS SECTION
================================*/

.nf-plans-sec{
padding:15px 18px;
}

.nf-plans-wrap{
max-width:1100px;
margin:auto;
text-align:center;
}

.nf-plans-title{
font-size:28px;
font-weight:700;
margin-bottom:10px;
color:#222;
}

.nf-plans-sub{
color:#666;
font-size:14px;
max-width:620px;
margin:auto;
margin-bottom:40px;
line-height:1.6;
}


/* ===============================
   PLANS GRID
================================*/

.nf-plans-grid{
display:grid;
grid-template-columns:1fr;
gap:20px;
}


/* ===============================
   PLAN CARD
================================*/

.nf-plan-card{
position:relative;
border:1px solid #eee;
border-radius:14px;
padding:22px;
text-align:left;
background:white;
overflow:hidden;
transition:0.35s;
}

/* DECORATIVE BACKGROUND SHAPES */

.nf-plan-card::before{
content:"";
position:absolute;
top:-40px;
right:-40px;
width:120px;
height:120px;
background:linear-gradient(135deg,#ff8643,#ff36cf);
opacity:0.12;
border-radius:50%;
}

.nf-plan-card::after{
content:"";
position:absolute;
bottom:-50px;
left:-50px;
width:140px;
height:140px;
background:linear-gradient(135deg,#ff36cf,#ff8643);
opacity:0.08;
border-radius:50%;
}

/* HOVER EFFECT */

.nf-plan-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.08);
border-color:#ff8643;
}


/* ===============================
   PLAN TITLE
================================*/

.nf-plan-card h3{
font-size:20px;
margin-bottom:8px;
color:#222;
}


/* ===============================
   PLAN DESCRIPTION
================================*/

.nf-plan-desc{
font-size:14px;
color:#666;
margin-bottom:14px;
line-height:1.6;
}


/* ===============================
   FEATURES LIST
================================*/

.nf-plan-features{
list-style:none;
padding:0;
margin:0 0 16px 0;
}

.nf-plan-features li{
font-size:14px;
margin-bottom:6px;
color:#444;
}


/* ===============================
   BUTTON
================================*/

.nf-plan-btn{
display:inline-block;
padding:9px 18px;
border-radius:22px;
font-size:13px;
text-decoration:none;
color:white;
background:linear-gradient(45deg,#ff8643,#ff36cf);
transition:0.3s;
}

.nf-plan-btn:hover{
opacity:0.9;
}


/* ===============================
   TABLET VIEW
================================*/

@media (min-width:700px){

.nf-plans-grid{
grid-template-columns:repeat(2,1fr);
}

}


/* ===============================
   DESKTOP VIEW
================================*/

@media (min-width:1024px){

.nf-plans-grid{
grid-template-columns:repeat(3,1fr);
}

.nf-plans-title{
font-size:34px;
}

}



/* HERO */

.nfhero{
background:linear-gradient(135deg,#ff8643,#ff36cf);
padding:10px 14px 30px;
color:white;
}

/* IMAGE SLIDER */

.nfhero-slider{
position:relative;
width:100%;
height:42vh;
max-height:420px;
overflow:hidden;
border-radius:16px;
}

.nfhero-slide{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1s;
}

.nfhero-slide.active{
opacity:1;
}

/* FLOATING ICONS */

.nfhero-float{
position:absolute;
background:rgba(255,255,255,0.9);
color:#ff36cf;
padding:8px 10px;
border-radius:50%;
font-size:18px;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
animation:float 3s ease-in-out infinite;
}

.nf-f1{
top:20px;
left:20px;
}

.nf-f2{
top:40%;
right:20px;
}

.nf-f3{
bottom:20px;
left:30%;
}

@keyframes float{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-8px)}
}

/* CONTENT */

.nfhero-content{
margin-top:12px;
}

/* BADGE */

.nfhero-badge{
background:white;
color:#ff36cf;
padding:5px 12px;
border-radius:20px;
font-size:12px;
font-weight:600;
}

/* TITLE */

.nfhero-title{
font-size:26px;
margin:10px 0;
line-height:1.3;
}

/* SUB */

.nfhero-sub{
font-size:14px;
margin-bottom:14px;
}

.nfhero-sub span{
font-weight:700;
}

/* TAGS */

.nfhero-tags{
display:flex;
flex-wrap:wrap;
gap:6px;
margin-bottom:16px;
}

.nfhero-tags span{
background:rgba(255,255,255,0.2);
padding:6px 10px;
border-radius:20px;
font-size:12px;
}

/* BUTTON */

.nfhero-btn{
display:block;
text-align:center;
background:white;
color:#ff36cf;
padding:13px;
border-radius:30px;
font-weight:600;
text-decoration:none;
}

/* DESKTOP */

@media (min-width:768px){

.nfhero{
padding:20px 40px;
}

.nfhero{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:40px;
}

.nfhero-slider{
height:420px;
}

.nfhero-title{
font-size:44px;
}

.nfhero-sub{
font-size:18px;
}

}




/* blog page css */



.nf18main{
  font-family:'Poppins',sans-serif;
  background:#f2f4f8;
  padding-bottom:20px;
}

.nf18wrap{display:grid;grid-template-columns:2.5fr 1fr;gap:20px;padding:15px;}

.nf18header{
  background:linear-gradient(135deg,#ff8643,#ff36cf);
  padding:16px;
  text-align:center;
  color:#fff;
  font-size:22px;
  font-weight:600;
}

.nf18grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:15px;}

.nf18link{text-decoration:none;color:inherit;display:block;}

.nf18card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.nf18card:hover{transform:translateY(-6px);}

.nf18img{width:100%;height:160px;object-fit:cover;}

.nf18content{padding:12px;}

.nf18meta{font-size:13px;color:#777;margin-bottom:6px;}

.nf18title{font-size:18px;color:#ff8643;margin:6px 0;font-weight:600;}

.nf18desc{font-size:14px;color:#555;}

.nf18tags{margin-top:8px;}

.nf18tag{
  display:inline-block;
  background:#ed6e24;
  color:#fff;
  padding:4px 10px;
  font-size:14px;
  border-radius:50px;
  margin:2px;
  cursor:pointer;
}


.nf18side{display:flex;flex-direction:column;gap:15px;}

.nf18box{
  background:#fff;
  padding:14px;
  border-radius:15px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.nf18input{
  width:100%;
  padding:10px;
  border-radius:10px;
  border:1px solid #ddd;
}

.nf18recent{font-size:13px;padding:6px 0;border-bottom:1px solid #eee;cursor:pointer;}
.nf18recent:hover{color:#ff36cf;}

@media(max-width:768px){
  .nf18wrap{grid-template-columns:1fr;}
}



/* blog details page css */

.nfdetail-main{font-family:'Poppins',sans-serif;background:#f2f4f8;padding:15px;}

.nfdetail-wrapper{display:grid;grid-template-columns:2.5fr 1fr;gap:20px;}

.nfdetail-container{background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 10px 25px rgba(0,0,0,0.08);} 

.nfdetail-img{width:100%;height:280px;object-fit:cover;}

.nfdetail-content{padding:20px;}

.nfdetail-meta{font-size:14px;color:#777;margin-bottom:10px;}

.nfdetail-title{font-size:26px;color:#ff8643;font-weight:600;margin-bottom:10px;}

.nfdetail-text{font-size:15px;color:#444;line-height:1.7;}

.nfdetail-tags{margin-top:15px;}

.nfdetail-tag{display:inline-block;background:#ff36cf;color:#fff;padding:6px 12px;border-radius:50px;font-size:12px;margin:3px;}

/* SIDEBAR */
.nfdetail-side{display:flex;flex-direction:column;gap:15px;}

.nfdetail-box{background:#fff;padding:15px;border-radius:15px;box-shadow:0 6px 18px rgba(0,0,0,0.08);} 

.nfdetail-input{width:100%;padding:10px;border-radius:10px;border:1px solid #ddd;}

.nfdetail-recent{font-size:13px;padding:6px 0;border-bottom:1px solid #eee;cursor:pointer;}

.nfdetail-recent:hover{color:#ff36cf;}

.nfdetail-back{display:inline-block;margin-bottom:10px;text-decoration:none;color:#ff36cf;font-weight:500;}

@media(max-width:768px){
  .nfdetail-wrapper{grid-template-columns:1fr;}
}




/* TESTIMONIALS CSS */
  .nutrifist-testimonials {
    padding: 50px 14px;
    background:
      radial-gradient(circle at top left, rgba(255, 134, 67, 0.08), transparent 25%),
      radial-gradient(circle at top right, rgba(255, 54, 207, 0.08), transparent 28%),
      linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
  }

  .nutrifist-wrap {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
  }

  .nutrifist-head {
    text-align: center;
    margin-bottom: 28px;
  }

  .nutrifist-kicker {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff8643 0%, #ff36cf 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;
    margin-bottom: 14px;
    box-shadow: 0 12px 24px rgba(255, 54, 207, 0.16);
  }

  .nutrifist-head h2 {
    margin: 0 0 10px;
    color: #1b1b1b;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.4px;
  }

  .nutrifist-head p {
    max-width: 720px;
    margin: 0 auto;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
  }

  .nutrifist-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .nf-review {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 54, 207, 0.12);
    border-radius: 24px;
    padding: 18px 16px 18px 18px;
    box-shadow:
      0 10px 30px rgba(20, 20, 20, 0.05),
      0 4px 14px rgba(255, 134, 67, 0.06);
    overflow: hidden;
    backdrop-filter: blur(10px);
  }

  .nf-review::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #ff8643 0%, #ff36cf 100%);
  }

  .nf-review-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
  }

  .nf-review-meta-left h3 {
    margin: 0 0 7px;
    color: #202020;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
  }

  .nf-stars {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    color: #ffb400;
    font-size: 14px;
  }

  .nf-stars strong {
    margin-left: 6px;
    color: #ff36cf;
    font-size: 13px;
    font-weight: 700;
  }

  .nf-star-off {
    opacity: 0.28;
  }

  .nf-review-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }

  .nf-date {
    font-size: 12px;
    color: #777;
  }

  .nf-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #169247;
  }

  .nf-quote-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 134, 67, 0.12), rgba(255, 54, 207, 0.14));
    color: #ff36cf;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
  }

  .nf-review p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.85;
  }

  .nf-cta {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 28px 18px;
    box-shadow: 0 18px 40px rgba(255, 54, 207, 0.18);
  }

  .nf-cta::before,
  .nf-cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
  }

  .nf-cta::before {
    width: 170px;
    height: 170px;
    top: -70px;
    right: -60px;
  }

  .nf-cta::after {
    width: 120px;
    height: 120px;
    bottom: -45px;
    left: -30px;
  }

  .nf-cta.style1,
  .nf-cta {
    background: linear-gradient(135deg, #ff8643 0%, #ff36cf 100%);
  }

  .nf-cta.style2 {
    background: linear-gradient(135deg, #ff36cf 0%, #ff8643 100%);
  }

  .nf-cta.style3 {
    background: linear-gradient(135deg, #ff8643 0%, #ff5ea8 50%, #ff36cf 100%);
  }

  .nf-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .nf-cta-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
  }

  .nf-cta h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
  }

  .nf-cta p {
    max-width: 680px;
    margin: 0 auto 18px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.8;
  }

  .nf-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 13px 22px;
    border-radius: 999px;
    background: #fff;
    color: #ff36cf;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  }

  .nf-cta-btn:hover {
    transform: translateY(-2px);
  }

  .nf-empty-testimonial {
    background: #fff;
    border: 1px dashed rgba(255, 54, 207, 0.25);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
  }

  .nf-empty-testimonial p {
    margin: 0;
    color: #666;
    font-size: 14px;
  }

  @media (min-width: 768px) {
    .nutrifist-testimonials {
      padding: 70px 24px;
    }

    .nutrifist-head {
      margin-bottom: 34px;
    }

    .nutrifist-head h2 {
      font-size: 40px;
    }

    .nutrifist-head p {
      font-size: 16px;
    }

    .nutrifist-list {
      gap: 20px;
    }

    .nf-review {
      padding: 24px 22px 24px 24px;
      border-radius: 26px;
    }

    .nf-review-meta-left h3 {
      font-size: 18px;
    }

    .nf-review p {
      font-size: 15px;
    }

    .nf-cta {
      padding: 40px 28px;
      border-radius: 30px;
    }

    .nf-cta h3 {
      font-size: 34px;
    }

    .nf-cta p {
      font-size: 16px;
    }

    .nf-cta-btn {
      font-size: 15px;
      padding: 14px 24px;
    }
  }

  @media (min-width: 1200px) {
    .nutrifist-wrap {
      max-width: 980px;
    }

    .nutrifist-head h2 {
      font-size: 46px;
    }

    .nf-review {
      padding: 26px 26px 26px 28px;
    }

    .nf-review-meta-left h3 {
      font-size: 19px;
    }

    .nf-review p {
      font-size: 15.5px;
    }

    .nf-cta h3 {
      font-size: 38px;
    }
  }



/*About page css*/

    /* ABOUT HERO SECTION START */
.nfabthero-section{
  padding: 10px 20px 70px;
  background: linear-gradient(135deg, rgba(255,134,67,0.10), rgba(255,54,207,0.08));
  overflow: hidden;
}

.nfabthero-container{
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.nfabthero-content{
  position: relative;
  z-index: 2;
}

.nfabthero-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  color: #ff36cf;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.nfabthero-title{
  font-size: 54px;
  line-height: 1.12;
  font-weight: 800;
  color: #1b1b1b;
  margin: 0 0 22px;
  max-width: 700px;
}

.nfabthero-title span{
  background: linear-gradient(90deg, #ff8643, #ff36cf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nfabthero-text{
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin: 0 0 16px;
  max-width: 700px;
}

.nfabthero-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.nfabthero-tag{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #ffffff;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.nfabthero-tag i{
  color: #ff8643;
  font-size: 15px;
}

.nfabthero-tag:hover{
  transform: translateY(-4px);
}

.nfabthero-visual{
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nfabthero-card{
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  z-index: 2;
}

.nfabthero-card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1.5px;
  background: linear-gradient(135deg, #ff8643, #ff36cf);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.nfabthero-cardicon{
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8643, #ff36cf);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 18px;
  box-shadow: 0 14px 30px rgba(255,134,67,0.28);
}

.nfabthero-card h3{
  font-size: 28px;
  color: #1f1f1f;
  margin: 0 0 12px;
}

.nfabthero-card p{
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

.nfabthero-floating{
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.nfabthero-floating i{
  color: #ff36cf;
}

.nfabthero-float1{
  top: 30px;
  right: 10px;
}

.nfabthero-float2{
  left: 0;
  bottom: 100px;
}

.nfabthero-float3{
  right: 25px;
  bottom: 20px;
}

@media (max-width: 991px){
  .nfabthero-container{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nfabthero-title{
    font-size: 42px;
  }

  .nfabthero-visual{
    min-height: 420px;
  }
}

@media (max-width: 767px){
  .nfabthero-section{
    padding: 10px 15px 55px;
  }

  .nfabthero-title{
    font-size: 34px;
  }

  .nfabthero-text{
    font-size: 15px;
    line-height: 1.8;
  }

  .nfabthero-tags{
    gap: 10px;
  }

  .nfabthero-tag{
    width: 100%;
    justify-content: flex-start;
    font-size: 14px;
  }

  .nfabthero-card{
    padding: 32px 22px;
    border-radius: 22px;
  }

  .nfabthero-card h3{
    font-size: 24px;
  }

  .nfabthero-floating{
    position: static;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }

  .nfabthero-visual{
    min-height: auto;
    display: block;
  }
}

@media (max-width: 480px){
  .nfabthero-title{
    font-size: 28px;
  }

  .nfabthero-badge{
    font-size: 13px;
    padding: 9px 14px;
  }

  .nfabthero-cardicon{
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}
/* ABOUT HERO SECTION END */





/* ABOUT STATS / VALUES SECTION START */
.nfabtvalue-section{
  padding: 15px 20px;
  background: #fff;
}

.nfabtvalue-container{
  max-width: 1250px;
  margin: 0 auto;
}

.nfabtvalue-head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 45px;
}

.nfabtvalue-mini{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,134,67,0.10);
  color: #ff36cf;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.nfabtvalue-title{
  font-size: 42px;
  line-height: 1.2;
  color: #1b1b1b;
  font-weight: 800;
  margin: 0 0 16px;
}

.nfabtvalue-text{
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  margin: 0;
}

.nfabtvalue-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 38px;
}

.nfabtvalue-card{
  background: linear-gradient(180deg, #fff, #fff7fd);
  border: 1px solid rgba(255,54,207,0.08);
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.nfabtvalue-card:hover{
  transform: translateY(-6px);
}

.nfabtvalue-icon{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff8643, #ff36cf);
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(255,134,67,0.20);
}

.nfabtvalue-card h3{
  font-size: 22px;
  color: #222;
  margin: 0 0 10px;
  font-weight: 700;
}

.nfabtvalue-card p{
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

.nfabtvalue-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nfabtvalue-statbox{
  background: linear-gradient(135deg, rgba(255,134,67,0.08), rgba(255,54,207,0.08));
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
}

.nfabtvalue-statbox h3{
  font-size: 34px;
  line-height: 1;
  margin: 0 0 10px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff8643, #ff36cf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nfabtvalue-statbox p{
  margin: 0;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 991px){
  .nfabtvalue-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .nfabtvalue-stats{
    grid-template-columns: 1fr;
  }

  .nfabtvalue-title{
    font-size: 34px;
  }
}

@media (max-width: 767px){
  .nfabtvalue-section{
    padding: 65px 15px;
  }

  .nfabtvalue-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nfabtvalue-title{
    font-size: 28px;
  }

  .nfabtvalue-text{
    font-size: 15px;
    line-height: 1.8;
  }

  .nfabtvalue-card{
    padding: 24px 18px;
    border-radius: 18px;
  }

  .nfabtvalue-card h3{
    font-size: 20px;
  }

  .nfabtvalue-statbox{
    padding: 24px 16px;
    border-radius: 18px;
  }

  .nfabtvalue-statbox h3{
    font-size: 30px;
  }
}
/* ABOUT STATS / VALUES SECTION END */
