*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}


body{
background:#fff;
color:#333;
}



header{

height:80px;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 8%;
position:sticky;
top:0;
background:white;
z-index:10;
box-shadow:0 3px 15px #ddd;

}


.logo h2{

color:#e91e63;
letter-spacing:2px;

}


.logo span{

font-size:12px;

}



nav a{

text-decoration:none;
margin-left:25px;
color:#333;
font-weight:600;

}




.hero{

min-height:90vh;
display:flex;
align-items:center;
padding:5% 8%;
background:
linear-gradient(120deg,#fff0f6,#ffffff);

}


.hero-text{

width:50%;

}


.hero h1{

font-size:55px;
color:#c2185b;

}



.hero p{

font-size:20px;
margin:25px 0;

}


.hero-img{

width:50%;

}


.hero-img img{

width:100%;
border-radius:30px;

}



.btn,button{

display:inline-block;
padding:14px 25px;
background:#e91e63;
color:white;
border-radius:30px;
text-decoration:none;
border:none;
cursor:pointer;

}



.outline{

background:white;
color:#e91e63;
border:2px solid #e91e63;

}




section{

padding:70px 8%;

}



h2{

text-align:center;
font-size:38px;
margin-bottom:30px;

}



.cards,
.product-grid,
.stats{

display:flex;
gap:25px;
justify-content:center;

}



.cards div,
.product-card{

padding:30px;
border-radius:20px;
background:white;
box-shadow:0 10px 30px #ddd;
text-align:center;

}



.product-card img{

width:100%;
height:200px;
object-fit:cover;
border-radius:15px;

}



.business{

background:#fff0f6;
display:flex;
justify-content:space-between;
align-items:center;

}


.network{

text-align:center;

}


.circle{
    
background:#e91e63;
color:white;
padding:40px;
border-radius:50%;
display:inline-block;

}


.network span{

display:inline-block;
padding:20px;
background:white;
margin:10px;
border-radius:20px;

}




.stats div{

text-align:center;
background:#f8f8f8;
padding:30px;
width:200px;
border-radius:20px;

}



.contact form{

max-width:500px;
margin:auto;
display:grid;
gap:15px;

}


input,select{

padding:15px;
border-radius:10px;
border:1px solid #ccc;

}



footer{

background:#222;
color:white;
text-align:center;
padding:30px;

}





@media(max-width:768px){


header{

flex-direction:column;
height:auto;
padding:20px;

}


nav{

margin-top:20px;

}


.hero,
.business{

flex-direction:column;

}


.hero-text,
.hero-img{

width:100%;
}


.hero h1{

font-size:38px;

}


.cards,
.product-grid,
.stats{

flex-direction:column;

}

}

.counter{

font-size:45px;
color:#e91e63;
font-weight:700;

}


.stats div{

transition:0.4s;

}


.stats div:hover{

transform:translateY(-10px);

box-shadow:0 15px 30px #ddd;

}

.product-card{

overflow:hidden;
position:relative;
transition:.4s;

}


.product-card img{

height:260px;
width:100%;
object-fit:cover;
transition:.5s;

}



.product-card:hover img{

transform:scale(1.08);

}



.small-btn{

display:inline-block;
margin-top:15px;
padding:10px 20px;
background:#e91e63;
color:white;
border-radius:20px;
text-decoration:none;

}

.trust{

background:#fff5fa;
text-align:center;

}


.trust-box{

display:flex;
justify-content:center;
gap:30px;

}


.trust-box div{

background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px #ddd;

}


@media(max-width:768px){

.trust-box{
flex-direction:column;
}

}