:root {
    --background: #ffffff;
    --surface: #f4f6f8;
    --surface-blue: #eaf3f8;
    --surface-green: #edf7f1;
    --surface-gold: #fff6df;

    --text: #172536;
    --muted: #5f6b78;

    --navy: #06285f;
    --navy-dark: #031c45;
    --blue: #397ca8;
    --green: #318c63;
    --gold: #c89400;
    --yellow: #ffbd27;

    --primary: #06285f;
    --primary-dark: #031c45;
    --border: #d8e0e6;
    --maximum-width: 1150px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

a {
    color: inherit;
}

.container {
    width: min(90%, var(--maximum-width));
    margin: 0 auto;
}

.narrow {
    max-width: 760px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.navigation {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
}

.site-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 24px;
}

nav a {
    color: var(--muted);
    font-weight: 600;
    text-decoration: none;
}

nav a:hover {
    color: var(--primary);
}

.hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    color: var(--navy);
    background-image: url("website-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}.hero .container {
    max-width: 850px;
}
.hero h1 {
    color: var(--navy);
}

.hero .eyebrow {
    color: var(--navy);
}

.hero-text {
    color: var(--muted);
}

.eyebrow {
    margin-bottom: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.15;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
}

h2 {
    margin-bottom: 30px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.hero-text {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

.button {
    display: inline-block;
    padding: 14px 24px;
    color: var(--navy-dark);
    background: var(--yellow);
    border: 2px solid var(--navy);
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    color: white;
    background: var(--navy);
    box-shadow: 0 8px 22px rgba(6, 40, 95, 0.18);
    transform: translateY(-2px);
}

.hero .button {
    color: var(--navy-dark);
    background: var(--yellow);
    border-color: var(--yellow);
}

.hero .button:hover {
    color: white;
    background: var(--navy);
    border-color: white;
}

.section {
    padding: 100px 0;
}

.alternate {
    background: var(--surface);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    padding: 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(18, 38, 54, 0.06);
}

.card p,
.section p {
    color: var(--muted);
}

footer {
    padding: 32px 0;
    color: rgba(255, 255, 255, 0.75);
    background: #091c2b;
    text-align: center;
}

@media (max-width: 750px) {
    .navigation {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }

    nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero {
        min-height: 540px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }
}
/* Trigger Cloudflare rebuild */

#services h2 {
    text-align: center;
}
.page-header {
    padding: 110px 0;
    color: white;
    background:
        linear-gradient(
            90deg,
            rgba(5, 15, 25, 0.9),
            rgba(5, 15, 25, 0.65)
        ),
        url("hero-server-room.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header h1 {
    max-width: 800px;
}

.page-section-title {
    text-align: center;
}
.services-page .card {
    width: 100%;
    min-height: 170px;
    padding: 36px 40px;
    background: white;
    border: 1px solid var(--border);
    border-left: 8px solid var(--blue);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(6, 40, 95, 0.08);
}

.services-page .card:nth-child(3n + 1) {
    border-left-color: var(--green);
    background: var(--surface-green);
}

.services-page .card:nth-child(3n + 2) {
    border-left-color: var(--blue);
    background: var(--surface-blue);
}

.services-page .card:nth-child(3n + 3) {
    border-left-color: var(--gold);
    background: var(--surface-gold);
}

.services-page .card h3 {
    margin-bottom: 14px;
    color: var(--navy);
    font-size: 1.35rem;
    text-align: center;
}

.services-hero {
    min-height: 420px;
    text-align: center;
}

.services-hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(3rem, 6vw, 5rem);
}
.services-page .cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 950px;
    margin: 0 auto;
}

.services-page .card {
    width: 100%;
    min-height: 170px;
    padding: 36px 40px;
}
.services-page .card h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
    text-align: center;
}
.contact-hero {
    min-height: 360px;
    text-align: center;
}

.contact-hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero h1 {
    max-width: none;
    margin: 0;
    text-align: center;
    font-size: clamp(3rem, 6vw, 5rem);
}
.contact-page {
    background: var(--surface);
}

.contact-page .narrow {
    max-width: 760px;
}

.contact-form {
    padding: 42px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(18, 38, 54, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    display: block;
    width: 100%;
    padding: 14px 16px;
    color: var(--text);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: 3px solid rgba(23, 74, 114, 0.15);
}

.contact-form .button {
    width: 100%;
    padding: 15px 22px;
    border: none;
    cursor: pointer;
    font: inherit;
}

@media (max-width: 750px) {
    .contact-form {
        padding: 26px 20px;
    }
}
.about-hero {
    min-height: 360px;
    text-align: center;
}

.about-hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    max-width: none;
    margin: 0;
    text-align: center;
    font-size: clamp(3rem, 6vw, 5rem);
}

h1,
h2,
h3 {
    color: var(--navy);
}

.services-hero h1,
.about-hero h1,
.contact-hero h1 {
    color: white;
}

.section h2 {
    position: relative;
    padding-bottom: 14px;
}

.section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 14px auto 0;
    background: var(--yellow);
    border-radius: 2px;
}
#contact h2::after {
    margin: 14px 0 0;
}

.home-intro {
    background: var(--surface);
    text-align: center;
}

.home-intro h1 {
    max-width: 900px;
    margin: 0 auto 24px;
}

.home-intro p {
    max-width: 760px;
    margin: 0 auto 30px;
}
.services-hero h1,
.about-hero h1,
.contact-hero h1 {
    color: var(--navy);

}.hero .eyebrow,
.hero .hero-text {
    color: #031c45;
    background: transparent;
    border-radius: 0;
    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.95),
        0 0 8px rgba(255, 255, 255, 0.9);
}

.hero .eyebrow {
    display: inline-block;
    padding: 0;
    font-weight: 900;
}

.hero .hero-text {
    display: block;
    max-width: 650px;
    padding: 0;
    font-weight: 600;
}
.hero h1 {
    color: #06285f;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.65);
}
.about-subheading {
    color: var(--navy);
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: left;
}

.about-subheading::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 10px 0 0;
    background: var(--yellow);
    border-radius: 2px;
}
.about-page .about-subheading::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 10px 0 0 0 !important;
    background: var(--yellow);
    border-radius: 2px;
}
.about-section-title {
    margin-top: 0;
    margin-bottom: 22px;
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 700;
}
.about-page {
    padding: 55px 0;
}
.about-list {
    margin: 20px 0 28px;
    padding-left: 24px;
    color: var(--muted);
}

.about-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.about-list li::marker {
    color: var(--yellow);
}
