/*
 * mo4less.css — brand overrides for MO4LESS GROUP LLC
 * Loaded after style.css so it wins.
 */

/* Palette taken from the MO4LESS logo: royal blue, black, white.
   #0345A7 is the exact blue sampled out of the logo artwork. */
:root {
    --theme-color: #0345A7;
    /* logo blue - buttons, links, accents */
    --theme-color2: #14181F;
    /* logo black - secondary buttons */
    --theme-color-light: rgba(3, 69, 167, .08);
    --color-dark: #14181F;
    /* dark panels: top bar, services, testimonials, counters */
    --footer-bg: #14181F;
    --brand-blue-light: #5B93F5;
    /* lifted blue, readable on the black panels */
}

/* on the black panels the deep logo blue is too dark to read, so the
   accents there use the lifted blue instead */
.counter-box .unit,
.footer-area .footer-list li a i,
.footer-area .footer-list li a:hover,
.footer-area .copyright .copyright-text a,
.footer-area .copyright .footer-menu li a:hover,
.footer-newsletter .newsletter-form .form-icon>i,
.header-top-list a:hover,
.header-top-social a:hover,
.header-top-lang .top-lang:hover {
    color: var(--brand-blue-light);
}

.footer-newsletter .newsletter-form .form-control:focus {
    border-bottom-color: var(--brand-blue-light);
}

/*=====================
   Careers / contractor recruiting section
   Sits on the dark panel, so everything inside is light-on-dark.
======================*/

#careers .service-item {
    height: 100%;
}

/* the five cut-out crew photos, lined up like the recruiting flyer */
.crew-band {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin: 45px 0 10px;
    position: relative;
    padding-bottom: 22px;
}

/* soft blue ground shadow under the line-up */
.crew-band::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 82%;
    height: 26px;
    background: radial-gradient(ellipse at center, rgba(3, 69, 167, .55) 0%, rgba(3, 69, 167, 0) 70%);
    pointer-events: none;
}

.crew-band img {
    height: 520px;
    width: auto;
    max-width: 19%;
    object-fit: contain;
    object-position: bottom;
    display: block;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .55));
}

@media (max-width: 1199px) {
    .crew-band img {
        height: 420px;
    }
}

@media (max-width: 991px) {
    .crew-band {
        flex-wrap: wrap;
        gap: 0;
    }

    .crew-band img {
        height: auto;
        width: 33.333%;
        max-width: 33.333%;
    }

    .crew-band::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .crew-band img {
        width: 50%;
        max-width: 50%;
    }
}

/* the template's service icon sits on a filled brand-blue shape, so the
   glyph inside has to be white */
#careers .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

#careers .service-icon i {
    font-size: 32px;
    color: #fff;
    line-height: 1;
}

.careers-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 35px 30px;
    height: 100%;
}

.careers-box-title {
    color: #fff;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--theme-color);
    display: inline-block;
}

.careers-box .pricing-feature ul li {
    color: #d7dbe4;
}

.careers-box .pricing-feature ul li i {
    color: var(--brand-blue-light);
}

.skill-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d7dbe4;
    font-weight: 500;
    background: rgba(255, 255, 255, .04);
    border-radius: 6px;
    padding: 12px 16px;
    height: 100%;
}

.skill-tag i {
    color: var(--brand-blue-light);
    font-size: 20px;
    width: 26px;
    text-align: center;
    flex-shrink: 0;
}

.careers-note {
    color: #d7dbe4;
    margin: 24px 0 0;
}

.careers-note strong {
    color: #fff;
}

.careers-cta {
    margin-top: 40px;
    background: var(--theme-color);
    border-radius: 8px;
    padding: 40px;
}

.careers-cta h3 {
    color: #fff;
    margin-bottom: 8px;
}

.careers-cta p {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 0;
}

.careers-cta .theme-btn {
    background: #fff;
    color: var(--theme-color);
    margin-right: 10px;
}

.careers-cta .theme-btn::before {
    background: var(--theme-color2);
}

.careers-cta .theme-btn:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .careers-cta {
        padding: 30px 25px;
    }

    .careers-cta .theme-btn {
        margin-bottom: 10px;
    }
}

/* the secondary button is logo-black, which disappears against the dark hero
   photos - a white outline keeps its edge visible */
.theme-btn2 {
    border: 2px solid rgba(255, 255, 255, .55);
}

.theme-btn2:hover {
    border-color: var(--brand-blue-light);
}

/*=====================
   Single-page navigation
   style.css sets `* { scroll-behavior: inherit !important }`, which resolves to
   `auto` on <html> and makes every menu link jump instantly. A more specific
   !important rule on <html> wins that back.
======================*/
html {
    scroll-behavior: smooth !important;
}

/* stop section headings from landing under the sticky header */
[id] {
    scroll-margin-top: 110px;
}

@media (max-width: 991px) {
    [id] {
        scroll-margin-top: 80px;
    }
}

/* logo: cropped from the supplied artwork, so it is much wider than it is tall */
.navbar-brand img {
    width: auto;
    height: 58px;
    max-width: 230px;
}

.navbar .offcanvas-brand img,
.sidebar-popup-logo img {
    width: auto;
    height: 46px;
}

.footer-logo img {
    width: auto;
    height: 70px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .navbar-brand img {
        height: 44px;
    }
}

/* photo hero slides need a stronger scrim so the white headline stays readable */
.hero-single::before {
    background: linear-gradient(to right, rgba(10, 16, 26, 0.88) 0%, rgba(10, 16, 26, 0.6) 45%, rgba(10, 16, 26, 0.15) 100%);
}

/* owner / contact card in the team section */
.owner-card {
    background: #12141d;
    color: #fff;
    border-radius: 8px;
    padding: 40px;
}

.owner-card h3 {
    color: #fff;
    margin-bottom: 6px;
}

.owner-card .owner-role {
    display: block;
    color: #1e56db;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.owner-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.owner-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.owner-card ul li i {
    color: #1e56db;
    font-size: 18px;
    margin-top: 4px;
}

.owner-card ul li a,
.owner-card ul li span {
    color: #d5d8e2;
}

.owner-card ul li a:hover {
    color: #1e56db;
}

.owner-card .note {
    display: block;
    font-size: 13px;
    font-style: italic;
    color: #8f95a8;
}
