@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');

:root {
  --primary-blue: #003087;
  --accent-gold: #c9a227;
  --light-blue: #f0f4f8;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
}

.navbar {
  background-color: var(--primary-blue);
}

.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.85);
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-poster,
.hero-poster img,
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-content .mt-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.hero-content .mt-4 .me-3 {
  margin-right: 0 !important;
}

@media (min-width: 992px) {
  .hero-content .mt-4 {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

.btn-primary {
  background-color: var(--accent-gold);
  border: none;
  color: #003087;
  font-weight: 600;
}

/* Reusable image effect */
.content-img {
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  border-radius: 8px;
}

.content-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

/* Hiring section spacing */
.hiring-list {
  margin-bottom: 1.75rem;
}

.bg-light-blue {
  background-color: var(--light-blue);
}

footer {
  background-color: var(--primary-blue);
  color: white;
}

@media (max-width: 768px) {
  .hero-background {
    background-attachment: scroll;
  }
}
/* Reusable icon hover effect */
.icon-hover {
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

.icon-hover:hover {
    transform: scale(1.15);
    color: var(--accent-gold);
}
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 48, 135, 0.15) !important;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.82);   /* Even darker if needed */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Neighboring cards: same photo crop so titles line up */
.card picture {
  display: block;
  height: 200px;
  overflow: hidden;
  border-radius: 0.375rem 0.375rem 0 0;
}
.card .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}
.card .card-img-top.content-img:hover {
  transform: none;
}

a.glightbox { cursor: zoom-in; color: inherit; text-decoration: none; }
.card a.glightbox { display: block; overflow: hidden; border-radius: 0.375rem 0.375rem 0 0; }
#lb-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
#lb-overlay[hidden] { display: none !important; }
#lb-img { max-width: 95vw; max-height: 92vh; object-fit: contain; border-radius: 4px; }
#lb-close, #lb-prev, #lb-next {
  position: absolute; background: transparent; border: 0;
  color: #fff; font-size: 2.75rem; line-height: 1; cursor: pointer;
  padding: 0.25rem 0.6rem;
}
#lb-close { top: 10px; right: 16px; }
#lb-prev { left: 10px; }
#lb-next { right: 16px; }
