body{
margin:0;
font-family:'Fredoka',sans-serif;
background:#f7f7f7;
}

/* header */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:white;
position:sticky;
top:0;
z-index:100;
}

.logo{
  height:140px;
  width:auto;
}

.logo-box{
  display:flex;
  align-items:center;
  gap:10px;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#3c6edb;
font-weight:600;
}


/* hero section */

.hero{
height:450px;
background:url("images/360_F_1023556005_EEMYVFuJCNmox2BHnYRVmlCnu5RH5ELS.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
}

.hero-card{
background:white;
padding:40px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.title{
font-size:40px;
}

.c1{color:#ff5c5c}
.c2{color:#42b4ff}
.c3{color:#5cc96f}

.shop-btn{
display:inline-block;
margin-top:20px;
background:#ffa31a;
padding:12px 30px;
border-radius:10px;
color:white;
text-decoration:none;
}


/* sections */

.section-title{
font-size:32px;
margin-bottom:30px;
color:#2c5fa3;
text-align:center;
}


/* products */

.product-grid{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.product-card{
background:white;
width:280px;
border-radius:15px;
padding:20px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

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

.product-card img{
width:100%;
height:180px;
object-fit:contain;
}

.product-btn{
background:#29a34a;
color:white;
padding:10px 20px;
border-radius:8px;
text-decoration:none;
display:inline-block;
margin-top:10px;
}


/* store buttons */

.stores{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.amazon{
background:#ff9900;
padding:12px 30px;
border-radius:10px;
color:white;
}

.flipkart{
background:#2874f0;
padding:12px 30px;
border-radius:10px;
color:white;
}

.shopify{
background:#95bf47;
padding:12px 30px;
border-radius:10px;
color:white;
}


/* founder */

.founder{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.founder img{
width:120px;
border-radius:50%;
}

.instagram{
background:#e1306c;
color:white;
padding:8px 16px;
border-radius:8px;
text-decoration:none;
}


/* footer */

footer{
background:#222;
color:white;
text-align:center;
padding:20px;
margin-top:50px;
}


/* whatsapp floating button */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25d366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:1000;
transition:0.3s;
}

.whatsapp-float img{
width:35px;
}

.whatsapp-float:hover{
transform:scale(1.1);
}
/* CONTACT SECTION */

#contact{
padding:60px 20px;
background:#fff6f0;
text-align:center;
}

.contact-container{
display:flex;
justify-content:center;
margin-top:30px;
}

.contact-form{
display:flex;
flex-direction:column;
gap:15px;
width:100%;
max-width:400px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border-radius:10px;
border:1px solid #ddd;
font-family:'Fredoka', sans-serif;
font-size:14px;
}

.contact-form input:focus,
.contact-form textarea:focus{
outline:none;
border-color:#ff7a00;
}

.contact-form button{
background:#ff7a00;
color:white;
border:none;
padding:12px;
border-radius:10px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#ff5e00;
}

/* mobile responsive */

@media(max-width:768px){

header{
flex-direction:column;
padding:20px;
}

nav{
margin-top:10px;
}

.product-grid{
flex-direction:column;
align-items:center;
}

.founder{
flex-direction:column;
text-align:center;
}

.hero{
height:350px;
}

.title{
font-size:30px;
}

}
