/* General styling */
body {
  background-color: #f8f9fa;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Hero Section */
.history-hero {
  background: url("images/history_banner.jpg") center/cover no-repeat;
  height: 40vh;           /* reduced height */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
}


.history-hero .overlay {
  background-color: rgba(11, 26, 57, 0.8); /* navy overlay */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.history-hero .container {
  position: relative;
  z-index: 2;
}

/* History Card */
.history-card {
  background-color: #0b1a39;
  border: 3px solid #e3b505;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.history-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.history-card p {
  color: #f8f9fa;
  font-size: 1rem;
  line-height: 1.8;
}

/* Section title */
.section-title {
  font-weight: 700;
  letter-spacing: 1px;
  color: #e3b505;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .history-hero {
    height: 40vh;
  }
  .history-card {
    padding: 2rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
}
/* Make footer stick to the bottom without touching HTML */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
