/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}


.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}
.nav-links {
    list-style: none;
    display: flex;
}
.nav-links li {
    margin-left: 20px;
}

.nav-links a:hover {
    color: yellow;
    text-decoration: underline;
    background-color: black;
}




/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--background-dark);
        color: var(--text-light);
    }
    .contact-wrapper-box {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
}

/* Global Styling */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
.nav-box {
    background: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0px 4px 10px var(--shadow);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo-box {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
}
.nav-links-box {
    list-style: none;
    display: flex;
}
.nav-links-box li {
    margin-left: 20px;
}
.nav-links-box a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 400;
    transition: 0.3s;
}
.nav-links-box a:hover {
    color: yellow;
}

/* Contact Section */
.contact-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}
.contact-wrapper-box {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px var(--shadow);
}
.form-header h1 {
    text-align: center;
    color: var(--primary-color);
}
.input-box,
.textarea-box {
    margin-top: 15px;
}
.input-box input,
.textarea-box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.button-box button {
    background-color: #0077b3;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    color: var(--text-light);
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
.button-box button:hover {
    background: #0056b3;
}

/* Footer */
.footer-box {
    background: var(--primary-color);
    padding: 15px 0;
    text-align: center;
    color: var(--text-light);
    margin-top: 40px;
}


