/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-zg6gp4du0q] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-zg6gp4du0q] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-kellkpiuf6],
.components-reconnect-repeated-attempt-visible[b-kellkpiuf6],
.components-reconnect-failed-visible[b-kellkpiuf6],
.components-pause-visible[b-kellkpiuf6],
.components-resume-failed-visible[b-kellkpiuf6],
.components-rejoining-animation[b-kellkpiuf6] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-kellkpiuf6],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-kellkpiuf6],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-kellkpiuf6],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-kellkpiuf6],
#components-reconnect-modal.components-reconnect-retrying[b-kellkpiuf6],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-kellkpiuf6],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-kellkpiuf6],
#components-reconnect-modal.components-reconnect-failed[b-kellkpiuf6],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-kellkpiuf6] {
    display: block;
}


#components-reconnect-modal[b-kellkpiuf6] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-kellkpiuf6 0.5s both;
    &[open] {
        animation: components-reconnect-modal-slideUp-b-kellkpiuf6 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-kellkpiuf6 0.5s ease-in-out 0.3s;
        animation-fill-mode: both;
    }
}

#components-reconnect-modal[b-kellkpiuf6]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-kellkpiuf6 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-kellkpiuf6 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-kellkpiuf6 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-kellkpiuf6 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-kellkpiuf6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-kellkpiuf6] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-kellkpiuf6] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-kellkpiuf6] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-kellkpiuf6] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-kellkpiuf6] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-kellkpiuf6] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-kellkpiuf6 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-kellkpiuf6] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-kellkpiuf6 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
/* CSS for About component */
.about-grid[b-k0nwq3a47e] {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 2rem;
    align-items: start;
}

.about-profile[b-k0nwq3a47e] {
    margin-top: .5rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 2rem;
    align-items: start;
    border-radius: 0;
    box-shadow: none;
}

.about-cards[b-k0nwq3a47e] {
    display: grid;
    gap: .8rem;
    margin-top: 1.1rem;
}

.about-photo-wrap[b-k0nwq3a47e] {
    display: flex;
    justify-content: center;
    align-items: start;
}

.about-photo[b-k0nwq3a47e] {
    width: 220px;
    aspect-ratio: 1;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
    border: 4px solid #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
    background: #dce7ff;
}

.about-stats-strip[b-k0nwq3a47e] { margin-top: 0; }

.about-stats[b-k0nwq3a47e] {
    margin-top: 1rem;
    background: #071d46;
    border-radius: 12px;
    color: #dce8ff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .8rem;
    padding: 1.2rem 1rem;
}

@media (max-width: 900px) {
    .about-grid[b-k0nwq3a47e] {
        grid-template-columns: 1fr;
    }

    .about-profile[b-k0nwq3a47e] {
        grid-template-columns: 1fr;
    }

    .about-stats[b-k0nwq3a47e] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* /Components/Pages/Calculator.razor.rz.scp.css */
body[b-43wtkpmjc1] {
	padding: 10px;
	margin: 10px;
	height: 90vh;
}
page[b-43wtkpmjc1] {
    padding: 10px;
	margin: 10px;
	height: 100vh;
	width: 95vw;
}

.page[b-43wtkpmjc1] {
	padding: 10px;
	margin: 10px;
	height: 100vh;
	width: 95vw;
}

.hh-calc[b-43wtkpmjc1] {
	width: 100%;
	height: 100vh;
	min-height: 320px;
	box-sizing: border-box;
	padding: clamp(10px, 2.2vw, 16px);
	border-radius: 18px;
	background: linear-gradient(45deg, rgba(0,0,255, 0.25), rgba(0, 255, 0, 0.25));
	border: 1px solid #11161b;
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.07);
	font-family: "Segoe UI", Arial, sans-serif;
	display: grid;
	grid-template-rows: auto 1fr;
	gap: clamp(8px, 1.6vw, 12px);
}

