/* styles.css  -- updated 1/19/2026 */

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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #eaeecfcd;
}

.container { width: 90%; margin: auto; }

/* Header */
.site-header {
    background: #002855; /* 002855 */
    color: #d0ff00ff;
    padding: 1rem 0;
}

.site-header h1 {
    font-size: 3.5rem;
}
.site-header nav a {
    color: #fff;
    margin-right: 1rem;
    text-decoration: none;
    font-weight: bold;
}
.site-header nav a:hover {
    text-decoration: underline;
}

/* Hero */
.hero-section {
    background: #f7f7f7;
    padding: 3rem 0;
    text-align: center;
}
.hero-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Sections */
.section {
    padding: 2rem 0;
}
.bg-light { background: #fafafa; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #0055a5;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}
.btn-primary:hover {
    background: #003e7e;
}

/* Footer */
.site-footer {
    background: #002855;
    color: #ccc;
    padding: 1rem;
    text-align: center;
}

/* Scrolling Image Band */
.image-scroll {
    overflow: hidden;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.image-scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-images 45s linear infinite;
}

.image-scroll img {
    height: 160px;
    width: auto;
    margin-right: 40px;
    opacity: 0.9;
}

/* Adjust height for larger displays */
@media (min-width: 1200px) {
    .image-scroll img {
        height: 200px;
    }
}

@keyframes scroll-images {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
