/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}
.container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}
header {
    background-color: #1a1a5e;
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}
nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(26, 26, 94, 0.8); /* Slightly transparent */
    backdrop-filter: blur(10px); /* Blur background */
    z-index: 1000;
}
.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-right: 80px;

}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

.hero {
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 20px;
}

.contact-form {
    flex: 1;
    max-width: 45%;
    margin: 20px;
}

.contact-form h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.contact-form p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.contact-form button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.contact-image {
    flex: 1;
    max-width: 45%;
    margin: 20px;
}

.contact-image img {
    width: 100%;
    border-radius: 10px;
}

footer {
    background-color: #1a1a5e;
    color: white;
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
footer a{
    text-decoration: none;
    color: white;
}
footer p{
    padding: 15px 0 0 0;
    display: flex;
    justify-content: center;
    border-top: 1px solid #ffffff1a;
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3em;
    }

    .contact-form,
    .contact-image {
        max-width: 40%;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .contact-form,
    .contact-image {
        max-width: 80%;
        margin: 20px auto;
    }

    .contact-form h2 {
        font-size: 1.6em;
    }

    .contact-form p {
        font-size: 1.1em;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    nav {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .contact {
        flex-direction: column;
        align-items: center;
    }

    .contact-form,
    .contact-image {
        max-width: 90%;
        margin: 10px auto;
    }

    .contact-form h2 {
        font-size: 1.5em;
    }

    .contact-form p {
        font-size: 1em;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1em;
    }

    .contact-form button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .contact-image img {
        width: 100%;
    }
}
