
    /* === Welcome Section === */
#welcome {
  padding: 40px 0;
  text-align: center;
  background: #f0fff0;
}

#welcome h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

#welcome p {
  font-size: 18px;
  line-height: 1.6;
  color: red;
}

/* === Gallery and Profile === */
.gallery-profile-wrapper {
  padding: 30px 15px;
  background: #f0fff0;
}

.gallery-profile-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Slider */
#slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
}

#slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

#slider img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

#dots {
  text-align: center;
  margin-top: 10px;
}

#dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.3s;
}

#dots .active {
  background: #007bff;
}

/* Profile Card */
.profile-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 100%;
}

.profile-img-circle {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  border: 4px solid #007bff;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card h5 {
  margin-bottom: 5px;
  font-weight: bold;
}

.profile-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 5px;
}

.profile-card .desc {
  margin-top: 10px;
  font-size: 13px;
  color: #555;
  text-align: justify;
  line-height: 1.5;
}

/* === Government Notice Board === */
.gov-notice-board {
  max-width: 720px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.gov-notice-header {
  background: #004a99;
  color: #fff;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: bold;
}

.gov-notice-list {
  display: flex;
  flex-direction: column;
}

.gov-notice-item {
  display: grid;
  grid-template-columns: 40px 1fr 120px 100px;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.gov-notice-item:nth-child(even) {
  background: #f9f9f9;
}

.gov-notice-serial {
  font-weight: bold;
  color: #333;
}

.gov-notice-text {
  color: #333;
}

.gov-notice-date {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}

.gov-notice-btn a {
  background: #007bff;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
}

.gov-notice-btn a:hover {
  background: #0056b3;
}

.gov-pagination {
  text-align: center;
  padding: 15px;
}

.gov-pagination button {
  padding: 8px 16px;
  margin: 0 5px;
  background: #004a99;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.gov-pagination button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* === Responsive Styling === */
@media screen and (max-width: 768px) {
  .container {
    width: 98%;
    padding: 0 5px;
  }

  /* Welcome */
  #welcome {
    padding: 20px 0;
  }

  #welcome h2 {
    font-size: 20px;
  }

  #welcome p {
    font-size: 14px;
  }

  /* Gallery/Profile layout */
  .gallery-profile-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #slider-wrapper {
    aspect-ratio: 16 / 9;
  }

  .profile-img-circle {
    width: 90px;
    height: 90px;
    border-width: 3px;
  }

  .profile-card {
    padding: 12px;
  }

  .profile-card h5 {
    font-size: 15px;
  }

  .profile-card p,
  .profile-card .desc {
    font-size: 12px;
    line-height: 1.4;
  }

  /* Notice Board */
  .gov-notice-board {
    margin: 15px 5px;
  }

  .gov-notice-header {
    font-size: 18px;
    padding: 10px;
  }

  .gov-notice-item {
    grid-template-columns: 1fr;
    row-gap: 4px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .gov-notice-date,
  .gov-notice-btn {
    grid-column: span 1;
    font-size: 12px;
  }

  .gov-notice-btn a {
    font-size: 11px;
    padding: 4px 8px;
  }

  .gov-pagination button {
    font-size: 12px;
    padding: 5px 8px;
  }