/* /Pages/Index.cshtml.rz.scp.css */
/* ===== Base & Theme ===== */
:root[b-vgdxrwm2k1] {
    --brand: #2563eb;
    --brand-2: #0ea5e9;
}

html[b-vgdxrwm2k1] {
    scroll-behavior: smooth;
}

body[b-vgdxrwm2k1] {
    font-family: 'Inter',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Helvetica Neue',Arial,'Noto Sans',sans-serif;
    background-color: #f8fafc;
    color: #1f2937;
}

/* Utilities you used that aren't in Bootstrap by default */
.fw-black[b-vgdxrwm2k1] {
    font-weight: 900 !important;
}

.d-inline-grid[b-vgdxrwm2k1] {
    display: inline-grid !important;
}

.place-items-center[b-vgdxrwm2k1] {
    place-items: center !important;
}
/* Optional spacer to support py-lg-6 seen in markup */
@media (min-width: 992px) {
    .py-lg-6[b-vgdxrwm2k1] {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
}

/* Surface & feel */
.shadow-soft[b-vgdxrwm2k1] {
    box-shadow: 0 10px 25px rgba(2,6,23,.08), 0 4px 10px rgba(2,6,23,.05);
}

.glass[b-vgdxrwm2k1] {
    backdrop-filter: saturate(140%) blur(8px);
}

.hero-gradient[b-vgdxrwm2k1] {
    background: radial-gradient(1200px 600px at 10% -10%, rgba(14,165,233,.25), rgba(14,165,233,0)), radial-gradient(1200px 600px at 90% -10%, rgba(37,99,235,.25), rgba(37,99,235,0));
}

.rounded-xl[b-vgdxrwm2k1] {
    border-radius: 1rem;
}

.bg-surface[b-vgdxrwm2k1] {
    background: #ffffff;
}

.text-muted-700[b-vgdxrwm2k1] {
    color: #475569;
}

.badge-most[b-vgdxrwm2k1] {
    position: absolute;
    top: -.75rem;
    right: 1rem;
}

/* ===== Hero Carousel Controls ===== */
#heroCarousel[b-vgdxrwm2k1] {
    position: relative;
}

    /* Left/Right pill buttons, always visible */
    #heroCarousel .ctrl[b-vgdxrwm2k1] {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        border-radius: 999px;
        padding: .9rem 1rem;
        box-shadow: 0 10px 25px rgba(2,6,23,.08), 0 4px 10px rgba(2,6,23,.05);
        background: #fff;
        border: 1px solid rgba(2,6,23,.06);
        line-height: 0;
    }

    #heroCarousel .ctrl-left[b-vgdxrwm2k1] {
        left: .75rem;
    }

    #heroCarousel .ctrl-right[b-vgdxrwm2k1] {
        right: .75rem;
    }

    /* Make default Bootstrap arrow icons dark on light buttons */
    #heroCarousel .ctrl .carousel-control-prev-icon[b-vgdxrwm2k1],
    #heroCarousel .ctrl .carousel-control-next-icon[b-vgdxrwm2k1] {
        filter: invert(1);
    }

    /* Focus ring for accessibility */
    #heroCarousel .ctrl:focus-visible[b-vgdxrwm2k1] {
        outline: none;
        box-shadow: 0 0 0 .25rem rgba(37,99,235,.25), 0 10px 25px rgba(2,6,23,.08);
    }

    /* Indicators: slightly darker/dimmer pills */
    #heroCarousel .carousel-indicators [data-bs-target][b-vgdxrwm2k1] {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background-color: #0f172a;
        opacity: .25;
    }

    #heroCarousel .carousel-indicators .active[b-vgdxrwm2k1] {
        opacity: .8;
    }

/* ===== Media helpers ===== */
.object-cover[b-vgdxrwm2k1] {
    object-fit: cover;
}

/* ===== Animations ===== */
@keyframes fadeUp-b-vgdxrwm2k1 {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeIn-b-vgdxrwm2k1 {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes popIn-b-vgdxrwm2k1 {
    from {
        opacity: 0;
        transform: scale(.98)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes kenburns-b-vgdxrwm2k1 {
    from {
        transform: scale(1.05)
    }

    to {
        transform: scale(1)
    }
}

/* Elements opt-in via [data-anim], only when slide is flagged is-animating */
#heroCarousel [data-anim][b-vgdxrwm2k1] {
    opacity: 0;
    will-change: transform, opacity;
}

#heroCarousel .carousel-item.is-animating [data-anim][b-vgdxrwm2k1] {
    animation: var(--a, fadeUp) .6s ease-out both;
    animation-delay: var(--d, 0s);
}

#heroCarousel [data-anim="fade-up"][b-vgdxrwm2k1] {
    --a: fadeUp;
}

#heroCarousel [data-anim="fade"][b-vgdxrwm2k1] {
    --a: fadeIn;
}

#heroCarousel [data-anim="pop"][b-vgdxrwm2k1] {
    --a: popIn;
}

/* Ken Burns zoom on image */
#heroCarousel .carousel-item.is-animating .kb[b-vgdxrwm2k1] {
    animation: kenburns-b-vgdxrwm2k1 6s ease-in-out both;
}

/* Micro-interaction on switch buttons */
#heroCarousel .ctrl[b-vgdxrwm2k1] {
    transition: transform .25s ease, box-shadow .25s ease;
}

    #heroCarousel .ctrl:hover[b-vgdxrwm2k1] {
        transform: translateY(-50%) scale(1.05);
    }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    #heroCarousel .carousel-item[b-vgdxrwm2k1],
    #heroCarousel [data-anim][b-vgdxrwm2k1],
    #heroCarousel .kb[b-vgdxrwm2k1],
    #heroCarousel .ctrl[b-vgdxrwm2k1] {
        animation: none !important;
        transition: none !important;
    }
}

/* Safe defaults: content is visible unless a slide is animating */
#heroCarousel .carousel-item [data-anim][b-vgdxrwm2k1] {
    opacity: 1;
}

#heroCarousel .carousel-item.is-animating [data-anim][b-vgdxrwm2k1] {
    opacity: 0; /* start hidden only during an animation cycle */
    animation: var(--a, fadeUp) .6s ease-out both;
    animation-delay: var(--d, 0s);
}

/* Ken Burns only when animating; otherwise just show image */
#heroCarousel .carousel-item .kb[b-vgdxrwm2k1] {
    animation: none;
}

#heroCarousel .carousel-item.is-animating .kb[b-vgdxrwm2k1] {
    animation: kenburns-b-vgdxrwm2k1 6s ease-in-out both;
}
/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/*a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a {
  color: #0077cc;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}*/
