/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/* Updated to match NPF.no design */

/* ============================================
   CSS CUSTOM PROPERTIES (CSS VARIABLES)
   Defines color scheme and reusable values for NPF brand
   ============================================ */
:root {
  /* Primary brand colors */
  --link-color: #0b52a0;
  --link-color-focus: #0b52a0;

  /* Button default states */
  --btn-default-color: #0b52a0;
  --btn-default-background-color: #d0e3e8;
  --btn-default-border-color: #0b52a0;
  --btn-default-color-focus: #0b52a0;
  --btn-default-background-color-focus: #0b52a0;
  --btn-default-border-color-focus: #0b52a0;

  /* Button primary states */
  --btn-primary-color: #fff;
  --btn-primary-background-color: #0b52a0;
  --btn-primary-border-color: #0b52a0;
  --btn-primary-color-focus: #0b52a0;
  --btn-primary-background-color-focus: #d0e3e8;
  --btn-primary-border-color-focus: #0b52a0;

  /* Button success states */
  --btn-success-color: #fff;
  --btn-success-background-color: #0b52a0;
  --btn-success-border-color: #0b52a0;
  --btn-success-color-focus: #0b52a0;
  --btn-success-background-color-focus: #d0e3e8;
  --btn-success-border-color-focus: #0b52a0;

  /* Dropdown menu colors */
  --dropdown-menu-link-focus-color: #0b52a0;
  --dropdown-menu-background-link-focus-color: #d0e3e8;

  /* Navigation bar colors */
  --navbar-background-color-focus: #d0e3e8;
  --navbar-inverse-color-focus: #0b52a0;
  --navbar-inverse-background-color-focus: #d0e3e8;
  --navbar-inverse-border-color-focus: #0b52a0;

  /* Pagination colors */
  --pagination-background-color-focus: #d0e3e8;
  --pagination-border-color-focus: #0b52a0;

  /* Alert box colors for different states */
  --alert-success-color: #333333;
  --alert-success-background-color: #d0e3e8;
  --alert-success-border-color: #d0e3e8;
  --alert-info-color: #333333;
  --alert-info-background-color: #d0e3e8;
  --alert-warning-color: #333333;
  --alert-warning-background-color: #f9f1f1;
  --alert-warning-border-color: #f9f1f1;
  --alert-danger-color: #333333;
  --alert-danger-background-color: #f9f1f1;
  --alert-danger-border-color: #f9f1f1;

  /* Custom menu panel colors */
  --custom-meny-panel-color: #333333;
  --custom-meny-panel-background-color: #fff;
  --custom-meny-panel-border-color: #0b52a0;
  --custom-meny-list-item-background-color-focus: #d0e3e8;

  /* Update the main footer */
  footer {
    position: relative;
    color: #666666; /* Dark gray text */
    background-color: #ebebeb; /* Light gray background */
  }

  /* Update footer bottom section specifically */
  footer .footer-bottom {
    width: 100%;
    min-height: 36px;
    background-color: #ebebeb; /* Light gray background */
    color: #666666; /* Dark gray text */
    font-size: 12px;
    display: flex;
    align-items: center;
  }

  /* Update footer bottom links if any */
  footer .footer-bottom a,
  footer .footer-bottom a:hover,
  footer .footer-bottom a:focus {
    color: #666666; /* Keep links the same dark gray */
    text-decoration: none;
  }

  /* Power Pages override variables */
  --portalThemeColor11: #0b52a0 !important;
  --portalThemeColor5: #d0e3e8 !important;
}

/* ============================================
   TYPOGRAPHY
   Base text styles and heading configurations
   ============================================ */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333333;
  /* Gradient background from light blue to off-white */
  background: linear-gradient(to bottom, #e8f1ff 0, #fbfbfb 100%);
  background-attachment: fixed; /* Keeps background fixed during scroll */
  background-size: cover; /* Ensures it covers the entire viewport */
  background-repeat: no-repeat; /* Prevents tiling */
  min-height: 100vh; /* Ensures body is at least viewport height */
  padding-top: 0px;
  margin: 0; /* Remove default margin */
  /* Flexbox for sticky footer layout */
  display: flex;
  flex-direction: column;
}

/* Remove padding on mobile devices */
@media (max-width: 767px) {
  body {
    padding-top: 0px;
  }
}

/* Heading styles with NPF brand colors */
h1 {
  font-family: Arial, sans-serif;
  font-size: 32px;
  color: #0b52a0;
}

h2 {
  font-family: Arial, sans-serif;
  font-size: 28px;
  color: #0b52a0;
}

h3 {
  font-family: Arial, sans-serif;
  font-size: 24px;
  color: #0b52a0;
}

h4 {
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: #0b52a0;
}

/* Paragraph styling with improved readability */
p {
  font-size: 16px;
  line-height: 1.6;
}

/* Underlined headings with bottom border */
h1.underline,
h4.underline {
  border-bottom: 1px solid #bcbcbc;
  padding-bottom: 21px;
}

/* Center text on mobile devices */
@media (max-width: 767px) {
  .text_center-mobile {
    text-align: center;
  }
}

/* ============================================
   BUTTONS
   NPF brand button styles with hover effects
   ============================================ */
.btn {
  font-family: Arial, sans-serif;
  border-width: 2px;
  border-style: solid;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Default button - Light blue background with dark blue text */
.btn-default {
  color: #0b52a0;
  background-color: #d0e3e8;
  border-color: #0b52a0;
}

/* Hover state inverts colors */
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
  color: #fff;
  background-color: #0b52a0;
  border-color: #0b52a0;
}

/* Primary button - Dark blue background with white text */
.btn-primary {
  color: #0b52a0; /* Changed from #fff */
  background-color: #0b52a0;
  border-color: #0b52a0;
}

/* Hover state inverts colors */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #0b52a0;
  background-color: #d0e3e8;
  border-color: #0b52a0;
}

/* Large button for homepage */
.btn-lg-home {
  padding: 20px 40px;
  font-size: 18px;
}

