/* _content/BMS.Site/Components/Layout/MainLayout.razor.rz.scp.css */
.site-container[b-d4ov2ispw4] {
    min-height: 100vh;
    
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr;
}

.site-container header[b-d4ov2ispw4] {
    grid-row: 1;
    grid-column: 1;
    
    max-width: 100vw;
}

.site-container main[b-d4ov2ispw4] {
    grid-row: 2;
    grid-column: 1;
}

.site-container footer[b-d4ov2ispw4] {
    grid-row: 3;
    grid-column: 1;

    max-width: 100vw;
}

@media (max-width:1024px) {
    .site-container header[b-d4ov2ispw4] {
        position: sticky;
        top: 0;
        z-index: 2000;
    }
}
/* _content/BMS.Site/Components/Layout/NavHeader.razor.rz.scp.css */
/* Navbar */
.nav-container[b-fy9nugopha] {
    display: grid;
    grid-template-columns: 25px auto 1fr auto auto 25px;
    align-items: center;

    background: linear-gradient(to right, var(--nav-background-start), var(--nav-background-end));
}

@media (max-width:1024px) {
    .nav-container[b-fy9nugopha] {
        position: relative;
        grid-template-columns: auto 1fr auto; /* New grid for mobile: logo-link | cert-logo (centered) | hamburger */
    }
}

.logo-link[b-fy9nugopha] {
    padding: 0.5rem;

    grid-column: 2;
    justify-self: start;
}

@media (max-width:1024px) {
    .logo-link[b-fy9nugopha] {
        grid-column: 1;
        justify-self: start;
    }
}

.header-logo[b-fy9nugopha] {
    width: auto;
    height: 60px;
}

.navbar[b-fy9nugopha] {
    grid-column: 3;
    grid-row: 1;

    height: 100%;

    display: flex;
    align-items: center;
}

@media (max-width:1024px) {
    .navbar[b-fy9nugopha] {
        display: none;

        position: absolute;
        top: 100%;

        height: unset;
        width: 100%;

        grid-column: unset;
        grid-row: unset;

        flex-direction: column;
        align-items: stretch;
        justify-content: space-around;

        background: var(--nav-hamburger-background);
    }

    .navbar.open[b-fy9nugopha] {
        display: flex;
    }
}

/* Nav-link */

[b-fy9nugopha] .nav-link {
    height: 100%;

    display: inline-flex;
    align-items: center;

    font-family: Lato, sans-serif;
    color: whitesmoke;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;

    margin-left: 1em;
    margin-right: 1em;

    text-transform: capitalize;

    position: relative;
}

[b-fy9nugopha] .nav-link:hover {
    color: var(--button-color);
}

[b-fy9nugopha] .nav-link.active {
    color: var(--button-color);
    font-weight: 500;
}

@media (max-width:1024px) {
    .nav-link[b-fy9nugopha] {
        margin: 0.5em 0 0.5em 0.5em;
    }
}

@media (min-width:1025px) {
    [b-fy9nugopha] .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--button-color);
        transition: width 0.2s ease, left 0.2s ease;
    }

    [b-fy9nugopha] .nav-link:hover::after {
        width: 60%;
        left: 20%;
    }

    [b-fy9nugopha] .nav-link.active::after {
        width: 80%;
        left: 10%;
    }
}

/* Dropdown nav-link */
.dropdown-container[b-fy9nugopha] {
    height: 100%;

    display: inline-flex;
    align-items: center;

    position: relative;
    cursor: pointer;
}

@media (max-width:1024px) {
    .dropdown-container[b-fy9nugopha] {
        position: static;

        display: flex;

        flex-direction: column;
        align-items: stretch;
    }
}

.dropdown-container *[b-fy9nugopha] {
    cursor: pointer;
}

.dropdown-toggle[b-fy9nugopha] {
    position: absolute;
    opacity: 0;
}

.dropdown-label[b-fy9nugopha] {
    height: 100%;

    display: inline-flex;
    align-items: center;
}

@media (max-width:1024px) {
    .dropdown-label[b-fy9nugopha] {
        width: 100%;
    }
}

.caret[b-fy9nugopha] {
    width: 0.65rem;
    height: 0.65rem;
    border-right: 2px solid whitesmoke;
    border-bottom: 2px solid whitesmoke;
    margin-left: 0.6rem;

    display: inline-block;

    transform: rotate(45deg);
    transition: transform 0.15s ease;

    position: relative;
    top: -0.2rem;
}

