
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    line-height: 1.6;

}
header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: black;
}
header nav .logo{
    color: white;
    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: white;
    text-decoration: none;
    font-size: 16px;

}
#hero{
    background: url('./1.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
#hero h1{
    font-size: 48px;
    margin-bottom: 15px;
} 
#hero p{
    font-size: 20px;
    margin-bottom: 20px;
}
.btn{
    display:inline-block;
    background: red;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;

}
.btn-second{
    background: white;
    color: black;
}
#about{
    padding: 50px 0;
    background: white;

}
.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{
    padding: 50px 0;
    background: white;
}
.contact-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: auto;

}
.contact-container img{
    width: 400px;
    border-radius: 8px;
}
.contact-text form{
    display: flex;
    flex-direction: column;
}
.contact-text input,
.contact-text textarea{
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;

}
#services{
    padding: 50px;
    text-align: center;
    background: whitesmoke;

}
.card-container{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.card{
    background: white;
    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{
    background: black;
    color: white;
    padding: 30px 50px;

}
.footer-container{
    display: flex;
    justify-content: space-between;

}
.footer-container ul{
    list-style: none;
}
.footer-container ul li a{
    color: white;
    text-decoration: none;
    
}