
*{box-sizing:border-box;font-family:Arial}
body{margin:0;background:#f4f6fb;color:#333}

.navbar{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
padding:10px 30px;
position:sticky;
top:0;
z-index:10;
}

.nav-container{
display:flex;
align-items:center;
gap:15px;
}

.logo{
height:50px;
}

.nav-title{
font-weight:bold;
font-size:20px;
}

.hero{
height:420px;
background:linear-gradient(135deg,#7b1fa2,#e91e63);
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
padding:40px;
}

.hero h1{
font-size:40px;
margin-bottom:10px;
}

.btn{
display:inline-block;
margin-top:15px;
background:white;
color:#7b1fa2;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}

section{
padding:70px 20px;
text-align:center;
}

.brands-img{
max-width:900px;
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:25px;
margin-top:40px;
}

.card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card-title{
padding:15px;
font-weight:bold;
}

footer{
background:#111;
color:white;
padding:30px;
text-align:center;
}
