/* ================================================================
   OBOX HR — Shared Stylesheet
   All pages import this file
================================================================ */

/* ── GOOGLE FONTS imported via HTML <link> in each page ── */

:root {
  --ob-blue:       #1660f3;
  --ob-blue-dark:  #1150cc;
  --ob-blue-light: #e8f0fe;
  --ob-navy:       #0d2a6e;
  --ob-success:    #16a34a;
  --ob-warning:    #d97706;
  --ob-danger:     #dc2626;
  --ob-muted:      #64748b;
  --ob-border:     #e2e8f0;
  --ob-card:       #ffffff;
  --ob-bg:         #f8fafc;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--ob-bg);
  color: #1e293b;
  min-height: 100vh;
  margin: 0;
}


/* ── WORDMARK ─────────────────────────────────────────────────── */
.obox-wordmark {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ob-blue);
  text-decoration: none;
}
.obox-wordmark span { color: var(--ob-navy); }

/* ── HEADER ───────────────────────────────────────────────────── */
.bs-header {
  background: #fff;
  border-bottom: 1px solid var(--ob-border);
  position: sticky;
  top: 0;
  z-index: 1050;
}
.bs-header .nav-link {

  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  padding: 0.5rem 0.75rem;
  transition: color .2s;
}
.bs-header .nav-link:hover { color: var(--ob-blue); }
.bs-header .contact-btn {
  background: var(--ob-blue);
  color: #fff !important;
  border-radius: 10px;

  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
}
.bs-header .contact-btn:hover { background: var(--ob-blue-dark); }

/* ── FOOTER ───────────────────────────────────────────────────── */


/* ── SHARED COMPONENTS ────────────────────────────────────────── */
.ob-card {
  background: #fff;
  border: 1px solid var(--ob-border);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.btn-ob-primary {
  background: #069af3;
  color: #fff;
  border: none;
  border-radius: 12px;

  font-weight: 700;
  font-size: .88rem;
  padding: .75rem 1.8rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-ob-primary:hover {
  background: var(--ob-blue-dark);
  color: #fff;
  transform: scale(1.02);
}
.btn-ob-primary:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none;
}

.btn-ob-outline {
  background: transparent;
  color: #334155;
  border: 1.5px solid var(--ob-border);
  border-radius: 12px;

  font-weight: 600;
  font-size: .88rem;
  padding: .75rem 1.8rem;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-ob-outline:hover { border-color: #069af3 ; color: #069af3; }

.section-tag {
  font-size: .7rem;
  font-weight: 700;
  color: var(--ob-blue);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.fade-up   { animation: fadeUp .55s cubic-bezier(.22,1,.36,1) both; }
.delay-1   { animation-delay: .08s; }
.delay-2   { animation-delay: .16s; }
.delay-3   { animation-delay: .24s; }
.delay-4   { animation-delay: .32s; }
.delay-5   { animation-delay: .42s; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 576px) {
  .bs-header .contact-btn { font-size: .75rem; padding: .45rem .9rem; }
}

/* ── REAL HEADER/FOOTER COMPATIBILITY ─────────────────────────── */
/*
   The real oboxhr.com header is fixed-top.
   Real site CSS (custom.css / new-style.css) now loads via <link> tags,
   so the header renders exactly as on the main site.
   We only need to:
     1. Push page body below the fixed header
     2. Anchor the wizard sub-header below it
     3. Keep dropdowns above everything
     4. Provide social-icon font fallback
*/

/* Push all page content below the fixed header */
body { padding-top: 80px; }

/* Wizard sticky sub-header sits just below the real fixed header */
.wizard-sub-header { top: 80px !important; }

/* Ensure mega-menus always render on top */
.navbar .dropdown-menu,
.navbar .megamenu { z-index: 1060 !important; }



.social-links .icons{
  font-size: 1.3rem;
  color: #94a3b8;
  margin-right: .75rem;
  transition: color .2s;
  font-style: normal;
  display: inline-block;
}
.social-links .icon:hover { color: #fff; }