/* Info button with transparent background */
.btn-info-home {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.btn-info-home:hover,
.btn-info-home:active,
.btn-info-home:focus {
  color: #0b52a0;
  border-color: #d0e3e8;
  background: #d0e3e8;
}

/* Alternative default button style */
.btn-default-black {
  color: #0b52a0;
  background-color: #d0e3e8;
  border: 2px solid #0b52a0;
}

.btn-default-black:hover {
  color: #fff;
  background-color: #0b52a0;
  border-color: #0b52a0;
}

/* Force NPF button colors - Override Power Pages defaults */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.button1,
.button1:hover,
.button1:focus,
.button1:active,
.button1.active {
  background-color: #ffffff !important;
  border-color: #0b52a0 !important;
  color: #0b52a0 !important; /* THIS IS THE PROBLEM - Change this, sign-up button is fixed now */
}

.btn-primary:hover,
.btn-primary:focus,
.button1:hover,
.button1:focus {
  background-color: #d0e3e8 !important;
  border-color: #0b52a0 !important;
  color: #0b52a0 !important;
}

.btn-default,
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.button2,
.button2:hover,
.button2:focus,
.button2:active,
.button2.active {
  background-color: #d0e3e8 !important;
  border-color: #0b52a0 !important;
  color: #0b52a0 !important;
}

.btn-default:hover,
.btn-default:focus,
.button2:hover,
.button2:focus {
  background-color: #0b52a0 !important;
  border-color: #0b52a0 !important;
  color: #fff !important;
}

/* Inactive button state - cannot be clicked */
.custom-inactive-button {
  color: #fff;
  background-color: #7a9cc9;
  border-color: #7a9cc9;
  cursor: default;
}

.custom-inactive-button:hover,
.custom-inactive-button:active,
.custom-inactive-button:focus {
  color: #fff;
  background-color: #7a9cc9;
  border-color: #7a9cc9;
  cursor: default;
}

/* ============================================
   LINKS
   Hyperlink styling throughout the site
   ============================================ */
a {
  color: #0b52a0;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #0b52a0;
  text-decoration: underline;
}

/* ============================================
   BREADCRUMB NAVIGATION
   Shows current page location in site hierarchy
   ============================================ */
.breadcrumb > li a,
.breadcrumb > li a:hover {
  text-decoration: none;
  color: #666666;
}

.breadcrumb > .active {
  font-weight: bold;
}

/* ============================================
   PAGINATION
   Page navigation controls
   ============================================ */
.pagination > li > a,
.pagination > li > span {
  background-color: transparent;
  border: 0px;
  margin-left: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #0b52a0;
}

/* First and last page buttons don't change background on hover */
.pagination > li:first-child > a:hover,
.pagination > li:first-child > span:hover {
  background: none;
}

.pagination > li:last-child > a:hover,
.pagination > li:last-child > span:hover {
  background: none;
}

/* Hover effect for pagination items */
.pagination > li > a:hover,
.pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  background-color: #d0e3e8;
  border-color: transparent;
}

/* Active page indicator - circular button */
.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  background-color: #0b52a0;
  border-color: transparent;
  border-radius: 50%;
  color: #fff;
}

/* ============================================
   NAVIGATION BAR
   Top menu and navigation system
   ============================================ */
.navbar-fixed-top {
  border-width: 0;
}

.navbar-static-top {
  border-width: 0;
  margin-bottom: 0;
}

.navbar-default {
  border-color: transparent;
}

/* Home link styling */
.homelink,
a.homelink:hover,
a.homelink:focus {
  color: #fff;
  text-decoration: none;
}

.register-bar {
  clear: both;
}

/* Fixed navigation bar configurations */
.navbar-fixed-top.navbar {
  min-height: 67px;
}

.navbar-fixed-top.navbar .navbar-collapse {
  max-height: 510px;
  box-shadow: none;
  border-top: none;
  padding-top: 8px;
}

.navbar-fixed-top.navbar .navbar-form {
  border: none;
  margin-left: 0;
  margin-right: 0;
}

.navbar-fixed-top.navbar .navbar-form .form-control {
  font-size: 1em;
}

/* Static navigation bar configurations */
.navbar-static-top.navbar .navbar-collapse {
  max-height: 510px;
  box-shadow: none;
  border-top: none;
}

.navbar-static-top.navbar .navbar-form {
  border: none;
  margin-left: 0;
  margin-right: 0;
}

.navbar-static-top.navbar .navbar-form .form-control {
  font-size: 1em;
}

/* Hide register bar on larger screens */
@media (min-width: 992px) {
  .fix-navbar .register-bar {
    display: none;
  }
}

/* Navigation layout adjustments */
.navbar-fixed-top.navbar > .container > .row > div {
  float: none !important;
  display: inline-block;
  vertical-align: bottom;
}

.navbar-static-top.navbar > .container > .row > div {
  float: none !important;
  display: inline-block;
  vertical-align: bottom;
}

/* Menu bar link styling */
.navbar-fixed-top.navbar .menu-bar > .navbar-nav > li > a {
  font-family: Arial, sans-serif;
  font-size: 1em;
  font-weight: bold;
  color: #0b52a0;
}

/* Vertical divider between menu items */
.navbar-fixed-top.navbar .menu-bar > .navbar-nav > .divider-vertical {
  height: 21px;
  margin: 0 4px;
  margin-top: 14.5px;
  border-right: 1px solid #0b52a0;
  border-left: 1px solid #d0e3e8;
}

.navbar-static-top.navbar .menu-bar > .navbar-nav > li > a {
  font-family: Arial, sans-serif;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  color: #0b52a0;
}

.navbar-static-top.navbar .menu-bar > .navbar-nav > .divider-vertical {
  height: 21px;
  margin: 0 4px;
  margin-top: 14.5px;
  border-right: 1px solid #0b52a0;
  border-left: 1px solid #0b52a0;
}

/* Brand/logo styling */
.navbar-fixed-top .navbar-brand {
  font-size: 2.11em;
  font-family: Arial, sans-serif;
  color: #0b52a0;
  position: relative;
}

/* Brand adjustments for smaller screens */
@media (max-width: 1200px) {
  .navbar-fixed-top .navbar-brand {
    position: initial;
    height: 42px;
  }
}

.navbar-fixed-top .navbar-header {
  padding-top: 8px;
}

.navbar-static-top .navbar-brand {
  font-size: 2.11em;
  font-family: Arial, sans-serif;
  color: #0b52a0;
  position: relative;
}

