:root {
  --sclp-blue: #001f4d;
  --sclp-orange: orange;
}

.header {
  color: var(--sclp-blue) !important;
}

/* Navbar Styles */
.navbar {
  background-color: var(--sclp-blue) !important;
}

.navbar-nav .nav-link {
  color: white !important;
  transition: 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  background-color: var(--sclp-orange);
  color: white !important;
  border-radius: 5px;
}

.navbar-toggler-label {
  color: white;
  font-weight: 500;
  margin-left: 8px;
}

/* Dropdown menu matches navbar background */
.navbar .dropdown-menu {
  background-color: var(--sclp-blue);
  border: none;
  border-radius: 0;
}

/* Dropdown items styled like nav links */
.navbar .dropdown-menu .dropdown-item {
  color: white;
  transition: 0.3s;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: var(--sclp-orange);
  color: white;
}

.search-container {
  display: flex;
  width: 350px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #ccc;
  float: right;
  margin-top: 40px;
}

.search-input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 30px 0 0 30px;
}

.search-button {
  background-color: #23406a;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 0 30px 30px 0;
}

.search-button:hover {
  background-color: var(--sclp-orange);
}

@media (max-width: 767.98px) {
  .navbar-toggler-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
  }

  .search-container {
	justify-content: center;
	width: 100%;
	margin-top: 1rem;
  }

  main {
	text-align: center;
  }

  main section ul {
	list-style-position: inside;
	padding-left: 0;
  }
}

.carousel-caption {
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  border-radius: 0px 80px 0px 0px;
  color: navy;
  border-right: 7px solid orange;
}

footer {
  background-color: var(--sclp-blue);
  color: white;
  padding: 40px 0;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.accreditation-img {
  height: 80px;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}