/* Special Event Pop Section */
@media (max-width: 767px) {
    .special-event-pop {
        padding: 1.5rem 1rem;
        margin: 1.5rem 1rem;
    }
    .special-event-pop .special-event-btn {
        display: block;
        width: calc(100% - 2rem);
        margin: 0.7rem auto;
        font-size: 1.1rem;
        padding: 0.7em 1em;
    }
    .special-event-desc {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
}

@media (min-width: 768px) {
    .special-event-pop {
        padding: 2.5rem 2rem;
        margin: 2.5rem auto;
    }
    .special-event-pop .special-event-btn {
        display: inline-block;
        width: auto;
        margin: 0.7rem 0.5rem;
        padding: 0.7em 2em;
    }
}
.special-event-pop {
    background: linear-gradient(120deg, #fffbe6 70%, #ffe066 100%);
    border: 3px solid #ffd700;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(255,208,0,0.13);
    padding: 2.5rem 2rem 2.5rem 2rem;
    margin: 2.5rem auto 2.5rem auto;
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}
.special-event-icon {
    font-size: 2.8rem;
    margin-bottom: 0.7rem;
    color: #ff9800;
    text-shadow: 0 2px 8px rgba(255,208,0,0.18);
}
.special-event-pop h2 {
    color: #d97706;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.1rem;
    letter-spacing: 1px;
}
.special-event-desc {
    font-size: 1.18rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #222;
}
.special-event-btn {
    background: linear-gradient(90deg, #ffd700 60%, #ff9800 100%);
    color: #003366;
    border: 2px solid #ff9800;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 2px 12px rgba(255,208,0,0.13);
}
.special-event-btn:hover {
    background: #ff9800;
    color: #fff;
    border-color: #ffd700;
    transform: scale(1.08);
}
html {
    scroll-behavior: smooth;
}
/* Top Navigation Bar Styles */
.top-nav {
    background: linear-gradient(90deg, #003366 70%, #00509e 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 0.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .top-nav {
        padding: 0.5rem 0;
    }
    .top-nav ul {
        gap: 2.2rem;
    }
    .top-nav a {
        font-size: 1.08rem;
        padding: 0.5em 1.2em;
    }
}

/* Dropdown Styles for Downloads Nav */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown-toggle {
    cursor: pointer;
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    text-decoration: none;
    padding: 0.5em 1.2em;
    border-radius: 999px;
    transition: background 0.18s, color 0.18s, transform 0.18s;
    letter-spacing: 0.5px;
    position: relative;
    background: none;
    border: none;
}
.nav-dropdown-toggle:after {
    content: '\25BC';
    font-size: 0.7em;
    margin-left: 0.5em;
    vertical-align: middle;
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 110%;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,51,102,0.13);
    border-radius: 16px;
    padding: 0.5em 0;
    z-index: 200;
    text-align: left;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}
.nav-dropdown-menu a {
    display: block;
    color: #003366;
    background: none;
    padding: 0.7em 1.3em;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s, transform 0.18s;
    border: none;
}
.nav-dropdown-menu a:hover {
    background: #e6eef7;
    color: #00509e;
    transform: translateX(4px);
}
.top-nav li {
    margin: 0;
}
.top-nav a {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    text-decoration: none;
    padding: 0.5em 1.2em;
    border-radius: 999px;
    transition: background 0.18s, color 0.18s, transform 0.18s;
    letter-spacing: 0.5px;
    position: relative;
}
.top-nav a:hover, .top-nav a:focus {
    background: #fff;
    color: #003366;
    transform: scale(1.08);
    text-decoration: none;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f8fb;
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

header {
    background: url('images/earth.jpg') center center/cover no-repeat;
    position: relative;
    color: #fff;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    z-index: 2;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(80,80,80,0.18);
    z-index: 1;
    pointer-events: none;
}

header > * {
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    header {
        padding: 2.5rem 0 1.5rem 0;
    }
}

header h1 {
    margin: 0;
    font-size: 2.1rem;
    letter-spacing: 2px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.55), 0 1px 0 #003366;
    padding: 0.2em 0.5em;
    border-radius: 12px;
    background: rgba(0,0,0,0.18);
    display: inline-block;
}

header p {
    /* removed for inline layout */
/* Flex container for header main and subtext */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.header-flex h1 {
    margin: 0;
    font-size: 2.1rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.55), 0 1px 0 #003366;
    background: rgba(0,0,0,0.18);
    border-radius: 12px;
    padding: 0.2em 0.5em;
    display: inline-block;
    letter-spacing: 2px;
}
.header-sub {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #003366, 0 1px 0 #00509e;
    background: rgba(0,0,0,0.13);
    border-radius: 8px;
    padding: 0.2em 0.7em;
    display: inline-block;
}
}

.site-logo {
    max-width: 90px;
    height: 90px;
    display: block;
    margin: 0 auto 1rem auto;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #e6eef7;
}

@media (min-width: 768px) {
    .site-logo {
        max-width: 110px;
        height: 110px;
        margin: 0 auto 1.2rem auto;
    }
}

section {
    background: none;
    border-radius: 0;
    box-shadow: none;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

section h2 {
    color: #003366;
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
}

#images {
    background: #fff;
    padding: 2.5rem 2rem 2rem 2rem;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 8px 32px rgba(0,80,158,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#images h2 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-left: 5px solid #00509e;
    padding-left: 0.7rem;
    text-align: left;
    width: 100%;
    max-width: 900px;
}

#images img {
    margin: 0.5rem 1.2rem 0.5rem 0;
    border-radius: 18px;
    box-shadow: 0 1px 12px rgba(0,51,102,0.10);
    border: none;
    max-width: 300px;
    height: auto;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
#images img:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 4px 24px rgba(0,80,158,0.18);
}

#downloads {
    background: #f4f8fb;
    padding: 2.5rem 2rem 2rem 2rem;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

#downloads h2 {
    color: #003366;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#downloads ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
#downloads li {
    margin: 0;
}
#downloads a {
    display: inline-block;
    background: #00509e;
    color: #fff;
    border-radius: 8px;
    padding: 0.7em 1.3em;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0,51,102,0.07);
    border: none;
    transition: background 0.18s, color 0.18s, border 0.18s, transform 0.18s;
    text-decoration: none;
    font-size: 1rem;
}
#downloads a:hover {
    background: #003366;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

