@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
/* Reset and base styles */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Universal banner */
.site-hero {
  position: relative;
  text-align: center;
  padding: 80px 20px 60px 20px;
  background: linear-gradient(145deg, #0d1b2a 40%, #1b263b 100%);
  color: #ffffff;
  overflow: hidden;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.35);
}

/* Overlay for readability */
.site-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.site-hero * {
  position: relative;
  z-index: 2;
}


section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

section h2 {
  color: #1b263b;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 5px;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}

footer {
  text-align: center;
  background-color: #1b263b;
  color: white;
  padding: 15px 10px;
  font-size: 0.9em;
}

.topnav {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
}

.topnav a {
  color: #c0d6df;
  text-decoration: none;
  font-weight: 600;
}

.topnav a:hover {
  text-decoration: underline;
}

#latest-insights {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
  max-width: 800px;
  margin: 40px auto;
}

#latest-insights h2 {
  color: #1b263b;
  margin-bottom: 10px;
}

#latest-insights ul {
  list-style-type: disc;
  margin-left: 20px;
}

#latest-insights a {
  text-decoration: none;
  color: #1b263b;
}

#latest-insights a:hover {
  text-decoration: underline;
}

/* Insights page nav fix */
.insights-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 12px 0;
}

.insights-nav a {
  background-color: #ffffff;
  color: #1b263b;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 5px;
  border: 1px solid #c0d6df;
}

.insights-nav a:hover {
  background-color: #c0d6df;
  color: #0d1b2a;
}

#contact {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

#contact h2 {
  color: #1b263b;
  margin-bottom: 10px;
}

#contact a {
  color: #1b263b;
  font-weight: 600;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

html {

  #about {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 30px;
  max-width: 900px;
  margin: 40px auto;
  line-height: 1.6;
}

#about h2 {
  color: #1b263b;
  margin-bottom: 16px;
  text-align: center;
}

#about h3 {
  color: #1b263b;
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.2em;
}

#about p {
  margin-bottom: 14px;
}

#about ul {
  margin-left: 20px;
  margin-bottom: 14px;
}

#about li {
  margin-bottom: 8px;
}

#about strong {
  color: #0d1b2a;
}

  scroll-behavior: smooth;
}

/* Style the H1 logo */
header h1 {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #1b263b;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.9rem;
  }
}

.logo {
  width: 380px;         /* good desktop size */
  max-width: 80%;       /* scale down on mobile */
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

/* Banner title – full width and white text */
.brand-title {
  font-family: 'Poppins', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 1.2px;
  color: #ffffff !important;
  text-align: center;
  width: 100%;
  display: block;
  margin: 0 auto 10px auto;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .brand-title {
    font-size: 2rem;
    letter-spacing: 0.8px;
  }
}


/* Banner tagline */
.tagline {
  font-family: 'Poppins', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #c0d6df;
  text-align: center;
  margin: 10px auto 0 auto;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .tagline {
    font-size: 1rem;
  }
}

/* Fade-in animation for banner text */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand-title, .tagline {
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
}

.brand-title {
  animation-delay: 0.3s;
}

.tagline {
  animation-delay: 0.8s;
}

.page-title {
  max-width: 900px;
  margin: 24px auto 10px auto;
  padding: 0 20px;
  text-align: center;
}

.page-title h1 {
  margin: 0 0 6px 0;
  color: #1b263b;
  font-size: 1.8rem;
  font-weight: 700;
}

.page-title p {
  margin: 0;
  color: #445;
  font-size: 1rem;
}

/* Buttons (shared) */
.btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.02s ease-in;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: #1b263b;
  color: #ffffff;
  border: 1px solid #1b263b;
}

.btn-primary:hover { text-decoration: underline; }

.btn-light {
  background: #ffffff;
  color: #1b263b;
  border: 1px solid #c0d6df;
}

.btn-light:hover {
  background: #c0d6df;
  color: #0d1b2a;
}

.footer-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}

/* Consistent spacing directly below the banner */
.site-hero + .page-title { margin-top: 24px; }
.site-hero + section { margin-top: 24px; }

/* Tidy default spacing for sections */
section { padding: 0 20px; }

/* Reusable card */
.card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
  max-width: 900px;
  margin: 24px auto;
}

.card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
  max-width: 900px;
  margin: 24px auto;
}


