/* Hero section — attractive enhancements for nr-hero across all pages */

.nr-hero {
  position: relative;
  overflow: hidden;
}

/* Subtle decorative pattern overlay */
.nr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Soft gradient overlay for depth */
.nr-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(15, 39, 68, 0.4), transparent);
  pointer-events: none;
  z-index: 0;
}

.nr-hero .container-xxl,
.nr-hero .container {
  position: relative;
  z-index: 1;
}

/* Smooth bottom wave shape for visual interest */
.nr-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  z-index: 1;
}
.nr-hero-wave svg {
  width: calc(100% + 1.3px);
  height: 40px;
  display: block;
}
.nr-hero-wave .shape-fill {
  fill: #ffffff;
}
