body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  margin-top: 80px;
}

.navbar-brand span {
  font-size: 1.1rem;
}

.navbar-nav .nav-link {
  color: #333 !important;
  margin: 0 10px;
  font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #006633 !important;
}
/* Navbar Styling */
.navbar-nav .nav-link {
  color: #333 !important;
  margin: 0 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #006633 !important;
  text-decoration: underline;
}

/* Dropdown Menu */
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: #fff;
  padding: 0.5rem 0;
  transition: all 0.2s ease-in-out;
}

/* Dropdown Items */
.dropdown-item {
  font-weight: 500;
  color: #333;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

/* Hover Effect for Submenus */
.dropdown-item:hover {
  background-color: #f1f1f1;
  color: #006633;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
/* Hero Section */
.hero-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1,
.hero-section h2,
.hero-section p {
  color: #fff;
}
.table {
  border: 1px solid #dee2e6;
  background-color: #fff;
}

.table th,
.table td {
  vertical-align: top;
  padding: 12px 15px;
}

.table-heading {
  width: 25%;
  background-color: #f9f9f9;
  color: #006633;
  font-weight: 700;
}

.table-bordered > :not(caption) > * > * {
  border-color: #dee2e6;
}

.table-responsive {
  border-radius: 6px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .table-heading {
    width: 100%;
  }
}

/* Overview */
#overview p {
  text-align: justify;
  margin-bottom: 1.2rem;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #003366, #005599);
}

footer h6 {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 120px 0;
  }
}
