
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI;
}

body{
background:#f4f8fb;
}

/* HEADER */
.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 7%;
background:#fff;
box-shadow:0 6px 25px rgba(0,0,0,0.06);
position:sticky;
top:0;
z-index:999;
}

/* LOGO */
.logo{
display:flex;
align-items:center;   /* 👈 ye main fix hai */
justify-content:center;
gap:12px;
font-size:20px;
font-weight:700;
color:#0a58ca;
animation:slideLeft 1s;
line-height:1;        /* 👈 text niche nahi girega */
}

.logo span{
font-size:26px;
font-weight:700;
background:linear-gradient(90deg,#0a58ca,#00b4d8);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
letter-spacing:1px;
animation:logoFade 1.2s ease;
}

@keyframes logoFade{
from{opacity:0;transform:translateY(15px);}
to{opacity:1;transform:translateY(0);}
}



.logo img{
height:80px;
border-radius:41px;
}

/* NAV */
.navbar ul{
display:flex;
list-style:none;
gap:35px;
}

.navbar ul li{
position:relative;
}

/* PREMIUM NAV ENTRY ANIMATION */
.navbar ul li a{
text-decoration:none;
color:#222;
font-weight:600;
font-size:16px;
position:relative;
opacity:0;
transform:translateY(25px);
animation:navFade 0.7s ease forwards;
}

/* STAGGER ANIMATION */
.navbar ul li:nth-child(1) a{animation-delay:0.2s;}
.navbar ul li:nth-child(2) a{animation-delay:0.4s;}
.navbar ul li:nth-child(3) a{animation-delay:0.6s;}
.navbar ul li:nth-child(4) a{animation-delay:0.8s;}
.navbar ul li:nth-child(5) a{animation-delay:1s;}

/* UNDERLINE ANIMATION */
.navbar ul li a::after{
content:"";
width:0%;
height:2px;
background:#0a58ca;
position:absolute;
bottom:-5px;
left:0;
transition:.3s;
}

.navbar ul li a:hover::after{
width:100%;
}



/* DROPDOWN */
.dropdown{
position:absolute;
top:45px;
left:0;
background:#fff;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
padding:10px 0;
min-width:200px;
display:none;

/* 🔥 ADD THIS */
max-height:50vh;        /* screen ka half height */
overflow-y:auto;        /* andar scroll */
}

/* scroll smooth feel */
.dropdown::-webkit-scrollbar{
width:6px;
}

.dropdown::-webkit-scrollbar-thumb{
background:#0a58ca;
border-radius:10px;
}

.dropdown.show{
display:block;
animation:dropdown .3s;
}

.dropdown a{
display:block;
padding:12px 20px;
font-size:14px;
}

.dropdown a:hover{
background:#f0f5ff;
color:#0a58ca;
}



/* MOBILE MENU BTN */
.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

/* MOBILE */
@media(max-width:900px){

.menu-toggle{
display:block;
}

.navbar{
position:absolute;
top:85px;
left:0;
width:100%;
background:#fff;
display:none;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.navbar.active{
display:block;
}

.navbar ul{
flex-direction:column;
padding:20px;
gap:20px;
}

.dropdown{
position:static;
box-shadow:none;
margin-top:10px;
}

}

/* ANIMATIONS */
@keyframes navFade{
0%{
opacity:0;
transform:translateY(30px) scale(.95);
}
100%{
opacity:1;
transform:translateY(0) scale(1);
}
}

@keyframes slideLeft{
from{opacity:0;transform:translateX(-40px);}
to{opacity:1;transform:translateX(0);}
}

@keyframes dropdown{
from{opacity:0;transform:translateY(-10px);}
to{opacity:1;transform:translateY(0);}
}




/* ANIMATION */
@keyframes bannerFade{
from{opacity:0;transform:translateY(-40px);}
to{opacity:1;transform:translateY(-50%);}
}

/* HERO */
/* BANNER */
/* BANNER SECTION */
.banner{
width:100%;
overflow:hidden;
position:relative;
animation:bannerLoad 1.2s ease;
}

.slider{
position:relative;
width:100%;
}

/* SLIDES */
.slides{
display:flex;
transition:transform .7s ease;
}

.slide{
min-width:100%;
position:relative;
text-align:center;
}

/* IMAGE — FULL FIT NO CUT */
.slide img{
width:100%;
height:auto;        /* 👈 main fix */
display:block;
object-fit:contain; /* 👈 banner pura dikhega */
}

/* TEXT */
.banner-text{
position:absolute;
top:50%;
left:7%;
transform:translateY(-50%);
color:#fff;
animation:textFade 1.5s ease;
}

.banner-text h2{
font-size:40px;
margin-bottom:10px;
}

.banner-text p{
font-size:18px;
}

/* BUTTON */
.prev,.next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.4);
border:none;
color:#fff;
font-size:28px;
padding:10px 15px;
cursor:pointer;
border-radius:6px;
}

