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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #FAF9F5;
    color: #01152B;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #FAF9F5;
    border-bottom: 1px solid #002B4C;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0dpx;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #01152B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #002B4C;
    transform: translateY(-1px);
}

.logo-emblem {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #01152B;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #01152B;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-links a:hover {
    color: #002B4C;
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
    position: relative;
    overflow: hidden;
    background: #FAF9F5;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease;
    color: #01152B;
}

.gradient-text {
    color: #002B4C;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.2s both;
    color: #01152B;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #1B3A2F;
    color: #FAF9F5;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    border: 2px solid #1B3A2F;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 58, 47, 0.3);
    background: #163129;
    border-color: #163129;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 60px;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #002B4C;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #01152B;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -1px;
    color: #01152B;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: #FAF9F5;
    border: 2px solid #002B4C;
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    background: #FAF9F5;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(1, 21, 43, 0.15);
}

.service-card:hover h3,
.service-card:hover p {
    color: #01152B;
}

.service-icon {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #002B4C, #004A7C);
    color: #FAF9F5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 43, 76, 0.2);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #01152B;
    transition: color 0.4s ease;
}

.service-card p {
    line-height: 1.7;
    font-size: 15px;
    color: #01152B;
    opacity: 0.8;
    transition: color 0.4s ease;
}

.service-card:hover p {
    opacity: 0.9;
}

.ticker {
    background: #01152B;
    padding: 30px 60px;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 16px;
}

.ticker-symbol {
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    min-width: 50px;
}

.ticker-name {
    font-weight: 300;
    font-size: 14px;
    min-width: 20px;
    color: #B0B0B0;
}

.ticker-price {
    font-weight: 400;
    color: #FFFFFF;
    min-width: 50px;
    text-align: right;
    font-size: 16px;
}

.ticker-change {
    font-weight: 600;
    font-size: 14px;
    min-width: 70px;
    text-align: right;
}

.ticker-change.positive {
    color: #00C853;
}

.ticker-change.negative {
    color: #FF3B30;
}

.ticker-change.neutral {
    color: #888;
}

.about-section {
    padding: 120px 60px;
    max-width: 1200px;
    margin: 0 auto;
    background: #FAF9F5;
}

.about-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #01152B;
    text-align: left;
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #01152B;
    margin-bottom: 30px;
    text-align: left;
}

.careers-hero {
    padding: 120px 60px 40px;
    background: #FAF9F5;
    color: #01152B;
    text-align: center;
}

.careers-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #01152B;
}

.careers-content p {
    font-size: 20px;
    color: #01152B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.8;
}

.careers-section {
    padding: 80px 60px;
    background: #FAF9F5;
}

.careers-main {
    max-width: 1000px;
    margin: 0 auto;
}

.careers-main h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #01152B;
    text-align: left;
}

.team-listing {
    background: #FFFFFF;
    border: 2px solid #002B4C;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-listing:hover {
    box-shadow: 0 8px 25px rgba(1, 21, 43, 0.1);
    transform: translateY(-2px);
}

.team-listing h3 {
    font-size: 24px;
    font-weight: 700;
    color: #01152B;
    margin-bottom: 20px;
}

.team-description {
    font-size: 16px;
    line-height: 1.6;
    color: #01152B;
    margin-bottom: 25px;
}

.explore-button {
    display: inline-block;
    background: #1B3A2F;
    color: #FAF9F5;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #1B3A2F;
}

.explore-button:hover {
    background: #163129;
    border-color: #163129;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 58, 47, 0.3);
}

.apply-button {
    display: inline-block;
    background: #1B3A2F;
    color: #FAF9F5;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #1B3A2F;
}

.apply-button:hover {
    background: #163129;
    border-color: #163129;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 58, 47, 0.3);
}

.general-application {
    background: #01152B;
    color: #FAF9F5;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.general-application h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FAF9F5;
}

.general-application p {
    font-size: 16px;
    line-height: 1.6;
    color: #FAF9F5;
    margin-bottom: 25px;
}

.general-application .apply-button {
    background: #FAF9F5;
    color: #002B4C;
    border-color: #FAF9F5;
}

.general-application .apply-button:hover {
    background: #E8E8E8;
    border-color: #E8E8E8;
    color: #002B4C;
}

.contact-section {
    padding: 80px 60px;
    background: #002B4C;
    color: #FAF9F5;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FAF9F5;
}

.contact-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #B0B0B0;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FAF9F5;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #1B3A2F;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    background: #FAF9F5;
    color: #01152B;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1B3A2F;
    box-shadow: 0 0 0 3px rgba(27, 58, 47, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: #1B3A2F;
    color: #FAF9F5;
    border: 2px solid #1B3A2F;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: start;
}

.submit-button:hover {
    background: #163129;
    border-color: #163129;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 58, 47, 0.3);
}

footer {
    padding: 80px 60px 40px;
    text-align: center;
    border-top: 2px solid #002B4C;
    background: #FAF9F5;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    list-style: none;
}

.footer-links a {
    color: #01152B;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #002B4C;
}

.copyright {
    opacity: 0.6;
    font-size: 13px;
    color: #01152B;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(0, 43, 76, 0.5);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
    box-shadow: 0 0 3px rgba(0, 43, 76, 0.3);
}

.particle:nth-child(odd) {
    width: 2px;
    height: 2px;
    background: rgba(0, 43, 76, 0.4);
    animation-duration: 10s;
    animation-delay: -2s;
}

.particle:nth-child(3n) {
    width: 4px;
    height: 4px;
    background: rgba(0, 43, 76, 0.6);
    animation-duration: 12s;
    animation-delay: -4s;
    box-shadow: 0 0 4px rgba(0, 43, 76, 0.4);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-15px) translateX(5px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-25px) translateX(-3px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-10px) translateX(-8px);
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .stats {
        gap: 40px;
        padding: 0 30px;
    }

    .services {
        padding: 80px 30px;
    }

    .section-title {
        font-size: 36px;
    }
}
