/* /Layout/Footer.razor.rz.scp.css */
/* Footer container */
.site-footer[b-412wmyyltz] {
    background: #234b4d; /* match your header palette, adjust as needed */
    color: #f2efe7;
    border-top: 1px solid #0b1919;
    padding: 1rem 0 1.25rem;
}

/* Layout rows */
.footer-row[b-412wmyyltz] {
    max-width: 740px;
    margin-inline: auto;
    padding-inline: 1rem;
}

    /* Row 1: 4 equally spaced icons */
    .footer-row.social[b-412wmyyltz] {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
        align-items: center;
        justify-items: center; /* centers icons in their grid cells */
        margin-bottom: .75rem;
        /*background-color: rgba(255, 255, 255, 0.37);*/
        border-radius: 13px;
    }

/* Icon links */
.social-link[b-412wmyyltz] {
    color: #c5c5c5; /* default icon color (via currentColor) */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform .08s ease, color .15s ease, background-color .15s ease;
}

    .social-link:hover[b-412wmyyltz],
    .social-link:focus-visible[b-412wmyyltz] {
        /*color: #f5c33a;*/ /* hover/active color */
        background-color: rgba(245, 195, 58, 0.37);
        /*background: #1f1f1f;*/
        outline: none;
    }

    .social-link svg[b-412wmyyltz] {
        width: 50px;
        height: 50px;
        fill: currentColor; /* icon inherits link color */
    }

/* Row 2: centered logo */
.footer-row.brand[b-412wmyyltz] {
    display: grid;
    place-items: center;
}

.footer-logo img[b-412wmyyltz] {
    height: 45px; /* adjust to your logo */
    width: auto;
    display: block;
    /*filter: none;*/ /* remove if using colored logo */
}

/* Small screens: keep equal spacing, add breathing room */
@media (max-width: 480px) {
    .footer-row.social[b-412wmyyltz] {
        gap: .75rem;
    }
}
/* /Layout/Header.razor.rz.scp.css */
.container[b-1x3qhunhry] {
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-header[b-1x3qhunhry] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #234b4d;
    color: #f2efe7;
    border-bottom: 1px solid #0b1919;
}

/* Layout: logo left, links push to the right */
.nav[b-1x3qhunhry] {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 64px;
}

/* ----- Logo (left) ----- */
.logo[b-1x3qhunhry] {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

    .logo img[b-1x3qhunhry] {
        height: 48px;
        width: auto;
        display: block;
    }

/* Optional brand text next to logo image */
.brand-text[b-1x3qhunhry] {
    margin-left: .5rem;
    font-weight: 700;
}

/* Links (right on desktop) */
.links[b-1x3qhunhry] {
    margin-left: auto; /* pushes links to the right on desktop */
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-item[b-1x3qhunhry] {
    padding: .5rem .5rem;
    font-weight:bold;
}

    .nav-item[b-1x3qhunhry]  a {
        color: #4ea6a7;
        padding: .5rem .5rem;
        text-decoration: none;
        display: flex;
        align-items: baseline;
    }

        .nav-item[b-1x3qhunhry]  a.active {
            text-decoration: underline;
            padding: .5rem .5rem;
            color: #5fcccd;
            text-underline-offset: 0.2em;
        }

        .nav-item[b-1x3qhunhry]  a:hover {
            text-decoration: underline;
            padding: .5rem .5rem;
            color: #5fcccd;
            text-underline-offset: 0.2em;
        }

/* NavLink base + states */
.link[b-1x3qhunhry] {
    color: #c5c5c5; /* default */
    text-decoration: none;
    padding: .25rem .5rem;
    border-radius: 6px;
}

    /* hover/focus = yellow text */
    .link:hover[b-1x3qhunhry],
    .link:focus[b-1x3qhunhry] {
        color: #f5c33a;
        background: transparent; /* remove yellow bg for contrast */
    }

    /* selected (NavLink activeClass) = yellow text */
    .link.active[b-1x3qhunhry] {
        color: #f5c33a;
        background: transparent; /* keep clean; or set a dark bg if you prefer */
    }

/* Mobile menu button */
.menu-btn[b-1x3qhunhry] {
    background: none;
    border: 0;
    color: inherit;
    font-size: 1.75rem;
    margin-left: auto; /* push icon to the far right */
    display: none; /* shown on mobile via media query */
}

/* Accessibility helper (if you include a sr-only span) */
.sr-only[b-1x3qhunhry] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,1px,1px);
    white-space: nowrap;
    border: 0;
}