.prev{left:15px;}
.next{right:15px;}

/* MOBILE */
@media(max-width:768px){

.banner-text{
left:5%;
}

@media (max-width: 768px) {
  .hero-banner {
    height: 60vh;   /* mobile ke liye chhota height */
    background-position: center;
  }
}




.banner-text h2{
font-size:22px;
}

.banner-text p{
font-size:14px;
}

}

/* LOAD ANIMATION */
@keyframes bannerLoad{
from{
opacity:0;
transform:translateY(50px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@keyframes textFade{
from{
opacity:0;
transform:translateY(-20px);
}
to{
opacity:1;
transform:translateY(-50%);
}
}

/* ABOUT SECTION */
.about{
padding:80px 7%;
background:#fff;
}

.about-container{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.about-left{
flex:1;
min-width:300px;
}

.about-right{
flex:1;
min-width:300px;
text-align:center;
}

.about-right img{
width:300px;
border-radius:12px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
border-radius: 600px;
}

.about h2{
font-size:36px;
color:#0a58ca;
margin-bottom:20px;
}

.about p{
font-size:16px;
line-height:1.8;
margin-bottom:15px;
color:#333;
}

.about-list{
padding-left:20px;
margin-bottom:20px;
}

.about-list li{
margin-bottom:8px;
}

.note{
font-size:14px;
color:#777;
}

/* HIGH PROFESSIONAL SIDE ANIMATION */
.about-anim{
opacity:0;
transition:1s cubic-bezier(.17,.67,.35,1.2);
}

.about-anim.left{
transform:translateX(-140px);
}

.about-anim.right{
transform:translateX(140px);
}

.about-anim.show{
opacity:1;
transform:translateX(0);
}

/* MOBILE */
@media(max-width:768px){

.about-container{
flex-direction:column;
}

.about h2{
font-size:26px;
}

}


.health{
padding:90px 6%;
background:#f7faff;
text-align:center;
overflow:hidden;
}

.health-title{
font-size:38px;
color:#0a58ca;
margin-bottom:10px;
font-weight:700;
}

.health-sub{
color:#555;
margin-bottom:50px;
}

.health-slider{
overflow:hidden;
position:relative;
}

.health-track{
display:flex;
gap: 20px;
width:max-content;
animation:scroll 35s linear infinite;
}

.health-item{
min-width:22%;
text-align:center;
}

.health-item img{
width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.4s;
}

.health-item img:hover{
transform:scale(1.08);
}

.health-item h4{
margin-top:15px;
font-size:17px;
color:#333;
}

/* AUTO SLIDE */
@keyframes scroll{
0%{transform:translateX(0);}
100%{transform:translateX(-200%);}
}

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-200%);
}

}

@media(max-width:768px){

.health-track{
gap:15px;
animation:scroll 35s linear infinite;
}

.health-item{
min-width:140px;   /* FIXED WIDTH */
}

.health-item img{
width:90px;
height:90px;
}

.health-title{
font-size:28px;
}

}

@media(max-width:768px){

.health-track{
animation:scroll 45s linear infinite;
}

}






.brand-section{
padding:80px 5%;
background:#f8fbff;
text-align:center;
overflow:hidden;
}

.brand-title{
font-size:34px;
font-weight:700;
margin-bottom:50px;
color:#0a58ca;
}

.brand-slider{
width:100%;
overflow:hidden;
}

.brand-track{
display:flex;
gap:30px;
width:max-content;
animation:infiniteBrand 22s linear infinite;
}

.brand-item{
min-width:260px;
flex-shrink:0;
}

.brand-item img{
width:100%;
height:170px;
object-fit:cover;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.12);
transition:0.4s;
}

