* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

header{
    background: #222;
    color: #fff;
    padding: 1rem 0;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.navbar .nav-links{
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a{
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}

.nav-links a:hover{
    color: #ff9800;
}

.hero{
    height: 90dvh;
    background: url("https://plus.unsplash.com/premium_photo-1681487178876-a1156952ec60?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")
    no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
}
.hero h1{
    font-size: 2.5rem;
    margin-bottom: 2rem;
}


.btn{
    background:#ff9800;
    color: #fff;
    text-decoration: none;
    padding: .7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all .3s;
}

.btn:hover{
    background: #e68900;
}

section{
    padding: 4rem 2rem;
    text-align: center;
}

.about, .contact{
    background: #fff;
}

.services{
    background: #eee;
}

h2{
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.service-card{
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 300px;
    transition: all .3s;
}

.service-card:hover{
    transform: translateY(-5px);
}

.service-card img{
    width: 100%;
    height: 175px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card h3{
    margin-bottom: .5rem;
}

.contact p{
    margin-bottom: 30px;
}

footer{
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem;
}





