


/* Decorative Underline for "Leadership" */
.underline-3.style-1.primary {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.underline-3.style-1.primary::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 12px;
    background: rgba(230, 126, 34, 0.15); /* Soft orange highlight */
    z-index: -1;
}

/* Enhancing button hover states */
.btn-outline-primary.border-2 {
    border-width: 2px !important;
    font-weight: 600;
}

/* Improving font readability */
.ls-xl {
    letter-spacing: 0.15rem !important;
}

.text-secondary {
    color: #4b525d !important;
    max-width: 90%;
}

@media (max-width: 992px) {
    .text-secondary {
        max-width: 100%;
    }
}

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}

.cta-card {
    background-color: rgba(230, 126, 34, 0.1) !important;
    padding: 45px 60px;
    border-radius: 12px;
    max-width: 700px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.cta-card h2 {
    font-size: 1.6rem;
    color: #0f2d5b;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 18px;
}

.cta-card .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 6px;
}

/* ==============================
   OUR SECTORS
   ============================== */
.our-sectors-modern {
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

.sector-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: #999;
}

.sector-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 20px 0;
  color: #1a1a1a;
}

.sector-title span {
  color: #E67E22;
}

.sector-description {
  font-size: 1.05rem;
  color: #555;
  max-width: 420px;
}

.sector-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sector-stack-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 26px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.35s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateX(40px);
  animation: slideInRight 0.6s ease forwards;
}

.sector-stack-card:nth-child(1) { animation-delay: 0.2s; }
.sector-stack-card:nth-child(2) { animation-delay: 0.3s; }
.sector-stack-card:nth-child(3) { animation-delay: 0.4s; }
.sector-stack-card:nth-child(4) { animation-delay: 0.5s; }
.sector-stack-card:nth-child(5) { animation-delay: 0.6s; }
.sector-stack-card:nth-child(6) { animation-delay: 0.7s; }

.sector-stack-card img {
  width: 42px;
  opacity: 0.75;
  filter: brightness(0) saturate(100%) invert(48%) sepia(82%)
          saturate(560%) hue-rotate(-10deg)
          brightness(95%) contrast(95%);
  transition: all 0.3s ease;
}

.sector-stack-card:hover {
  transform: translateX(10px);
  border-color: #E67E22;
  box-shadow: 0 20px 50px rgba(230,126,34,0.18);
}

.sector-stack-card:hover img {
  opacity: 1;
  transform: scale(1.15);
  filter: brightness(0) saturate(100%) invert(52%) sepia(95%)
          saturate(620%) hue-rotate(-8deg)
          brightness(100%) contrast(105%);
}

@media (max-width: 991px) {
  .sector-title {
    font-size: 2.4rem;
  }
}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}



/* ==============================
   METHODOLOGY SECTION (CLEAN)
   ============================== */
.methodology-section {
  background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--primary-color);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.35;
}

.method-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.method-card .step {
  position: absolute;
  top: -18px;
  right: 25px;
  font-size: 48px;
  font-weight: 700;
  color: #e1a169;
}

.method-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.method-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ==============================
   HAND SKETCHED UNDERLINE
   ============================== */
.sketch-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.sketch-underline::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: 0;
  width: 104%;
  height: 10px;
  background: none;
  border-bottom: 3px solid #ff8c1a;
  border-radius: 12px;
  transform: rotate(-1.5deg);
}

.sketch-underline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 10px;
  border-bottom: 2px solid #ff8c1a;
  border-radius: 12px;
  transform: rotate(1deg);
  opacity: 0.8;
}

/* Styling the User Icon in Nav */
.navbar-nav .nav-link i.uil-user {
    color: #343f52; /* Match your menu color */
    transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover i.uil-user {
    color: #E67E22 !important; /* LeaderHire Orange */
}

/* Enhancing the Gateway Cards */
.card.border-primary {
    border: 1px solid rgba(230, 126, 34, 0.3) !important;
}

.btn-soft-primary {
    background-color: rgba(230, 126, 34, 0.1);
    color: #E67E22;
}

/* ==============================
   RESPONSIVE ADJUSTMENTS
   ============================== */
@media (max-width: 991px) {
    .display-1 {
        font-size: 2.8rem !important;
        line-height: 1.2;
    }
    
    .mt-lg-n19 {
        margin-top: 2rem !important;
    }

    .row.gx-lg-0 {
        flex-direction: column-reverse;
    }

    .methodology-flow [class*="col-"] {
        margin-bottom: 40px;
    }
    
    .method-card {
        height: auto;
        min-height: 200px;
    }
}


@media (max-width: 991.98px) {
  .navbar-other {
    margin-left: auto !important;
  }
}

/* Moves the header down and pushes all subsequent content accordingly */
header.wrapper {
    padding-top: 30px !important; /* Adjust this value (e.g., 40px or 50px) to your liking */
}


/* Scroll to Top Button Base Styling */
.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 44px;
    width: 44px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(230, 126, 34, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    background: #fff;
}

/* Force hidden on Desktop regardless of progress */
@media (min-width: 992px) {
    .progress-wrap {
        display: none !important;
    }
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap i {
    position: absolute;
    text-align: center;
    line-height: 44px;
    font-size: 20px;
    color: #E67E22; /* Brand Orange */
    left: 0;
    top: 0;
    height: 44px;
    width: 44px;
    z-index: 1;
}