:root {
  --aseegs-green: #0f7a35;
  --aseegs-yellow: #f2c400;
  --aseegs-blue: #173f8a;
  --aseegs-blue-dark: #102d63;
  --aseegs-ink: #172033;
  --aseegs-muted: #667085;
  --aseegs-soft: #f5f7fb;
  --aseegs-border: #d9e1ec;
}

body {
  color: var(--aseegs-ink);
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: var(--aseegs-blue);
  text-decoration: none;
}

a:hover {
  color: var(--aseegs-green);
}

.btn {
  border-radius: 4px;
  font-weight: 700;
}

.btn-primary {
  background: var(--aseegs-blue);
  border-color: var(--aseegs-blue);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--aseegs-blue-dark);
  border-color: var(--aseegs-blue-dark);
}

.btn-success {
  background: var(--aseegs-green);
  border-color: var(--aseegs-green);
}

.btn-outline-primary {
  color: var(--aseegs-blue);
  border-color: var(--aseegs-blue);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--aseegs-blue);
  border-color: var(--aseegs-blue);
}

.institution-topbar {
  padding: 0.45rem 0;
  color: #ffffff;
  background: var(--aseegs-blue-dark);
  font-size: 0.875rem;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--aseegs-border);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--aseegs-ink);
}

.brand-lockup:hover {
  color: var(--aseegs-ink);
}

.brand-lockup img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  color: var(--aseegs-blue);
  font-size: 1.8rem;
  line-height: 1;
}

.brand-lockup small {
  margin-top: 0.35rem;
  color: var(--aseegs-muted);
  font-weight: 700;
}

.aseegs-navbar {
  background: #ffffff;
  border-bottom: 4px solid var(--aseegs-yellow);
}

.navbar .nav-link {
  color: var(--aseegs-ink);
  font-size: 0.93rem;
  font-weight: 700;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--aseegs-blue);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid var(--aseegs-border);
}

.hero-carousel,
.page-header-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-carousel::after,
.page-header-carousel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.82);
}

.hero-carousel img,
.page-header-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: aseegsSlideShow 18s infinite;
}

.hero-carousel img:nth-child(2),
.page-header-carousel img:nth-child(2) {
  animation-delay: 6s;
}

.hero-carousel img:nth-child(3),
.page-header-carousel img:nth-child(3) {
  animation-delay: 12s;
}

.hero-shell,
.page-header .container {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-height: 460px;
  padding: 4.5rem 4rem 4.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  max-width: 820px;
  margin-bottom: 1.25rem;
  color: var(--aseegs-blue-dark);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
}

.hero-copy .lead {
  max-width: 720px;
  color: #344054;
  font-size: 1.2rem;
  line-height: 1.65;
}