.hh-screen-wrap[b-43wtkpmjc1] {
	width: 100%;
	box-sizing: border-box;
	padding: clamp(8px, 1.5vw, 10px);
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(238, 251, 255, 0.92) 0%, rgba(201, 233, 248, 0.82) 100%);
	border: 1px solid rgba(138, 192, 224, 0.95);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 2px 8px rgba(31, 92, 134, 0.18);
}

.hh-screen[b-43wtkpmjc1] {
	width: 100%;
	border: 1px solid rgba(120, 171, 203, 0.9);
	border-radius: 8px;
	background: linear-gradient(180deg, #f8feff 0%, #e1f3fb 100%);
	color: #123044;
	text-align: right;
	font-family: Courier;
	font-size: clamp(1.25rem, 4.5vw, 3rem);
	font-weight: 800;
	padding: 6px 8px;
	box-sizing: border-box;
	letter-spacing: 0.02em;
	box-shadow: inset 0 1px 2px rgba(15, 71, 107, 0.14);
}

.hh-keys[b-43wtkpmjc1] {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: minmax(42px, 1fr);
	gap: clamp(6px, 1.2vw, 10px);
}

.hh-key[b-43wtkpmjc1] {
	width: 100%;
	height: 100%;
	min-height: 40px;
	border: 1px solid rgba(138, 188, 219, 0.95);
	border-radius: 10px;
	background: linear-gradient(180deg, #00fdff 0%, #2288ff 100%);
	color: #0f3044;
	font-size: 2rem;
	font-weight: 700;
	box-shadow: 0 2px 0 rgba(118, 168, 201, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.95);
	cursor: pointer;
}

	.hh-key:hover[b-43wtkpmjc1] {
		background: linear-gradient(180deg, #ffffff 0%, #e9f6fc 100%);
	}

	.hh-key:active[b-43wtkpmjc1] {
		transform: translateY(2px);
		background: linear-gradient(45deg, rgba(128,255,128,0.5) 0%, rgba(164,255,164,0.1) 50%);
		border: 2px solid #FFFFFF;
		box-shadow: 0 0 6px rgba(255, 255, 255, 0.75), 0 0 14px rgba(250, 255, 255, 0.55), 0 0 24px rgba(245, 255, 255, 0.35);
	}

.hh-key-fn[b-43wtkpmjc1] {
	background: linear-gradient(135deg, rgba(0,255,0,0.5) 0%, rgba(0,128,225,0.1) 50%);
	border-color: rgba(132, 178, 207, 0.95);
}

.hh-key-op[b-43wtkpmjc1] {
	background: linear-gradient(180deg, #fff7e9 0%, #ffe2bf 100%);
	border-color: rgba(216, 179, 132, 0.95);
	color: #4b2d0f;
}

.hh-key-eq[b-43wtkpmjc1] {
	background: linear-gradient(180deg, #e8ffef 0%, #bfffc8 100%);
	border-color: rgba(128, 183, 142, 0.95);
	color: #123b1e;
}

.hh-key-zero[b-43wtkpmjc1] {
	grid-column: span 2;
}

.calculator-page[b-43wtkpmjc1] {
    margin-top: .5rem;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
}

.calculator-shell[b-43wtkpmjc1] {
    margin-top: 1rem;
    width: min(440px, 100%);
    border: 1px solid var(--pf-border);
    border-radius: 0;
    background: #f8fbff;
    padding: 1rem;
}

.calculator-display-label[b-43wtkpmjc1] {
    display: block;
    margin-bottom: .4rem;
    font-size: .86rem;
    font-weight: 600;
    color: #1f2a46;
}

.calculator-display[b-43wtkpmjc1] {
    width: 100%;
    border: 1px solid #d5dded;
    border-radius: 0;
    background: #fff;
    color: #14213d;
    text-align: right;
    font-family: Consolas, "Courier New", monospace;
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 700;
    padding: .62rem .72rem;
    margin-bottom: .8rem;
}

.calculator-grid[b-43wtkpmjc1] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .55rem;
}

.calculator-key[b-43wtkpmjc1] {
    min-height: 44px;
    border: 1px solid #d5dded;
    border-radius: 0;
    background: #fff;
    color: #14213d;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease;
}

.calculator-key:hover[b-43wtkpmjc1] {
    background: #f2f6ff;
    border-color: #b9c8e9;
}

.calculator-key:focus-visible[b-43wtkpmjc1] {
    outline: 2px solid #93b0ea;
    outline-offset: 1px;
}

.calculator-key--function[b-43wtkpmjc1] {
    background: #eef3ff;
    color: #1d3f87;
}

.calculator-key--operator[b-43wtkpmjc1] {
    background: #f6f8fc;
    color: #1b2b4f;
}

.calculator-key--equals[b-43wtkpmjc1] {
    background: linear-gradient(180deg, #2e6cec, #1d57d6);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.calculator-key--equals:hover[b-43wtkpmjc1] {
    background: linear-gradient(180deg, #3975ef, #2660dc);
}

.calculator-key--zero[b-43wtkpmjc1] {
    grid-column: span 2;
}
/* /Components/Pages/Contact.razor.rz.scp.css */
.contact-page[b-gin58z353z] {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1rem;
}

.contact-form[b-gin58z353z] {
    margin-top: .9rem;
}

/* EditForm renders a <form> from a child component */
.contact-form[b-gin58z353z]  form {
    display: grid;
    gap: .8rem;
}

.contact-form[b-gin58z353z]  label {
    display: grid;
    gap: .35rem;
    font-weight: 600;
    font-size: .92rem;
    color: #1f2a46;
}

.contact-form[b-gin58z353z]  input,
.contact-form[b-gin58z353z]  textarea {
    width: 100%;
    border-radius: 0;
    border: 1px solid #d5dded;
    padding: .62rem .72rem;
    font: inherit;
    color: #1b2b4f;
    background: #fff;
}

.contact-form[b-gin58z353z]  input:focus,
.contact-form[b-gin58z353z]  textarea:focus {
    outline: 2px solid #bdd1ff;
    border-color: #93b0ea;
}

.contact-form[b-gin58z353z]  .validation-summary-errors {
    margin: 0 0 .5rem;
    padding: .55rem .7rem;
    border: 1px solid #f2c9c9;
    background: #fff7f7;
    color: #a22828;
}

.contact-form[b-gin58z353z]  .validation-summary-errors ul {
    margin: 0;
    padding-left: 1rem;
}

.contact-form[b-gin58z353z]  .btn[disabled] {
    opacity: .72;
    cursor: not-allowed;
}

.contact-details[b-gin58z353z] {
    border-left: 1px solid #e6ebf6;
    padding-left: 1rem;
}

.contact-details-grid[b-gin58z353z] {
    display: grid;
    gap: .7rem;
}

.contact-send-progress[b-gin58z353z] {
    margin-top: .2rem;
}

.contact-submit-error[b-gin58z353z] {
    margin: .2rem 0 0;
    color: #a22828;
    font-size: .9rem;
}

.busy-indicator[b-gin58z353z] {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: #1b2b4f;
    font-size: .9rem;
}

.busy-indicator--block[b-gin58z353z] {
    display: flex;
    width: 100%;
}

.busy-indicator-spinner[b-gin58z353z] {
    width: 1rem;
    height: 1rem;
    border: 2px solid #c8d6f2;
    border-top-color: var(--pf-primary);
    border-radius: 50%;
    animation: busy-indicator-spin-b-gin58z353z .8s linear infinite;
}

@keyframes busy-indicator-spin-b-gin58z353z {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .busy-indicator-spinner[b-gin58z353z] {
        animation: none;
    }
}

@media (max-width: 860px) {
    .contact-page[b-gin58z353z] {
        grid-template-columns: 1fr;
    }

    .contact-details[b-gin58z353z] {
        border-left: 0;
        border-top: 1px solid #e6ebf6;
        padding-left: 0;
        padding-top: 1rem;
    }
}
/* /Components/Pages/Engineering.razor.rz.scp.css */
/* CSS for Engineering component */
.engineering-page[b-6ake4tvepn] {
    margin-top: .5rem;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
}

.engineering-top[b-6ake4tvepn] {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1.2rem;
    margin-bottom: 1rem;
    align-items: center;
}

.engineering-top h3[b-6ake4tvepn] {
    margin-bottom: .45rem;
    color: #1f2a46;
}

.engineering-image-wrap[b-6ake4tvepn] {
    margin: 0;
}

.engineering-image[b-6ake4tvepn] {
    width: min(100%, 280px);
    margin-inline: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .18));
}

.engineering-subtitle[b-6ake4tvepn] {
    margin: 1.1rem 0 .75rem;
    color: #1f2a46;
    padding-bottom: .45rem;
    border-bottom: 1px solid #e0e7f5;
}

.engineering-principles-grid[b-6ake4tvepn] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
}

.engineering-principles-grid[b-6ake4tvepn]  .engineering-principle-card {
    border: 1px solid #dbe5f7;
    border-left: 4px solid #2e6cec;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.engineering-principles-grid[b-6ake4tvepn]  .engineering-principle-card:hover {
    transform: translateY(-2px);
    border-color: #bfd0f3;
    box-shadow: 0 8px 20px rgba(16, 45, 102, 0.08);
}

.engineering-principles-grid[b-6ake4tvepn]  .engineering-principle-card .service-card-icon {
    color: #2e6cec;
    margin-bottom: .55rem;
}

.engineering-principles-grid[b-6ake4tvepn]  .engineering-principle-card .service-card-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
}

/* Smaller desktop */
@media (max-width: 1200px) {
    .engineering-image[b-6ake4tvepn] {
        width: min(100%, 240px);
    }
}

@media (max-width: 980px) {
    .engineering-top[b-6ake4tvepn] {
        grid-template-columns: 1fr;
    }

    .engineering-principles-grid[b-6ake4tvepn] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .engineering-image[b-6ake4tvepn] {
        width: min(100%, 210px);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .engineering-principles-grid[b-6ake4tvepn] {
        grid-template-columns: 1fr;
    }

    .engineering-image[b-6ake4tvepn] {
        width: min(72vw, 170px);
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-hero[b-a0gbodzl57] {
    margin-top: 0;
    padding: clamp(2rem, 3.2vw, 2.7rem) clamp(1.4rem, 2.8vw, 2.4rem);
    display: grid;
    grid-template-columns: minmax(340px, 1.1fr) minmax(260px, .9fr);
    gap: clamp(1.2rem, 2.8vw, 2.2rem);
    align-items: center;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
}

.home-hero-copy[b-a0gbodzl57] { min-width: 0; }

.home-wordmark[b-a0gbodzl57] {
    margin: 0;
    font-family: "Trajan Pro", "Cinzel", "Times New Roman", Georgia, serif;
    font-size: clamp(2.45rem, 5vw, 4.35rem);
    line-height: .95;
    letter-spacing: .06em;
    color: #0a1d48;
}

.home-wordmark span[b-a0gbodzl57] { display: block; }

.home-tagline[b-a0gbodzl57] {
    margin: .9rem 0 0;
    color: #8a7752;
    font-size: .95rem;
    letter-spacing: .13em;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: .8rem;
}

.home-tagline[b-a0gbodzl57]::before,
.home-tagline[b-a0gbodzl57]::after {
    content: "";
    width: 40px;
    height: 1px;
    background: #c7b38f;
}

.home-intro[b-a0gbodzl57] {
    margin: 1.7rem 0 0;
    max-width: 540px;
    color: #1e2944;
    font-size: 1.06rem;
    line-height: 1.7;
}

.hero-actions[b-a0gbodzl57] { display: flex; gap: .85rem; margin-top: 1.5rem; }
.hero-actions .btn[b-a0gbodzl57] { min-width: 150px; text-align: center; }

.home-hero-image-wrap[b-a0gbodzl57] {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-hero-image[b-a0gbodzl57] {
    width: min(100%, 360px);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .22));
}

.home-value-strip[b-a0gbodzl57] { margin: 0; }

.home-value-grid[b-a0gbodzl57] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-value-item[b-a0gbodzl57] {
    padding: 1.45rem 1.2rem 1.55rem;
    border-right: 1px solid rgba(255, 255, 255, .11);
}

.home-value-item:last-child[b-a0gbodzl57] { border-right: none; }

.home-value-icon[b-a0gbodzl57] { display: inline-flex; color: #deebff; margin-bottom: .6rem; }

.home-value-icon svg[b-a0gbodzl57] {
    width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.8;
    stroke-linecap: round; stroke-linejoin: round; fill: none;
}

.home-value-item h3[b-a0gbodzl57] {
    margin: 0 0 .45rem;
    color: #fff;
    font-size: 1.02rem;
    letter-spacing: .02em;
}

.home-value-item p[b-a0gbodzl57] { margin: 0; color: #dbe6ff; line-height: 1.55; }

.home-services[b-a0gbodzl57] {
    margin-top: 0;
    padding: 1.75rem 1.6rem 2.1rem;
    border-radius: 0;
    box-shadow: none;
}

.home-services-grid[b-a0gbodzl57] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
}

@media (max-width: 980px) {
    .home-hero[b-a0gbodzl57] { grid-template-columns: 1fr; gap: 1.1rem; }
    .home-hero-image[b-a0gbodzl57] { width: min(64vw, 310px); }
    .home-value-grid[b-a0gbodzl57], .home-services-grid[b-a0gbodzl57] { grid-template-columns: repeat(2, 1fr); }
    .home-value-item:nth-child(2)[b-a0gbodzl57] { border-right: none; }
}

@media (max-width: 640px) {
    .home-hero[b-a0gbodzl57] { padding: 1.35rem .9rem 1.5rem; gap: .9rem; text-align: center; }
    .home-hero-copy[b-a0gbodzl57] { display: flex; flex-direction: column; align-items: center; }
    .home-hero-image-wrap[b-a0gbodzl57] { order: -1; margin: 0 auto .25rem; }
    .home-hero-image[b-a0gbodzl57] { width: min(70vw, 220px); filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .18)); }
    .home-wordmark[b-a0gbodzl57] { font-size: clamp(2rem, 11vw, 2.7rem); letter-spacing: .04em; line-height: .98; }
    .home-tagline[b-a0gbodzl57] { margin-top: .55rem; font-size: .74rem; letter-spacing: .08em; white-space: normal; gap: .45rem; }
    .home-tagline[b-a0gbodzl57]::before, .home-tagline[b-a0gbodzl57]::after { width: 20px; }
    .home-intro[b-a0gbodzl57] { margin-top: 1rem; max-width: 32ch; font-size: 1rem; line-height: 1.55; }
    .hero-actions[b-a0gbodzl57] { width: 100%; gap: .6rem; justify-content: center; }
    .hero-actions .btn[b-a0gbodzl57] { flex: 1 1 0; min-width: 0; max-width: 160px; padding: .62rem .85rem; }
    .home-value-grid[b-a0gbodzl57], .home-services-grid[b-a0gbodzl57] { grid-template-columns: 1fr; }
    .home-value-item[b-a0gbodzl57] { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .11); }
    .home-value-item:last-child[b-a0gbodzl57] { border-bottom: none; }
}

@media (max-width: 420px) {
    .home-hero-image[b-a0gbodzl57] { width: min(68vw, 180px); }
    .home-tagline[b-a0gbodzl57]::before, .home-tagline[b-a0gbodzl57]::after { display: none; }
    .hero-actions[b-a0gbodzl57] { flex-direction: column; align-items: stretch; }
    .hero-actions .btn[b-a0gbodzl57] { max-width: none; width: 100%; }
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
/* CSS for NotFound component */
.not-found-page[b-s42tg3ngmh] {
    margin-top: .5rem;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

.not-found-page .btn[b-s42tg3ngmh] {
    margin-top: .4rem;
}

.not-found-page[b-s42tg3ngmh] {
    text-align: center;
}

.not-found-page .btn[b-s42tg3ngmh] {
    margin-top: .4rem;
}
/* /Components/Pages/Services.razor.rz.scp.css */
.services-page[b-l6ap811j5b] {
	margin-top: .5rem;
	padding: 1.75rem 1.6rem 2.1rem;
	border-radius: 0;
	box-shadow: none;
}

.services-grid[b-l6ap811j5b] {
	margin-top: 1rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: .9rem;
}

.services-cta[b-l6ap811j5b] {
	margin-top: 1rem;
	border-radius: 0;
	padding: 1rem 1.15rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.services-cta h3[b-l6ap811j5b] {
	margin: 0 0 .3rem;
	color: #fff;
}

.services-cta p[b-l6ap811j5b] {
	margin: 0;
	color: #dbe6ff;
}

@media (max-width: 980px) {
	.services-grid[b-l6ap811j5b] {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.services-grid[b-l6ap811j5b] {
		grid-template-columns: 1fr;
	}

	.services-cta[b-l6ap811j5b] {
		flex-direction: column;
		align-items: start;
	}
}
/* /Components/Shared/ErrorPopup.razor.rz.scp.css */
/* CSS for ErrorPopup component */
.error-popup-backdrop[b-vzp2xcp6hw] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(7, 20, 49, 0.5);
    display: grid;
    place-items: center;
    padding: 1rem;
}

.error-popup[b-vzp2xcp6hw] {
    width: min(440px, 100%);
    background: var(--pf-surface);
    border: 1px solid #f0c8c8;
    border-left: 4px solid #c53030;
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(7, 20, 49, 0.18);
    padding: 1rem;
}

.error-popup-header[b-vzp2xcp6hw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .45rem;
}

.error-popup-header h2[b-vzp2xcp6hw] {
    margin: 0;
    font-size: 1.02rem;
    color: #8a1c1c;
}

.error-popup p[b-vzp2xcp6hw] {
    margin: 0;
    color: #1f2a46;
    line-height: 1.5;
}

.error-popup-close[b-vzp2xcp6hw] {
    border: 0;
    background: transparent;
    color: #7d1f1f;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: .2rem;
}

.error-popup-actions[b-vzp2xcp6hw] {
    margin-top: .9rem;
    display: flex;
    justify-content: flex-end;
}
/* /Components/Shared/LoadingSpinner.razor.rz.scp.css */
/* CSS for LoadingSpinner component */
.busy-indicator[b-5ndevhyfct] {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: #1b2b4f;
    font-size: .9rem;
}

.busy-indicator--block[b-5ndevhyfct] {
    display: flex;
    width: 100%;
}

.busy-indicator-spinner[b-5ndevhyfct] {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    border: 2px solid #c8d6f2;
    border-top-color: var(--pf-primary, #1b4f8a);
    border-radius: 50%;
    animation: busy-indicator-spin-b-5ndevhyfct .8s linear infinite;
}

@keyframes busy-indicator-spin-b-5ndevhyfct {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .busy-indicator-spinner[b-5ndevhyfct] {
        animation: none;
        border-color: var(--pf-primary, #1b4f8a);
    }
}
/* /Components/Shared/SectionHeader.razor.rz.scp.css */
/* CSS for SectionHeader component */
.section-header[b-4b4wns7799] {
    margin-bottom: 1rem;
}

.section-header .eyebrow[b-4b4wns7799] {
    margin: 0 0 .4rem;
    color: #6f84a8;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .13em;
}

.section-header h1[b-4b4wns7799],
.section-header h2[b-4b4wns7799] {
    margin: 0;
    color: #15254a;
    font-family: "Trajan Pro", "Cinzel", Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 1.08;
}

.section-header h3[b-4b4wns7799],
.section-header h4[b-4b4wns7799],
.section-header h5[b-4b4wns7799],
.section-header h6[b-4b4wns7799] {
    margin: 0;
    color: #1d2b4a;
    font-weight: 700;
}

.section-header .text-muted[b-4b4wns7799] {
    margin-top: .55rem;
    color: #5f6b85;
    line-height: 1.65;
}

.section-header--center[b-4b4wns7799] {
    text-align: center;
}

/* /Components/Shared/ServiceCard.razor.rz.scp.css */
/* CSS for ServiceCard component */
.info-card[b-rftk3msmam] {
    border: 1px solid #e2e8f5;
    border-radius: 10px;
    padding: 1rem;
    background: #fff;
}

.info-card h3[b-rftk3msmam] {
    margin: 0 0 0.45rem 0;
}

.info-card p[b-rftk3msmam] {
    margin: 0;
}

.info-card p + p[b-rftk3msmam] {
    margin-top: 0.35rem;
}

.info-card.service-card[b-rftk3msmam] {
    min-height: 145px;
}

.info-card.value-pill[b-rftk3msmam] {
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    color: #dfe8ff;
}

.info-card.value-pill h3[b-rftk3msmam] {
    color: #fff;
}

    .info-card.value-pill .text-muted[b-rftk3msmam] {
        color: var(--pf-text);
    }

.service-card[b-rftk3msmam] {
    border: 1px solid #e6ebf6;
    border-radius: 0;
    background: #fff;
    padding: 1rem;
}

.service-card h3[b-rftk3msmam] {
    margin: 0 0 .45rem;
    color: #1f2942;
    font-size: 1.04rem;
    line-height: 1.3;
}

.service-card p[b-rftk3msmam] {
    margin: 0;
    color: #5f6c86;
    line-height: 1.55;
}

.service-card p + p[b-rftk3msmam] {
    margin-top: .35rem;
}

.service-card--compact[b-rftk3msmam] {
    padding: .9rem 1rem;
    color: black;
    text-align: justify;
}

.service-card--icon[b-rftk3msmam] {
    min-height: 220px;
    text-align: center;
    padding: 1.2rem 1rem 1.15rem;
}

.service-card-icon[b-rftk3msmam] {
    display: inline-flex;
    color: #000000;
    margin-bottom: .75rem;
}

.service-card-icon svg[b-rftk3msmam] {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-width: 1.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.service-card a[b-rftk3msmam] {
    color: var(--pf-primary);
    font-weight: 600;
    overflow-wrap: anywhere;
    text-underline-offset: .15em;
}

.service-card a:hover[b-rftk3msmam] {
    color: var(--pf-primary-dark);
}

.service-card a:focus-visible[b-rftk3msmam] {
    outline: 2px solid #93b0ea;
    outline-offset: 2px;
}
/* /Components/Shared/StartCard.razor.rz.scp.css */
/* CSS for StartCard component */
.stat-card[b-gjqo5itb7c] {
    text-align: center;
}

.stat-card strong[b-gjqo5itb7c] {
    display: block;
    color: #fff;
    font-size: 1.08rem;
    letter-spacing: .01em;
}

.stat-card span[b-gjqo5itb7c] {
    display: block;
    margin-top: .2rem;
    color: #dbe7ff;
}