@media (max-width: 1200px) {
  .navbar-static-top .navbar-brand {
    position: initial;
    height: 42px;
  }
}

/* Inverse navbar (dark background) settings */
.navbar-fixed-top.navbar-inverse {
  background-color: #fff;
  border-color: transparent;
}

.navbar-fixed-top.navbar-inverse .navbar-brand {
  color: #0b52a0;
}

.navbar-fixed-top.navbar-inverse .divider-vertical {
  border-right-color: #0b52a0;
  border-left-color: #d0e3e8;
}

.navbar-static-top.navbar-inverse {
  background-color: #fff;
  border-color: transparent;
}

.navbar-static-top.navbar-inverse .navbar-brand {
  color: #0b52a0;
}

.navbar-static-top.navbar-inverse .divider-vertical {
  border-right-color: #0b52a0;
  border-left-color: #d0e3e8;
}

/* Navigation links styling */
.navbar-inverse .navbar-nav > li > a {
  color: #0b52a0;
}

/* Hover effect with bottom border */
.navbar-inverse .navbar-nav > li > a:hover {
  color: #0b52a0;
  background-color: #d0e3e8;
  border-bottom: 4px solid #0b52a0;
  padding-bottom: 10px;
}

.navbar-inverse .navbar-nav > li > a:focus {
  color: #0b52a0;
  background-color: #d0e3e8;
  border-bottom: 4px solid #0b52a0;
}

/* Adjust padding on smaller screens */
@media (max-width: 1199px) {
  .navbar-inverse .navbar-nav > li > a:hover {
    color: #0b52a0;
    background-color: #d0e3e8;
    border-bottom: 4px solid #0b52a0;
    padding-bottom: 6px;
  }
}

/* Shopping cart icon with item count badge */
.menu-bar .shopping_link {
  position: relative;
}

.menu-bar .shopping_link .cart_amount {
  border-radius: 100%;
  height: 17px;
  width: 17px;
  position: absolute;
  bottom: 6px;
  right: -6px;
  background-color: #0b52a0;
  text-align: -webkit-center;
  line-height: 17px;
  font-size: 9px;
  padding-left: 1.9px;
  color: #fff;
}

.menu-bar .shopping_link .cart_amount:hover {
  color: #fff;
}

/* Hide vertical dividers on medium and small screens */
@media (max-width: 1199px) {
  .navbar-fixed-top .navbar-collapse .nav > .divider-vertical {
    display: none;
  }
}

@media (max-width: 1199px) {
  .navbar-static-top .navbar-collapse .nav > .divider-vertical {
    display: none;
  }
}

/* Mobile navigation layout */
@media (max-width: 767px) {
  .navbar-fixed-top.navbar > .container > .row > div {
    display: block;
  }

  .navbar-header {
    position: relative;
  }
}

@media (max-width: 767px) {
  .navbar-static-top.navbar > .container > .row > div {
    display: block;
  }

  .navbar-header {
    position: relative;
  }
}

/* Dropdown menu in navigation */
#navbar .dropdown-menu {
  margin-top: 8px;
}

#navbar .dropdown-search {
  padding-top: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 9px;
}

#navbar .dropdown-search #q {
  min-width: 200px;
}

#navbar .dropdown-search #q_id {
  min-width: 200px;
}

/* Mobile dropdown adjustments */
@media (max-width: 1199px) {
  #navbar .dropdown-search .input-group-btn {
    vertical-align: top;
  }

  #navbar .dropdown-search #search-filter {
    width: 100%;
    text-align: left;
    padding-left: 25px;
  }

  #navbar .dropdown-search.dropdown-menu > li:hover,
  #navbar .dropdown-search .dropdown-menu > li:hover {
    color: white;
    background-color: transparent;
  }
}

/* ============================================
   PANELS
   Collapsible content containers
   ============================================ */
.panel {
  -webkit-box-shadow: 0 0px 0px transparent;
  box-shadow: 0 0px 0px transparent;
}

.panel-group {
  margin-bottom: 21px;
}

.panel-group.border-bottom {
  border-bottom: 1px solid #bcbcbc;
  padding-bottom: 84px;
}

.panel-group .panel {
  border-radius: 0px;
  border: none;
  box-shadow: none;
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

/* Panel title links */
.panel-group .panel-heading .panel-title a {
  text-decoration: none;
  color: #0b52a0;
}

.panel-group .panel-heading .panel-title a:hover {
  color: #0b52a0;
}

/* Expand/collapse icon before panel title */
.panel-group .panel-heading .panel-title a:before {
  content: " ";
  background-repeat: no-repeat;
  display: inline-block;
  width: 22px;
  height: 12px;
  background-position: -92px -5px;
  margin-right: 10.5px;
}

/* Icon for collapsed panel */
.panel-group .panel-heading .panel-title a.collapsed:before {
  background-position: -5px -126px;
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: none;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: none;
}

/* Default panel styling */
.panel-group .panel-default {
  border-color: none;
}

.panel-group .panel-default > .panel-heading {
  color: #333333;
  background-color: transparent;
  border-color: none;
}

.panel-group .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: none;
}

.panel-group .panel-default > .panel-heading .badge {
  color: transparent;
  background-color: #333333;
}

.panel-group .panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: none;
}

/* ============================================
   LAYERS
   Decorative slanted edge graphics
   ============================================ */
.layer_down {
  height: 50px;
  background: url("layer_down.png") no-repeat bottom center;
  position: absolute;
  bottom: 0;
  z-index: 900;
  width: 100%;
}

.layer_up {
  height: 40px;
  background: url("layer_up.png") no-repeat bottom center;
  position: relative;
  z-index: 20;
}

/* ============================================
   SECTIONS
   Page section layouts and backgrounds
   ============================================ */
.section-margin {
  margin: 21px 0;
}

/* White text for dark backgrounds */
.color-inverse {
  color: #fff;
}

.color-inverse h1,
.color-inverse h2,
.color-inverse h3 {
  color: #fff;
}

/* Inline search section with background image */
.section-inline-search {
  background: url("helpdesk.png") no-repeat;
  background-size: cover;
}

.section-inline-search .row > div {
  margin-top: 100px;
}

.section-inline-search .row > div h1 {
  color: #fff;
}

/* Responsive font size for small screens */
@media screen and (max-width: 600px) {
  .section-inline-search .row > div h1 {
    font-size: 16vw;
  }
}

