*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    line-height: 1.6;
}
/*nav*/
header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #333;
}
header nav .logo{
    color: #fff;
    font-size: 24px;
    font-weight: bold;

}
header nav ul{
    list-style: none;
    display: flex;
}
header nav ul li{
    margin: 0 15px;
}
header nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/*hero section*/
#hero{
    background: url('./img/1.avif') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
#hero h1{
    font-size: 48px;
    margin-bottom: 15px
}
#hero p{
    font-size: 20px;
    margin-bottom: 20px;
}
.btn{
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;
}
.btn-second{
    background: #fff;
    color: #333;

}

/*about*/
#about{
    padding: 50px 0;
    background: #f9f9f9;
}
.about-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
}

.about-container img{
    width: 450px;
    border-radius: 8px;
}
.about-text{
    max-width: 500px;
}
/*contact*/

#contact{
    padding: 50px 0;
    background: #fff;
}
.contact-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
}
.contact-container img{
    width: 450px;
    border-radius: 8px;
}
.contact-text form{
    display: flex;
    flex-direction: column;
}
.contact-text input,
.contact-text textarea{
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
}
/*card*/
#services{
    padding: 50px;
    text-align: center;
    background: #f9f9f9;
}
.card-container{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.card{
    background: #fff;
    border-radius: 8px;
    width: 300px;
    padding: 15px;
    text-align: center;

}
.card img{
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}
.card h3{
    margin: 10px 0;
}
.card p{
    margin-bottom: 15px;
}

/*footer*/
footer{
    background: #333;
    color: #fff;
    padding: 30px 50px;
}
.footer-container{
    display: flex;
    justify-content: space-between;
}
.footer-container ul{
    list-style: none;

}
.footer-container ul li a{
    color: #fff;
    text-decoration: none;
}