*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#fafafa;
color:#333;
}

.logo img {
    max-height: 60px; /* Adjust as needed */
    width: auto;
    display: block;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 80px;
background:#fff;
box-shadow:0 3px 10px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:100;
}

.slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    margin-top:80px;
}

.slides{
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.slider::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.35);
    z-index:1;
}

.slider-content{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    color:#fff;
    z-index:2;
}

.slider-content h1{
    font-size:60px;
    margin-bottom:10px;
}

.slider-content h2{
    font-size:40px;
    margin-bottom:20px;
}

.slider-content p{
    font-size:20px;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:15px 40px;
    background:#d81b60;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
}

.logo{
font-size:32px;
font-weight:bold;
color:#d81b60;
letter-spacing:2px;
}

nav a{
margin-left:30px;
text-decoration:none;
color:#333;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#d81b60;
}

.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:80px;
background:linear-gradient(135deg,#ffe5ef,#ffffff);
}

.hero-text{
width:50%;
}

.hero-text h1{
font-size:55px;
margin-bottom:20px;
color:#d81b60;
}

.hero-text p{
font-size:20px;
margin-bottom:30px;
}

.btn{
background:#d81b60;
padding:15px 35px;
color:#fff;
text-decoration:none;
border-radius:30px;
font-weight:bold;
}

.hero-image img{
width:350px;
}

#product{
padding:70px;
text-align:center;
}

#product h2{
font-size:40px;
margin-bottom:40px;
color:#d81b60;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.card{
background:#fff;
border-radius:15px;
padding:20px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:180px;
height:230px;
object-fit:contain;
margin-bottom:15px;
}

.card h3{
margin:15px 0;
font-size:22px;
}

.product-card{
background:#fff;
width:350px;
margin:auto;
padding:30px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.1);
}

.product-card img{
width:180px;
margin-bottom:20px;
}

.product-card h3{
margin-bottom:15px;
}

.price{
margin:15px 0;
}

.old-price{
text-decoration:line-through;
color:#888;
font-size:20px;
margin-right:15px;
}

.new-price{
font-size:30px;
color:#d81b60;
font-weight:bold;
}

.product-card ul{
list-style:none;
text-align:left;
margin:20px 0;
}

.product-card li{
padding:8px 0;
}

.product-card button{
width:100%;
padding:15px;
border:none;
background:#d81b60;
color:#fff;
font-size:18px;
border-radius:30px;
cursor:pointer;
}

.about{
padding:80px;
background:#fff0f5;
text-align:center;
}

.about h2{
font-size:40px;
margin-bottom:20px;
color:#d81b60;
}

.about p{
max-width:800px;
margin:auto;
font-size:18px;
line-height:1.8;
}
.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width:420px;
    max-width:100%;
}

.about-content{
    flex:1;
}

.sub-title{
    color:#d4af37;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
}

.about-content h2{
    font-size:42px;
    margin:15px 0;
    color:#222;
}

.about-content p{
    color:#666;
    line-height:30px;
    margin-bottom:20px;
}

.about-content .btn{
    display:inline-block;
    padding:14px 35px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    margin-top:10px;
}

/* Feature Icons */

.about-icons{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.icon-box img{
    width:65px;
    margin-bottom:20px;
}

.icon-box h4{
    font-size:18px;
    font-weight:500;
    color:#222;
}

/* Certification */

.certification{
    margin-top:70px;
    background:#000;
    padding:45px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    text-align:center;
}

.cert-box img{
    width:95px;
}

.cert-box p{
    color:#fff;
    margin-top:15px;
    font-size:15px;
}

/* Responsive */

@media(max-width:992px){

.about-container{
    flex-direction:column;
    text-align:center;
}

.about-icons{
    grid-template-columns:repeat(2,1fr);
}

.certification{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.about-icons{
    grid-template-columns:1fr;
}

.certification{
    grid-template-columns:1fr;
}

.about-content h2{
    font-size:32px;
}

}

footer{
background:#222;
color:#fff;
padding:40px;
text-align:center;
}

.social{
margin:20px 0;
}

.social a{
color:#fff;
font-size:28px;
margin:0 15px;
transition:.3s;
}

.social a:hover{
color:#ff4b91;
}

@media(max-width:768px){

header{
padding:20px;
flex-direction:column;
}

nav{
margin-top:20px;
}

.hero{
flex-direction:column;
padding:40px 20px;
}

.hero-text{
width:100%;
text-align:center;
}

.hero-text h1{
font-size:40px;
}

.hero-image img{
width:250px;
margin-top:30px;
}
/* ================================
   RESPONSIVE DESIGN
================================ */

/* Large Tablets */
@media (max-width: 992px){

header{
    padding:15px 30px;
}

.logo img{
    max-height:55px;
}

nav a{
    margin-left:20px;
}

.slider{
    height:80vh;
}

.slider-content{
    left:8%;
}

.slider-content h1{
    font-size:42px;
}

.slider-content h2{
    font-size:28px;
}

.slider-content p{
    font-size:18px;
}

.about{
    padding:60px 30px;
}

.about-container{
    flex-direction:column;
    text-align:center;
}

.about-image img{
    width:320px;
}

.about-content h2{
    font-size:34px;
}

.certification{
    grid-template-columns:repeat(2,1fr);
}

.about-icons{
    grid-template-columns:repeat(2,1fr);
}

#product{
    padding:60px 30px;
}

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

.card img{
    width:150px;
    height:200px;
}

}


/* Mobile */
@media (max-width:768px){

header{
    flex-direction:column;
    padding:15px;
}

.logo{
    margin-bottom:15px;
}

.logo img{
    max-height:50px;
}

nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

nav a{
    margin:0;
    font-size:15px;
}

.slider{
    height:60vh;
    margin-top:100px;
}

.slider-content{
    width:90%;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    text-align:center;
}

.slider-content h1{
    font-size:30px;
}

.slider-content h2{
    font-size:20px;
}

.slider-content p{
    font-size:15px;
}

.btn{
    padding:12px 28px;
    font-size:14px;
}

.about{
    padding:50px 20px;
}

.about-image img{
    width:260px;
}

.about-content h2{
    font-size:28px;
}

.about-content p{
    font-size:15px;
    line-height:26px;
}

.about-icons{
    grid-template-columns:1fr;
}

.certification{
    grid-template-columns:1fr;
}

#product{
    padding:50px 20px;
}

#product h2{
    font-size:30px;
}

.product-grid{
    grid-template-columns:1fr;
}

.card{
    max-width:320px;
    margin:auto;
}

.card img{
    width:150px;
    height:190px;
}

footer{
    padding:30px 20px;
}

.social a{
    font-size:22px;
    margin:0 10px;
}

}


/* Small Phones */
@media (max-width:480px){

.logo img{
    max-height:45px;
}

.slider{
    height:55vh;
}

.slider-content h1{
    font-size:24px;
}

.slider-content h2{
    font-size:18px;
}

.slider-content p{
    font-size:14px;
}

.btn{
    padding:10px 22px;
    font-size:13px;
}

.about{
    padding:40px 15px;
}

.about-image img{
    width:220px;
}

.about-content h2{
    font-size:24px;
}

.about-content p{
    font-size:14px;
}

#product{
    padding:40px 15px;
}

#product h2{
    font-size:26px;
}

.card{
    max-width:100%;
}

.card img{
    width:130px;
    height:170px;
}

footer h3{
    font-size:22px;
}

footer p{
    font-size:13px;
}

}

}