/* /Features/OurProducts/CoreProducts.razor.rz.scp.css */
.core-products[b-bp8dapzsgk] {
    margin-bottom: 3rem;
}

.core-products-grid[b-bp8dapzsgk] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .core-products-grid[b-bp8dapzsgk] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .core-products-grid[b-bp8dapzsgk] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
    }
}
/* /Features/OurProducts/ProductCard.razor.rz.scp.css */
.product-card[b-aui3krc2lg] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 0;
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    row-gap: 0.75rem;
    min-height: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .product-card[b-aui3krc2lg] {
        padding: 2rem;
    }
}

.product-card:hover[b-aui3krc2lg] {
    border-color: var(--border-strong);
    background: var(--surface-strong);
    transform: translateY(-4px);
}

.product-card h3.display[b-aui3krc2lg] {
    margin: 0;
}

.product-card[b-aui3krc2lg]  a {
    display: flex;
    justify-content: center;
}

.product-card[b-aui3krc2lg]  img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 2.5rem;
}

.product-card p[b-aui3krc2lg] {
    margin: 0;
}

.product-card > div:not(.product-card-footer)[b-aui3krc2lg] {
    margin: 0;
}

.product-card-footer[b-aui3krc2lg] {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0 0 0;
}


/*::deep .container*/
/*{*/
/*    height: 2300px;*/
/*    width: 1500px;*/
/*}*/
/* /Features/OurProducts/ProductCardCallToAction.razor.rz.scp.css */
.product-card-call-to-action[b-iu0nxjfi9u] {
    margin-top: 2rem;
}
/* /Features/Recognition/Recognition.razor.rz.scp.css */
.recognition[b-mwal69dl6o] {
    margin-bottom: 3rem;
}

.recognition-grid[b-mwal69dl6o] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

/*@media (min-width: 768px) {*/
/*    .recognition-grid {*/
/*        grid-template-columns: repeat(2, minmax(0, 1fr));*/
/*        gap: 2rem;*/
/*    }*/
/*}*/
/* /Features/Recognition/RecognitionCard.razor.rz.scp.css */
.recognition-card[b-smaslj3ea9] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: grid;
    gap: 1rem;
    min-width: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    animation-delay: var(--recognition-card-delay, 0s);
    text-align: center;
}

.recognition-card:hover[b-smaslj3ea9] {
    border-color: var(--border-strong);
    background: var(--surface-strong);
    transform: translateY(-4px);
}

.recognition-card-icon[b-smaslj3ea9] {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.recognition-card h3[b-smaslj3ea9],
.recognition-card p[b-smaslj3ea9] {
    margin: 0;
}

/* Ensure all recognition logos have the same display height for alignment */
.recognition-card img[b-smaslj3ea9] {
    height: 600px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .recognition-card[b-smaslj3ea9] {
        padding: 2rem;
    }
}
/* /Features/Shared/HeroSectionText.razor.rz.scp.css */

.headline[b-yyytfgd1pr]
{
    line-height: 1;
}

/* keeps the terminal part aligned with the H1 text */
[b-yyytfgd1pr] .terminal
{
    font-family: monospace;
    font-size: 1em;          /* match h1 exactly */
    line-height: 1;
    vertical-align: baseline;
}

/* blinking */
@keyframes blink-b-yyytfgd1pr
{
    50%
    {
        opacity: 0;
    }
}

/* replace the underscore glyph look with a real cursor bar */
[b-yyytfgd1pr] .cursor
{

    display: inline-block;
    width: 0.6em;
    height: 0.12em;
    background: currentColor;

    /* this is the key alignment fix */
    position: relative;
    top: 0.75em;

    animation: blink-b-yyytfgd1pr 1s steps(2, start) infinite;

    margin-left: 0.05em;  /* push it right */

    /* soften visibility */
    opacity: 0.7;

    /* prevents it from competing with gradient text */
    filter: brightness(0.9);
}
/* /Layout/MainLayout.razor.rz.scp.css */
.layout-root[b-b6h5o7wmya] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-b6h5o7wmya] {
    flex: 1;
}

#blazor-error-ui[b-b6h5o7wmya] {
    background: #b32121;
    color: white;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-b6h5o7wmya] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

#blazor-error-ui a[b-b6h5o7wmya] {
    color: white;
    text-decoration: underline;
}
/* /Layout/ResponsiveNavMenu.razor.rz.scp.css */
.nav-shell[b-hhpps0kdbz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

@media (min-width: 1024px) 
{
    .nav-shell[b-hhpps0kdbz] 
    {
        padding: 1rem clamp(1rem, 4vw, 3rem);
    }
}

.brand[b-hhpps0kdbz] 
{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-text[b-hhpps0kdbz] {
    display: flex;
    flex-direction: column;
}

.brand-mark[b-hhpps0kdbz] {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.brand-name[b-hhpps0kdbz] {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1;
}

/* Mobile Toggle */
.nav-toggle[b-hhpps0kdbz] {
    display: none;
}

.nav-toggle-button[b-hhpps0kdbz] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

@media (min-width: 1024px) {
    .nav-toggle-button[b-hhpps0kdbz] {
        display: none;
    }
}

.nav-toggle-button span[b-hhpps0kdbz] {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-strong);
    transition: 0.3s;
}

/* Nav Links */
.nav-links[b-hhpps0kdbz] {
    display: none; /* Hidden on mobile by default */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-alt);
    padding: 2rem 1rem;
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .nav-links[b-hhpps0kdbz] {
        display: flex;
        position: static;
        width: auto;
        background: transparent;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        border: none;
    }
}

.nav-toggle:checked ~ .nav-links[b-hhpps0kdbz] {
    display: flex;
}

.nav-links a[b-hhpps0kdbz] {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover[b-hhpps0kdbz] {
    color: var(--accent);
}

.nav-links a.active[b-hhpps0kdbz] {
    color: var(--accent);
    background: var(--accent-glow);
}

.nav-cta[b-hhpps0kdbz] {
    padding: 0.6rem 1.25rem !important;
    font-size: 0.9rem !important;
    color: var(--text-strong) !important;
}

 