.dropdown-menu[b-fy9nugopha] {
    padding: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;

    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    z-index: 1000;

    background-color: var(--nav-background-end);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width:1024px) {
    .dropdown-menu[b-fy9nugopha] {
        transform: none;

        display: none;
        position: static;

        align-items: flex-start;
        flex-direction: column;
        box-shadow: none;
    }
}

.dropdown-menu a[b-fy9nugopha] {
    padding: 8px 12px;

    display: block;
    white-space: nowrap;

    background-color: var(--nav-background-end);

    text-decoration: none;
    color: whitesmoke;
}

.dropdown-toggle:checked ~ .dropdown-menu[b-fy9nugopha] {
    display: block;
}

@media (max-width:1024px) {
    .dropdown-toggle:checked ~ .dropdown-menu[b-fy9nugopha] {
        display: flex;
    }
}

.dropdown-toggle:checked + .dropdown-label .caret[b-fy9nugopha] {
    transform: rotate(-135deg);
    top: 0.1rem;
}

/* Contact Us */

.contact-link[b-fy9nugopha] {
    grid-column: 4;
    justify-self: end;
}

@media (max-width:1024px) {
    .contact-link[b-fy9nugopha] {
        display: none;
        grid-column: unset;
    }
}

.cert-logo[b-fy9nugopha] {
    grid-column: 5;
    justify-self: end;
    
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
    margin-left: 1rem;
}

@media (max-width:1024px) {
    .cert-logo[b-fy9nugopha] {
        grid-column: 2;
        justify-self: center;
        margin-left: 0;
    }
}

@media (max-width:450px) {
    .cert-logo[b-fy9nugopha] {
        display: none;
    }
}

.cert-logo img[b-fy9nugopha] {
    height: 35px;
    width: auto;
}

.cert-text[b-fy9nugopha] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    font-family: Lato, sans-serif;
    color: whitesmoke;
    font-size: 0.9em;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
}

.hamburger[b-fy9nugopha] {
    display: none;

    grid-column: 4;
    cursor: pointer;
    width: 30px;
    height: 22px;
    
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

@media (max-width:1024px) {
    .hamburger[b-fy9nugopha] {
        display: inline-block;
        grid-column: 3; /* Position in the third column */
        justify-self: end; /* Align to the end of the column */
        margin-right: 25px; /* Add some padding on the right */
    }
}

.hamburger span[b-fy9nugopha] {
    height: 4px;
    background: white;
    margin: 4px 0;
    border-radius: 2px;
}

@media (max-width:1024px) {
    .hamburger span[b-fy9nugopha] {
        display: block;
    }
}
/* _content/BMS.Site/Components/Layout/SiteFooter.razor.rz.scp.css */
.site-footer[b-o8qem628su] {
    background: linear-gradient(to bottom right, var(--footer-background-start), var(--footer-background-end));
    color: #fff;
    padding: 3rem 1rem 1rem;
    font-family: sans-serif;
    margin-top: auto; /* Ensure it pushes to bottom if flex column is used on body/layout */
}

.footer-content[b-o8qem628su] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-content[b-o8qem628su] {
        grid-template-columns: 1.5fr 1fr 1.5fr; /* Give more space to brand and contact */
        gap: 2rem;
    }
}

