
/* Navbar Styling Options */
.navbar {
            margin-bottom: 20px;
            min-height: 60px;
}

.nav-raised {
    transition: all 0.2s ease;
    border-radius: 6px;
    padding: 6px 12px;
}

.nav-raised:hover {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.nav-raised-underline {
  position: relative;
  transition: all 0.2s ease;
  border-radius: 6px;
  padding: 8px 12px;
  line-height: 1.2;
  font-size: 1rem; /* Match all nav links including ITSR Labs */
}

.nav-raised-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-raised-underline:hover::after,
.nav-raised-underline.active-page::after {
  transform: scaleX(1);
}

.nav-raised-underline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.underline-wrap {
  position: relative;
  display: inline-block;
  padding: 6px 0;
}

.underline-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-link:hover .underline-wrap::after {
  width: 100%;
}

.nav-box-hover {
  transition: background 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0.375rem;
  padding: 6px 12px;
}

.nav-box-hover:hover,
.nav-box-hover.active-page {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

footer {
    padding: 20px 0;
    background: linear-gradient(to top, #1a1a1a, #4a4a4a);
    color: white;
    text-align: center;
}
