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

.about {
    padding: 40px 20px;
    text-align: center;
    height: 50vh;
}

.about p {
    font-size: 1.2em;
    margin-bottom: 20px;
    max-width: 800px;
    margin: 0 auto;
}

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

    .about p {
        font-size: 1.4em;
    }
}

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

    .about p {
        font-size: 1.3em;
    }
}

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

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

    .about p {
        font-size: 1.2em;
    }
}
