/* /Components/AnimatedText.razor.rz.scp.css */
.animated-text-pulse[b-grgerq67eq] {
    display: inline-block;
    animation: pulse-b-grgerq67eq 2s ease-in-out infinite;
}

@keyframes pulse-b-grgerq67eq {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.animated-text-fade[b-grgerq67eq] {
    display: inline-block;
    animation: fade-b-grgerq67eq 3s ease-in-out infinite;
}

@keyframes fade-b-grgerq67eq {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animated-text-glow[b-grgerq67eq] {
    display: inline-block;
    animation: glowingHeader-b-grgerq67eq 3.5s linear infinite;
}

@keyframes glowingHeader-b-grgerq67eq {
    0% {
        text-shadow: 0 1px 5px rgba(200, 167, 111, 0);
        color: white;
    }
    50% {
        text-shadow: 0 1px 5px rgba(200, 167, 111, 0);
        color: white;
    }

    75% {
        text-shadow: 0 1px 5px var(--primary-accent);
        color: var(--primary-accent);
    }

    100% {
        text-shadow: 0 1px 5px rgba(200, 167, 111, 0);
        color: white;
    }
}
/* /Components/Buttons/Button.razor.rz.scp.css */
/* Button Base Styles */
.btn[b-ef5aeyu6jr] {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'BodyFont';
    display: inline-block;
    text-decoration: none;
}

/* Primary Button */
.btn-primary[b-ef5aeyu6jr] {
    background-color: var(--primary-accent);
    color: var(--primary);
    border-color: var(--primary-accent);
}

.btn-primary:hover[b-ef5aeyu6jr] {
    background-color: #ffb068;
    border-color: #ffb068;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 167, 111, 0.4);
}

/* Secondary Button */
.btn-secondary[b-ef5aeyu6jr] {
    background-color: transparent;
    color: #c8a76f;
    border-color: #c8a76f;
}

.btn-secondary:hover[b-ef5aeyu6jr] {
    background-color: #c8a76f;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 167, 111, 0.4);
}

/* Outline Button */
.btn-outline[b-ef5aeyu6jr] {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover[b-ef5aeyu6jr] {
    background-color: #ffffff;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
/* /Components/HeroSection.razor.rz.scp.css */
/* Hero Section Styles */
.hero-section[b-hhztfhmg3x] {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    background-color: #030b11;
}

.hero-video[b-hhztfhmg3x] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2;
    mix-blend-mode: unset;
    -webkit-mask-image: linear-gradient(to left, transparent 15%, black 100%);
}

.hero-image[b-hhztfhmg3x] {
    position: absolute;
}

.hero-container[b-hhztfhmg3x] {
    position: relative;
    z-index: 3;
    margin: 0 0;
    padding: 200px 0px 0px 10%;
    align-items: baseline;
    justify-items: baseline;
    min-height: 100dvh;
    display: grid;
    column-gap: 15%;
    translate: 0px var(--content-vertical-offset);
    opacity: var(--content-opacity);
    transition: transform 0.05s linear; /* very light smoothing */
    will-change: transform; /* performance hint */
}

/* Hero Logo */
.hero-logo[b-hhztfhmg3x] {
    width: 512px;
    height: 512px;
    opacity: 1;
    animation-name: fadeInLogo-b-hhztfhmg3x;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-duration: 1s;
    align-content: center;
}


.logo-placeholder[b-hhztfhmg3x] {
    display: flex;
    align-items: center;
    justify-items: center;
    flex-direction: column;
}

.logo-icon[b-hhztfhmg3x] {
    width: 256px;
    height: 256px;
    background-image: url("src/media/NovaBM_Horizon.svg");
    background-size: 256px 256px;
}

.logo-text[b-hhztfhmg3x] {
    display: flex;
    flex-direction: column;
}

.logo-title[b-hhztfhmg3x] {
    color: #ffffff;
    letter-spacing: 2px;
    text-align: center;
    font-size: 51px;
    font-family: 'TitleFont';
}

.logo-tagline[b-hhztfhmg3x] {
    color: var(--primary-accent);
    letter-spacing: 6.65px;
    text-align: center;
    line-height: 2px;
    font-family: 'SubtitleFont';
    font-size: 32px;
}

.hero-content[b-hhztfhmg3x] {
    position: relative;
    z-index: 3;
    translate: 0% -50%;
    grid-column: 2;
    grid-row: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-headline[b-hhztfhmg3x] {
    color: #ffffff;
    font-size: 42px;
    font-family: 'TitleFont';
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation-name: glowingHeader;
    animation-delay: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 5s;
    text-align: right;
}

.hero-subheadline[b-hhztfhmg3x] {
    color: #b8b8c8;
    font-family: 'BodyFont';
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 50px;
    text-align: left;
    max-width: 600px;
    align-self: start;
}

.hero-buttons[b-hhztfhmg3x] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-self: start;
}

@keyframes fadeInLogo-b-hhztfhmg3x {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        opacity 1;
        transform: translateY(0px);
    }
}
/* /Components/SectionHeader.razor.rz.scp.css */
.section-header[b-2x8tbfhsaj] {
    text-align: center;
    margin-bottom: 60px;
}

.section-title[b-2x8tbfhsaj] {
    color: var(--header-title);
    font-size: 32px;
    font-family: "TitleFont";
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-subtitle[b-2x8tbfhsaj] {
    color: var(--header-subtitle);
    font-size: 18px;
    font-family: "SubtitleFont";
    line-height: 0.25;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
/* /Components/ServiceCard.razor.rz.scp.css */
/* Service Card Styles */
.service-card[b-9k1qtm0m99] {
    background-color: #101d28;
    border: 2px solid var(--secondary-accent);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover[b-9k1qtm0m99] {
    transform: translateY(-8px);
    background-color: var(--secondary-accent);
    border: 2px solid var(--secondary-accent);
}

.service-icon[b-9k1qtm0m99] {
    margin-bottom: 24px;
}

.icon-placeholder[b-9k1qtm0m99] {
    width: 80px;
    height: 80px;
    background-image: var(--icon-path);
    background-size: 80px 80px;
}

.service-title[b-9k1qtm0m99] {
    color: var(--secondary-accent);
    font-size: 18px;
    font-family: "HeaderFont";
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    transition: all 0.5s ease;
}

.service-card:hover .service-title[b-9k1qtm0m99] {
    color: #000000;
    scale: 1.025;
}

.service-card:hover .service-description[b-9k1qtm0m99] {
    color: #000000;
    translate: 0px -10px;
}

.service-card:hover .icon-placeholder[b-9k1qtm0m99] {
    background-image: var(--icon-path-hover);
}

.service-description[b-9k1qtm0m99] {
    color: #b8b8c8;
    font-size: 16px;
    font-weight: 600;
    font-family: "BodyFont";
    line-height: 1.6;
    margin: 0;
    transition: all 0.5s ease;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-cpblucgo2i] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-cpblucgo2i] {
    flex: 1;
    overflow-x: hidden;
    overflow-y: hidden;
    max-width: 100%;
}

*[b-cpblucgo2i] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-cpblucgo2i] {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #152B3F;
    color: #ffffff;
    overflow-x: hidden;
}

#blazor-error-ui[b-cpblucgo2i] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.3);
    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-cpblucgo2i] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Pages/Home.razor.rz.scp.css */

.services-section[b-kmg8c2ix75] {
    background-color: var(--primary);
    padding: 100px 40px;
}

.container[b-kmg8c2ix75] {
    max-width: 1400px;
    margin: 0 auto;
    z-index: 3;
}

.services-grid[b-kmg8c2ix75] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.about-section[b-kmg8c2ix75] {
    background-color: var(--secondary);
    padding: 100px 40px;
    text-align: center;
    background-clip: border-box;
    position: relative;
    overflow: hidden;
}

.about-background[b-kmg8c2ix75] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    mix-blend-mode: overlay;
    background: url(/src/media/arizona_background.jpg);
    background-position: 25% 100%;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
    z-index: 1;
    height: 100%;
    width: 100%;

    justify-content: end;
    align-content: end;
}

.about-northstar[b-kmg8c2ix75] {
    height: 800px;
    width: 800px;
    translate: 0px -25%;
    z-index: 2;
}

.about-content[b-kmg8c2ix75] {
    display: grid;
    position: relative;
    z-index: 3;
}

.about-description[b-kmg8c2ix75] {
    color: var(--secondary-text);
    font-size: 16px;
    font-family: 'BodyFont';
    line-height: 1.8;
    max-width: 800px;
    text-align: center;
    justify-self: start;
    z-index: 3;
}

.about-divider[b-kmg8c2ix75] {
    border-top: 1px solid rgba(222, 149, 88, 1);
    padding-top: 25px;
    z-index: 3;
}

.arizona_container[b-kmg8c2ix75] {
    position: relative;
    display: inline-block;
}

.about-arizona-foreground[b-kmg8c2ix75] {
    position: absolute;
    width: 400px;
    height: 400px;
    background-size: 400px 400px;
    translate: 0px -500px;
    mix-blend-mode: screen;
    z-index: 2;
}

.about-arizona-background[b-kmg8c2ix75] {
    display: block;
    width: 500px;
    height: 112px;
    background-size: 500px 112px;
    mix-blend-mode: screen;
}

.footer-section[b-kmg8c2ix75] {
    background-color: #0d1117;
    padding: 60px 40px 30px;
}

.footer-content[b-kmg8c2ix75] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-logo-placeholder[b-kmg8c2ix75] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-icon[b-kmg8c2ix75] {
    width: 60px;
    height: 60px;
    background-image: url("src/media/novabm_horizon.svg");
    background-size: 60px 60px;
}

.footer-info[b-kmg8c2ix75] {
    display: flex;
    gap: 80px;
}

.footer-column h4[b-kmg8c2ix75] {
    color: var(--secondary-header);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-column p[b-kmg8c2ix75] {
    color: #b8b8c8;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.footer-copyright[b-kmg8c2ix75] {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(200, 167, 111, 0.1);
}

.footer-copyright p[b-kmg8c2ix75] {
    color: #7a7a8a;
    font-size: 13px;
    margin: 0;
}
