
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

#splash-screen {
  position: fixed;
  z-index: 9999;
  background: #fff;
  width: 100vw;
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 1s ease-in-out;
}

#splash-screen.shrink {
  height: 20vh;
  position: absolute;
  top: 0;
  left: 0;
}

#splash-banner {
  max-height: 90%;
  max-width: 90%;
  transition: all 1s ease-in-out;
}

#splash-screen.shrink #splash-banner {
  max-height: 100%;
  max-width: 20%;
}

#symbols {
  margin-top: 20px;
  font-size: 2rem;
  opacity: 0;
  display: flex;
  gap: 5px;
}

.symbol {
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease-in-out;
}

.symbol.show {
  opacity: 1;
  transform: scale(1.5);
}

.hidden {
  display: none;
}

header {
  background-color: #003366;
  color: white;
  padding: 10px 20px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul {
  display: flex;
  list-style-type: none;
  gap: 15px;
  min-width: max-content;

}


nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0 10px; /* Add right padding */
  box-sizing: border-box;
}

nav {
  width: 100%;
  overflow-x: auto; /* Prevent cut-off */
  white-space: nowrap;
}


nav ul li:last-child {
  margin-right: 40px;
}



nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #003366; /* or your preferred bg */
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* optional: adds a subtle shadow */
}

body {
  padding-top: 100px; /* adjust based on nav height to prevent content hiding under nav */
}

.logo {
  height: 50px;
}

.banner {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: 20vh;
  object-fit: contain;
}

footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* Dropdown Styling */

.dropdown {
  position: relative;
  z-index: 2000;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 60px; /* adjust based on navbar height */
  left: 0;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 3000; /* ensure it's above nav bar */
  border-radius: 6px;
  padding: 8px 0;
  list-style: none;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

.logo.dropdown-toggle {
  cursor: pointer;
  user-select: none;
}

.dropdown-menu hr {
  margin: 4px 0;
  border: none;
  border-top: 1px solid #ddd;
}
#main-wrapper {
  padding-top: 20px; /* Adjust this to match the height of your nav */
}

#documentsMenuWrapper {
  margin: 10px 0 0 15px;
  position: relative;
  z-index: 9999;
}

#documentsMenuBtn {
  background-color: #003366;
  color: white;
  padding: 6px 12px;
  border: none;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

#documentsDropdownMenu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 8px 0;
  list-style: none;
}

#documentsDropdownMenu li {
  padding: 8px 20px;
}

#documentsDropdownMenu li a {
  text-decoration: none;
  color: #333;
  display: block;
}

#documentsDropdownMenu li a:hover {
  background-color: #f0f0f0;
}
