/* HERO (stacking fix) */

body {
  font-family: var(--bs-body-font-family, 'Helvetica Neue', Helvetica, Arial, sans-serif);
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;                 /* was -1 */
}
.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  filter: contrast(1.05) saturate(1.05);
}
@media (max-width: 768px) {
  .hero .hero-bg img {
    object-position: center 20%;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,15,40,.55) 0%,
    rgba(6,15,40,.35) 35%,
    rgba(6,15,40,.25) 60%,
    rgba(6,15,40,.6) 90%,
    rgba(6,15,40,.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}


/* Ensure hero text sits above overlay */
.hero .container {
  position: relative;         /* bootstrap's .position-relative also OK */
  z-index: 2;
  color: #fff;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background-color: #fff;
  color: #111;
}
a { text-decoration: none; color: #0b5cff; }
a:hover { text-decoration: underline; }

.feature i {
  color: #0b5cff;
  font-size: 1.3rem;
  vertical-align: middle;
  margin-right: .25rem;
}

.cta-band {
  background: linear-gradient(90deg, #0b5cff, #4b9eff);
  color: #fff;
  border-radius: 1rem;
}
/* Brand logo sizing */
.logos img {
  max-width: 140px;
  max-height: 80px;
  width: auto;
  height: auto;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
/* Animated divider line under "Trusted by..." heading */
#institutions hr {
  width: 0;
  transition: width 0.8s ease;
}
#institutions.reveal-visible hr {
  width: 80px;
}

/* Brand logos — visible but subtly faded before reveal */
#institutions .logos img {
  opacity: 0.4;               /* visible at rest */
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.3s ease;
  filter: grayscale(100%);
}

#institutions.reveal-visible .logos img {
  opacity: 0.85;               /* brighten when revealed */
  transform: scale(1);
}

#institutions .logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.btn-brand {
  background-color: var(--bs-primary);
  color: #fff !important;
  border: none;
}
.btn-brand:hover {
  background-color: #0041d0;
}

/* === Journey Page Styles === */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-content h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.page-content h2 {
  color: #003d66;
  border-left: 5px solid #005b96;
  padding-left: 12px;
  margin-top: 40px;
}

.page-content img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
}
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.plan {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.plan h2 {
  color: #005b96;
  margin-bottom: 10px;
}

.price {
  font-size: 1.8em;
  font-weight: bold;
  color: #003d66;
  margin-bottom: 15px;
}

.plan ul {
  list-style: none;
  padding: 0;
}

.plan ul li {
  padding: 5px 0;
  border-bottom: 1px dotted #ccc;
}
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.plan {
  background: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.plan h2 {
  font-size: 1.25em;
  margin-bottom: 10px;
  color: #003d66;
}

.price {
  font-size: 1.8em;
  color: #005b96;
  font-weight: bold;
  margin-bottom: 15px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan ul li {
  border-bottom: 1px dotted #ccc;
  padding: 6px 0;
}