.section-kicker {
  margin-bottom: 0.65rem;
  color: var(--aseegs-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-card {
  height: 100%;
  min-height: 460px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border-right: 1px solid var(--aseegs-border);
  border-left: 1px solid var(--aseegs-border);
}

.official-card img {
  width: 190px;
  max-width: 80%;
  height: auto;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--aseegs-border);
  padding: 0.75rem;
}

.hero-note {
  padding-top: 1.25rem;
  border-top: 1px solid var(--aseegs-border);
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note span {
  color: var(--aseegs-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note strong {
  margin-top: 0.35rem;
  color: var(--aseegs-blue-dark);
  line-height: 1.5;
}

.quick-access {
  background: var(--aseegs-blue);
}

.quick-link {
  min-height: 88px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

.quick-link:hover,
.quick-link:focus {
  color: #ffffff;
  background: var(--aseegs-blue-dark);
}

.quick-link i {
  color: var(--aseegs-yellow);
  font-size: 1.35rem;
}

.institution-panel,
.stat-card,
.content-card,
.member-card,
.icon-card,
.info-panel,
.contact-form,
.directory-table,
.document-row {
  background: #ffffff;
  border: 1px solid var(--aseegs-border);
  border-radius: 4px;
}

.stat-card {
  min-height: 126px;
  padding: 1.25rem;
  border-top: 4px solid var(--aseegs-green);
}

.stat-value,
.stat-label {
  display: block;
}

.stat-value {
  color: var(--aseegs-blue);
  font-size: 2rem;
  font-weight: 800;
}

.stat-label {
  color: var(--aseegs-muted);
  font-weight: 700;
}

.featured-story,
.priority-panel {
  background: #ffffff;
  border: 1px solid var(--aseegs-border);
  border-radius: 4px;
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
}

.featured-story img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.featured-story-body {
  padding: 2rem;
  align-self: center;
}

.featured-story-body h2 {
  color: var(--aseegs-blue-dark);
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
}

.featured-story-body p {
  color: #344054;
  line-height: 1.7;
}

.priority-panel {
  padding: 2rem;
}

.priority-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--aseegs-border);
}

.priority-item span {
  flex: 0 0 auto;
  color: var(--aseegs-green);
  font-weight: 800;
}

.priority-item h3 {
  margin-bottom: 0.35rem;
  color: var(--aseegs-blue-dark);
  font-size: 1rem;
  font-weight: 800;
}

.priority-item p {
  margin-bottom: 0;
  color: var(--aseegs-muted);
}

.page-header {
  position: relative;
  overflow: hidden;
  background: var(--aseegs-soft);
  border-bottom: 1px solid var(--aseegs-border);
}

.page-header-carousel::after {
  background: rgba(245, 247, 251, 0.9);
}

.page-header-content {
  max-width: 860px;
  padding: 1.25rem 0;
}

.page-header h1 {
  color: var(--aseegs-blue-dark);
}

.page-header .lead {
  max-width: 820px;
  color: #344054;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 5px solid var(--aseegs-yellow);
}

.content-band {
  background: var(--aseegs-soft);
  border-top: 1px solid var(--aseegs-border);
  border-bottom: 1px solid var(--aseegs-border);
}

.content-card {
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.content-card h3 {
  color: var(--aseegs-blue-dark);
}

.card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--aseegs-soft);
  border-bottom: 1px solid var(--aseegs-border);
}

.detail-media {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--aseegs-border);
  border-radius: 4px;
}

.member-card,
.icon-card,
.info-panel,
.contact-form {
  padding: 1.5rem;
}

.member-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--aseegs-blue);
  color: #ffffff;
  font-weight: 800;
}

.icon-card {
  border-top: 4px solid var(--aseegs-yellow);
}

.icon-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--aseegs-blue);
  background: var(--aseegs-soft);
  border: 1px solid var(--aseegs-border);
  border-radius: 4px;
  font-size: 1.35rem;
}

.check-list {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.check-list li + li {
  margin-top: 0.65rem;
}

.article-body {
  max-width: 780px;
}

.article-body p {
  font-size: 1.08rem;
  line-height: 1.8;
}

.directory-table {
  overflow: hidden;
}

.directory-table thead th {
  background: var(--aseegs-blue);
  color: #ffffff;
  border: 0;
}

.directory-table tbody tr:last-child td {
  border-bottom: 0;
}

.document-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 150px;
  padding: 1.25rem;
}

.form-control {
  border-radius: 4px;
  border-color: var(--aseegs-border);
}

.form-control:focus {
  border-color: var(--aseegs-blue);
  box-shadow: 0 0 0 0.2rem rgba(23, 63, 138, 0.15);
}

.site-footer {
  color: #dce7f5;
  background: #101828;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem;
}

.site-footer a {
  color: #ffffff;
}

.site-footer a:hover {
  color: var(--aseegs-yellow);
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-bottom {
  color: #b9c6d6;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@keyframes aseegsSlideShow {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  8% {
    opacity: 1;
  }

  33% {
    opacity: 1;
    transform: scale(1.04);
  }

  42% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@media (max-width: 991.98px) {
  .brand-lockup img {
    width: 64px;
    height: 64px;
  }

  .brand-lockup strong {
    font-size: 1.45rem;
  }

  .hero-copy {
    min-height: auto;
    padding: 3rem 0;
  }

  .official-card {
    min-height: auto;
    border-top: 1px solid var(--aseegs-border);
    border-left: 0;
    border-right: 0;
  }

  .featured-story {
    grid-template-columns: 1fr;
  }

  .featured-story img {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .brand-lockup {
    align-items: flex-start;
  }

  .brand-lockup small {
    font-size: 0.82rem;
  }

  .hero-copy .btn {
    width: 100%;
  }

  .hero-carousel::after {
    background: rgba(255, 255, 255, 0.9);
  }

  .document-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-link {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .featured-story-body,
  .priority-panel {
    padding: 1.4rem;
  }
}
