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

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; 
}

.text-box {
    width: 80%;
    margin: 80px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    
}

.about-text{
    text-align: left;
    justify-content: center;
   
}

.about-text h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    justify-content: center;
}

/* 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 {
        flex-direction: column;
        gap: 10px;
    }
    .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 */
    }
}