/* Search form styling */
.section-inline-search .row > div .form-inline .form-group .input-group {
  margin-right: 21px;
}

.section-inline-search
  .row
  > div
  .form-inline
  .form-group
  .input-group
  .input-group-addon {
  background-color: #fff;
  border-right: none;
}

.section-inline-search
  .row
  > div
  .form-inline
  .form-group
  .input-group
  .form-control {
  height: 60px;
  border-left: none;
  box-shadow: none;
}

.section-inline-search
  .row
  > div
  .form-inline
  .form-group
  .input-group
  .form-control:focus {
  box-shadow: none;
  border-right: none;
  border-color: #ccc;
}

/* ============================================
   WRAPPER
   Container for SVG graphics and animations
   ============================================ */
.wrapper {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  -moz-transition: width 0.3s ease-out;
  -o-transition: width 0.3s ease-out;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}

.wrapper .contained {
  position: relative;
  height: 400px;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.wrapper .contained > svg {
  margin-top: -100px;
  position: absolute;
  display: block;
}

.contained .row {
  margin-top: 80px;
}

/* ============================================
   FOOTER
   Bottom section of all pages
   ============================================ */
footer {
  position: relative;
  color: var(--footer-color);
  background-color: var(--footer-background-color);
}

/* Top footer section with brand blue background */
footer .footer-top {
  width: 100%;
  min-height: 130px;
  background-color: #0b52a0;
  display: flex;
  align-items: center;
}

footer .footer-top h3,
footer .footer-top h4 {
  color: var(--footer-color);
}

footer .footer-top .list-social-links {
  margin-top: 25px;
  margin-bottom: 12.5px;
}

/* Center footer text on tablets and mobile */
@media screen and (max-width: 991px) {
  footer .footer-top h3,
  footer .footer-top .list-social-links {
    text-align: center;
  }
}

/* Bottom footer section with dark background */
footer .footer-bottom {
  width: 100%;
  min-height: 36px;
  background-color: var(--footer-background-color);
  font-size: 12px;
  display: flex;
  align-items: center;
}

footer .footer-bottom p {
  margin: 0;
}

footer .footer-bottom h4 {
  margin-top: 0;
  color: #fff;
}

footer .footer-bottom ul {
  list-style-type: none;
  margin: 0;
}

footer .footer-bottom ul li a,
footer .footer-bottom ul li a:hover,
footer .footer-bottom ul li a:focus,
footer .footer-bottom ul li a:active,
footer .footer-bottom ul li a.active {
  font-size: 15px;
  color: #fff;
}

/* ============================================
   SOCIAL LINKS
   Social media icon links in footer
   ============================================ */
.list-social-links {
  list-style-type: none;
  padding-left: 0;
}

.list-social-links li {
  display: inline-block;
  margin: 0 10px;
}

.list-social-links li a,
.list-social-links li a:hover,
.list-social-links li a:focus,
.list-social-links li a:active,
.list-social-links li a.active {
  color: #fff;
}

/* ============================================
   LANDING PAGE SECTIONS
   Hero sections with background images
   ============================================ */
.section-landing {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("homehero.jpg") no-repeat center;
  background-size: cover;
}

.section-landing .row > div {
  margin-top: 80px;
}

/* Large hero heading */
.section-landing .row > div .section-landing-heading {
  font-size: 8rem;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .section-landing .row > div .section-landing-heading {
    font-size: 16vw;
  }
}

/* Sub-heading below hero */
.section-landing .row > div .section-landing-sub-heading {
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 4.3rem;
  color: #fff;
  letter-spacing: 19px;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .section-landing .row > div .section-landing-sub-heading {
    font-size: 4vw;
  }
}

@media screen and (max-width: 993px) {
  .section-landing h1 {
    font-size: 65px;
  }

  .section-landing h2 {
    letter-spacing: normal;
    margin-left: -3px;
  }
}

/* Sub-landing section with gradient overlay */
.section-sub-landing {
  background: linear-gradient(rgba(0, 0, 0, 0.5), #0b52a0),
    url("homethumbnail1.jpg") no-repeat center;
  background-size: cover;
}

/* Default section with background image */
.section-default {
  background: url("homethumbnail3.jpg") no-repeat center;
  background-size: cover;
}

/* Dark gradient overlay for mobile readability */
@media screen and (max-width: 767px) {
  .section-default:before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(
      top,
      transparent 0%,
      rgba(0, 0, 0, 0.59) 41%,
      rgba(0, 0, 0, 0.62) 43%,
      black 100%
    );
    background: -webkit-linear-gradient(
      top,
      transparent 0%,
      rgba(0, 0, 0, 0.59) 41%,
      rgba(0, 0, 0, 0.62) 43%,
      black 100%
    );
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.59) 41%,
      rgba(0, 0, 0, 0.62) 43%,
      black 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
  }
}

.section-default .row {
  padding-bottom: 150px;
}

/* Knowledge base section spacing */
.section-knowledge {
  margin-bottom: 40px;
}

/* Search results page hero */
.section-landing-search {
  min-height: 250px;
  background: url(searchhero.jpg) no-repeat 0 25%;
  background-size: cover;
}

/* Forums page hero */
.section-landing-forums {
  min-height: 250px;
  background: url(forumhero.jpg) no-repeat center;
  background-size: cover;
}

.section-knowledge .list-group a.list-group-item {
  color: #0b52a0;
}

.section-knowledge .panel-title {
  color: #0b52a0;
}

.page_section.section-landing .row {
  padding-bottom: 60px;
}

.page_section.section-landing .row > div {
  margin-top: 0px;
}

.list-group-item p {
  margin-bottom: 0px;
}

.page_section.section-sub-landing .row .btn-lg-home p {
  border-top: none;
}

/* ============================================
   PAGE SECTIONS
   General page section styling
   ============================================ */
.page_section {
  position: relative;
  background-size: cover;
  color: #333333;
}

.page_section .row {
  padding-top: 25px;
  padding-bottom: 100px;
}

.page_section .row.sidebar-home {
  padding-bottom: 0;
}

/* Large headings in page sections */
.page_section h1 {
  font-size: 71px;
  color: #0b52a0;
}

.page_section h2 {
  color: #0b52a0;
  font-size: 40px;
}

