/* Base styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Title Colors */
.title-gold {
    background: linear-gradient(90deg, #2783fb, #f4a226);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.title-pink {
    background: linear-gradient(90deg, #9b59b6, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.title-blue {
    background: linear-gradient(90deg, #005fd4, #e3ff10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    width: 100%;
    color: #1a202c;
    font-size: 16px;
    background-color: #f4f4f4;
    padding-top: 100px;
    background-image: url('../images/i-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Main Content Styles */
.main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 5%;
    text-align: left;
}

.mission-header {
    text-align: center;
    margin-bottom: 4rem;
    color: #002549;
    margin-top: 1rem;
}

.mission-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.mission-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 60rem;
    width: 100%;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
}

.mission-icon {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.mission-text {
    flex: 1;
}

.item-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.mission-text p {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    line-height: 1.5;
    color: #1a202c;
    font-weight: 600;
    margin: 0;
}

/* Mobile Responsiveness for Content */
@media (max-width: 768px) {
    .mission-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .main-content {
        padding-top: 2rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
    color: #333;
}

.header.scrolled .hamburger span {
    background-color: #333;
}

/* Logo */
.logo {
    height: 5rem;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

/* Navigation */
/* Navigation Dropdown for Mobile */
.nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 5.5rem;
    right: -100%;
    width: 14rem;
    height: auto;
    background: #ffffff;
    padding: 2rem;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: #333;
}

.nav.active {
    right: 1.5rem;
}

@media (min-width: 768px) {
    .nav {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
        padding: 0;
        right: 0;
        box-shadow: none;
        color: #ffffff;
    }
}

/* Nav links */
.nav-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    font-weight: 600;
}

.nav-link:hover {
    color: #82d616;
}

/* Button */
.explore-button {
    background: linear-gradient(135deg, #82d616 0%, #4caf50 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(130, 214, 22, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.explore-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(130, 214, 22, 0.6);
}

/* Footer */
.simple-footer {
    width: 100%;
    margin-top: auto;
    /* padding-bottom: 2rem; */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 1.5rem; */
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 37, 73, 0.2);
    /* Subtle dark line */
    max-width: 90%;
}

.footer-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #1a202c;
    font-weight: 600;
    text-align: center;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #5294d6;
    border-radius: 6px;
    border: 3px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
    background: #6697e0;
}