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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-image: url(images/Another.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    line-height: 1.6;
}

/* Dark overlay effect */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 20, 0.7);
    z-index: -1;
}

/* Header */
header {
    text-align: center;
    padding: 30px 20px;
    background: rgba(10, 15, 35, 0.75);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    color: #7fdcff;
    text-shadow: 0 0 10px #00bfff, 0 0 20px #008cff;
    letter-spacing: 2px;
}

header h3 {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #d9f6ff;
    font-weight: normal;
}

/* Navigation */
nav ul.no-bullets {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 18px;
    border: 1px solid rgba(127, 220, 255, 0.4);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    transition: 0.3s ease;
    display: inline-block;
}

nav ul li a:hover {
    background: #00bfff;
    color: #081120;
    box-shadow: 0 0 15px #00bfff;
    transform: translateY(-2px);
}

/* Main layout */
main {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

/* General section styling */
section {
    background: rgba(13, 20, 40, 0.72);
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

section h2,
section h3 {
    color: #7fdcff;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
}

section p {
    color: #f1f7ff;
    font-size: 1rem;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 60px 30px;
}

.hero h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.feature {
    flex: 1 1 250px;
    background: rgba(255, 255, 255, 0.06);
    padding: 22px;
    border-radius: 15px;
    transition: 0.3s ease;
    border: 1px solid rgba(127, 220, 255, 0.15);
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.35);
    background: rgba(0, 191, 255, 0.09);
}

.feature h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Mission list */
.mission-lookup ul {
    list-style: none;
    margin-top: 15px;
    padding-left: 0;
}

.mission-lookup ul li {
    margin-bottom: 12px;
}

.mission-lookup ul li a {
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    display: inline-block;
    border-radius: 10px;
    transition: 0.3s ease;
    border: 1px solid rgba(127, 220, 255, 0.2);
}

.mission-lookup ul li a:hover {
    background: #7fdcff;
    color: #081120;
    box-shadow: 0 0 15px #7fdcff;
}

/* Form section */
.form-section {
    text-align: center;
}

.form-section input {
    width: 100%;
    max-width: 350px;
    padding: 12px 14px;
    margin: 15px 10px 10px 0;
    border: none;
    border-radius: 10px;
    outline: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
}

.form-section button {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #00bfff, #6a5cff);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 191, 255, 0.4);
}

.form-section button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(106, 92, 255, 0.7);
}

/* Footer */
footer.contact {
    text-align: center;
    padding: 30px 20px;
    background: rgba(10, 15, 35, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

footer h3 {
    color: #7fdcff;
    margin-bottom: 12px;
}

footer p {
    margin: 8px 0;
    color: #e7f6ff;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    .hero h3 {
        font-size: 1.6rem;
    }

    nav ul.no-bullets {
        flex-direction: column;
        align-items: center;
    }

    .features {
        flex-direction: column;
    }

    .form-section input {
        width: 100%;
        margin-right: 0;
    }
}