.page_section h3 {
  font-size: 66px;
  font-family: Arial, sans-serif;
  color: #0b52a0;
}

/* Paragraphs with top border accent */
.page_section p {
  border-top: solid #0b52a0 1px;
  padding-top: 5px;
}

.page_section .btn {
  margin-top: 50px;
}

.page_section .form-search .btn {
  margin-top: 0;
}

.page_section .section-landing-heading p,
.page_section .section-landing-sub-heading p {
  border-top: 0;
}

/* ============================================
   DIAGONAL SECTIONS
   Sections with slanted/skewed backgrounds
   ============================================ */

/* Left-slanted section */
.section-diagonal-left {
  -webkit-transform: skew(0deg, -1.3deg);
  -ms-transform: skew(0deg, -1.3deg);
  transform: skew(0deg, -1.3deg);
  overflow: hidden;
  margin-top: -60px;
  margin-bottom: -20px;
}

/* Content inside slanted section (counter-skew to keep text straight) */
.section-diagonal-left .section-diagonal-left-content {
  -webkit-transform: skew(0deg, 1.3deg);
  -ms-transform: skew(0deg, 1.3deg);
  transform: skew(0deg, 1.3deg);
  background: url("homethumbnail2.jpg") no-repeat 0 20%;
  background-size: cover;
  margin-top: -70px;
}

/* Semi-transparent white overlay */
.section-diagonal-left .section-diagonal-left-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
  background-color: #fff;
}

/* Right-slanted section */
.section-diagonal-right {
  -webkit-transform: skew(0deg, 1.3deg);
  -ms-transform: skew(0deg, 1.3deg);
  transform: skew(0deg, 1.3deg);
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: -20px;
}

.section-diagonal-right.home-section {
  margin-top: -60px;
}

/* Content inside slanted section */
.section-diagonal-right .section-diagonal-right-content {
  -webkit-transform: skew(0deg, -1.3deg);
  -ms-transform: skew(0deg, -1.3deg);
  transform: skew(0deg, -1.3deg);
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("homethumbnail4.jpg") no-repeat;
  background-size: cover;
  margin-top: -70px;
}

/* Blue overlay */
.section-diagonal-right .section-diagonal-right-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: -1;
  background-color: #0b52a0;
}

.section-diagonal-left .row,
.section-diagonal-right .row {
  padding-top: 125px;
}

.section-diagonal-left .col-md-5,
.section-diagonal-right .col-md-5 {
  float: none;
  margin: 0 auto;
}

.section-diagonal-left p,
.section-diagonal-right p {
  border-top: none;
}

/* ============================================
   CONTENT WRAPPER
   Main content area (for sticky footer layout)
   ============================================ */
.content-wrapper {
  flex: 1 0 auto;
  padding-bottom: 15px;
}

/* ============================================
   HOME CONTENT
   Homepage specific content styling
   ============================================ */
.content-home .btn {
  margin-top: 0;
}

