/* ================================
   NAVBAR – CORPORATE LAYOUT SYSTEM
   ================================ */
.hero-section {
  margin-bottom: 0;
}
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1040;
}

#site-header .navbar {
  min-height: 72px;
  padding: 0 0;
  background: #ffffff;
  transition:
    box-shadow 0.2s ease,
    padding 0.2s ease;
  z-index: 1030;
}

#site-header .navbar.navbar-scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* Brand */
#site-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

section {
  margin: 0;
}

.site-logo {
  height: 42px;
  width: auto;
}

/* Center container alignment */
#site-header .navbar .container {
  display: flex;
  align-items: center;
}

/* Navigation */
#site-header .navbar-nav {
  gap: 0.25rem;
}

#site-header .nav-link {
  color: #4a5560;
  padding: 0.6rem 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

#site-header .nav-link:hover,
#site-header .nav-link:focus {
  color: #0d6efd;
  text-decoration: none;
}

/* CTA Button */
#site-header .btn-primary {
  height: 36px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
}

/* LinkedIn Button */
.btn-linkedin {
  height: 36px;
  width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a66c2;
  color: #ffffff;
  border-radius: 0.375rem;
  border: none;
  padding: 0;
}

.btn-linkedin svg {
  height: 18px;
  width: 18px;
  fill: currentColor;
}

/* Desktop alignment */
@media (min-width: 992px) {
  #site-header .navbar-collapse {
    display: flex;
    align-items: center;
  }
  #site-header .navbar-nav {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  #site-header .navbar {
    min-height: 64px;
  }
  .site-logo {
    height: 38px;
  }
}

/* Offset page content because navbar is fixed */
body {
  padding-top: 50px;
}

/* ===== Industry Success Snapshot ===== */

.industry-success {
  background: #f7f9fc;
  padding: 80px 6%;
  font-family: "Inter", sans-serif;
}

.success-header {
  text-align: center;
  margin-bottom: 50px;
}

.success-header h2 {
  font-size: 32px;
  color: #0b3cc1;
  margin-bottom: 8px;
}

.success-header p {
  font-size: 16px;
  color: #555;
}

/* Grid */
.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.success-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.success-card h3 {
  font-size: 18px;
  color: #0b3cc1;
  margin-bottom: 14px;
}

.success-card ul {
  padding-left: 18px;
}

.success-card li {
  margin-bottom: 10px;
  color: #333;
}

.success-card.highlight {
  background: linear-gradient(135deg, #0b3cc1, #0f66ff);
  color: #ffffff;
}

.success-card.highlight h3,
.success-card.highlight li {
  color: #ffffff;
}

.icons-list {
  list-style: none;
  padding: 0;
}

.icons-list li {
  margin-bottom: 12px;
  font-weight: 500;
}

.muted {
  font-size: 14px;
  color: #777;
}

/* Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.metric-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.metric-box.primary {
  border: 2px solid #0b3cc1;
}

.metric-value {
  font-size: 32px;
  font-weight: 700;
  color: #0b3cc1;
  display: block;
}

.metric-label {
  font-size: 14px;
  color: #555;
}

/* TWO COL */
.two-col {
  font-size: 18px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
}

/* IMAGE */
.image-card img {
  width: 80%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* Outcomes */
.outcomes {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
}

.outcomes h3 {
  font-size: 22px;
  color: #0b3cc1;
  margin-bottom: 16px;
}

.outcomes ul {
  padding-left: 20px;
}

.outcomes li {
  margin-bottom: 10px;
  color: #333;
}

/* CTA */
.success-cta {
  text-align: center;
}

.success-cta p {
  margin-top: 30px;
  font-size: 18px;
  margin-bottom: 18px;
}

.cta-btn {
  display: inline-block;
  background: #0b3cc1;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #0840a3;
}

/* Responsive */
@media (max-width: 768px) {
  .industry-success {
    padding: 60px 5%;
  }

  .success-header h2 {
    font-size: 26px;
  }
}

/* ======================
   Footer
   ====================== */

.site-footer {
  font-size: 25px;
  background: #050c2d;
  color: #ffffff;
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-logo {
  height: 46px;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  max-width: 360px;
}

.footer-socials a {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-right: 0.8rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #38bdf8;
}

.footer-col h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

.footer-contact li {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-legal a {
  margin-right: 1rem;
  color: #94a3b8;
}

.footer-legal a:hover {
  color: #38bdf8;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-desc {
    margin: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

.dropdown-menu {
  border-radius: 8px;
  padding: 10px 0;
}

.dropdown-item {
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: #f5f7fa;
}