/* -------- Mobile behaviour -------- */
@media (max-width: 768px) {
    .nav[b-1x3qhunhry] {
        position: relative;
    }

    /* Show icon, hide inline links bar */
    .menu-btn[b-1x3qhunhry] {
        display: inline-block;
    }

    .links[b-1x3qhunhry] {
        /* full-screen overlay menu */
        position: fixed;
        inset: 0;
        margin-left: 0;
        background: rgba(38, 38, 38, 0.97);
        display: none; /* hidden by default */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        z-index: 50;
    }

        .links.open[b-1x3qhunhry] {
            display: flex; /* shown when Header sets "open" class */
        }

    .nav-item[b-1x3qhunhry] {
        padding: 0;
    }

        .nav-item[b-1x3qhunhry]  a {
            font-size: 1.2rem;
            padding: .75rem 1rem;
        }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-9mgw5gm7qg] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-9mgw5gm7qg] {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    flex: 1;
    color: #f2efe7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.content[b-9mgw5gm7qg] {
    max-width: 800px;
    width: 100%;
}
.sidebar[b-9mgw5gm7qg] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

:root[b-9mgw5gm7qg] {
    --bg: #0b0f14;
    --bg-soft: #0f141b;
    --card: #111827;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --brand: #60a5fa;
    --brand-2: #34d399;
    --ring: #93c5fd44;
    --shadow: 0 10px 30px rgba(0,0,0,.35);
    --radius: 16px;
}

*[b-9mgw5gm7qg] {
    box-sizing: border-box;
}

html[b-9mgw5gm7qg], body[b-9mgw5gm7qg] {
    height: 100%;
}

body[b-9mgw5gm7qg] {
    margin: 0;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a[b-9mgw5gm7qg] {
    color: var(--brand);
    text-decoration: none;
}

    a:hover[b-9mgw5gm7qg] {
        text-decoration: underline;
    }

.container[b-9mgw5gm7qg] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
header[b-9mgw5gm7qg] {
    position: sticky;
    top: 0;
    backdrop-filter: saturate(140%) blur(8px);
    /*background: color-mix(in oklab, var(--bg-soft) 70%, transparent);*/
    border-bottom: 1px solid #1f2937;
    z-index: 50;
}

.nav[b-9mgw5gm7qg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
}

.brand[b-9mgw5gm7qg] {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    letter-spacing: .2px;
}

    .brand .dot[b-9mgw5gm7qg] {
        width: .7rem;
        height: .7rem;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--brand), var(--brand-2));
        box-shadow: 0 0 0 .2rem var(--ring);
    }

.nav a[b-9mgw5gm7qg] {
    color: var(--text);
    font-size: .95rem;
}

.nav-links[b-9mgw5gm7qg] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero */
.hero[b-9mgw5gm7qg] {
    padding: 5rem 0 3rem;
    text-align: center;
}

.eyebrow[b-9mgw5gm7qg] {
    display: inline-block;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .8rem;
    letter-spacing: .3px;
    background: #0b1220;
    border: 1px solid #1f2937;
    color: var(--muted);
}

h1[b-9mgw5gm7qg] {
    margin: 1rem auto .75rem;
    font-size: clamp(2rem, 4vw + .5rem, 3.2rem);
    line-height: 1.1;
    letter-spacing: .2px;
}

.lead[b-9mgw5gm7qg] {
    max-width: 850px;
    margin: 0.5rem auto 1.5rem;
    color: var(--muted);
    font-size: clamp(1rem, 1.2vw + .8rem, 1.125rem);
}

.lead-compact[b-9mgw5gm7qg] {
    margin: .5rem 0 1rem;
}

.cta-row[b-9mgw5gm7qg] {
    display: flex;
    gap: .8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.btn[b-9mgw5gm7qg] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.1rem;
    border-radius: 999px;
    border: 1px solid #1f2937;
    font-weight: 600;
    cursor: pointer;
    transition: transform .08s ease, background .2s ease, border-color .2s ease;
}

