* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
}

/* Header */
.header {
  background: #0d47a1;
  padding: 15px 0;
}

.header-flex {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  text-decoration: underline;
}

/* dashboard */

.psc-select {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}


/* Banner */
.banner {
  height: 420px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("../images/banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-content h2 {
  font-size: 40px;
}

.banner-content p {
  margin: 15px 0;
  font-size: 18px;
}

.banner-buttons {
  margin-top: 20px;
}

.inner-banner {
  height: 300px;
}

/* Buttons */
.btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin: 5px;
  display: inline-block;
}

.primary {
  background: #ff6b6b;
  color: #fff;
}

.secondary {
  background: #ffd54f;
  color: #333;
}

.outline {
  border: 2px solid #fff;
  color: #fff;
}

/* Sections */
.section {
  padding: 60px 0;
  text-align: center;
}

.section.light {
  background: #f5f7fa;
}

.section-title {
  font-size: 32px;
  color: #0d47a1;
  margin-bottom: 40px;
}

/* Cards */
.card-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 30px;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-btn {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  color: #0d47a1;
  font-weight: 600;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

/* Footer */
.footer {
  background: #0d47a1;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer ul {
  list-style: none;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

footer p {
  text-align: center;
  margin-top: 20px;
}