/* ========= GLOBAL STYLES - Shared across all pages ========= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #0a1c3a;
    line-height: 1.5;
}

/* COLOR PALETTE */
:root {
    --navy: #0a1c3a;
    --navy-light: #1e3a6b;
    --navy-soft: #eef2f9;
    --white: #ffffff;
    --sky: #7ab3c8;
    --sky-light: #d4e6f0;
    --gray-light: #eef2f9;
    --shadow-md: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ========= HEADER ========= */
.site-header .container {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--sky);
	padding: 0 70px ;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 18px 0;
}

.logo-area h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-link {
    text-decoration: none;
    color: var(--navy);
    transition: opacity 0.2s;
}

.logo-link:hover {
    opacity: 0.85;
    color: var(--sky);
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 600;
    color: var(--navy);
    font-size: 1.05rem;
    transition: all 0.2s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover, .nav-menu a.active {
    border-bottom-color: var(--sky);
    color: var(--navy-light);
}

/* ========= HERO SLIDER ========= */
.hero-slider-section {
    background-color: var(--navy-soft);
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 700px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-overlay {
    background: linear-gradient(90deg, rgba(10,28,58,0.75) 0%, rgba(122,179,200,0.3) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    padding: 2rem;
    margin-left: 5%;
    background-color: rgba(255,255,255,0.95);
    border-radius: 24px;
    border-left: 6px solid var(--sky);
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
}

.hero-content p {
    font-size: 1.2rem;
    color: #1f2e4a;
}

.mission-badge {
    background-color: var(--navy);
    color: white;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.slider-btn {
    background-color: rgba(10,28,58,0.8);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 60px;
    cursor: pointer;
    position: absolute;
    bottom: 25px;
    z-index: 10;
}
#prevSlideBtn { left: 20px; }
#nextSlideBtn { right: 20px; }

.dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
}
.dot.active-dot {
    background-color: var(--sky);
    transform: scale(1.2);
}

/* ========= BUTTONS ========= */
.btn-outline {
    display: inline-block;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    margin-top: 12px;
    cursor: pointer;
}
.btn-outline:hover {
    background-color: var(--navy);
    color: white;
}

.btn-primary {
    background: var(--navy);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}

/* ========= FOOTER ========= */
.footer {
    background-color: var(--navy);
    color: #e0e7f5;
    padding: 48px 0 24px;
    margin-top: 60px;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}
.footer-col {
    flex: 1;
    min-width: 180px;
}
.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}
.footer-col a {
    color: #ccd9f0;
    text-decoration: none;
}
.footer-col a:hover {
    color: white;
}
.copyright {
    text-align: center;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 900px) {
    .container { padding: 0 20px; }
    .header-inner { flex-direction: column; gap: 12px; }
    .nav-menu ul { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
    .hero-content h2 { font-size: 1.8rem; }
    .slider-container { height: 65vh; }
}

/* ========= SECTION UTILITIES ========= */
.section-padding {
    padding: 80px 0;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
    border-left: 5px solid var(--sky);
    padding-left: 20px;
}
.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sky);
    font-weight: 700;
    margin-bottom: 0.5rem;
}