/* ===== Global Styles ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #222;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  color: #004080;
  margin-top: 0;
}

main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: #fff;
}

/* ===== Header ===== */
header {
  background-color: #004080;
  color: white;
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
  color: #0056b3;
}

nav a.active {
  text-decoration: underline;
  border-bottom: 2px solid white;
}

.logo {
  height: 60px;
  vertical-align: middle;
  margin-right: 10px;
}

/* ===== Footer ===== */
footer {
  background-color: #002b55;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* ===== Program Cards ===== */
.program-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.program-card {
  background-color: #e8f1ff;
  border: 1px solid #cbdaf0;
  border-radius: 8px;
  padding: 20px;
  width: calc(50% - 20px);
  box-sizing: border-box;
}

/* ===== Values Grid ===== */
.values-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.values-section h2 {
  color: #003f7f;
  font-size: 2em;
  margin-bottom: 10px;
}

.values-section p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1em;
  color: #333;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  border-left: 6px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.value-card h3 {
  margin-top: 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #003f7f;
}

.value-card p {
  font-size: 1em;
  margin-top: 8px;
  color: #444;
}

/* Color themes from the logo */
.navy-blue {
  border-left-color: #003b71;
  background-color: #e9f1fa;
}

.deep-red {
  border-left-color: #c1272d;
  background-color: #fceaea;
}

.forest-green {
  border-left-color: #2e7d32;
  background-color: #e7f4ea;
}

.medium-blue {
  border-left: 6px solid #165496;
  background-color: #e6f3ff;
}

.dark-green {
  border-left: 6px solid #2e8b57;
  background-color: #e6fff0;
}

.purple {
  border-left: 6px solid #6a0dad;
  background-color: #f3e6ff;
}

.orange {
  border-left: 6px solid #ff8c00;
  background-color: #fff3e6;
}

.pink {
  border-left: 6px solid #e75480;
  background-color: #ffe6f0;
}

.gray {
  border-left: 6px solid #666;
  background-color: #f2f2f2;
}

/* ===== Contact Form ===== */
.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-form button {
  background-color: #004080;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #003060;
}

/* ===== Utility ===== */
a {
  color: #004080;
}

/* Scroll to Top Button */
#topBtn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #004080;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

#topBtn:hover {
  background-color: #003366;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  header img.logo {
    width: 80px;
    height: auto;
  }

  nav a {
    display: block;
    margin: 0.5rem 0;
  }

  .intro-section, .values-section {
    padding: 1rem;
    text-align: center;
  }
}
/* ===== Core Areas Section ===== */
.core-areas {
  list-style: none;
  padding-left: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.8;
}

.core-areas li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.core-areas i {
  color: #004080;
  min-width: 20px;
  font-size: 1.1em;
}
