body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

header {
    height: 20vh;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #182E6F;
}

main {
    flex-grow: 1;
    font-family: "DM Serif Text", serif;
    overflow: auto;
}


footer {
    height: 5vh;
    display: flex;
    flex-shrink: 0;
    background-color: #182E6F;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "DM Serif Text", serif;
}

.header-img {
    height: 8vh;
}

.title-card {
    font-size: 8vh;
    font-family: "Protest Revolution", sans-serif;
    font-style: italic;
    margin: 0;
    color: yellow;
}

.footer-card {
    font-size: 1.5vh;
}

.subtitle-card {
    font-size: 2vh;
    font-family: "DM Serif Text", serif;
    color: white;
}


.btn {
    outline: 1px solid black;
}

.slide-card-box {
    height: 60vh;
    width: 100vw;
    padding: 2rem;
    border-radius: 10px;
    overflow: hidden; /* Prevent image overflow */
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item img {
    height: 100%;
    object-fit: contain;
}

/* Ensure dropdown items stay white on hover */
.dropdown-menu {
  background-color: #001f3d;
  border-color: #001f3d;
}

.dropdown-menu .dropdown-item {
  color: white !important;
  font-weight: bold;
}

/* Prevent white background and white text on hover */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: #003366 !important; /* Slightly lighter navy */
  color: white !important;
}

.dashbord-brand-name {
    font-family: "Protest Revolution", sans-serif;
    font-style: italic;
    color: yellow;
}



.feature-block {
    overflow: hidden;
    flex-shrink: 0;
    height: 100%;
}
/* Main dropdown hover behavior */
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Prevent jump */
}

/* Submenu positioning and hover behavior */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  display: none;
  position: absolute;
  z-index: 1000;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}