.btn-primary[b-9mgw5gm7qg] {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #0b0f14;
    border-color: transparent;
    box-shadow: var(--shadow);
}

.btn:hover[b-9mgw5gm7qg] {
    transform: translateY(-1px);
}

.btn-ghost[b-9mgw5gm7qg] {
    background: #0b1220;
    color: var(--text);
}

.trust[b-9mgw5gm7qg] {
    margin-top: 2rem;
    color: var(--muted);
    font-size: .9rem;
}

/* Sections */
section[b-9mgw5gm7qg] {
    padding: 3rem 0;
}

.cards[b-9mgw5gm7qg] {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.card[b-9mgw5gm7qg] {
    grid-column: span 12;
    background: linear-gradient(180deg, #0f172a, #0b1220);
    border: 1px solid #1f2937;
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

    .card h3[b-9mgw5gm7qg] {
        margin: .25rem 0 .5rem;
        font-size: 1.25rem;
        letter-spacing: .2px;
    }

    .card p[b-9mgw5gm7qg] {
        color: var(--muted);
    }

.kicker[b-9mgw5gm7qg] {
    color: var(--brand-2);
    font-size: .8rem;
    letter-spacing: .2px;
    text-transform: uppercase;
}

/* 3-up on md, 1-up on small */
@media (min-width: 720px) {
    .card[b-9mgw5gm7qg] {
        grid-column: span 4;
    }
}

/* Section titles */
.section-title[b-9mgw5gm7qg] {
    margin: .4rem 0 0;
    font-size: 1.6rem;
}

/* Contact */
.contact-form[b-9mgw5gm7qg] {
    display: grid;
    gap: .75rem;
    max-width: 720px;
}

.input[b-9mgw5gm7qg], .textarea[b-9mgw5gm7qg] {
    width: 100%;
    background: #0b1220;
    color: var(--text);
    border-radius: 12px;
    border: 1px solid #1f2937;
    outline: none;
}

.input[b-9mgw5gm7qg] {
    padding: .9rem 1rem;
}

.textarea[b-9mgw5gm7qg] {
    padding: 1rem;
    resize: vertical;
}

/* Footer */
footer[b-9mgw5gm7qg] {
    padding: 2.5rem 0;
    border-top: 1px solid #1f2937;
    color: var(--muted);
}

.footer-bar[b-9mgw5gm7qg] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Accessibility & motion */
.sr-only[b-9mgw5gm7qg] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,1px,1px);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    .btn[b-9mgw5gm7qg] {
        transition: none;
    }
}


.top-row[b-9mgw5gm7qg] {
    background-color: #262626;
    border-bottom: 1px solid #d6d5d5;
    justify-content: center;
    height: 2.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-9mgw5gm7qg]  a, .top-row[b-9mgw5gm7qg]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-9mgw5gm7qg]  a:hover, .top-row[b-9mgw5gm7qg]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-9mgw5gm7qg]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-9mgw5gm7qg] {
        justify-content: space-between;
    }

    .top-row[b-9mgw5gm7qg]  a, .top-row[b-9mgw5gm7qg]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-9mgw5gm7qg] {
        flex-direction: row;
    }

    .sidebar[b-9mgw5gm7qg] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-9mgw5gm7qg] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-9mgw5gm7qg]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-9mgw5gm7qg], article[b-9mgw5gm7qg] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Mobile layout tweaks */
