*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f4f6f8;
color:#333;
}

/* Navbar */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 60px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
font-size:24px;
font-weight:bold;
color:#ff5a00;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
align-items:center;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
}

.login-btn{
background:#ff5a00;
color:white;
border:none;
padding:8px 16px;
border-radius:5px;
cursor:pointer;
}

/* Hero */

.hero{
text-align:center;
padding:80px 20px;
background:linear-gradient(120deg,#ff7a18,#ff5a00);
color:white;
}

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

.hero input{
margin-top:20px;
padding:12px;
width:300px;
border:none;
border-radius:5px;
}

/* Categories */

.categories{
padding:60px;
text-align:center;
}

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

.category{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 12px rgba(0,0,0,0.1);
cursor:pointer;
transition:all 0.3s ease;
}

.category:hover{
transform:translateY(-5px);
}

.category i{
font-size:30px;
color:#ff5a00;
margin-bottom:10px;
}

/* How it Works */

.how{
padding:70px;
background:white;
text-align:center;
}

.steps{
display:flex;
justify-content:center;
gap:60px;
margin-top:30px;
flex-wrap:wrap;
}

.step{
max-width:200px;
}

.step i{
font-size:40px;
color:#ff5a00;
margin-bottom:10px;
}

/* Reviews */

.reviews{
padding:60px;
background:#f4f6f8;
text-align:center;
}

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

.review-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 12px rgba(0,0,0,0.1);
}

/* Services */

.services{
padding:60px;
text-align:center;
}

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

.service-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
transition:all 0.3s ease;
}

.service-card:hover{
transform:translateY(-10px) scale(1.03);
box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.service-card button{
margin-top:10px;
padding:10px 18px;
border:none;
background:#ff5a00;
color:white;
border-radius:5px;
cursor:pointer;
}

/* Modal */

.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
justify-content:center;
align-items:center;
}

.modal-content{
background:white;
padding:30px;
border-radius:10px;
display:flex;
flex-direction:column;
gap:10px;
width:300px;
}

.close{
cursor:pointer;
font-size:20px;
align-self:flex-end;
}

.confirm-btn{
background:#ff5a00;
color:white;
border:none;
padding:10px;
border-radius:5px;
cursor:pointer;
}
/* Footer */

.footer{
background:#1f0d03;
color:#fff;
padding:60px 20px 20px;
}

/* Container */

.footer .container{
max-width:1200px;
margin:auto;
}

/* Grid Layout */

.footer-content{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
margin-bottom:40px;
}

/* Titles */

.footer-section h3,
.footer-section h4{
margin-bottom:15px;
color:#ff5a00;
}

/* Paragraph */

.footer-section p{
color:#ccc;
font-size:14px;
line-height:1.6;
}

/* List */

.footer-section ul{
list-style:none;
padding:0;
}

.footer-section ul li{
margin-bottom:10px;
}

/* Links */

.footer-section a{
color:#ccc;
text-decoration:none;
font-size:14px;
transition:all 0.3s ease;
}

.footer-section a:hover{
color:#ff5a00;
padding-left:5px;
}

/* Bottom Section */

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.1);
padding-top:20px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:15px;
}

/* Bottom Links */

.footer-links{
display:flex;
gap:20px;
}

.footer-links a{
color:#ccc;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.footer-links a:hover{
color:#ff5a00;
}

/* Mobile */

@media(max-width:768px){

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

.footer-links{
justify-content:center;
}

}

#search{
padding:12px;
width:320px;
border-radius:30px;
border:1px solid #ddd;
outline:none;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}