.nav-pills .nav-link {
  color: #007bff;
  font-weight: bold;
  border: 1px solid #007bff;
  border-radius: 20px;
  margin: 0 5px;
}

.nav-pills .nav-link.active {
  background-color: #007bff;
  color: #fff;
}

.card {
  border: 3px solid #0056b3;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 10px;
  min-height: 150px;
  margin: 20px 10px;
  background-color: #f8f8f8;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 6px;
  margin-top: 20px;
}

.card-text {
  font-size: 1.2rem;
  color: #555;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}

.card-text a {
  color: #0056b3;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 20px;
}

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

.hero-section {
  background: url('/static/images/hero.jpg') no-repeat center center;
  background-size: cover;
  height: 300px;
  position: relative;
  margin-bottom: 50px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.rotated-background {
  background: url('/static/images/texture.png') no-repeat center center;
  background-size: 200px 200px;
  position: fixed;
  top: 0;
  left: 0;
  width: 1500px;
  height: 100vh;
  transform: rotate(90deg);
  z-index: -1;
  filter: hue-rotate(200deg);
}

