 /* NHRC 2026 hero enhancements */
 #nhrc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#nhrc-hero .ImageBackground__holder {
  transform: scale(1.03);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

#nhrc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
      radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.14), transparent 34%),
      radial-gradient(circle at 78% 42%, rgba(0, 139, 255, 0.15), transparent 38%),
      linear-gradient(115deg, rgba(5, 17, 35, 0.38), rgba(0, 0, 0, 0.12) 48%, rgba(2, 22, 46, 0.34));
  animation: heroLightSweep 18s ease-in-out infinite alternate;
}

#nhrc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 -130px 140px rgba(0, 0, 0, 0.30),
              inset 0 90px 110px rgba(0, 0, 0, 0.18);
}

#nhrc-hero .container {
  position: relative;
  z-index: 2;
}

.nhrc-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  animation: heroFadeUp 1s ease-out both;
}

.nhrc-logo {
  display: block;
  width: min(220px, 34vw);
  height: auto;
  transform-origin: center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28))
          drop-shadow(0 0 14px rgba(32, 150, 255, 0.30));
  animation: logoFloat 5.5s ease-in-out infinite;
  will-change: transform, filter;
}

.nhrc-logo-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130%;
  height: 130%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(
      from 0deg,
      transparent 0deg,
      rgba(255, 60, 92, 0.18) 80deg,
      transparent 145deg,
      rgba(32, 150, 255, 0.22) 230deg,
      transparent 320deg
  );
  filter: blur(22px);
  opacity: 0.75;
  z-index: -1;
  animation: logoAuraSpin 16s linear infinite;
}

.nhrc-logo-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 55%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.36);
  filter: blur(11px);
  animation: logoShadow 5.5s ease-in-out infinite;
  z-index: -1;
}

.nhrc-title {
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  animation: heroFadeUp 1s 0.22s ease-out both;
}

.nhrc-date {
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.48);
  animation: heroFadeUp 1s 0.42s ease-out both;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.015); }
}

@keyframes logoShadow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.42; }
  50% { transform: translateX(-50%) scale(0.78); opacity: 0.24; }
}

@keyframes logoAuraSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes heroLightSweep {
  0% { transform: translate3d(-3%, -1%, 0) scale(1.03); opacity: 0.85; }
  100% { transform: translate3d(3%, 2%, 0) scale(1.08); opacity: 1; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .nhrc-logo { width: min(185px, 52vw); }
  .nhrc-logo-wrap::after { bottom: -14px; }
  #nhrc-hero::after {
      box-shadow: inset 0 -90px 100px rgba(0, 0, 0, 0.28),
                  inset 0 70px 80px rgba(0, 0, 0, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  #nhrc-hero::before,
  .nhrc-logo-wrap,
  .nhrc-logo,
  .nhrc-logo-wrap::before,
  .nhrc-logo-wrap::after,
  .nhrc-title,
  .nhrc-date {
      animation: none !important;
  }
}


/* High-visibility treatment for the main conference heading */
.nhrc-title-text{

    display:inline-block;
    position:relative;

    font-size:clamp(44px,5vw,82px);
    font-weight:900;
    color:#fff;

    letter-spacing:-1px;

    text-shadow:
        0 3px 5px rgba(0,0,0,.95),
        0 10px 18px rgba(0,0,0,.55);

}

.nhrc-title-text::after{

    content:"National HR Conference 2026";

    position:absolute;
    inset:0;

    color:rgba(255,255,255,.18);

    filter:blur(10px);

    z-index:-1;

}

/* Continuously glowing stars on the right side of the hero image */
.nhrc-stars {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to left, #000 0%, #000 68%, transparent 100%);
  mask-image: linear-gradient(to left, #000 0%, #000 68%, transparent 100%);
}

.nhrc-star {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.28;
  box-shadow:
      0 0 7px 2px rgba(255, 255, 255, 0.85),
      0 0 18px 5px rgba(0, 145, 255, 0.58);
  animation: starTwinkle var(--duration) ease-in-out var(--delay) infinite;
}

.nhrc-star:nth-child(3n) {
  box-shadow:
      0 0 7px 2px rgba(255, 255, 255, 0.82),
      0 0 18px 5px rgba(255, 35, 80, 0.50);
}

.nhrc-star:nth-child(5n) {
  width: calc(var(--size) * 1.35);
  height: calc(var(--size) * 1.35);
}

/* CIPM logo effect inside the included navigation */


@keyframes titleNeonPulse {
  0%, 100% {
      text-shadow:
          -4px 0 13px rgba(255, 35, 80, 0.72),
           4px 0 13px rgba(0, 145, 255, 0.72),
           0 0 20px rgba(255, 255, 255, 0.30),
           0 8px 22px rgba(0, 0, 0, 0.55);
  }
  50% {
      text-shadow:
          -7px 0 23px rgba(255, 35, 80, 1),
           7px 0 23px rgba(0, 145, 255, 1),
           0 0 32px rgba(255, 255, 255, 0.58),
           0 8px 22px rgba(0, 0, 0, 0.55);
  }
}

@keyframes titleColourFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.16; transform: scale(0.65); }
  45% { opacity: 1; transform: scale(1.45); }
  60% { opacity: 0.55; transform: scale(1); }
}

@keyframes cipmLogoGlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.025); }
}

@media (max-width: 767px) {
  .nhrc-title-text {
      letter-spacing: -0.4px;
      text-shadow:
          0 2px 2px rgba(0, 0, 0, 0.88),
          0 5px 12px rgba(0, 0, 0, 0.78),
          -3px 0 11px rgba(255, 35, 80, 0.82),
           3px 0 11px rgba(0, 145, 255, 0.82),
           0 0 18px rgba(255, 255, 255, 0.48);
  }

  .nhrc-stars { width: 62%; opacity: 0.78; }
}