.brand-item img:hover{
transform:scale(1.06);
}

@keyframes infiniteBrand{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

/* MOBILE */

@media(max-width:768px){

.brand-item{
min-width:190px;
}

.brand-track{
animation-duration:16s;
}

.brand-title{
font-size:26px;
}

}


.footer{
background:#0a58ca;
color:#fff;
padding-top:60px;
margin-top:80px;
overflow:hidden;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
padding:0 7% 50px;
}

.footer-box{
flex:1;
min-width:260px;
}

.footer-box h3{
font-size:22px;
margin-bottom:15px;
}

.footer-box h4{
font-size:18px;
margin-bottom:15px;
}

.footer-box p{
font-size:14px;
line-height:1.7;
}

.footer-box ul{
list-style:none;
padding:0;
}

.footer-box ul li{
margin-bottom:10px;
}

.footer-box ul li a{
text-decoration:none;
color:#fff;
transition:.3s;
}

.footer-box ul li a:hover{
padding-left:6px;
opacity:0.8;
}

/* BOTTOM */

.footer-bottom{
background:#083b88;
text-align:center;
padding:25px 10px;
display:flex;
flex-direction:column;
align-items:center;
gap:12px;
}

.design-text{
font-size:14px;
}

.designer-logo img{
height:50px;
transition:.3s;
}

.designer-logo img:hover{
transform:scale(1.08);
}

/* ANIMATION */

.footer-anim{
opacity:0;
transform:translateY(40px);
animation:footerFade 1s ease forwards;
}

.footer-anim:nth-child(1){animation-delay:.2s;}
.footer-anim:nth-child(2){animation-delay:.5s;}
.footer-anim:nth-child(3){animation-delay:.8s;}

@keyframes footerFade{
to{
opacity:1;
transform:translateY(0);
}
}

/* MOBILE PERFECT FIX */

@media(max-width:768px){

.footer-container{
flex-direction:column;
text-align:center;
padding:0 5% 40px;
}

.footer-box{
min-width:100%;
}

.footer-bottom{
padding:20px;
}

.designer-logo img{
height:45px;
}

}



.product-hero{
padding:100px 7%;
background:#f8fbff;
}

.product-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

.product-text{
flex:1;
min-width:300px;
}

.product-text h1{
font-size:42px;
color:#0a58ca;
margin-bottom:10px;
}

.product-text h3{
font-size:22px;
color:#333;
margin-bottom:20px;
}

.product-text p{
font-size:16px;
line-height:1.8;
margin-bottom:15px;
color:#444;
}

.tagline{
margin-top:25px;
font-size:18px;
color:#0a58ca;
font-weight:600;
}

.product-image{
flex:1;
min-width:300px;
display:flex;
justify-content:center;
align-items:center;
}

.product-image img{
width:100%;
max-width:420px;
height:auto;
object-fit:contain;

/* REMOVE BOX LOOK */
box-shadow:none;
border-radius:0;
background:none;
}


/* ENTRY ANIMATION */

.product-anim-left{
opacity:0;
transform:translateX(-80px);
transition:1s ease;
}

.product-anim-right{
opacity:0;
transform:translateX(80px);
transition:1s ease;
}

.product-anim-left.show,
.product-anim-right.show{
opacity:1;
transform:translateX(0);
}

/* MOBILE */

@media(max-width:768px){

.product-container{
flex-direction:column-reverse;
text-align:center;
}

.product-text h1{
font-size:30px;
}

.product-image img{
max-width:300px;
}

}



.product-hero{
padding:100px 7%;
background:#f8fbff;
}

.product-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:70px;
flex-wrap:wrap;
}

