.quick-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1050;
}

.quick-link {
  background: #212529;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.quick-link:hover {
  background: #0d6efd;
  transform: translateX(-5px);
}

body {
  margin: 0;             /* Remove default body margin */
}


.carousel-caption {
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 8px;
}

/* Navbar brand font */
.navbar .navbar-brand {
  font-family: 'Bookman Old Style', serif;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: none; /* keep original case */
}

/* Navbar menu links */
.navbar-nav .nav-link {
  font-family: 'Arial Narrow', Arial, sans-serif;
  text-transform: uppercase;
  color: #000 !important;
}

/* Dropdown submenu font */
.dropdown-menu .dropdown-item {
  font-family: 'Arial Narrow', Arial, sans-serif;
}

/* Navbar brand/logo hover glow */
.navbar-brand:hover {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7); /* subtle shadow/glow */
  transition: text-shadow 0.3s ease;
}

/* Navbar menu items hover glow */
.navbar-nav .nav-link:hover {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  transition: text-shadow 0.3s ease;
}

/* Dropdown/submenu items hover glow */
.navbar-nav .dropdown-menu .dropdown-item:hover {
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: rgba(13, 110, 253, 0.1); /* subtle highlight */
  transition: text-shadow 0.3s ease, background-color 0.3s ease;
}

/* Navbar brand responsive size */
.navbar-brand {
  font-size: 1.8rem; /* default for large screens */
  transition: font-size 0.3s ease;
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.2rem; /* smaller on mobile */
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1rem; /* even smaller on very small screens */
  }
}

/* Carousel overlay logo */
.carousel-overlay-logo {
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}

.carousel-overlay-logo:hover {
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.7); /* subtle glow */
  transform: scale(1.05);                    /* slight scale up on hover */
}

@media (min-width: 992px) { /* large screens */
  .navbar-brand {
    position: absolute;   /* fix logo to the left */
    left: 1rem;
    z-index: 1100;        /* above other elements */
  }

  .navbar-nav {
    margin: 0 auto;       /* center nav items horizontally */
    display: flex;
    justify-content: center;
    flex: 1;
    max-width: calc(100% - 120px); /* leave space for logo */
  }

  .navbar-nav .nav-item {
    text-align: center;
  }
}
/* Navbar menu items hover effect */
.navbar-nav .nav-link {
  transition: background-color 0.3s, color 0.3s, text-shadow 0.3s;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(13, 110, 253, 0.2); /* subtle background */
  color: #0d6efd;
  text-shadow: 0 0 6px rgba(13, 110, 253, 0.6); /* subtle glow */
  border-radius: 5px;
}

/* Submenu items hover effect */
.navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: rgba(13, 110, 253, 0.2);
  color: #0d6efd;
  text-shadow: 0 0 6px rgba(13, 110, 253, 0.6); /* subtle glow */
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s, text-shadow 0.3s;
}

