.hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/images/alliance1.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 50px;
}

.section-title {
  position: relative;
  margin-bottom: 50px;
  font-weight: 600;
  color: var(--primary-color);
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.program-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: none;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.program-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.program-card .card-body {
  padding: 25px;
}

.program-card .card-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.program-card .card-text {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: white;
}

.feature-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-box p {
  color: var(--secondary-color);
}

footer {
  background-color: #2c3e50;
  color: white;
  padding: 0;
}

footer a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: white;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.bg-nursing {
  background-color: var(--light-blue);
}

.bg-anaesthesia {
  background-color: var(--light-green);
}

.bg-radiology {
  background-color: var(--light-purple);
}

.bg-lhv {
  background-color: var(--light-orange);
}

.icon-nursing {
  background-color: #4e73df;
}

.icon-anaesthesia {
  background-color: #1cc88a;
}

.icon-radiology {
  background-color: #9b59b6;
}

.icon-lhv {
  background-color: #e67e22;
}

.admission-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 40px 0;
  border-radius: 10px;
  margin: 50px 0;
}
