@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
.logo{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img{
    width: 45%;
    border: 3px solid white;
    border-radius: 110px;
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
    border: 2px solid rgba(255, 255, 255, 0.18);
}
.navbar{
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    cursor: pointer;
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
    border: 2px solid rgba(255, 255, 255, 0.18);

}
.nav-list{
    width: 70%;
    display: flex;
    align-items: center;


}

.nav-list li{
    list-style: none;
    padding: 26px 30px;

}

.nav-list li a{
    text-decoration: none;
    color: white;
    font-size: 25px;
    font-family: 'Ubuntu', sans-serif;
    background-image: url(../img/4.jpeg);
    box-sizing: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-list li a:hover{
    text-decoration: underline;
    color: gray;
    font-size: 40px;
    box-shadow: gray;
    transition: ease-out 2s;
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
    border: 2px solid rgba(255, 255, 255, 0.18);
}
.rightnav{
    width: 30%;
    text-align: right;
    padding: 0 23px;
}

#search{
    padding: 5px;
    font-size: 17px;
    border: 2px solid gray;
    border-radius: 9px;
}

.background{
    background: rgba(0, 0, 0,0.7) url(../img/background.jpg);
    background-size: cover;
    background-blend-mode: darken;
}


.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.line {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin: 5px 0;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    background-color: #3498db;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.text-footer{
    text-align: center;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    justify-content: center;
    color: white;
    background-image: url(../img/4.jpeg);
    box-sizing: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}