.product-text{
flex:1;
min-width:320px;
}

.product-text h1{
font-size:38px;
color:#0a58ca;
margin-bottom:10px;
}

.product-text h3{
font-size:20px;
margin-bottom:15px;
color:#333;
}

.product-text p{
font-size:15px;
line-height:1.8;
margin-bottom:15px;
color:#444;
}

.product-list{
margin-top:15px;
padding-left:18px;
}

.product-list li{
margin-bottom:10px;
font-size:14px;
line-height:1.7;
}

/* RIGHT SIDE IMAGES */

/* RIGHT SIDE IMAGES */

.product-images{
flex:1;
min-width:320px;
display:flex;
justify-content:center;
align-items:center;
gap:40px;          /* dono images ke beech gap */
flex-wrap:nowrap;  /* side by side hi rahenge */
}

.product-images img{
width:100%;
max-width:260px;   /* desktop size control */
object-fit:contain;
box-shadow:none;
border-radius:0;
transition:0.4s;
filter:drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

.product-images img:hover{
transform:scale(1.05);
}


/* ENTRY ANIMATION */

.product-anim-left{
opacity:0;
transform:translateX(-80px);
transition:1s ease;
}

.product-anim-right{
opacity:0;
transform:translateX(80px);
transition:1s ease;
}

.product-anim-left.show,
.product-anim-right.show{
opacity:1;
transform:translateX(0);
}

/* MOBILE */

@media(max-width:768px){

.product-container{
flex-direction:column-reverse;
text-align:center;
}

.product-images{
flex-direction:row;
gap:15px;
}

.product-images img{
max-width:150px;
}

}




.product-hero{
padding:100px 7%;
background:#f8fbff;
}

.product-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:70px;
flex-wrap:wrap;
}

.product-text{
flex:1;
min-width:320px;
}

.product-text h1{
font-size:40px;
color:#0a58ca;
margin-bottom:10px;
}

.product-text h3{
font-size:22px;
margin-bottom:20px;
color:#333;
}

.product-text p{
font-size:15px;
line-height:1.8;
margin-bottom:15px;
color:#444;
}

.product-list{
margin-top:15px;
padding-left:18px;
}

.product-list li{
margin-bottom:10px;
font-size:14px;
line-height:1.7;
}

.tagline{
margin-top:20px;
font-size:18px;
color:#0a58ca;
font-weight:600;
}

/* IMAGE */

.product-image{
flex:1;
min-width:320px;
display:flex;
justify-content:center;
align-items:center;
}

