body {background: #f5F6F8; font-family: 'Roboto Condensed', Arial, sans-serif; margin: 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 30px 20px; font-family: 'Roboto Condensed', Arial, sans-serif; }.header {position: relative;overflow: hidden; /* Ensures overlay stays inside header */display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px;font-family: 'Roboto Condensed', Arial, sans-serif;background-color: #014339;}
.header .logo {position: relative; z-index: 2;display: flex; align-items: center;font-family: 'Roboto Condensed', Arial, sans-serif;}
.header img { width: 150px; margin-right: 0px; }
.header-title {font-size: 1.3rem;font-weight: 400;color: #fff;font-family: 'Roboto Condensed', Arial, sans-serif;}
.header-subtitle {font-size: 1rem;font-weight: 400;color: #fff;font-family: 'Roboto Condensed', Arial, sans-serif;}
.header .header-overlay {position: absolute; inset: 0;background: rgba(0,0,0,0.8); /* 80% black */z-index: 1;pointer-events: none; /* Allows clicks to pass through */}  
.header-text {display: flex;flex-direction: column;}
.filters { display: flex; gap: 15px; font-family: 'Roboto Condensed', Arial, sans-serif; }
.filters select, .filters button { padding: 8px 20px; border-radius: 6px; border: 1px solid #ccc; font-size: 0.95rem; font-family: 'Roboto Condensed', Arial, sans-serif; }

.filter-btn, .filters .btn-primary {
    padding: 8px 32px;
    font-size: 0.95rem;
    font-weight: 400;
    border: none;
    border-radius: 6px;
    background: linear-gradient(90deg, #305C7B 0%, #18324a 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(48,92,123,0.10);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    letter-spacing: 0.5px;
}

.filter-btn:hover, .filters .btn-primary:hover {
    background: linear-gradient(90deg, #18324a 0%, #305C7B 100%);
    box-shadow: 0 4px 16px rgba(48,92,123,0.18);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
.main-navbar-bar {
  background: #111;
  border-bottom: none;
  width: 100%;
  margin-bottom: 0px;
}
.navbar-menu-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-menu-bar li {
  position: relative;
}
.navbar-menu-bar a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.navbar-menu-bar a:hover {
  color:rgb(26, 115, 211);
}
.navbar-menu-bar a.active,
.navbar-menu-bar a:active {
    color: #6ee7b7;
    border-bottom: 3px solid #6ee7b7;
    font-weight: 700;
    background: rgba(255,255,255,0.04);
}
.dropdown-arrow {
  font-size: 0.9em;
  margin-left: 4px;
}
@media (max-width: 900px) {
  .main-header-bar .container, .main-navbar-bar .container { flex-direction: column; }
  .header-brand { font-size: 1.3rem; }
  .navbar-menu-bar { gap: 18px; font-size: 1rem; }
}
.contain{max-width: 1400px;
    margin: 0 auto;
    padding: 0px 30px;
    font-family: 'Roboto Condensed', Arial, sans-serif;
}
.summary-cards { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; font-family: 'Roboto Condensed', Arial, sans-serif; }
.card { background: #fff; border-radius: 7px; box-shadow: 0 3px 5px #0003; padding: 20px; flex: 1 1 220px; min-width: 220px; display: flex; flex-direction: column; justify-content: center; font-family: 'Roboto Condensed', Arial, sans-serif; border: 0px solid #e0e0e0; }
.card.blue { background: #305C7B; color: #fff; }
.card.green { background: #08a699; color: #fff; }
.card .label { font-size: 1rem; color: #555; margin-bottom: 0px; font-family: 'Roboto Condensed', Arial, sans-serif; }
.card .value { font-size: 1.8rem; font-weight: 500; font-family: 'Roboto Condensed', Arial, sans-serif; }
.card .sub { font-size: 0.95rem; color: #888; margin-top: 0px; font-family: 'Roboto Condensed', Arial, sans-serif; }
.card .trend { font-size: 0.95rem; color: #e11d48; margin-top: 0px; font-family: 'Roboto Condensed', Arial, sans-serif; }
.card .icon { font-size: 2.5rem; margin-bottom: 10px; font-family: 'Roboto Condensed', Arial, sans-serif; }
/* Footer */
.main-footer {
    position: relative;
    background: #202020;
    min-height: 120px;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    
    box-shadow: 0 -2px 8px rgba(2,67,56,0.08);
  }
  .footer-bg {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
  }
  .footer-bg img {
    width: 100%;
    min-height: 60px;
    object-fit: cover;
    opacity: 0.18;
    display: block;
  }
  .footer-content {
    position: relative;
    z-index: 2;
    min-height: 90px;
    padding: 24px 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo img {
    height: 80px;
    width: auto;
    padding: 4px;
  }
  @media (max-width: 700px) {
    .footer-content { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }
    .footer-copyright { text-align: left !important; margin-left: 0 !important; }
}