*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.navbar-links{
    display: flex;
    column-gap: 20px;
}
.navbar-links a{
    text-decoration: none;
    color: #1D232c;
}
.navbar-links a:hover{
    text-decoration: underline;
}
.navbar-menu-toggle{
    display: none;
}
/* Side Navbar */
.side-navbar{
    background-color: #1D232c;
    width: 50%;
    height: 100%;
    position: fixed;
    top:0;
    left: -60%;
    padding: 20px;
    color: white;
    transition: 2s;
}
.side-navbar-link{
    margin-bottom: 30px;
}
.side-navbar-links a{
    text-decoration: none;
    color: white;
}
.side-navbar-links a:hover{
    text-decoration: underline;
}
.contact-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #1c1e22;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
label {
    font-weight: 500;
    color: #fff;
}
input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    /* background-color: #2a2d31; */
    font-size: 16px;
}

input::placeholder,
textarea::placeholder {
    color: #aaa;
}

button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #7289da;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5b6eae;
}
/* Footer */
.footer{
    margin-top: 20px;
    padding: 40px;
    background-color: #1D232c;
    color: #F2F4F7;
}
/* Media Query */
@media screen and (max-width:700px){
    .navbar-menu-toggle{
        display: block;
    }
    .navbar-links{
        display: none;
    }
}