body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}
header {
  background: #004080;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header .header-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
nav {
  background: #003366;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  flex-wrap: wrap;
}

nav a,
nav .dropbtn {
  color: white;
  text-decoration: none;
  font-weight: bold; /* Make all nav links and dropbtn bold */
  background-color: transparent;
  border: none;
  font-size: 1em;
  padding: 0;
  cursor: pointer;
}

nav a:hover,
.dropbtn:hover {
  text-decoration: underline;
}

nav a.active,
nav .dropbtn.active {
  text-decoration: underline;
  font-weight: bold; /* Ensure active links stay bold and underlined */
}

/* Dropdown Navigation */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  z-index: 1;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
}

.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: #000;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #e0e0e0;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.logo-section {
  padding-bottom: 10px; /* reduce bottom space */
  padding-top: 20px;     /* optional: reduce top space */
}
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}
.team-member {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.member-text {
  flex: 1;
  padding-right: 20px;
}

.member-name {
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}

.member-title {
  font-size: 0.9em;
  color: #666;
  margin-top: 4px;
}

.member-bio {
  margin-top: 10px;
  font-size: 1em;
  color: #333;
}

.more-text {
  display: none;
}

.read-more-btn {
  display: inline-block;
  margin-top: 5px;
  background: none;
  border: none;
  color: #007BFF;
  cursor: pointer;
  font-size: 0.9em;
  padding: 0;
}

.read-more-btn:hover {
  text-decoration: underline;
}
.member-photo {
  width: 140px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .member-text {
    padding-right: 0;
  }

  .member-photo {
    margin-top: 15px;
  }
}
.news-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.news-item img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  margin-right: 20px;
  object-fit: cover;
}

.news-content {
  flex: 1;
}

.news-date {
  font-size: 0.85em;
  color: #777;
  margin-bottom: 5px;
}

.news-title {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #003366;
}

.news-excerpt {
  font-size: 1em;
  color: #333;
  margin-bottom: 10px;
}

.read-more {
  color: #007BFF;
  text-decoration: none;
  font-size: 0.95em;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .news-item {
    flex-direction: column;
    text-align: center;
  }

  .news-item img {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    max-width: 100%;
  }

  .news-content {
    text-align: left;
  }
}
.special-heading {
  margin-top: 0px; /* or whatever space you want */
}
footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}


