body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  margin: 0;
}

/* Header */
header {
  background-color: #0b1a39;
  border-bottom: 4px solid #e3b505;
}

/* Section Background */
.vision-mission-section {
  background-color: #f8f9fa;
}

/* Inner navy box */
.vision-card {
  background-color: #0b1a39;
  border: 3px solid #e3b505;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  color: #f8f9fa;
}

/* Intro Text */
.intro-text {
  font-size: 1rem;
  color: #f8f9fa;
  line-height: 1.8;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid #e3b505;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Vision & Mission Boxes */
.content-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid #e3b505;
  border-radius: 15px;
  transition: all 0.3s ease;
  color: #f8f9fa;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.content-box:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Headings */
.content-box h4 {
  color: #e3b505;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Lists */
.content-box ul {
  padding-left: 1rem;
  margin: 0;
  list-style-type: disc;
}
.content-box li {
  margin-bottom: 10px;
  color: #f8f9fa;
  line-height: 1.7;
}

/* Footer */
footer {
  background-color: #0b1a39;
  border-top: 4px solid #e3b505;
}

.back-btn {
  border: 2px solid #e3b505;
  color: #e3b505;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.back-btn:hover {
  background-color: #e3b505;
  color: #0b1a39;
  transform: translateY(-2px);
}

/* Make footer stick to the bottom without touching HTML */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

