﻿body {
    padding-top: 12px;
    background-color: #e6f0fa !important;
    color: #212529; /* Bootstrap’s default text color */
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
#blazor-error-ui {
    display: none;
    background-color: lightyellow;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
    border-top: 1px solid #ccc;
}

    #blazor-error-ui.show {
        display: block;
    }

/* Absolutely positioned logo box */
.logo-box {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 48px;
    width: 100px;
}
    .logo-box:hover {
        background-color: #eaeaea;
    }

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.logo-box-hero {
    background-color: transparent;
    border-radius: 12px;
    width: 150px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    height: 60px;
    max-width: 160px;
    margin-bottom: 1rem;
    /* other hero-specific styles */
}


/* Nav links styling */
.nav-link {
    color: #f8f9fa !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 1.250rem;
}

    .nav-link:hover,
    .nav-link.active {
        color: #f7b801 !important;
    }

.hero-section {
    padding: 20px 0;
    background-color: #003366;
    color: white;
}

.hero-title {
    color: #ffffff;
}

.hero-logo {
    max-width: 140px;
}

.hero-image {
    max-height: 400px;
    width: 100%;
    height: auto;
}

/* For products page banner */
.products-banner-section {
    padding: 20px 0;
    background-color: #003366;
}

    .products-banner-section .hero-title {
        font-size: 2rem;
        color: white;
    }

.hero-image-tall {
    max-height: 275px;
    width: auto;
    object-fit: contain;
}

/* Optional: shrink margins if logo and heading feel too spaced */
.products-banner-section .logo-box {
    margin-bottom: 20px;
}

.products-banner-section .mt-4 {
    margin-top: 20px !important;
}

.pt-1rem {
    padding-top: 1rem !important;
}
/* Footer styling */

.contact-info i {
    color: #ffffff;
}

.contact-info p {
    font-size: 1rem;
}
footer {
    font-size: 0.9rem;
}


.step-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    margin: 0 auto;
    font-weight: bold;
}

.tablet-frame {
    width: 400px;
    height: 600px;
    padding: 20px;
    border: 12px solid #333;
    border-radius: 30px;
    background-color: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tablet-frame img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 10px;
    }

@media (max-width: 992px) {
    .navbar-collapse {
        padding-left: 96px; /* equal to logo width */
    }
}