.footer-brand[b-o8qem628su] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo[b-o8qem628su] {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.brand-tagline[b-o8qem628su] {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}

.footer-heading[b-o8qem628su] {
    color: var(--primary-color);
    margin: 0 0 1.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav[b-o8qem628su] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav[b-o8qem628su]  a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    font-size: 0.95rem;
}

.footer-nav[b-o8qem628su]  a:hover, .footer-nav[b-o8qem628su]  a.active {
    color: var(--primary-color);
    padding-left: 5px; /* Subtle movement on hover */
}

.contact-item[b-o8qem628su] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.contact-item a[b-o8qem628su] {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover[b-o8qem628su] {
    color: var(--primary-color);
}

/* Icons */
.contact-item .material-symbols-outlined[b-o8qem628su] {
    color: var(--icon-color);
    font-size: 1.25rem;
}

/* Targeted styling for the LinkedIn component */
[b-o8qem628su] .linkedin-icon {
    width: 20px; /* Match the optical size of material icons roughly */
    height: 20px;
    color: var(--icon-color); /* This cascades to fill="currentColor" */
}

.footer-bottom[b-o8qem628su] {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}
/* _content/BMS.Site/Components/Pages/About.razor.rz.scp.css */
.values-grid[b-w2pt9akvom] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.value-item[b-w2pt9akvom] {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-image[b-w2pt9akvom] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-image .material-symbols-outlined[b-w2pt9akvom] {
    font-size: 48px;
    color: white;
}

.value-title[b-w2pt9akvom] {
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.value-description[b-w2pt9akvom] {
    text-align: center;
}

/* Owner Banner Section */
.owner-banner[b-w2pt9akvom] {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    padding: 2rem 2rem;
    
    background-color: var(--surface-color);
    background-image: url("images/bubbles-bg.jpeg");
    background-size: cover;
}

.owner-banner-grid[b-w2pt9akvom] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
}

.owner-profile-box[b-w2pt9akvom] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
}

.owner-image-wrapper[b-w2pt9akvom] {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    background-color: #fff;
}

.owner-image-wrapper img[b-w2pt9akvom] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-profile-box h2[b-w2pt9akvom] {
    margin: 0;
}

.owner-text-content[b-w2pt9akvom] {
    flex-grow: 1;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.owner-text-content p[b-w2pt9akvom] {
    margin-bottom: 1rem;
}

.owner-text-content p:last-child[b-w2pt9akvom] {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .owner-banner-grid[b-w2pt9akvom] {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

.location-card[b-w2pt9akvom] {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.location-image[b-w2pt9akvom] {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.location-image img[b-w2pt9akvom] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .location-image[b-w2pt9akvom] {
        height: 200px;
    }
}

.location-details[b-w2pt9akvom] {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .location-details[b-w2pt9akvom] {
        padding: 1.5rem;
    }
}

.location-address[b-w2pt9akvom] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0;
}
/* _content/BMS.Site/Components/Pages/Contact.razor.rz.scp.css */
.contact-page-container[b-xccg901ao0] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-text-container[b-xccg901ao0] {
    margin: 1em;
    min-width: 0;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-text-container h1[b-xccg901ao0] {
    margin: 0 0.2em;
}

.contact-text-container p[b-xccg901ao0] {
    margin: 0 0.2em;
}

.background-container[b-xccg901ao0] {
    z-index: -1;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

.spinner[b-xccg901ao0] {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #0d47a1;
    animation: spin-b-xccg901ao0 1s ease-in-out infinite;
    display: inline-block;
}

@keyframes spin-b-xccg901ao0 {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn-b-xccg901ao0 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form[b-xccg901ao0] {
    animation: fadeIn-b-xccg901ao0 0.5s ease-out;
}

@media (max-width: 768px) {
    .contact-form[b-xccg901ao0] {
        padding: 1.5rem;
    }
}
/* _content/BMS.Site/Components/Pages/Home.razor.rz.scp.css */
.page-hero[b-g9qogzer28] {
    min-height: 600px;
}

.stats-description[b-g9qogzer28] {
    max-width: 40rem;
    margin: 0 auto 3rem auto;
}

.integrators-wrapper[b-g9qogzer28] {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.integrators-text[b-g9qogzer28] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.integrators-subtext[b-g9qogzer28] {
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--text-medium);
}

.integrators-text h2[b-g9qogzer28] {
    margin-bottom: 0.5rem;
}

.icon-highlight[b-g9qogzer28] {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-stat[b-g9qogzer28] {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    margin: 0.5rem 0;
}

@media (min-width: 768px) {
    .integrators-wrapper[b-g9qogzer28] {
        flex-direction: row;
        align-items: center;
        text-align: left;
        justify-content: space-between;
    }

    .integrators-text[b-g9qogzer28] {
        align-items: flex-start;
        padding-right: 2rem;
    }
}

.stats-bubbles[b-g9qogzer28] {
    max-width: 1000px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.stat-bubble[b-g9qogzer28] {
    min-width: 150px;
    padding: 1.5em 2em;
    border-radius: 8px;
    font-size: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;

    text-align: center;

    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .stat-bubble[b-g9qogzer28] {
        min-width: unset;
        font-size: 0.7rem;
    }
}

.stat-bubble .material-symbols-outlined[b-g9qogzer28] {
    margin-bottom: 0.6em;

    font-size: 3em;
    color: var(--icon-color);
    font-variation-settings: 'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}

.stat-label[b-g9qogzer28] {
    font-size: 0.9em;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value[b-g9qogzer28] {
    margin-bottom: 0.25em;

    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-deep);
    line-height: 1.2;
}

.service-icon[b-g9qogzer28] {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-variation-settings: 'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}

.industries-section[b-g9qogzer28] {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.industries-content[b-g9qogzer28] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

/* ... (previous styles for .industries-header) ... */

.industries-list[b-g9qogzer28] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

.industry-item[b-g9qogzer28] {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.industry-item:last-child[b-g9qogzer28] {
    border-bottom: none;
}

.industry-item:hover[b-g9qogzer28] {
    border-bottom-color: var(--primary-color);
}

.industry-name[b-g9qogzer28] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-deep);
}

@media (max-width: 768px) {
    .industries-content[b-g9qogzer28] {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .industries-header h2[b-g9qogzer28] {
        font-size: 2.5rem;
    }

    .industries-list[b-g9qogzer28] {
        grid-template-columns: 1fr;
    }

    .industry-name[b-g9qogzer28] {
        font-size: 1.2rem;
    }
}

.partners-grid[b-g9qogzer28] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partner-logo[b-g9qogzer28] {
    flex: 0 1 150px;
    max-width: 200px;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover[b-g9qogzer28] {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-grid[b-g9qogzer28] {
        gap: 2rem;
    }

    .partner-logo[b-g9qogzer28] {
        flex: 0 1 120px;
    }
}

.testimonials[b-g9qogzer28] {
    padding: 4em 0;
    font-size: 1rem;

    position: relative;

    background-image: url("https://picsum.photos/1920/1080");
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .testimonials[b-g9qogzer28] {
        font-size: 0.8rem;
    }
}

.testimonials[b-g9qogzer28]::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    position: absolute;

    content: '';
    background-color: rgba(0, 0, 0, 0.5);

    z-index: 1;
}

.testimonials-image[b-g9qogzer28] {
    display: none;
}

.testimonials-content[b-g9qogzer28] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em;

    position: relative;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5em;

    z-index: 2;
}

.testimonial[b-g9qogzer28] {
    max-width: 25em;
    padding: 1.5em;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 20em;

    background-color: rgba(238, 238, 238, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-text[b-g9qogzer28] {
    text-align: left;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

.testimonial-signature[b-g9qogzer28] {
    text-align: right;
    font-weight: bold;
    font-style: italic;
    font-size: 1.1em;
    color: #555;
}

/* Services Redesign */
.services-section[b-g9qogzer28] {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.services-container[b-g9qogzer28] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-content[b-g9qogzer28] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-content h2[b-g9qogzer28] {
    font-size: 2.5rem;
    color: var(--text-deep);
    margin-bottom: 1rem;
    position: relative;
}

.services-content h2[b-g9qogzer28]::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
}

.service-list[b-g9qogzer28] {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item[b-g9qogzer28] {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.service-icon-wrapper[b-g9qogzer28] {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(234, 49, 88, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.service-icon-wrapper .material-symbols-outlined[b-g9qogzer28] {
    font-size: 32px;
    font-variation-settings: 'FILL' 1;
}

.service-info h3[b-g9qogzer28] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-deep);
    margin: 0 0 0.5rem 0;
}

.service-info p[b-g9qogzer28] {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
    font-size: 1.15rem;
}

.services-image-wrapper[b-g9qogzer28] {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-image-wrapper img[b-g9qogzer28] {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.services-image-wrapper:hover img[b-g9qogzer28] {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .services-container[b-g9qogzer28] {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-image-wrapper[b-g9qogzer28] {
        order: -1;
        max-height: 400px;
    }

    .services-image-wrapper img[b-g9qogzer28] {
        object-fit: cover;
        height: 100%;
    }
}
/* _content/BMS.Site/Components/Pages/QuickShip.razor.rz.scp.css */
/* Ensure cards stretch and have no padding so images can be full-width */
.card[b-gno6i1iiuo] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

.panel-card-image[b-gno6i1iiuo] {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.panel-card-body[b-gno6i1iiuo] {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.panel-card-body h3[b-gno6i1iiuo] {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.panel-card-body p[b-gno6i1iiuo] {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.panel-features[b-gno6i1iiuo] {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--bg-light);
    padding-top: 1rem;
    margin-top: auto;
}

.panel-features li[b-gno6i1iiuo] {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
}

.panel-features li strong[b-gno6i1iiuo] {
    color: var(--text-deep);
    margin-right: 0.5rem;
}

.panel-features li[b-gno6i1iiuo]::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    flex-shrink: 0;
}

.section-process[b-gno6i1iiuo] {
    background-color: var(--surface-color);
    color: white;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: inset 0 -4px 10px rgba(0,0,0,0.1);
}

.process-content[b-gno6i1iiuo] {
    max-width: 900px;
    margin: 0 auto;
}

.process-text[b-gno6i1iiuo] {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: #f8f9fa;
}

.process-text strong[b-gno6i1iiuo] {
    color: var(--primary-color);
    font-weight: 700;
}

.process-text .highlight[b-gno6i1iiuo] {
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
}

.process-disclaimer[b-gno6i1iiuo] {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-style: italic;
}

.panels-cta[b-gno6i1iiuo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5em 2rem;
    background: linear-gradient(135deg, var(--surface-color) 0%, var(--light-surface-color) 100%);
    text-align: center;
}

.panels-cta-content[b-gno6i1iiuo] {
    width: 100%;
    max-width: 800px;
    color: white;
}

.panels-cta-content h2[b-gno6i1iiuo] {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Override standard h2::after for the CTA section if needed, or leave it */
.panels-cta-content h2[b-gno6i1iiuo]::after {
    background-color: var(--primary-color); 
    left: 50%;
    transform: translateX(-50%);
}

.panels-cta p[b-gno6i1iiuo] {
    margin: 0 0 2em 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .panels-cta[b-gno6i1iiuo] {
        padding: 4em 1.5rem;
    }
}
/* _content/BMS.Site/Components/Pages/Services.razor.rz.scp.css */
.service-content[b-wg5q4dnnf3] {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
    gap: 3rem;
    align-items: center;
}

.service-content-reverse[b-wg5q4dnnf3] {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
}

.service-image[b-wg5q4dnnf3] {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.service-image:hover[b-wg5q4dnnf3] {
    transform: scale(1.02);
}

.service-details p[b-wg5q4dnnf3] {
    margin-bottom: 1.5em;
}

.service-features[b-wg5q4dnnf3] {
    margin: 0;
    padding-left: 1.5em;
    list-style: none;
}

.service-features li[b-wg5q4dnnf3] {
    margin-bottom: 1em;
    padding-left: 1.5em;
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-medium);
    position: relative;
}

.service-features li[b-wg5q4dnnf3]::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
}

.service-features li strong[b-wg5q4dnnf3] {
    color: var(--text-deep);
    font-weight: 600;
}

@media (max-width: 968px) {
    .service-section[b-wg5q4dnnf3] {
        padding: 4em 1.5rem;
    }

    .service-content[b-wg5q4dnnf3],
    .service-content-reverse[b-wg5q4dnnf3] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content-reverse .service-image[b-wg5q4dnnf3] {
        order: -1;
    }

    .service-icon[b-wg5q4dnnf3] {
        font-size: 6em;
    }

    .service-details p[b-wg5q4dnnf3] {
        text-align: center;
    }

    .service-details h2[b-wg5q4dnnf3] {
        text-align: center;
    }

    .service-features[b-wg5q4dnnf3] {
        text-align: left;
    }
}

.services-cta[b-wg5q4dnnf3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5em 2rem;
    background: linear-gradient(135deg, var(--surface-color) 0%, var(--light-surface-color) 100%);
    text-align: center;
}

.services-cta-content[b-wg5q4dnnf3] {
    width: 100%;
    max-width: 800px;
    color: white;
}

.services-cta-content h2[b-wg5q4dnnf3] {
    color: var(--primary-color);
}

.services-cta-content h2[b-wg5q4dnnf3]::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color); /* Ensure visibility on dark/gradient bg if needed, though global sets it */
}

.services-cta p[b-wg5q4dnnf3] {
    margin: 0 0 2em 0;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .services-cta[b-wg5q4dnnf3] {
        padding: 4em 1.5rem;
    }

    .cta-button[b-wg5q4dnnf3] {
        font-size: 1.1em;
        padding: 0.9em 2.5em;
    }
}
