@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

html, body {
    height: 100%;
}
body {
    background-color: #FFFFFF !important;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: #3a3a3a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    min-height: 70%;
}

.container {
    max-width: 1300px !important;
}

img, object, embed, video {
    max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
    width: 100%;
}

img {
    border: none;
    outline: none;
}

hr {
    clear: both;
}

a:active {
    outline: none;
}

a {
    color: #3a8a86;
    transition: color 0.2s ease-in-out;
}

a:link, a:visited {
    text-decoration: none;
}

a:hover, a:active {
    color: #2f6f6c;
     text-decoration:none;
}

/*
a {
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
*/

/* Bounce Stuff */
.bounceit {
    margin-top: 50px;
    width: 100%;
    text-align: center;
    bottom: 0px;
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
    position: absolute;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

/*Page Fade In*/
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen {
    body {
        opacity: 0; /* make things invisible upon start */
        -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
        -moz-animation: fadeIn ease-in 1;
        animation: fadeIn ease-in 1;

        -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;

        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        animation-duration: 1s;

        -webkit-animation-delay: 0.1s;
        -moz-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
}

/*Page Fade End*/


/* Site Headers */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #22403f;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
}

h1 {
    font-size: 2.3em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}

h2 {
    font-size: 2.1em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
    font-weight: bold;
}

h3 {
    font-size: 1.9em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h4 {
    font-size: 1.7em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h5 {
    font-size: 1.4em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h6 {
    font-size: 1.1em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}
.logo-size {
    width: 90%;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.top-bar {
    max-height: 155px;
    z-index: 4000;
}
#top_page .nav-item .nav-link:hover {
    color: var(--nl-teal) !important;
    background-color: #FFFFFF !important;
}

.content-margin-top {
    margin-top: 330px;
}

.bg-light {
    background-color: #e9ecef !important;
}

.navbar {
    min-height: 45px;
}

.nav-padding {
    padding-left: 1rem;
}

.navbar-nav.navbar-center {
    /*position: relative;*/
    /*left: 10%;*/
    /*transform: translatex(-50%);*/
}
.navbar-nav .nav-item {
    font-size: 1.9em;
    border-right: 2px solid #FFFFFF;
}

.nav-item:last-of-type {
  border-right: none;
}

.navbar-nav .nav-item .nav-link:hover {
    background-color: var(--nl-teal);
    color: #FFFFFF !important;
}

.navbar-nav .nav-link {
}

.search-bar {
    min-width: 310px;
    margin-bottom: 40px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.mini-basket-w {
    width: 320px;
    font-size: .9em;
}

.form-control {
    width: 75%;
}

.phone-number {
    font-size: 1.4em;
    margin-right: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.sociallinksBox {
    text-align: center;
}

.sociallinksBox img {
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 8px;
}

/* For FontAwesome icons */
.sociallinksBox a, .sociallinksBox a {
    display: inline-block !important;
    border-radius: 50% !important;
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-align: center !important;
    color: #FFFFFF !important;
    width: 25px !important;
    height: 25px !important;
    padding: 5px 0px 0px 0px !important;
    font-size: 14px !important;
    line-height: 14px !important;
}

.sociallinksBox a:last-of-type {
    margin-right: 0px;
}

.sociallinksBox a:first-of-type {
    margin-left: 0px;
}

.sociallinksBox a:link, .sociallinksBox a:visited {
    background-color: #000000;
    color: #FFFFFF;
}

.sociallinksBox a:hover, .sociallinksBox a:active {
    background-color: var(--nl-teal);
    color: #FFFFFF;
}

.topsociallinks {
}

.topsociallinks a {
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-align: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 7px 0px 0px 0px !important;
    font-size: 26px !important;
    line-height: 26px !important;
}

.topsociallinks a:link, .topsociallinks a:visited {
    background-color: #bbbbbb;
    color: #FFFFFF;
}

.topsociallinks a:hover, .topsociallinks a:active {
    background-color: var(--nl-teal);
    color: #FFFFFF;
}


/*Nav Stuff*/
.navbar {
    position: relative;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0rem 1rem;
    z-index: 2000;
}
.section-padding {
    margin-top: 90px;
}
.btn-outline-primary {
    color: var(--nl-teal) !important;
    border-color: var(--nl-teal) !important;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.2s ease-in-out;
}

.btn-outline-primary:hover {
    background-color: var(--nl-teal) !important;
    color: #FFFFFF !important;
}

.btn-outline-secondary {
    color: var(--nl-teal) !important;
    border-color: var(--nl-teal) !important;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.2s ease-in-out;
}

.btn-outline-secondary:hover {
    background-color: var(--nl-teal) !important;
    color: #FFFFFF !important;
}
.slider-bg {
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}
.slider-spacer {
   min-height: 760px;
}
.carousel-item p {
font-size: 1.3em;
}
.carousel-inner {
    max-height: 685px;
}

.carousel-caption {
    position: relative !important;
    margin-top: -15rem;
    width: 100%;
    font-size: 1em;
    line-height: 1.2em;
    padding: 20px;
    background-color: rgba(100, 100, 100, 0.80);
    right: 0px !important;
    left: 0px !important;
    bottom: 0px !important;
}

.carousel-caption p {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 2em;
    line-height: 1.3em;
    padding-right: 60px;
    padding-left: 60px;
}

.carousel-control-prev {
    width: 70px !important;
}

.carousel-control-next {
    width: 70px !important;
}

.blurb-border {
    border: 2px solid #fff;
}

.blurb-images {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;

}
.blurb-header-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: bottom;
    height: 340px;
}
    .page-blurb-title {
        color: #FFFFFF !important;
        position: absolute;
        top: 55%;
        font-size: 4.2em;
    }
.scale-up {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}
.scale-down {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.darken {
    filter: brightness(50%);
    overflow: hidden;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}
.lighten {
    filter: brightness(100%);
     overflow: hidden;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.blurb-button {
    margin-bottom: 60px;
}

.blurb-caption {
    margin-top: -204px;
    position: inherit;
}

.blurb-text {
    font-size: 1.2em;
    padding-top: 12px;
    padding-bottom: 4px;
}

.blurb-bg {
    background-size: contain;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
}

.border-2 {
    border-width: 2px !important;
}
.home-text {
    font-size: 1.1em;
}
.testimonal-heading {
    font-size: 4em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}
.testimonal-padding {
    padding-left: 220px;
    padding-right: 220px;
    padding-top: 100px;
    padding-bottom: 100px;
 }
.quote-size {
    width: 4% !important;
}

.quote-left {
    margin-right: 0px;
}
.quote-right {
    margin-left: 0px;
}
.testimonal-bottom {
    margin-bottom: 10px;
}
.footer-bg {
    background-color: #686868;
}
footer {
    padding-top: 20px;
}
footer .list-group-item.active, footer .list-group-item {
    padding: 0.2rem 1.25rem;
    background: none;
    border: none;
    color: #FFFFFF;
}
footer .list-group-item a {
    color: #FFFFFF;
}
footer .list-group-item a:hover {
    color: #a1bdac;
}



.star-rating .yellowstar {
    color: #E6CE31 !important;
}

.sticky .top-bar {
    max-height: 140px;
    z-index: 4000;
}

.sticky .logo-size {
    width: 45%;
}

.sticky .fa-phone {
    display: inline-block;
}

.sticky .phone-number {
    display: none;
}
.sticky .search-bar {
    margin-bottom: 10px;
}

.user-panel .card-body {
    padding: 1rem;
}

#message-outer {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 5000;
}

#message-inner {
    display: inline-block;
    margin: 0 auto;
    width: 45%;
    padding-top: 30px;
}

/* ==========================================================================
   Northern Logistics homepage (lovable mockup)
   ========================================================================== */

/* Design tokens */
:root {
    --nl-teal: #3a8a86;
    --nl-teal-dark: #2f6f6c;
    --nl-teal-light: #5fb8b3;

    /* Blog design tokens (rounded cards + button styling) */
    --nl-radius: 0.625rem;
    --nl-ink: #1b2a2a;
    --nl-muted: #6b7280;
    --nl-border: #e2e8e7;
    --nl-card: #ffffff;
    --nl-teal-rgb: 58, 138, 134;
}

.nl-page {
    font-family: 'Open Sans', sans-serif;
}

/* --- Header: sticky bar, logo, topbar, navbar --- */
.nl-header-fixed {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.nl-logo {
    font-weight: 700;
    color: var(--nl-teal);
    font-size: 1.1rem;
    line-height: 1.1;
}

.nl-logo small {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: #888;
    letter-spacing: 1px;
}

.nl-logo img {
    height: 75px;
    width: auto;
    transition: height 0.25s ease;
}

.nl-topbar {
    background: var(--nl-teal);
    color: #fff;
    font-size: 0.85rem;
}

.nl-topbar a {
    color: #fff;
    text-decoration: none;
}

.nl-topbar a:hover {
    text-decoration: underline;
}

.nl-navbar {
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.nl-navbar .nav-link {
    color: var(--nl-teal) !important;
    font-weight: 600;
    padding: 0.6rem 1rem !important;
    font-size: 0.95rem;
    transition: padding 0.25s ease, font-size 0.25s ease;
}

/* Mobile hamburger toggler — dark green to match the site */
.nl-navbar .navbar-toggler {
    border-color: var(--nl-teal-dark);
}

.nl-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(47, 111, 108, 0.35);
}

.nl-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(47,111,108,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nl-navbar .nav-link:hover {
    color: var(--nl-teal-light) !important;
}

.nl-navbar .nav-link.active,
.nl-navbar .nav-link:active,
.nl-navbar .nav-link:focus {
    color: var(--nl-teal-dark) !important;
}

.nl-navbar .nav-link:focus,
.nl-navbar .nav-link:focus-visible {
    outline-color: var(--nl-teal-dark);
    box-shadow: none;
}

/* --- Third-level nav: fly out to the right of the parent item --- */
@media (min-width: 992px) {
    .nl-navbar .dropdown-submenu {
        position: relative;
    }

    .nl-navbar .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -0.5rem;
        margin-left: 0.125rem;
    }

    /* reveal the flyout on hover */
    .nl-navbar .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    /* point the toggle caret to the right, since the submenu opens sideways */
    .nl-navbar .dropdown-submenu > .dropdown-toggle::after {
        border-top: 0.3em solid transparent;
        border-bottom: 0.3em solid transparent;
        border-left: 0.3em solid;
        border-right: 0;
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* shrink the header on scroll */
.nl-header-fixed.scrolled .nl-logo img {
    height: 42px;
}

.nl-header-fixed.scrolled .nl-navbar .nav-link {
    padding: 0.4rem 1rem !important;
    font-size: 0.85rem;
}

/* --- Buttons --- */
.nl-btn-teal {
    background: var(--nl-teal);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 2px;
}

.nl-btn-teal:hover {
    background: var(--nl-teal-dark);
    color: #fff;
}

.nl-btn-light-teal {
    background: rgba(255, 255, 255, 0.85);
    color: var(--nl-teal);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 2px;
    letter-spacing: 1px;
}

.nl-btn-light-teal:hover {
    background: #fff;
    color: var(--nl-teal-dark);
}

/* Primary buttons — match the "GET A QUOTE" (.nl-btn-teal) button */
.btn-primary {
    background-color: var(--nl-teal);
    border-color: var(--nl-teal);
    color: #fff !important;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 2px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: var(--nl-teal-dark);
    border-color: var(--nl-teal-dark);
    color: #fff;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(58, 138, 134, 0.4);
}

.btn-primary:disabled,
.btn-primary.disabled {
    background-color: var(--nl-teal);
    border-color: var(--nl-teal);
}

/* --- Hero --- */
.nl-hero {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nl-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.nl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(58, 138, 134, 0.35);
    z-index: 1;
}

.nl-hero-inner {
    position: relative;
    z-index: 2;
    top: 130px;
}

.nl-hero-banner {
    background: rgba(58, 138, 134, 0.85);
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.nl-hero-banner h1 {
    font-weight: 300;
    font-size: 2.5rem;
    margin: 0;
}

.nl-hero-banner h1 strong {
    font-weight: 700;
}

/* --- Intro --- */
.nl-intro {
    padding: 3.5rem 1rem;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}
/*--- Milestones ---*/
.milestones-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}
.milestones-section h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  color: #1a1a2e;
}
/* The card */
.milestones-card {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #fff;
  transition: box-shadow 0.2s ease;
}
.milestones-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}
/* Year badge – left column */
.milestones-card .card-year {
  flex-shrink: 0;
  width: 100px;
  background: var(--nl-teal-dark);        /* adjust to brand color */
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 12px;
  letter-spacing: 1px;
}
/* Text body – right column */
.milestones-card .card-body {
  flex: 1;
  padding: 20px 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3a3a3a;
  border-left: 2px solid #88b8b6;  /* accent stripe */
}
.milestones-card .card-body ul {
  margin: 8px 0 0 16px;
  padding: 0;
}
.milestones-card .card-body ul li {
  margin-bottom: 4px;
}
/* Responsive – stack on mobile */
@media (max-width: 520px) {
  .milestones-card {
    flex-direction: column;
  }
  .milestones-card .card-year {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
  }
  .milestones-card .card-body {
    border-left: none;
    border-top: 4px solid #e8b84b;
  }
}

/* --- Services --- */
.nl-services {
    background: var(--nl-teal);
    padding: 3rem 0;
}

.nl-service-card {
    background: #fff;
    padding: 0;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.nl-service-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.nl-service-card .service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.nl-service-card:hover .service-img {
    transform: scale(1.08);
}

.nl-service-card:hover .nl-service-icon img {
    transform: scale(1.12);
}

.nl-service-icon {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: absolute;
    left: 50%;
    top: 175px;
    transform: translateX(-50%);
}

.nl-service-icon img {
    width: 88%;
    transition: transform 0.3s ease;
}

.nl-service-body {
    padding: 3rem 1.5rem 2rem;
    min-height: 220px;
}

.nl-service-body h3 {
    margin-top: 30px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.nl-service-body p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}

/* --- Section title --- */
.nl-section-title {
    color: var(--nl-teal);
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* --- Testimonials --- */
.nl-testimonials {
    padding: 4rem 0;
    background: #fff;
}

.nl-testimonial {
    background: #eef2f3;
    padding: 1.5rem;
    position: relative;
    height: 100%;
}

.nl-testimonial .quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--nl-teal);
    font-size: 1.8rem;
    opacity: 0.7;
}

.nl-testimonial-head {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.nl-testimonial-head img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
}

.nl-testimonial-head h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.nl-testimonial-head small {
    color: #888;
}

.nl-stars {
    color: #f5a623;
    font-size: 0.8rem;
}

.nl-testimonial p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- Testimonial carousel (3 per slide) --- */
.nl-testimonial-carousel {
    position: relative;
    padding: 0 60px;
}

.nl-testimonial-carousel .carousel-inner {
    max-height: none;
}

.nl-testimonial-carousel .carousel-control-prev,
.nl-testimonial-carousel .carousel-control-next {
    width: 50px !important;
    opacity: 1;
}

.nl-testimonial-carousel .carousel-control-prev-icon,
.nl-testimonial-carousel .carousel-control-next-icon {
    width: 28px;
    height: 28px;
    background-color: var(--nl-teal);
    border-radius: 50%;
    background-size: 55% 55%;
}

/* --- Unparalleled support / stats --- */
.nl-support {
    margin-bottom: 130px;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4rem 0 4.5rem;
    color: #fff;
    max-height: 330px;
}

.nl-support::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(58, 138, 134, 0.55);
}

.nl-support-inner {
    position: relative;
    z-index: 2;
}

.nl-support h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.nl-stat-card {
    min-height: 180px;
    background: #fff;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--nl-teal);
    margin-bottom: 0;
}

.nl-stat-card .num {
    margin-top: 30px;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
}

.nl-stat-card .label {
    color: #555;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* --- Locations --- */
.nl-locations {
    position: relative;
}

.nl-locations-panel {
    background: rgba(58, 138, 134, 0.92);
    color: #fff;
    padding: 2rem 1.5rem;
    height: 100%;
}

.nl-locations-panel h3 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.nl-location {
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
    line-height: 1.5;
}

.nl-location strong {
    color: #f5a623;
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* White-outline-on-green button under each location in the sidebar */
.nl-location-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.85rem;
    border: 1px solid #fff;
    border-radius: 2px;
    background: transparent;
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.nl-location-btn:hover,
.nl-location-btn:focus {
    background: #fff;
    color: var(--nl-teal) !important;
    text-decoration: none;
}

/* Location image inside the Google Maps info window */
.nl-map-info-img {
    display: block;
    width: 100%;
    max-width: 220px;
    height: 110px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

/* More Info button inside the Google Maps info window */
.nl-map-location-btn {
    background: #1e5631;
    border-color: #1e5631;
    color: #fff !important;
}

.nl-map-location-btn:hover,
.nl-map-location-btn:focus {
    background: #143d22;
    border-color: #143d22;
    color: #fff !important;
}

.nl-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

/* --- Footer --- */
.nl-footer {
    background: var(--nl-teal);
    color: #fff;
    padding: 2.5rem 1rem 1rem;
    text-align: center;
}

.nl-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin: 0 0.25rem;
    transition: all .2s;
}

.nl-social a:hover {
    background: #fff;
    color: var(--nl-teal);
}

.nl-footer-nav {
    margin: 1.5rem 0 0.5rem;
}

.nl-footer-nav a {
    color: #fff;
    margin: 0 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.nl-footer-nav a:hover {
    color: #f5a623;
}

/* Footer menu: inline top-level parents, children stacked below each parent */
.nl-footer-menu {
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 1.5rem;
}

.nl-footer-nav .nav-link {
    margin: 0;
    padding: 0;
}

.nl-footer-col {
    padding: 0 1.25rem;
    text-align: center;
}

.nl-footer-parent {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nl-footer-submenu {
    margin-top: 0.6rem;
}

.nl-footer-child {
    color: #cfe3e1;
    font-weight: 400;
    font-size: 0.85rem;
    padding: 0.15rem 0 !important;
}

.nl-footer-child:hover {
    color: #f5a623;
}

.nl-copyright {
    background: #1a3534;
    color: #9bb;
    padding: 0.75rem;
    text-align: center;
    font-size: 0.75rem;
}

/*
    X-Small devices (portrait phones, less than 576px)
    No media query for `xs` since this is the default in Bootstrap
*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .navbar-nav .nav-item {
        font-size: .9em;
    }
    .form-control {
        width: 100%;
    }

    .logo-size {
        width: 50%;
    }

    .content-margin-top {
        margin-top: 190px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .navbar-nav .nav-item {
        font-size: 1.2em;
    }

    .logo-container {
        max-width: none;
    }

    .carousel-caption {
        font-size: 1.4em;
        line-height: 1.4em;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .nav-padding {
        padding-left: 10rem;
    }

    .navbar-nav .nav-item {
        font-size: 1.4em;
    }

    .navbar-nav .nav-link {
        padding-right: .8rem !important;
        padding-left: .8rem !important;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .logo-size {
        width: 55%;
    }
}

/* Northern Logistics homepage — small screens */
@media (max-width: 767px) {
    .nl-hero-banner h1 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Site-wide modernization — bring interior pages in line with the homepage
   (teal accents, Open Sans, more breathing room)
   ========================================================================== */

/* Preserve white headings on the homepage's dark/teal panels
   (these inherit white from their parent and must not pick up the new
   global dark heading color) */
.nl-hero-banner h1,
.nl-support h2,
.nl-locations-panel h3,
.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h3 {
    color: #fff;
}

/* Interior page header title over the header image */
.page-blurb-title {
    font-weight: 700;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.page-blurb-title strong,
.page-blurb-title b {
    font-weight: 700;
}

/* Interior body copy — more readable line-height and comfortable size */
.home-text {
    font-size: 1.05em;
    line-height: 1.8;
    color: #444;
}

.home-text h1,
.home-text h2,
.home-text h3,
.home-text h4 {
    margin-top: 2rem;
}

.home-text p {
    margin-bottom: 1.25rem;
}

.home-text a {
    color: var(--nl-teal);
}

.home-text a:hover {
    color: var(--nl-teal-dark);
}

/* Blurb copy spacing */
.blurb-text {
    line-height: 1.75;
    color: #555;
}

/* Give the light alternating sections a softer, more modern tone */
.bg-light {
    background-color: #f2f5f5 !important;
}

/* Slightly more generous rhythm between stacked content sections */
.section-padding {
    margin-top: 110px;
}

@media (max-width: 767px) {
    .section-padding {
        margin-top: 60px;
    }

    .page-blurb-title {
        font-size: 2.4em;
    }
}
/* ==========================================================================
   Blog — rounded cards & button styling (adapted to the Norlo teal palette)
   ========================================================================== */
.blog-layout-container {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.blog-page-header {
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--nl-border);
}

.blog-page-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--nl-ink);
}

.blog-main-col {
    padding-right: 2rem;
}

.blog-sidebar-col {
    padding-left: 0.5rem;
}

/* --- Post cards --- */
.blog-post-card {
    background: var(--nl-card);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius);
    overflow: hidden;
    margin-bottom: 1.75rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-post-card:hover {
    box-shadow: 0 8px 30px rgba(var(--nl-teal-rgb), 0.14);
    transform: translateY(-2px);
}

.blog-post-img-wrap {
    display: block;
    overflow: hidden;
}

.blog-post-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-img-wrap img {
    transform: scale(1.03);
}

.blog-post-body {
    padding: 1.25rem 1.5rem;
}

.blog-post-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.blog-post-cat-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(var(--nl-teal-rgb), 0.1);
    color: var(--nl-teal-dark);
    transition: background 0.15s ease, color 0.15s ease;
    text-decoration: none;
}

.blog-post-cat-badge:hover {
    background: var(--nl-teal);
    color: #fff;
    text-decoration: none;
}

.blog-post-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.blog-post-title a {
    color: var(--nl-ink);
    text-decoration: none;
    transition: color 0.15s ease;
}

.blog-post-title a:hover {
    color: var(--nl-teal);
}

.blog-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--nl-muted);
    margin-bottom: 0.875rem;
}

.blog-post-author {
    color: var(--nl-muted);
    font-weight: 600;
    text-decoration: none;
}

.blog-post-author:hover {
    color: var(--nl-teal);
    text-decoration: none;
}

.blog-post-meta-sep {
    opacity: 0.4;
    margin: 0 0.125rem;
}

.blog-post-comments-link {
    color: var(--nl-muted);
    text-decoration: none;
}

.blog-post-comments-link:hover {
    color: var(--nl-teal);
    text-decoration: none;
}

.blog-post-excerpt {
    font-size: 0.9rem;
    color: var(--nl-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.blog-post-excerpt p {
    margin-bottom: 0;
}

.blog-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--nl-border);
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

/* --- "Read more" button-link --- */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--nl-teal-dark);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.15s ease, color 0.15s ease;
}

.blog-read-more svg {
    transition: transform 0.15s ease;
}

.blog-read-more:hover {
    color: var(--nl-teal);
    gap: 0.55rem;
    text-decoration: none;
}

/* --- Filter banner (tag / category / author views) --- */
.blog-filter-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(var(--nl-teal-rgb), 0.06);
    border: 1px solid rgba(var(--nl-teal-rgb), 0.18);
    border-radius: var(--nl-radius);
    padding: 0.625rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--nl-ink);
}

.blog-filter-clear {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--nl-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.blog-filter-clear:hover {
    color: var(--nl-teal);
    text-decoration: none;
}

/* --- Sidebar widgets --- */
.blog-sidebar-widget {
    background: var(--nl-card);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-sidebar-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nl-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--nl-border);
}

.blog-sidebar-list {
    margin: 0;
}

.blog-sidebar-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.375rem 0;
    border-bottom: 1px solid var(--nl-border);
}

.blog-sidebar-list li:last-child {
    border-bottom: none;
}

.blog-sidebar-link {
    color: var(--nl-ink);
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.blog-sidebar-link:hover,
.blog-sidebar-link.active {
    color: var(--nl-teal);
    text-decoration: none;
}

.blog-sidebar-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    background: rgba(var(--nl-teal-rgb), 0.08);
    color: var(--nl-teal-dark);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--nl-border);
    color: var(--nl-muted);
    font-size: 0.8rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
}

.blog-tag-pill:hover,
.blog-tag-pill.active {
    background: var(--nl-teal);
    color: #fff;
    border-color: var(--nl-teal);
    text-decoration: none;
}

.blog-tag-pill.tag-weight-1 { font-size: 0.75rem; }
.blog-tag-pill.tag-weight-2 { font-size: 0.8rem; }
.blog-tag-pill.tag-weight-3 { font-size: 0.875rem; }
.blog-tag-pill.tag-weight-4 { font-size: 0.95rem; font-weight: 600; }
.blog-tag-pill.tag-weight-5 { font-size: 1rem; font-weight: 700; }
.blog-tag-pill.tag-weight-6 { font-size: 1.05rem; font-weight: 700; }

/* --- Pagination (rounded, teal active state) --- */
.pagination {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0.5rem;
}

.pagination li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.75rem;
    border-radius: var(--nl-radius);
    border: 1px solid var(--nl-border);
    background: var(--nl-card);
    color: var(--nl-ink);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pagination li a:hover {
    background: rgba(var(--nl-teal-rgb), 0.06);
    border-color: var(--nl-teal);
    color: var(--nl-teal);
    text-decoration: none;
}

.pagination li.active a {
    background: var(--nl-teal);
    border-color: var(--nl-teal);
    color: #fff;
}

.pagination li.active a:hover {
    background: var(--nl-teal-dark);
    border-color: var(--nl-teal-dark);
    color: #fff;
}

.pagination li.disabled a {
    color: var(--nl-border);
    cursor: default;
    pointer-events: none;
}

.pagination li.page-info span {
    display: inline-flex;
    align-items: center;
    height: 2.25rem;
    padding: 0 0.75rem;
    color: var(--nl-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    .blog-main-col { padding-right: 15px; }
    .blog-sidebar-col { padding-left: 15px; margin-top: 2rem; }
}

/* Override Bootstrap's blue active dropdown item with the site teal */
.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--nl-teal);
}
