* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: #0f0f0f;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.95)), url("../../assets/bg-map.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
}

.navigationbar a {
    position: relative;
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    margin-left: 20px;
    padding: 8px 12px;
    border-radius: 20px;
    transition: 0.3s;
}

.navigationbar a:hover,
.navigationbar a.on {
    background: white;
    color: black;
}

.navigationbar a.nav-ctg {
    background: #4E90A0ed;
    color: white;
    padding: 10px 16px;
}
/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* Style for menu icon */
.menu-icon {
    display: none;
    font-size: 2em;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1100;
}

.menu-icon i {
    transition: opacity 0.3s ease-in-out;
}

/* Default state: Show hamburger, hide close */
.menu-icon .fa-bars {
    display: block;
}
.menu-icon .fa-times {
    display: none;
}

/* Container */
.container {
    display: flex;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.07);
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 850px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* Left and Right Sections */
.left, .right {
    flex: 1;
    padding: 25px;
}

.left {
    border-right: 2px solid rgba(255, 255, 255, 0.15);
}

/* Headings & Text */
h1 {
    font-size: 26px;
    margin-bottom: 15px;
    text-align: center;
}

p {
    font-size: 16px;
    color: #bbb;
    text-align: center;
}

/* Input Fields */
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

input::placeholder {
    color: #ccc;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #bbb;
    margin-top: 10px;
}

.checkbox-container input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #4E90A0;
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"]:checked::before {
    content: '\2713';
    font-size: 14px;
    color: #4E90A0;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

/* Submit Button */
.button {
    display: block;
    background: #4E90A0;
    color: #000;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    width: 100%;
    margin-top: 15px;
    border: none;
    cursor: pointer;
}

.button:hover {
    background: #3e717d;
}

/* Success Message */
#success-message {
    display: none;
    color: green;
    margin-top: 10px;
    text-align: center;
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 30px;
    }

    .left {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    input {
        padding: 10px;
    }

    .button {
        padding: 10px;
    }
}


@media (max-width: 858px) {
    .menu-icon {
        display: block;
    }

    /* Change to '✖' when menu is open */
    #menu-toggle:checked + .menu-icon .fa-bars {
        display: none;
    }
    #menu-toggle:checked + .menu-icon .fa-times {
        display: block;
    }

    .navigationbar {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        height: 0;
        overflow: hidden;
        display: flex;
        transition: height 0.4s ease-in-out;
    }

    .navigationbar a {
        display: block;
        padding: 15px;
        width: 80%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        border-radius: 30px;
    }
    
    .navigationbar a:last-child {
        margin-bottom: 0;
    }
    /* Slide down effect */
    #menu-toggle:checked ~ .navigationbar {
        height: 250px;
    }

    #menu-toggle:checked ~ .navigationbar a {
        opacity: 1;
    }

}