/* ---------- GLOBAL ---------- */

body{
margin:0;
font-family:'Roboto Slab', serif;
background:#0c0c0c;
color:white;
text-align:center;
}

/* HEADER IMAGE */

#header-img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

/* HEADER SECTION */

.top-header{
position:relative;
height:450px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
margin-top: 90px;
}

/* DARK OVERLAY */

.top-header::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
z-index:-2;
}

/* HEADER TEXT */

.NPN{
position:absolute;
top:35%;
left:50%;
transform:translate(-50%, -50%);
font-size:50px;
color:#f4b400;
letter-spacing:3px;
}

.NPN-about{
position:absolute;
top:55%;
left:50%;
transform:translate(-50%, -50%);
font-size:20px;
color:#ffffff;
max-width:700px;
}

/* ---------- PRODUCTS SECTION ---------- */

.products{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
padding:60px 40px;
}

/* PRODUCT CARD */

.product-card{
background:#1a1a1a;
padding:20px;
width:280px;
border-radius:10px;
transition:0.3s;
box-shadow:0 10px 25px rgba(0,0,0,0.5);
}

.product-card:hover{
transform:translateY(-10px);
}

/* PRODUCT IMAGE */

.product-card img{
width:100%;
border-radius:10px;
}


/* PRODUCT TITLE */

.product-card h2{
margin-top:15px;
color:#f4b400;
font-size:22px;
}


/* PRODUCT DESCRIPTION */

.product-card p{
font-size:14px;
margin:10px 0;
color:#ccc;
}


/* PRODUCT BUTTON */

.product-card button{
padding:10px 20px;
background:#f4b400;
border:none;
cursor:pointer;
font-weight:bold;
border-radius:5px;
transition:0.3s;
}

.product-card button:hover{
background:#ffcc00;
}


/* ---------- BACK BUTTON ---------- */

.back-btn{
display:inline-block;
margin:40px 0;
padding:10px 25px;
background:#f4b400;
color:black;
text-decoration:none;
border-radius:5px;
font-weight:bold;
transition:0.3s;
}

.back-btn:hover{
background:#ffcc00;
}

.about-origin,
.about-transform{
padding:80px 0;
background:#f5f5f5;
}

.about-origin h2,
.about-transform h2{
font-size:40px;
font-weight:700;
margin-bottom:20px;
}

.fitness-users{
background:#f5b51c;
text-align:center;
padding:70px 20px;
}

.fitness-users h2{
font-size:42px;
}

.fitness-icons{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:40px;
}

.fitness-box{
text-align:center;
}

.fitness-box img{
width:80px;
height:80px;
border-radius:50%;
background:white;
padding:15px;
}

.npn-goodness{
padding:80px 0;
text-align:center;
}

.goodness-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
}

.goodness-card img{
width:100%;
height:200px;
object-fit:cover;
}

.goodness-card h4{
margin-top:15px;
}

.about-origin{
padding:80px 0;
background:#f5f5f5;
}

.about-origin h2{
color:#000;
font-size:40px;
font-weight:700;
margin-bottom:20px;
}

.about-origin p{
color:#000;
font-size:18px;
line-height:1.7;
margin-bottom:15px;
}

.about-transform{
    padding:80px 0;
    background:#f5f5f5;
}

.about-transform h2{
    font-size:40px;
    font-weight:700;
    color:#000;
    margin-bottom:20px;
}

.about-transform p{
    font-size:18px;
    line-height:1.7;
    color:#000;
    margin-bottom:15px;
}

.fitness-icons{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:40px;
}

.fitness-box{
text-align:center;
}

.fitness-box img{
width:160px;
height:160px;
border-radius:50%;
background:#fff;
padding:25px;
box-shadow:0 6px 20px rgba(0,0,0,0.25);
transition:0.4s ease;   /* smooth animation */
cursor:pointer;
}

/* Hover Zoom */
.fitness-box img:hover{
transform:scale(1.2);
}

.fitness-box p{
color:#000;          /* text color black */
font-size:18px;
font-weight:600;
margin-top:12px;
}

.fitness-box p{
color:#000 !important;
}

.fitness-users p{
color:#000;
}

.fitness-box img:hover{
transform:scale(1.2);
box-shadow:0 12px 35px rgba(0,0,0,0.4);
}

.fitness-users h2{
    color:#000 !important;
}

.goodness-card img{
width:100%;
height:200px;
object-fit:cover;
transition:0.4s ease;   /* smooth animation */
cursor:pointer;
}

/* Hover Zoom */
.goodness-card img:hover{
transform:scale(1.15);
}