@media (max-width: 640px) {
    /* Let content start at the top on small screens */
    main[b-9mgw5gm7qg] {
        min-height: auto;
        justify-content: flex-start;
        padding: 1.5rem 0 2rem;
        color: #f2efe7;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Slightly tighter container padding */
    .container[b-9mgw5gm7qg] {
        padding: 0 1rem;
    }

    /* Header spacing + allow links to wrap instead of overflowing */
    .nav[b-9mgw5gm7qg] {
        padding: .6rem 0;
    }

    .nav-links[b-9mgw5gm7qg] {
        flex-wrap: wrap;
        justify-content: flex-end;
        row-gap: .5rem;
    }

    /* Hero section: less vertical padding on mobile */
    .hero[b-9mgw5gm7qg] {
        padding: 3rem 0 2rem;
        text-align: left; /* optional, if you prefer left instead of centered */
    }

        .hero h1[b-9mgw5gm7qg] {
            font-size: 2rem; /* clamp already helps, this just ensures it never gets too big */
        }

    .cards[b-9mgw5gm7qg] {
        gap: 1rem; /* slightly tighter spacing between cards on small screens */
    }
}
/* /Pages/About.razor.rz.scp.css */
body[b-lpeizih5xo] {
}

.section-hero[b-lpeizih5xo] {
    height: 420px;
    padding: 10px;
    border-radius: 7px;
    margin: 8px;
    position: relative;
    isolation: isolate; /* keeps overlay beneath content */
    background: url("/res/background-type-i-sm.png") center / cover no-repeat;
    background-position: center; /* keep focal point centered */
    overflow: hidden;
    align-content: end;
}

    .section-hero[b-lpeizih5xo]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.6));
        z-index: -1; /* sit behind the text */
    }

    .section-hero h1[b-lpeizih5xo] {
        font-size: 24px;
        color: #ffcf34;
    }

    .section-hero h2[b-lpeizih5xo] {
        font-size: 20px;
        color: #ffcf34;
    }

    .section-hero p[b-lpeizih5xo] {
        font-size: 16px;
    }

.section-hero-container[b-lpeizih5xo] {
    padding: 10px;
    border-radius: 7px;
    margin: 8px;
    background-color: rgba(35, 75, 77, 0.1);
    position: relative;
    isolation: isolate; /* keeps overlay beneath content */
    background-position: center; /* keep focal point centered */
    overflow: hidden;
}

    .section-hero-container[b-lpeizih5xo]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.7));
        z-index: -1; /* sit behind the text */
    }

    .section-hero-container .section-others[b-lpeizih5xo] {
        padding: 10px;
        border-radius: 7px;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .section-hero-container h1[b-lpeizih5xo] {
        font-size: 24px;
        text-decoration: underline;
        text-underline-offset: 0.4em;
    }

    .section-hero-container h2[b-lpeizih5xo] {
        font-size: 20px;
        color: #ffcf34;
    }

    .section-hero-container p[b-lpeizih5xo] {
        font-size: 16px;
    }

    .section-hero-container li[b-lpeizih5xo] {
        font-size: 16px;
    }


.cta-row[b-lpeizih5xo] {
    margin-top: 16px;
}

.contact-btn[b-lpeizih5xo] {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    background-color: #ffcf34;
    color: #262626;
    border: 0;
    cursor: pointer;
    text-decoration: none; /* harmless on button */
}

    .contact-btn:hover[b-lpeizih5xo],
    .contact-btn:focus[b-lpeizih5xo] {
        filter: brightness(0.92);
    }

    .contact-btn:focus-visible[b-lpeizih5xo] {
        outline: 2px solid #262626;
        outline-offset: 2px;
    }

/* stretch full-width on mobile */
@media (max-width: 640px) {
    .cta-row[b-lpeizih5xo] {
        padding: 0 16px;
    }
    /* optional gutter */
    .contact-btn[b-lpeizih5xo] {
        display: block;
        width: 100%;
        max-width: 480px; /* optional cap */
        text-align: center;
    }
}
/* /Pages/Contact.razor.rz.scp.css */
body[b-vrelu4vfx8] {
}

.section-hero[b-vrelu4vfx8] {
    height: 420px;
    padding: 10px;
    border-radius: 7px;
    margin: 8px;
    position: relative;
    isolation: isolate; /* keeps overlay beneath content */
    background: url("/res/background-type-k-sm.png") center / cover no-repeat;
    background-position: center; /* keep focal point centered */
    overflow: hidden;
    align-content: end;
}

    .section-hero[b-vrelu4vfx8]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.6));
        z-index: -1; /* sit behind the text */
    }

    .section-hero h1[b-vrelu4vfx8] {
        font-size: 24px;
        color: #ffcf34;
    }

    .section-hero h2[b-vrelu4vfx8] {
        font-size: 20px;
        color: #ffcf34;
    }

    .section-hero p[b-vrelu4vfx8] {
        font-size: 16px;
        /*font-weight:600;*/
    }