.content-home .panel {
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

.content-home .panel p {
  border: 0;
}

.content-home .panel-heading {
  display: none;
}

/* List items on homepage */
.content-home .list-group-item {
  padding: 20px 0;
  font-size: 20px;
  background-color: transparent;
  border: 0;
  border-top: 1px solid #ddd;
}

.content-home .list-group-item img {
  margin-right: 25px;
}

.content-home a.list-group-item,
.content-home .list-group-item a.title {
  color: #0b52a0;
}

.content-home a.list-group-item:hover,
.content-home a.list-group-item:focus,
.content-home .list-group-item a.title:hover,
.content-home .list-group-item a.title:focus {
  color: #0b52a0;
  text-decoration: underline;
  background-color: transparent;
}

.content-home .title,
.content-home .description {
  display: block;
}

.content-home .title {
  font-size: 24px;
  font-family: Arial, sans-serif;
  color: #0b52a0;
}

.content-home .description {
  display: block;
  font-size: 14px;
}

/* ============================================
   SIDEBAR HOME
   Homepage sidebar widget
   ============================================ */
.sidebar-home {
  background-color: #d0e3e8;
  border-top: 7px solid #0b52a0;
  margin-top: 36px;
  position: relative;
}

.sidebar-home h3 {
  font-size: 18px;
}

.sidebar-home .panel {
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

.sidebar-home .panel-heading {
  padding-left: 0;
  background-color: transparent;
  border: 0;
}

.sidebar-home .panel-title {
  font-size: 14px;
  color: #0b52a0;
  font-family: Arial, sans-serif;
}

.sidebar-home .list-group-item {
  padding-left: 0;
  font-size: 14px;
  background-color: transparent;
  border: 0;
}

.sidebar-home .list-group-item:hover,
.sidebar-home .list-group-item:focus {
  text-decoration: underline;
  background-color: transparent;
}

.sidebar-home .list-group-item .date {
  visibility: hidden;
}

/* ============================================
   USER ICON
   Small icon next to user/register links
   ============================================ */
.user-icon {
  width: 16px;
  height: 16px;
  background-image: url("register_icon.png");
  display: inline-block;
  margin-right: 7px;
}

/* ============================================
   ARTICLE
   Blog post/article layout and styling
   ============================================ */
.article-title-container {
  border-top: solid 1px #bcbcbc;
  border-bottom: solid 1px #bcbcbc;
  padding-left: 15px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.article-title {
  margin-left: -35px;
}

.article-title > span {
  margin-left: 3px;
}

.article-title > span .article-author {
  font-weight: bold;
  color: #0b52a0;
}

.article-content {
  margin-top: 15px;
}

/* Justified text for article body */
.article-content > p {
  text-align: justify;
}

/* Mobile article layout */
@media screen and (max-width: 993px) {
  .article-title {
    margin-left: 0;
    text-align: center;
  }

  .article-author {
    text-align: center;
  }
}

/* ============================================
   SEARCH SECTION
   Search results page styling
   ============================================ */
.section-search .header-search {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  background-color: #d0e3e8;
}

.section-search .header-search img {
  max-width: 350px;
}

@media screen and (max-width: 600px) {
  .section-search .header-search h1 {
    font-size: 13vw;
  }
}

.section-search .title-search {
  font-size: 26px;
  font-weight: bold;
  color: #0b52a0;
}

.section-search input {
  border-style: none;
  padding-left: 10px;
  height: 60px;
}

/* Search result media objects */
.section-search .media .media-left > img {
  max-width: 240px;
}

.section-search .media .media-body {
  padding-left: 20px;
}

.section-search .media .media-body > a {
  text-decoration: none;
  font-weight: bold;
  color: #0b52a0;
}

.section-search .media .media-body .media-heading {
  margin-top: 5px;
  margin-bottom: 20px;
}

/* ============================================
   CARDS
   Card grid layout
   ============================================ */
.cards-container {
  margin-top: 84px;
  display: flex;
  justify-content: center;
}

/* Stack cards vertically on tablets and mobile */
@media screen and (max-width: 991px) {
  .cards-container {
    flex-direction: column;
  }
}

/* Custom card component */
.custom-cards-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media (max-width: 409px) {
  .custom-cards-container {
    justify-content: center;
  }
}

.custom-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
  width: 32%;
  min-width: 180px;
  margin: 5px;
  border: 1px solid #d0e3e8;
}

/* Enhanced shadow on hover */
.custom-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.custom-card-img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.custom-card-text {
  padding: 2px 16px;
  overflow-wrap: break-word;
}

.custom-card-link {
  color: #0b52a0;
  text-decoration: none;
}

.custom-card-link:hover,
.custom-card-link:active,
.custom-card-link:focus {
  color: #0b52a0;
  text-decoration: none;
}

/* ============================================
   CAROUSEL
   Image carousel/slider component
   ============================================ */
.carousel-custom .carousel-inner > .item {
  margin-right: auto;
  margin-left: auto;
}

.carousel-custom .carousel-inner > .item .carousel-caption {
  display: flex;
  align-items: center;
  top: 5%;
  left: 5%;
  right: 5%;
}

@media screen and (min-width: 768px) {
  .carousel-custom .carousel-inner > .item .carousel-caption {
    left: 5%;
    right: 5%;
  }
}

.carousel-custom .carousel-indicators li {
  border-color: #0b52a0;
}

/* ============================================
   TABLES
   Table styling for forms and forums
   ============================================ */
.table.table-forms td {
  padding: 15px 8px;
}

.table.table-forms tbody tr:first-child td {
  border-top: none;
}

.table.forums th:first-child,
.table.forums tr td:first-child {
  padding-left: 0px;
}

/* ============================================
   POLL
   Sidebar polling widget
   ============================================ */
.poll {
  background-color: #d0e3e8;
  border-top: 7px solid #0b52a0;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}

.poll .poll-header {
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #bcbcbc;
  padding-bottom: 5px;
}

.poll .poll-header h4 {
  font-weight: bold;
  display: inline-block;
}

.poll .poll-content {
  padding-top: 25px;
}

.poll .poll-content p {
  font-size: 14px;
}

.poll .poll-content form {
  border-bottom: 1px solid #bcbcbc;
  padding-bottom: 10px;
}

.poll .poll-content .poll-buttons {
  padding-top: 20px;
  padding-left: 11px;
}

.poll .poll-content .poll-buttons .btn {
  padding: 4px 14px;
  font-size: 14px;
}

.poll .poll-content .poll-buttons .btn-default {
  color: #0b52a0;
  border: 2px solid #0b52a0;
  background-color: #d0e3e8;
}

.poll .poll-content .poll-buttons .btn-default:hover {
  color: #fff;
  background-color: #0b52a0;
  border-color: #0b52a0;
}

/* Poll tag labels */
.poll .poll-tags {
  padding-top: 10px;
}

.poll .poll-tags h4 {
  border-bottom: 1px solid #bcbcbc;
  padding-bottom: 10px;
}

.poll .poll-tags .tag {
  display: inline-block;
  background-color: #d0e3e8;
  color: #0b52a0;
  padding: 5px 14px;
  margin: 5px 0px;
  text-transform: uppercase;
  font-size: 13px;
}

/* ============================================
   NAVIGATION SIDEBAR
   Multi-level sidebar navigation menu
   ============================================ */
.nav-sidebar {
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.nav-sidebar .nav > li > a {
  padding: 4px 20px;
  color: #0b52a0;
  border-right: 2px solid #d0e3e8;
}

.nav-sidebar .nav > li > a:hover,
.nav-sidebar .nav > li > a:focus {
  color: #0b52a0;
  text-decoration: none;
  background-color: transparent;
  border-right: 2px solid #0b52a0;
}

/* Arrow icon before menu item */
.nav-sidebar .nav > li > a:before {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e250";
  margin-right: 7px;
}

/* Active menu item styling */
.nav-sidebar .nav > .active > a {
  color: #0b52a0;
  text-decoration: none;
  background-color: transparent;
  border-right: 2px solid #0b52a0;
  font-weight: bold;
}

.nav-sidebar .nav > .active > a:before {
  content: "\e252";
}

.nav-sidebar .nav > .active:hover > a,
.nav-sidebar .nav > .activefocus > a {
  font-weight: bold;
}

/* Show sub-menu for active parent */
.nav-sidebar .nav > .active > ul.nav {
  display: block;
}

/* Hide sub-menus by default */
.nav-sidebar .nav ul.nav {
  display: none;
}

/* Second level menu items (indented) */
.nav-sidebar .nav .nav > li > a {
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 30px;
}

.nav-sidebar .nav .nav > .active,
.nav-sidebar .nav .nav > .active:hover,
.nav-sidebar .nav .nav > .active:focus {
  font-weight: bold;
}

/* Third level menu items (more indented) */
.nav-sidebar .nav .nav .nav > li > a {
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 60px;
}

.nav-sidebar .nav .nav .nav > li > a:before {
  content: "";
}

.nav-sidebar .nav .nav .nav > .active,
.nav-sidebar .nav .nav .nav > .active:hover,
.nav-sidebar .nav .nav .nav > .active:focus {
  font-weight: bold;
}

/* ============================================
   TABS
   Tab navigation headers
   ============================================ */
.tabs-header {
  padding-bottom: 9.5px;
  margin: 42px 0 21px;
}

/* ============================================
   FORM ELEMENTS
   Form inputs and search functionality
   ============================================ */

/* Search form styling */
.form-search .btn {
  border: 2px solid #0b52a0;
}

.form-search .btn-default:hover {
  border-color: #0b52a0;
}

.form-search .dropdown-submenu {
  right: -2px;
}

.form-search .dropdown-menu {
  margin-top: 0px;
}

.dropdown-search.dropdown-menu > li:hover {
  background-color: #d0e3e8;
}

#navbar .form-search .dropdown-menu {
  margin-top: 0px;
}

/* Custom dropdown menu styling */
.custom-dropdown-menu {
  display: block;
  position: relative !important;
  border: none;
  background: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  left: unset !important;
  top: unset !important;
  color: #0b52a0;
  background-color: #fff;
  border: 1px solid #0b52a0;
}

/* Hidden input field (no visible border) */
.hidden-input {
  background-color: white !important;
  border: none;
  box-shadow: none;
  padding-left: 0px;
}

.hidden-input:hover,
.hidden-input:active,
.hidden-input:focus {
  background-color: white !important;
  border: none;
  box-shadow: none;
  padding-left: 0px;
}

/* ============================================
   ERROR MESSAGES
   Form validation error styling
   ============================================ */
.help-block.error,
label.control-label.required:before,
.crmEntityFormView .cell div.info.required label:after,
.crmEntityFormView .cell div.info div.validators,
.crmEntityFormView .validator-text,
.crmEntityFormView .rank-order-cell .validator-text,
.crmEntityFormView .constant-sum-cell .validator-text,
.crmEntityFormView .stack-rank-cell .validator-text {
  color: #a94442;
}

/* ============================================
   CUSTOM MENU PANEL
   Side menu navigation component
   ============================================ */
.custom-meny-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--custom-meny-panel-background-color);
  border: 1px solid var(--custom-meny-panel-border-color);
  color: var(--custom-meny-panel-color);
  border-radius: 12px;
}

.custom-meny-header {
  margin-top: 20px;
  font-weight: 600;
  margin-left: 3rem;
  height: auto;
  min-height: 2.5rem;
  color: #0b52a0;
  align-items: center;
  justify-content: flex-start;
  display: flex;
}

.custom-meny-list {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 100;
  padding: 0;
}

.custom-meny-list-item {
  min-height: 35px;
  align-items: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 4rem;
}

.custom-meny-list-item:hover,
.custom-meny-list-item:active,
.custom-meny-list-item:focus {
  background-color: var(--custom-meny-list-item-background-color-focus);
}

.custom-meny-list-item-container {
  min-height: 2.5rem;
  height: 2.5 rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: 0.285714rem;
  flex-grow: 1;
  overflow: hidden;
  align-self: stretch;
  align-items: center;
}

.custom-meny-list-item-link {
  display: flex;
  flex-direction: row;
  color: #0b52a0;
  text-decoration: none;
}

.custom-meny-list-item-link:hover,
.custom-meny-list-item-link:active,
.custom-meny-list-item-link:focus {
  color: #0b52a0;
  text-decoration: none;
}

.custom-meny-list-item-img-container {
  min-width: 16px;
  width: 16px;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.custom-meny-list-item-img {
  vertical-align: middle;
  height: 16px;
  width: 16px;
}

.custom-meny-list-item-title {
  text-overflow: ellipsis;
  margin-right: 1rem;
  margin-left: 1rem;
  display: inline-block;
  overflow-x: hidden;
  align-items: center;
  white-space: nowrap;
}

/* Hide menu panel on tablets and mobile */
@media only screen and (max-width: 991px) {
  .custom-meny-panel {
    display: none;
  }
}

/* Mobile alternative menu (buttons) */
.custom-undermeny-panel {
  display: none;
}

@media only screen and (max-width: 991px) {
  .custom-undermeny-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.custom-undermeny-btn {
  width: 30%;
  margin: 15px 0;
}

@media only screen and (max-width: 425px) {
  .custom-undermeny-btn {
    width: 100%;
  }
}

/* ============================================
   SIDE MENU
   Alternative side navigation styling
   ============================================ */
.side-menu-container {
  display: block;
}

/* Hide side menu on tablets and mobile */
@media (max-width: 990px) {
  .side-menu-container {
    display: none !important;
  }
}

.side-meny {
  list-style: none;
  padding: 0;
}

.side-menu-item-link {
  font-weight: bold;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
  line-height: 3em;
  color: #0b52a0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.side-menu-item-link:hover,
.side-menu-item-link:active,
.side-menu-item-link:focus {
  color: #0b52a0;
}

/* Active page indicator (no underline) */
.active-page {
  color: #0b52a0;
  text-decoration: none !important;
}

/* ============================================
   UTILITY CLASSES
   Reusable helper classes
   ============================================ */
.no-lr-margins {
  margin-left: 0;
  margin-right: 0;
}

.blue_border {
  padding-bottom: 10px;
  border-bottom: 7px solid #0b52a0;
}

.benefit-title {
  font-weight: 700;
  font-size: 25px;
  color: #0b52a0;
}

.page-heading {
  padding: 20px 0 !important;
}

/* ============================================
   POWER VIRTUAL AGENT
   Chatbot widget positioning
   ============================================ */
.pva-floating-style {
  position: fixed;
  bottom: 0px;
  right: 0px;
  margin-right: 16px;
  margin-bottom: 18px;
  z-index: 9999;
}

/* ============================================
   HIGH CONTRAST MODE
   Accessibility support for Windows high contrast
   ============================================ */
@media screen and (-ms-high-contrast: active) {
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #888;
  }

  .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #0b52a0;
  }
}

/* ============================================
   FORM STYLING
   Power Pages form customizations
   ============================================ */

/* Main form container - white background */
.entity-form,
.crmEntityFormView {
  background-color: #fff !important;
  padding: 20px;
  border-radius: 8px;
}

/* Form sections/fieldsets */
.entity-form .tab,
.entity-form .section,
.crmEntityFormView .tab,
.crmEntityFormView .section {
  background-color: #fff !important;
}

/* Individual form fields container */
.entity-form .form-group,
.crmEntityFormView .cell {
  background-color: transparent !important;
}

/* Input fields themselves */
.entity-form .form-control,
.entity-form input[type="text"],
.entity-form input[type="email"],
.entity-form input[type="tel"],
.entity-form input[type="date"],
.entity-form select,
.crmEntityFormView input,
.crmEntityFormView select {
  background-color: #fff !important;
  border: 1px solid #ccc;
}

/* If the form is inside a panel or container */
.panel-body,
.content-wrapper .container {
  background-color: transparent;
}

/* Remove any gray backgrounds from form wrappers */
.page-content,
.main-content {
  background-color: transparent !important;
}

/* ============================================
   MINIMALIST SIDE MENU - CARD STYLE
   NPF Brand Colors
   ============================================ */

/* Side Menu Container */
.side-menu-container {
  display: block;
  padding: 0;
}

@media (max-width: 990px) {
  .side-menu-container {
    display: none !important;
  }
}

/* User Info Section */
.side-menu-container .user-info {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(11, 82, 160, 0.15);
}

.side-menu-container .user-info .user-name {
  color: #0b52a0;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.375rem 0;
  letter-spacing: -0.01em;
}

.side-menu-container .user-info .member-id {
  color: #5a7a9a;
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
}

.side-menu-container .user-info .member-id span {
  color: #0b52a0;
  font-weight: 500;
}

/* Side Menu List */
.side-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu li {
  margin: 0;
  padding: 0;
}

.side-menu li + li {
  margin-top: 0.25rem;
}

/* Menu Item Links - Card Style */
.side-menu-item-link {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  color: #333333;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.2s ease;
}

.side-menu-item-link:hover,
.side-menu-item-link:focus {
  background-color: rgba(208, 227, 232, 0.4);
  color: #0b52a0;
  text-decoration: none;
}

/* Active Page State */
.side-menu-item-link.active-page {
  background-color: #d0e3e8;
  color: #0b52a0;
  font-weight: 600;
}

/* ============================================
   ENHANCED SIDE MENU - FINAL VERSION
   Centered user card, enhanced design
   NPF Brand Colors
   ============================================ */

/* Side Menu Container */
.side-menu-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  padding: 0 15px !important;
  align-self: flex-start !important;
}

@media (max-width: 990px) {
  .side-menu-container {
    display: none !important;
  }
}

/* ============================================
   USER PROFILE CARD - CENTERED & ENHANCED
   ============================================ */
.user-card {
  background: #fff !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  box-shadow: 0 2px 12px rgba(11, 82, 160, 0.08) !important;
  text-align: center !important;
  border: none !important;
  border-top: 4px solid #0b52a0 !important;
}

/* Hide the avatar */
.user-avatar {
  display: none !important;
}

.user-card .user-info {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.user-card .user-name {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #0b52a0 !important;
  margin: 0 0 1rem 0 !important;
  padding: 0 !important;
  border: none !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  line-height: 1.3 !important;
}

.user-card .user-member-wrapper {
  background: linear-gradient(
    135deg,
    rgba(208, 227, 232, 0.3) 0%,
    rgba(208, 227, 232, 0.1) 100%
  ) !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  display: inline-block !important;
}

.user-card .user-label {
  font-size: 11px !important;
  color: #5a7a9a !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-weight: 600 !important;
  margin: 0 0 0.25rem 0 !important;
  padding: 0 !important;
  border: none !important;
  text-decoration: none !important;
  line-height: 1.4 !important;
}

.user-card .user-member-id {
  font-size: 18px !important;
  color: #0b52a0 !important;
  font-weight: 700 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0.05em !important;
  line-height: 1.4 !important;
}

/* ============================================
   NAVIGATION MENU CARD
   ============================================ */
.nav-card {
  background: #fff !important;
  border-radius: 12px !important;
  padding: 0.5rem !important;
  box-shadow: 0 2px 12px rgba(11, 82, 160, 0.08) !important;
  border: none !important;
}

.nav-card .side-menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.nav-card .side-menu li {
  margin: 0 !important;
  padding: 0 !important;
}

.nav-card .side-menu li + li {
  border-top: 1px solid rgba(11, 82, 160, 0.08) !important;
}

/* Menu Item Links */
.nav-card .side-menu-item-link {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 1rem !important;
  margin: 0 !important;
  color: #333333 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  background-color: transparent !important;
  border: none !important;
  border-left: 3px solid transparent !important;
  border-radius: 0 8px 8px 0 !important;
  transition: all 0.2s ease !important;
  line-height: 1.4 !important;
}

.nav-card .side-menu-item-link:hover,
.nav-card .side-menu-item-link:focus {
  color: #0b52a0 !important;
  text-decoration: none !important;
  border-left-color: #d0e3e8 !important;
  background: linear-gradient(
    90deg,
    rgba(208, 227, 232, 0.3) 0%,
    transparent 100%
  ) !important;
}

/* Active Page State */
.nav-card .side-menu-item-link.active-page {
  color: #0b52a0 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-left-color: #0b52a0 !important;
  background: linear-gradient(
    90deg,
    rgba(208, 227, 232, 0.5) 0%,
    transparent 100%
  ) !important;
}

.nav-card .side-menu-item-link.active-page .menu-icon {
  color: #0b52a0 !important;
}

/* Menu Icon */
.nav-card .menu-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  color: #5a7a9a !important;
  flex-shrink: 0 !important;
}

.nav-card .side-menu-item-link:hover .menu-icon {
  color: #0b52a0 !important;
}

/* Menu Text */
.nav-card .menu-text {
  flex: 1 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* ============================================
   HELP BOX - ENHANCED
   ============================================ */
.help-card {
  background: #fff !important;
  border-radius: 12px !important;
  padding: 1.25rem !important;
  box-shadow: 0 2px 12px rgba(11, 82, 160, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  border: none !important;
  border-left: 4px solid #0b52a0 !important;
}

.help-card .help-icon {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #0b52a0 0%, #1565c0 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  border: none !important;
}

.help-card .help-icon svg {
  width: 24px !important;
  height: 24px !important;
  color: #fff !important;
}

.help-card .help-content {
  flex: 1 !important;
}

.help-card .help-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin: 0 0 0.25rem 0 !important;
  padding: 0 !important;
  border: none !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  line-height: 1.4 !important;
}

.help-card .help-phone {
  font-size: 15px !important;
  color: #0b52a0 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.help-card .help-phone:hover {
  text-decoration: underline !important;
}

/* ============================================
   FIX ROW ALIGNMENT
   ============================================ */
.row {
  align-items: flex-start !important;
}