.product-image img{
width:100%;
max-width:380px;
object-fit:contain;
box-shadow:none;
border-radius:0;
transition:0.4s;
filter:drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

.product-image img:hover{
transform:scale(1.05);
}

/* ANIMATION */

.product-anim-left{
opacity:0;
transform:translateX(-80px);
transition:1s ease;
}

.product-anim-right{
opacity:0;
transform:translateX(80px);
transition:1s ease;
}

.product-anim-left.show,
.product-anim-right.show{
opacity:1;
transform:translateX(0);
}

/* MOBILE */

@media(max-width:768px){

.product-container{
flex-direction:column-reverse;
text-align:center;
}

.product-text h1{
font-size:28px;
}

.product-image img{
max-width:280px;
}

}



/* Premium subtle background */
.premium-bg{
background:linear-gradient(to right,#f8fbff,#eef4ff);
}

/* Subtitle luxury feel */
.premium-subtitle{
font-size:22px;
margin-bottom:20px;
color:#444;
font-weight:500;
letter-spacing:0.5px;
}

/* Tagline highlight */
.tagline{
margin-top:25px;
font-size:18px;
color:#0a58ca;
font-weight:600;
}

/* Product layout */

.product-hero{
padding:100px 7%;
}

.product-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
flex-wrap:wrap;
}

.product-text{
flex:1;
min-width:320px;
}

.product-text h1{
font-size:42px;
color:#0a58ca;
margin-bottom:10px;
}

.product-text p{
font-size:15px;
line-height:1.9;
margin-bottom:18px;
color:#444;
}

/* IMAGE */

.product-image{
flex:1;
min-width:320px;
display:flex;
justify-content:center;
align-items:center;
}

.product-image img{
width:100%;
max-width:420px;
object-fit:contain;
box-shadow:none;
border-radius:0;
transition:0.5s;
filter:drop-shadow(0 20px 35px rgba(0,0,0,0.15));
}

.product-image img:hover{
transform:scale(1.05);
}

/* ANIMATION */

.product-anim-left{
opacity:0;
transform:translateX(-90px);
transition:1.2s ease;
}

.product-anim-right{
opacity:0;
transform:translateX(90px);
transition:1.2s ease;
}

.product-anim-left.show,
.product-anim-right.show{
opacity:1;
transform:translateX(0);
}

/* MOBILE */

@media(max-width:768px){

.product-container{
flex-direction:column-reverse;
text-align:center;
}

.product-text h1{
font-size:28px;
}

.product-image img{
max-width:280px;
}

}







.product-list{
margin-top:15px;
padding-left:18px;
}

.product-list li{
margin-bottom:10px;
font-size:14px;
line-height:1.7;
}

.premium-bg{
background:linear-gradient(to right,#f8fbff,#eef4ff);
}


.product-list{
margin-top:15px;
padding-left:0;
list-style:none;
}

.product-list li{
margin-bottom:14px;
padding:12px;
background:#ffffff;
border-left:4px solid #1f4ed8;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
border-radius:6px;
font-size:14px;
}

.premium-bg{
background:linear-gradient(to right,#f8fbff,#eef4ff);
}


.product-list{
margin-top:15px;
padding-left:0;
list-style:none;
}

.product-list li{
margin-bottom:14px;
padding:12px;
background:#ffffff;
border-left:4px solid #1f4ed8;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
border-radius:6px;
font-size:14px;
}

.premium-bg{
background:linear-gradient(to right,#f8fbff,#eef4ff);
}



.about-dots{
font-size:28px;
letter-spacing:6px;
margin:10px 0;
color:#666;
}

.about-btn{
display:inline-block;
margin-top:15px;
padding:10px 22px;
background:#0a58ca;
color:#fff;
text-decoration:none;
border-radius:30px;
font-size:14px;
transition:0.3s;
}

.about-btn:hover{
background:#083a86;
transform:translateY(-3px);
box-shadow:0 6px 15px rgba(0,0,0,0.15);
}

/*.health-slider{
overflow:hidden;
width:100%;
position:relative;
}

.health-track{
display:flex;
gap:40px;
width:max-content;
animation:scrollHealth 35s linear infinite;
}

.health-item{
min-width:150px;
text-align:center;
}

.health-item img{
width:70px;
margin-bottom:10px;
}

@keyframes scrollHealth{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


*/




.about-page{
padding:100px 8%;
background:#f8fbff;
}

.about-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

.about-left{
flex:1;
min-width:320px;
}

.about-left h1{
font-size:42px;
color:#0a58ca;
margin-bottom:20px;
font-weight:700;
}

.about-left h3{
margin-top:25px;
color:#0a58ca;
}

.about-left p{
color:#555;
line-height:1.8;
margin-bottom:15px;
}

.about-list{
margin-top:15px;
padding-left:20px;
}

.about-list li{
margin-bottom:10px;
color:#333;
}

.note{
font-size:14px;
color:#777;
margin-top:20px;
}

.about-right{
flex:1;
text-align:center;
}

.about-right img{
width:100%;
max-width:420px;
border-radius:300px;
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* ANIMATION */

.about-left,
.about-right{
opacity:0;
transform:translateY(60px);
transition:1s;
}

.about-left.show,
.about-right.show{
opacity:1;
transform:translateY(0);
}


/* MOBILE */

@media(max-width:768px){

.about-container{
flex-direction:column;
text-align:center;
}

.about-left h1{
font-size:30px;
}

}




