:root {
  --primary-color: #00796b; /* Kemenag Green Tone */
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --accent-color: #ffc107;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-color);
  background-color: #f4f6f9;
}

/* Top Bar */
.top-bar {
  background-color: #004d40;
  color: white;
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background-color: white;
  padding: 15px 0;
}
.navbar.sticky-top {
  z-index: 1050;
}
.dropdown-menu {
  z-index: 1060;
}

.navbar-brand img {
  height: 50px;
}

.nav-link {
  color: #333 !important;
  font-weight: 600;
  margin-left: 15px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
}

.carousel-item img {
  height: 500px;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 5px;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-title h2 {
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}

/* News Cards */
.news-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  background: white;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  height: 200px;
  object-fit: cover;
}

.news-card .card-body {
  padding: 20px;
}

.news-date {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
  display: block;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-title a {
  color: #333;
  text-decoration: none;
}

.news-title a:hover {
  color: var(--primary-color);
}

/* Services */
.service-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
  height: 100%;
  border-bottom: 3px solid transparent;
}

.service-box:hover {
  border-bottom: 3px solid var(--primary-color);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #004d40;
  color: white;
  padding-top: 60px;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 20px;
}

.footer-widget h4 {
  color: var(--accent-color);
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.copyright {
  background-color: #00332a;
  padding: 20px 0;
  margin-top: 50px;
  font-size: 0.9rem;
}