.section-hero-container[b-vrelu4vfx8] {
    padding: 10px;
    border-radius: 7px;
    margin: 8px;
    background-color: rgba(35, 75, 77, 0.1);
    position: relative;
    isolation: isolate; /* keeps overlay beneath content */
    background-position: center; /* keep focal point centered */
    overflow: hidden;
}

    .section-hero-container[b-vrelu4vfx8]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.7));
        z-index: -1; /* sit behind the text */
    }

    .section-hero-container .section-others[b-vrelu4vfx8] {
        padding: 10px;
        border-radius: 7px;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .section-hero-container h1[b-vrelu4vfx8] {
        font-size: 24px;
        text-decoration: underline;
        text-underline-offset: 0.4em;
    }

    .section-hero-container h2[b-vrelu4vfx8] {
        font-size: 20px;
        color: #ffcf34;
    }

    .section-hero-container p[b-vrelu4vfx8] {
        font-size: 16px;
    }

    .section-hero-container li[b-vrelu4vfx8] {
        font-size: 16px;
    }
/* /Pages/Faqs.razor.rz.scp.css */
body[b-zj72dqksm6] {
}
/* container clips overflow */
.hero-carousel[b-zj72dqksm6] {
    height: 420px;
    padding: 10px;
    border-radius: 7px;
    margin: 8px;
    position: relative;
    isolation: isolate; /* keeps overlay beneath content */
    overflow: hidden; /* ensures cropped edges are hidden */
    background: rgb(245, 195, 58);
}

/* image fills container without distortion */
.hero-carousel-image[b-zj72dqksm6] {
    width: 100%;
    height: 100%;
    display: block; /* removes inline-gap artifacts */
    object-fit: cover; /* fill the whole carousel */
    object-position: center; /* center the crop */
}

/* Controls: now overlap bottom of the image */
.hero-carousel-controls[b-zj72dqksm6] {
    position: absolute;
    left: 50%;
    bottom: 0.75rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .35rem .75rem;
    font-size: .85rem;
    color: #f5c33a;
    background: rgba(0,0,0,0.6);
    border-radius: 999px;
    z-index: 2; /* above the image */
}

    .hero-carousel-controls button[b-zj72dqksm6] {
        border: 1px solid #f5c33a;
        background: transparent;
        color: #f5c33a;
        border-radius: 999px;
        width: 28px;
        height: 28px;
        cursor: pointer;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

        .hero-carousel-controls button:hover[b-zj72dqksm6] {
            background: rgba(245,195,58,0.1);
        }

.hero-carousel-indicator[b-zj72dqksm6] {
    opacity: 0.8;
}

.section-hero-container[b-zj72dqksm6] {
    padding: 10px;
    border-radius: 7px;
    margin: 8px;
    background-color: rgba(35, 75, 77, 0.1);
    position: relative;
    isolation: isolate; /* keeps overlay beneath content */
    background-position: center; /* keep focal point centered */
    overflow: hidden;
}

    .section-hero-container[b-zj72dqksm6]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.7));
        z-index: -1; /* sit behind the text */
    }

    .section-hero-container .section-others[b-zj72dqksm6] {
        padding: 10px;
        border-radius: 7px;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .section-hero-container h1[b-zj72dqksm6] {
        font-size: 24px;
        text-decoration: underline;
        text-underline-offset: 0.4em;
    }

    .section-hero-container h2[b-zj72dqksm6] {
        font-size: 20px;
        color: #ffcf34;
    }

    .section-hero-container p[b-zj72dqksm6] {
        font-size: 16px;
    }

    .section-hero-container li[b-zj72dqksm6] {
        font-size: 16px;
    }

/* Mobile: stack text over carousel (3 rows instead of 3 columns) */
@media (max-width: 768px) {
    .section-hero[b-zj72dqksm6] {
        height: auto; /* let it grow with content */
        padding-bottom: 16px;
    }

        .section-hero .two-col[b-zj72dqksm6] {
            grid-template-columns: 1fr; /* stack: text then carousel */
            row-gap: 1rem;
        }

    .hero-carousel-image[b-zj72dqksm6] {
        height: 200px;
    }
}


.cta-row[b-zj72dqksm6] {
    margin-top: 16px;
}

.contact-btn[b-zj72dqksm6] {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    background-color: #ffcf34;
    color: #262626;
    border: 0;
    cursor: pointer;
    text-decoration: none; /* harmless on button */
}

    .contact-btn:hover[b-zj72dqksm6],
    .contact-btn:focus[b-zj72dqksm6] {
        filter: brightness(0.92);
    }

    .contact-btn:focus-visible[b-zj72dqksm6] {
        outline: 2px solid #262626;
        outline-offset: 2px;
    }

/* stretch full-width on mobile */
@media (max-width: 640px) {
    .cta-row[b-zj72dqksm6] {
        padding: 0 16px;
    }
    /* optional gutter */
    .contact-btn[b-zj72dqksm6] {
        display: block;
        width: 100%;
        max-width: 480px; /* optional cap */
        text-align: center;
    }
}
/* /Pages/Home.razor.rz.scp.css */
body[b-pcdwr7xt4b] {
}

.section-hero[b-pcdwr7xt4b] {
    height: 420px;
    padding: 10px;
    border-radius: 7px;
    margin: 8px;
    position: relative;
    isolation: isolate; /* keeps overlay beneath content */
    background: url("/res/background-type-a-sm.png") center / cover no-repeat;
    background-position: center; /* keep focal point centered */
    overflow: hidden;
    align-content: end;
}

    .section-hero[b-pcdwr7xt4b]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.6));
        z-index: -1; /* sit behind the text */
    }

    .section-hero h1[b-pcdwr7xt4b] {
        font-size: 24px;
        color: #ffcf34;
    }

    .section-hero h2[b-pcdwr7xt4b] {
        font-size: 20px;
        color: #ffcf34;
    }

    .section-hero p[b-pcdwr7xt4b] {
        font-size: 16px;
    }

