:root {
  --teal: #00aeef;
  /* Adjust to match your exact teal color */
}

/* Basic reset */
body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Header container background and optional styling */
.header-container {
  background-color: #fff;
  /* White background */
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 0;
  position: relative;

}

/* Logo sizing (center column) */
.logo-img {
  max-height: 60px;
}

/* 
      Nav link styling:
      - Black text by default
      - Teal on hover
      - Teal line above link on hover/active
    */
.portal-nav .nav-link {
  position: relative;
  /* required for the pseudo-element line */
  color: #000;
  /* default text color */
  text-decoration: none;
  padding: 8px 12px;
  /* spacing around the link */
  transition: color 0.3s ease;
}

.portal-nav .nav-link:hover,
.portal-nav .nav-link:focus {
  color: var(--teal);
  text-decoration: none;
  /* remove underline */
}

.portal-nav .nav-link.active {
  color: var(--teal);
}

/* The line effect above the link */
.portal-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  /* position line above text */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--teal);
  transition: width 0.3s ease;
}

/* On hover/active, expand the line */
.portal-nav .nav-link:hover::before,
.portal-nav .nav-link:focus::before,
.portal-nav .nav-link.active::before {
  width: 20px;
  /* Adjust width as desired */
}

/* 
      Left, center, and right columns:
      - Each uses flex to align items
      - .col-left => left-aligned
      - .col-middle => center-aligned
      - .col-right => right-aligned
    */
.col-left {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.col-middle {
  border: 2px solid red;
  display: flex;
  justify-content: center;
  align-items: center;
}

.col-right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}


.footer-bg {
  background-color: #006175;
  /* Teal background; adjust as needed */
  color: #fff;
  /* White text */
}

/* Remove default list styling and ensure no underlines on links */
.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

  .hamburger-menu {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
border: none;
background: transparent;
font-size: 28px; 
color: #333; 
z-index: 10;
  }


.header-container .row {
  min-height: 80px; 
}

.offcanvas-body {
  display: flex;
  flex-direction: column;
}