/* ===================================
   HERO SLIDER
=================================== */
/* ── CSS custom properties ───────────────────────────── */

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding-top: 74px;
  background: #080f18;
}
.hero-short {
  min-height: 52vh;
} /* hero-full → min-vh-100 (Bootstrap) */

.hero-ph {
  background: #080f18;
}
.hero-ph-box {
  border: 1px dashed rgba(139, 26, 26, 0.55) !important;
}
.hero-ph-box p {
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(139, 26, 26, 0.6);
  line-height: 2.2;
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(8, 15, 24, 0.5) 0%,
    rgba(8, 15, 24, 0.4) 40%,
    rgba(8, 15, 24, 0.92) 100%
  );
}

.hero-body {
  max-width: 960px;
}

.hero-ey-line {
  width: 40px;
  height: 1px;
  background: var(--maroon);
}
.hero-ey-text {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--concrete);
}

.hero-h1 {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1;
  margin-bottom: 14px;
}
.hero-h1-lg {
  font-size: clamp(32px, 4.5vw, 90px);
  font-weight: 900 !important;
}
.hero-h1-sm {
  font-size: clamp(40px, 6vw, 72px);
}
.hero-h1 em {
  color: var(--maroon);
}

.hero-slogan {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(12px, 1.7vw, 17px);
  letter-spacing: 6px;
  color: var(--concrete);
}

.hero-scroll {
  bottom: 28px;
} /* start-50 + translate-middle-x via Bootstrap */
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(184, 196, 204, 0.4);
}
.hero-scroll-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--maroon), transparent);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-r {
  display: inline-block;
  background: var(--maroon);
  color: #fff;
  padding: 13px 32px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-o {
  display: inline-block;
  color: var(--concrete);
  padding: 13px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 196, 204, 0.3);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.btn-o:hover {
  color: #fff;
  border-color: #fff;
}
/* ══════════════════════════════════════════════════════════
         WHO WE ARE SECTION
         ══════════════════════════════════════════════════════════ */
.about-section-dark {
  background-color: var(--navy-deep);
  color: var(--txt);
}
.about-section-dark strong.text-dark,
.about-section-dark .text-black {
  color: var(--white) !important;
}

.about-headings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
a.heading-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 220px;
  display: flex;
  text-decoration: none;
  align-items: flex-end;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-bottom: 3px solid transparent;
}
.heading-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--maroon);
}
.heading-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}
.heading-card:hover .heading-bg {
  transform: scale(1.05);
}
.heading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(6, 14, 22, 0.95) 0%,
    rgba(6, 14, 22, 0.4) 100%
  );
  z-index: 1;
}
.heading-content {
  position: relative;
  z-index: 2;
}
.heading-card:hover .heading-title {
  color: var(--maroon);
}
.heading-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 767.98px) {
  .about-headings-grid {
    grid-template-columns: 1fr;
  }
}
/*licecen section =============
==============*/
.cert-badge {
  background-color: var(--navy-mid);
  padding: 10px;
}
