*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    background-image: url(images5.jpg);
    width: 100%;
    height: 100vh;
    background-size: cover;
    font-family: 'poppins', sans-serif;

}
nav{
    width:100%;
    height: 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color:rgba(0,0,0,0.2) ;
}

.menu a{
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 25px;
}
.logo{
    font-size: 1em;
    letter-spacing: 2px;
}
.register a{
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 20px;
    background: indianred;
    border-radius: 8px;
}
.register a:hover{
    border: 1px solid indianred;
    background: transparent;
}
.menu a:hover{
color: lightgreen;
text-decoration: underline;
}
.h-text{
position: absolute;
top: 50%;
left: 50%;
max-width: 650px;
transform:translate(-50%, -50%);
text-align: center;
color: #fff;
}
.h-text span{
    letter-spacing: 8px;
    background-color: rgba(0,0,0,0.2);
}
.h-text h1{
    font-size: 3.5em;
    margin-bottom: 15px;
    background-color: rgba(0,0,0,0.2);
}
.h-text a{
    text-decoration: none;
    background: indianred;
    padding: 10px 20px;
    color: #fff;
    letter-spacing: 5px;
    transition:0.5s;
    font-size: 20px;

}
.h-text a:hover{
    border: 1px solid indianred;
    background: transparent;
}
.features-container {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 120px;
}
.features-container h2{
    margin-top: 150px;
color: #fff;
}
.feature-box {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
    margin-top: 65px;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 40px;
    color: #333;
    margin-bottom: 10px;
}
/* contact  */
.contact-container {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}
.contact-container h2{
color: #fff;
margin-top: 150px;
}
#faq {
    /* background-color: #f1f1f1; */
    padding: 40px 20px;
    text-align: center;
}

.faq-container {
    /* max-width: 800px; */
    margin: 0 auto;
    margin-top: 180px;
}
.faq-container h2{
    color: #fff;
}
.faq-item {
    background-color: #fff;
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    margin-bottom: 10px;
}
.faq-item:hover {
    transform: translateY(-5px);
    pointer-events: cursor;
}
.contact-container form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.contact-container input,
.contact-container textarea {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-container button {
    padding: 10px;
    background-color: #45c425;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-container button:hover {
    background-color: #555;
}
.social{
    margin-left:20px;
    margin-top:15px;

}
.social a{
    display: inline-flex;
    padding: 8px;
    border: 2px solid #7cf03d;
    border-radius: 50%;
    font-size: 25px;
    color: white;
    margin: 0 8px;
transition: .5s;
}
.social a:hover{
    background: #7cf03d;
    color: #1f242d;
    box-shadow: 0 0 10px #7cf03d;
}
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}
