body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #E6F0FA;
    background-image: linear-gradient(to bottom, #008EFE, #005598);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header {
    width: 100%;
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logoimage {
    width: 150px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
}

.navbar  ul li {
    font-size: 18px;
}

.navbar  ul  li  a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto; /* Pushes the hamburger to the far right */
    padding-right: 20px; 
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2vw;
    margin-top: 50px;
    font-family: Arial, Helvetica, sans-serif;
}

form {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    width: 500px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"]{
    width: 70%;
    padding: 10px;
    margin-bottom: 16px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="email"],
textarea {
    width: 70%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 10px;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top:10px;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none; /* Hide dropdown by default */
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    top: 100%; /* Position below the dropdown button */
    left: 0;
    min-width: 150px;
}

.dropdown-content a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

/* Show dropdown when active */
.dropdown.active .dropdown-content {
    display: block;
}

/*responsive*/
@media screen and (max-width: 768px) {
   

    .navbar ul {
        display: none; /* Hide the menu by default */
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px;
        border-radius: 5px;
    }

    .navbar ul.active {
        display: flex; /* Show the menu when active */
    }

    .hamburger {
        display: block; /* Show the hamburger button */
    }

    .form-container {
        padding-top: 5vw;
    }

    form {
        width: 300px;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        width: 90%;
    }
}