body {
  font-family: 'Noto Sans', sans-serif;
}

.custom-nav {
  background-color: rgb(32, 47, 117);
}
.custom-nav .navbar-brand,
.custom-nav .nav-link {
    color: rgb(255, 255, 255) !important; /* White text with !important to override Bootstrap */
}

/* Active link styling */
.custom-nav .nav-link.active {
  color: rgb(255, 255, 255) !important; /* Keep white text for active item */
  font-weight: bold; /* Make active item bold */
}

/* Hover states */
.custom-nav .navbar-brand:hover,
.custom-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important; /* Slightly transparent white on hover */
}

/* Increase font size for navbar elements */
.custom-nav .navbar-brand {
  font-size: 1.5rem !important; /* Larger size for brand/logo text */
}

.custom-nav .nav-link {
  font-size: 1.2rem !important; /* Larger size for navigation links */
}

/* Optional: adjust padding to accommodate larger text */
.custom-nav .nav-item {
  padding: 0.25rem 0.5rem;
}

/* Change hamburger menu icon to white */
.custom-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Style the toggler button border */
.custom-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.8) !important;
}

/* Optional: change focus outline color */
.custom-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

.container h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: rgb(32, 47, 117);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.container h2 {
  font-size: 2.2rem;
  color: rgb(32, 47, 117);
  margin-bottom: 1rem;
}

.container h3 {
  font-size: 1.5rem;
  color: rgb(32, 47, 117);
  margin-top: 1.5rem;
}

.container a {
  color: rgb(10, 34, 144); /* Dark blue color */
  text-decoration: none;
  transition: all 0.2s;
}

.container a:hover {
  text-decoration: underline;
}

.sticky-request-button {
  background-color: rgb(32, 47, 117) !important; /* Your desired color */
  border-color: rgb(32, 47, 117) !important;
  color: white !important;
}

.sticky-request-button:hover {
  background-color: rgb(22, 37, 107) !important; /* Slightly darker on hover */
  border-color: rgb(22, 37, 107) !important;
}

.card-header {
  background-color: #1A4B84; /* Dark blue background for card title */
  color: white; /* White text for card title */
  height: 100px; /* Fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0 15px;
  text-align: center;
}
.card-body {
  background-color: white; /* White background for card body */
  color: black; /* Black text for card body */
  padding: 1.5rem;
}
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.lab-header-image {
  width: 100%;
  height: 400px;
  object-fit: cover;  /* Covers the area while maintaining aspect ratio */
  object-position: center;  /* Centers the image */
  filter: brightness(0.7);  /* Slightly darkens the image */
  max-width: 100%;  /* Ensures image doesn't exceed container width */
}

.service-card {
  transition: transform 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  
}

.service-card:hover {
  transform: translateY(-10px);
}

.lab-service-text {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
}

.person.card {
  box-shadow: none; /* Removes the box shadow */
}

.person.card img {
  border-radius: 10px; /* Adds rounded corners to the image */
  object-fit: cover; /* Ensures the image fits properly */
}

.news-item.card {
  box-shadow: none; /* Removes the box shadow */
}

.news-item.card img {
  border-radius: 10px; /* Adds rounded corners to the image */
  object-fit: cover; /* Ensures the image fits properly */
}