.section-hero-container[b-pcdwr7xt4b] {
    padding: 10px;
    border-radius: 7px;
    margin: 8px;
    background-color: rgba(35, 75, 77, 0.1);
    position: relative;
    isolation: isolate; /* keeps overlay beneath content */
    background-position: center; /* keep focal point centered */
    overflow: hidden;
}

    .section-hero-container[b-pcdwr7xt4b]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.7));
        z-index: -1; /* sit behind the text */
    }

    .section-hero-container .section-others[b-pcdwr7xt4b] {
        padding: 10px;
        border-radius: 7px;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .section-hero-container h1[b-pcdwr7xt4b] {
        font-size: 24px;
        text-decoration: underline;
        text-underline-offset: 0.4em;
    }

    .section-hero-container h2[b-pcdwr7xt4b] {
        font-size: 20px;
        color: #ffcf34;
    }

    .section-hero-container p[b-pcdwr7xt4b] {
        font-size: 16px;
    }

    .section-hero-container li[b-pcdwr7xt4b] {
        font-size: 16px;
    }

.cta-row[b-pcdwr7xt4b] {
    margin-top: 16px;
}

.contact-btn[b-pcdwr7xt4b] {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    background-color: #ffcf34;
    color: #262626;
    border: 0;
    cursor: pointer;
    text-decoration: none; /* harmless on button */
}

    .contact-btn:hover[b-pcdwr7xt4b],
    .contact-btn:focus[b-pcdwr7xt4b] {
        filter: brightness(0.92);
    }

    .contact-btn:focus-visible[b-pcdwr7xt4b] {
        outline: 2px solid #262626;
        outline-offset: 2px;
    }

/* stretch full-width on mobile */
@media (max-width: 640px) {
    .cta-row[b-pcdwr7xt4b] {
        padding: 0 16px;
    }
    /* optional gutter */
    .contact-btn[b-pcdwr7xt4b] {
        display: block;
        width: 100%;
        max-width: 480px; /* optional cap */
        text-align: center;
    }
}
/* /Pages/Partners.razor.rz.scp.css */
body[b-03v5tkqu8y] {
}
/* container clips overflow */
.hero-carousel[b-03v5tkqu8y] {
    height: 420px;
    padding: 10px;
    border-radius: 7px;
    margin: 8px;
    position: relative;
    isolation: isolate; /* keeps overlay beneath content */
    overflow: hidden; /* ensures cropped edges are hidden */
}

/* image fills container without distortion */
.hero-carousel-image[b-03v5tkqu8y] {
    width: 100%;
    height: 100%;
    display: block; /* removes inline-gap artifacts */
    object-fit: cover; /* fill the whole carousel */
    object-position: center; /* center the crop */
}

/* Controls: now overlap bottom of the image */
.hero-carousel-controls[b-03v5tkqu8y] {
    position: absolute;
    left: 50%;
    bottom: 0.75rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .35rem .75rem;
    font-size: .85rem;
    color: #f5c33a;
    background: rgba(0,0,0,0.6);
    border-radius: 999px;
    z-index: 2; /* above the image */
}

    .hero-carousel-controls button[b-03v5tkqu8y] {
        border: 1px solid #f5c33a;
        background: transparent;
        color: #f5c33a;
        border-radius: 999px;
        width: 28px;
        height: 28px;
        cursor: pointer;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

        .hero-carousel-controls button:hover[b-03v5tkqu8y] {
            background: rgba(245,195,58,0.1);
        }

.hero-carousel-indicator[b-03v5tkqu8y] {
    opacity: 0.8;
}


/* Mobile: stack text over carousel (3 rows instead of 3 columns) */
@media (max-width: 768px) {
    .section-hero[b-03v5tkqu8y] {
        height: auto; /* let it grow with content */
        padding-bottom: 16px;
    }

        .section-hero .two-col[b-03v5tkqu8y] {
            grid-template-columns: 1fr; /* stack: text then carousel */
            row-gap: 1rem;
        }

    .hero-carousel-image[b-03v5tkqu8y] {
        height: 200px;
    }
}
/* /Pages/Services.razor.rz.scp.css */
body[b-d6c7rszsmz] {
}

.section-hero[b-d6c7rszsmz] {
    height: 420px;
    padding: 10px;
    border-radius: 7px;
    margin: 8px;
    position: relative;
    isolation: isolate; /* keeps overlay beneath content */
    background: url("/res/background-type-d-sm.png") center / cover no-repeat;
    background-position: center; /* keep focal point centered */
    overflow: hidden;
    align-content: end;
}

    .section-hero[b-d6c7rszsmz]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.6));
        z-index: -1; /* sit behind the text */
    }

    .section-hero h1[b-d6c7rszsmz] {
        font-size: 24px;
        color: #ffcf34;
    }

    .section-hero h2[b-d6c7rszsmz] {
        font-size: 20px;
        color: #ffcf34;
    }

    .section-hero p[b-d6c7rszsmz] {
        font-size: 16px;
    }