#important-links {
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    text-align: center;
    border-radius: 0;
}

#important-links .important-links-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

#important-links h2 {
    color: #003366;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#important-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

#important-links li {
    margin: 0;
    width: 100%;
}

#important-links a {
    display: block;
    background: #fff;
    color: #00509e;
    border-radius: 8px;
    padding: 0.7em 1em;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0,51,102,0.07);
    border: 1px solid #b3c6e0;
    transition: all 0.18s ease;
    text-decoration: none;
    font-size: 1rem;
}

@media (min-width: 768px) {
    #important-links {
        padding: 2.5rem 0 2rem 0;
        border-radius: 40px 40px 0 0;
    }
    
    #important-links .important-links-content {
        padding: 0 2rem;
    }
    
    #important-links li {
        width: auto;
    }
    
    #important-links a {
        display: inline-block;
        padding: 0.7em 1.3em;
    }
}
#important-links a:hover {
    background: #003366;
    color: #fff;
    border: 1px solid #003366;
    transform: translateY(-2px) scale(1.04);
}

#mission-vision-values {
    background: #f4f8fb;
    padding: 3rem 2rem 2rem 2rem;
    margin-top: -2rem;
    margin-bottom: 0;
    text-align: center;
}

#mission-vision-values h2 {
    color: #00509e;
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}
#mission-vision-values h2::after {
    content: '';
    display: block;
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, #00509e 60%, #003366 100%);
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
}
#mission-vision-values p {
    font-size: 1.13rem;
    font-weight: 400;
    margin: 0 0 1.2rem 0;
    text-align: center;
}

#about-us {
    background: #e6eef7;
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
    z-index: 1;
}
#about-us .about-us-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

#about-us h2 {
    color: #00509e;
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}
#about-us h2::after {
    content: '';
    display: block;
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, #00509e 60%, #003366 100%);
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
}
#about-us p {
    font-size: 1.13rem;
    font-weight: 400;
    margin: 0 0 1.2rem 0;
    text-align: center;
}

footer {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 1.1rem 0 1rem 0;
    font-size: 1rem;
    margin-top: 2.5rem;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
    letter-spacing: 0.2px;
}

/* Wavy SVG section separators */
.wavy-separator {
    display: block;
    width: 100%;
    height: 48px;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.triptych {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.triptych-item {
    flex: 1 1 250px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,51,102,0.07);
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    margin: 0;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.triptych-item h2 {
    color: #00509e;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.triptych-item h2::after {
    content: '';
    display: block;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, #00509e 60%, #003366 100%);
    margin: 0.4rem auto 0 auto;
    border-radius: 2px;
}

.triptych-item p {
    font-size: 1.08rem;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 900px) {
    .triptych {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }
    .triptych-item {
        min-width: 0;
    }
}

#map-section {
    background: #fff;
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    box-shadow: 0 8px 32px rgba(0,80,158,0.07);
    text-align: center;
    border-radius: 0;
}

#map-section .map-section-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

#map-section h2 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 1.2rem auto;
}

@media (min-width: 768px) {
    #map-section {
        padding: 2.5rem 0 2rem 0;
    }
    
    #map-section .map-section-content {
        padding: 0 2rem;
    }
    
    #map-section h2 {
        text-align: left;
        border-left: 5px solid #00509e;
        padding-left: 0.7rem;
    }
}
.coverage-map {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    box-shadow: 0 1px 12px rgba(0,51,102,0.10);
    background: #fff;
}

.cta-button {
    display: inline-block;
    margin-top: 1.3rem;
    background: #fff;
    color: #003366;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.7em 2em;
    border: 2px solid #003366;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.18s, color 0.18s, border 0.18s, transform 0.18s;
    cursor: pointer;
}
.cta-button:hover {
    background: #003366;
    color: #fff;
    border-color: #003366;
    transform: scale(1.05);
    text-decoration: none;
}

.mars-meaning {
    font-size: 1rem;
    color: #b3c6e0;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0.2rem 0 0.7rem 0;
    font-weight: 600;
    text-align: center;
}