body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #ffffff, #f0f0f0);
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imgs/hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 0;
  text-align: center;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
  color: #00ffe1;
  text-shadow: 0 0 10px #00ffe1;
}

.btn-primary {
  background: linear-gradient(135deg, #00d9a5, #00ffc3);
  border: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 255, 204, 0.4);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00b48a, #00d9a5);
  box-shadow: 0 6px 20px rgba(0, 255, 204, 0.6);
}

.gallery-img,
.ward-img,
.about-img {
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  min-height: 400px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover,
.ward-img:hover,
.about-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

footer {
  background: linear-gradient(to right, #111, #222);
  color: #ccc;
  padding: 60px 0;
  font-size: 0.95rem;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.05);
}

footer a {
  color: #00d9a5;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-shadow: 0 0 8px #00ffe1;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.navbar-brand img {
  height: 50px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.navbar-nav .nav-link {
  color: #212529;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #00d9a5;
  text-shadow: 0 0 5px #00d9a5;
}

section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #343a40;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.carousel-item h5 {
  font-weight: 600;
}

.carousel-item p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  color: #6c757d;
}