.section-hero-container[b-d6c7rszsmz] {
    /* column-count: 3;  remove this */
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem; /* optional spacing between the 3 divs */
    padding: 10px;
    border-radius: 7px;
    margin: 8px;
    background-color: rgba(35, 75, 77, 0.1);
    position: relative;
    isolation: isolate;
    background-position: center;
    overflow: hidden;
}

    .section-hero-container[b-d6c7rszsmz]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.7));
        z-index: -1; /* sit behind the text */
    }

    .section-hero-container h1[b-d6c7rszsmz] {
        font-size: 24px;
        color: #ffcf34;
        text-decoration: underline;
    }

    .section-hero-container h2[b-d6c7rszsmz] {
        font-size: 20px;
        color: #ffcf34;
    }

    .section-hero-container p[b-d6c7rszsmz] {
        font-size: 16px;
    }

    .section-hero-container li[b-d6c7rszsmz] {
        font-size: 16px;
    }

@media (max-width: 768px) {
    .section-hero-container[b-d6c7rszsmz] {
        grid-template-columns: 1fr; /* 3 rows on mobile */
    }
}


.section-hero-container .cta-row[b-d6c7rszsmz] {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 16px; /* keep existing spacing */
}

.contact-btn[b-d6c7rszsmz] {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    background-color: #ffcf34;
    color: #262626;
    border: 0;
    cursor: pointer;
    text-decoration: none; /* harmless on button */
}

    .contact-btn:hover[b-d6c7rszsmz],
    .contact-btn:focus[b-d6c7rszsmz] {
        filter: brightness(0.92);
    }

    .contact-btn:focus-visible[b-d6c7rszsmz] {
        outline: 2px solid #262626;
        outline-offset: 2px;
    }

/* stretch full-width on mobile */
@media (max-width: 640px) {
    .cta-row[b-d6c7rszsmz] {
        padding: 0 16px;
    }
    /* optional gutter */
    .contact-btn[b-d6c7rszsmz] {
        display: block;
        width: 100%;
        max-width: 480px; /* optional cap */
        text-align: center;
    }
}
