:root {
  --brand: #0b5ed7;
  --muted: #6c757d;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background: #f8f9fa;
  color: #222;
}
.navbar-brand img {
  height: 50px;
  width: auto;
  border-radius: 6px;
}
.navbar {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.hero {
  background: linear-gradient(
    90deg,
    rgba(11, 94, 215, 0.08),
    rgba(11, 94, 215, 0.02)
  );
  padding: 60px 0;
  border-radius: 10px;
}
.program-section {
  padding: 2rem 0;
}

.program-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.program-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #6c63ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.program-title {
  font-weight: 600;
  color: #212529;
  font-size: 1.1rem;
}

.program-desc {
  font-size: 0.9rem;
  color: #6c757d;
}

.news-section {
  padding: 2rem 0;
}

.news-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  background: #fff;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-card img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-card .card-body {
  padding: 1.25rem;
}

.news-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.news-card:hover .card-title {
  color: #0d6efd;
}

.news-card .card-text {
  font-size: 0.9rem;
  color: #6c757d;
}

.news-card .card-text a {
  text-decoration: none;
  color: #0d6efd;
  font-weight: 500;
}

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

.footer {
  background: linear-gradient(180deg, #007b91 0%, #045f73 100%);
  color: #f9fbfc;
}
.footer h6 {
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding-bottom: 6px;
}
.footer a.footer-link {
  color: #e2f7ff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-logo img {
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}
.social-item .social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: all 0.3s ease;
}
.social-item .social-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}
.map-box iframe {
  border-radius: 8px;
}
.footer-bottom {
  color: #d7f2f8;
}
