/* Navbar: transparent over hero, frosted navy glass on scroll */
#header {
  background: transparent !important;
  box-shadow: none !important;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease,
    -webkit-backdrop-filter 0.4s ease;
}

#header.header-scrolled {
  background: rgba(18, 30, 86, 0.78) !important;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 4px 20px rgba(6, 16, 48, 0.2) !important;
}

.section-title h2::after {
  background: #0e3386 !important;
}

/* CSR Strategy hero — animated governance / impact background */
#impactAssessment.csr-hero-animated {
  overflow: hidden;
  isolation: isolate;
  background: #061a42 !important;
  background-image: none !important;
  padding: 120px 0 140px;
  color: #fff;
}

#impactAssessment.csr-hero-animated::after {
  opacity: 0.45;
  background: linear-gradient(
    105deg,
    rgba(4, 14, 38, 0.92) 0%,
    rgba(6, 26, 66, 0.72) 42%,
    rgba(12, 58, 128, 0.35) 100%
  );
  z-index: 1;
}

#impactAssessment.csr-hero-animated .container,
#impactAssessment.csr-hero-animated .chevron-arrow-down {
  position: relative;
  z-index: 3;
}

#impactAssessment.csr-hero-animated h1,
#impactAssessment.csr-hero-animated p {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.csr-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Shifting deep-blue mesh */
.csr-hero-base {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 45% at 12% 35%, rgba(56, 132, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 22%, rgba(100, 200, 255, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 50% at 70% 85%, rgba(30, 90, 200, 0.2), transparent 55%),
    linear-gradient(125deg, #04102a 0%, #0a2868 45%, #0e3d8c 100%);
  animation: csrHeroMesh 18s ease-in-out infinite alternate;
}

@keyframes csrHeroMesh {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.06) translate(-2%, 1%);
  }
}

/* Soft glowing orbs — ecosystem / data nodes */
.csr-hero-orbs {
  position: absolute;
  inset: 0;
}

.csr-hero-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.55;
  animation: csrHeroOrbFloat 14s ease-in-out infinite;
}

.csr-hero-orbs .csr-orb-1 {
  width: 280px;
  height: 280px;
  right: 8%;
  top: 12%;
  background: radial-gradient(circle, rgba(90, 170, 255, 0.35) 0%, transparent 70%);
  animation-duration: 16s;
}

.csr-hero-orbs .csr-orb-2 {
  width: 200px;
  height: 200px;
  right: 32%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(120, 200, 255, 0.28) 0%, transparent 70%);
  animation-delay: -4s;
  animation-duration: 13s;
}

.csr-hero-orbs .csr-orb-3 {
  width: 140px;
  height: 140px;
  right: 55%;
  top: 28%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  animation-delay: -7s;
}

.csr-hero-orbs .csr-orb-4 {
  width: 100px;
  height: 100px;
  right: 18%;
  bottom: 35%;
  background: radial-gradient(circle, rgba(64, 140, 255, 0.4) 0%, transparent 70%);
  animation-delay: -2s;
  animation-duration: 11s;
}

@keyframes csrHeroOrbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-12px, 16px) scale(1.08);
  }
}

/* Network graph — stakeholder / platform connections */
.csr-hero-network {
  position: absolute;
  right: -5%;
  top: 50%;
  width: min(62vw, 720px);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.85;
}

.csr-hero-network .net-line {
  fill: none;
  stroke: rgba(140, 200, 255, 0.35);
  stroke-width: 1.2;
  stroke-dasharray: 8 10;
  animation: csrHeroDash 22s linear infinite;
}

.csr-hero-network .net-line-accent {
  stroke: rgba(180, 220, 255, 0.55);
  stroke-width: 1.5;
  animation-duration: 16s;
}

.csr-hero-network .net-node {
  fill: rgba(200, 230, 255, 0.9);
  filter: drop-shadow(0 0 6px rgba(120, 190, 255, 0.8));
  animation: csrHeroNodePulse 3s ease-in-out infinite;
}

.csr-hero-network .net-node-lg {
  r: 5;
  animation-duration: 4s;
}

.csr-hero-network .net-node-sm {
  r: 3;
  fill: rgba(160, 210, 255, 0.75);
}

.csr-hero-network .net-hub {
  fill: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 0 12px rgba(150, 210, 255, 1));
  animation: csrHeroHubPulse 2.5s ease-in-out infinite;
}

@keyframes csrHeroDash {
  to {
    stroke-dashoffset: -180;
  }
}

@keyframes csrHeroNodePulse {
  0%,
  100% {
    opacity: 0.65;
    transform-origin: center;
  }
  50% {
    opacity: 1;
  }
}

@keyframes csrHeroHubPulse {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

/* Data particles flowing along paths */
.csr-hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200, 230, 255, 0.9);
  box-shadow: 0 0 8px rgba(120, 190, 255, 0.9);
  animation: csrHeroParticle 8s linear infinite;
}

.csr-hero-particles .p1 { right: 28%; top: 32%; animation-delay: 0s; }
.csr-hero-particles .p2 { right: 38%; top: 48%; animation-delay: -2s; animation-duration: 10s; }
.csr-hero-particles .p3 { right: 22%; top: 55%; animation-delay: -4s; }
.csr-hero-particles .p4 { right: 45%; top: 38%; animation-delay: -1s; animation-duration: 7s; }
.csr-hero-particles .p5 { right: 32%; top: 62%; animation-delay: -5s; animation-duration: 9s; }
.csr-hero-particles .p6 { right: 50%; top: 52%; animation-delay: -3s; }

@keyframes csrHeroParticle {
  0% {
    transform: translate(40px, -30px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translate(-50px, 40px);
    opacity: 0;
  }
}

/* Thematic outline icons — governance, impact, compliance */
.csr-hero-icons {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.csr-hero-icons svg {
  position: absolute;
  stroke: rgba(200, 230, 255, 0.9);
  fill: none;
  stroke-width: 1.2;
  animation: csrHeroIconDrift 20s ease-in-out infinite;
}

.csr-hero-icons .icon-chart {
  width: 72px;
  height: 72px;
  right: 12%;
  top: 22%;
  animation-delay: 0s;
}

.csr-hero-icons .icon-people {
  width: 64px;
  height: 64px;
  right: 42%;
  top: 18%;
  animation-delay: -5s;
}

.csr-hero-icons .icon-doc {
  width: 56px;
  height: 56px;
  right: 24%;
  bottom: 28%;
  animation-delay: -8s;
}

.csr-hero-icons .icon-leaf {
  width: 48px;
  height: 48px;
  right: 52%;
  bottom: 22%;
  animation-delay: -3s;
}

@keyframes csrHeroIconDrift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.18;
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
    opacity: 0.28;
  }
}

/* Subtle grid — data / reporting */
.csr-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 180, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 180, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 35%, #000 70%);
  animation: csrHeroGridShift 30s linear infinite;
}

@keyframes csrHeroGridShift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 48px 48px;
  }
}

@media (max-width: 991px) {
  .csr-hero-network {
    width: 90vw;
    right: -25%;
    opacity: 0.5;
  }

  .csr-hero-icons {
    opacity: 0.14;
  }
}

/* Features / timeline section — subtle blue pattern */
.csr-features-section {
  position: relative;
  overflow: hidden;
  background-color: #eef3fb !important;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(14, 51, 134, 0.07) 1px, transparent 0),
    linear-gradient(
      160deg,
      rgba(14, 51, 134, 0.06) 0%,
      transparent 42%,
      rgba(18, 30, 86, 0.04) 100%
    ) !important;
  background-size: 32px 32px, 100% 100% !important;
  background-position: 0 0, center !important;
}

.csr-features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 8% 15%, rgba(56, 132, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 92% 88%, rgba(18, 30, 86, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.csr-features-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M0 40h80M40 0v80' stroke='%230e3386' stroke-width='0.5' fill='none' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.csr-features-section > .container {
  position: relative;
  z-index: 1;
}

/* Numbered feature circles — dark blue (replaces green primary) */
.timeline-badge {
  background: linear-gradient(145deg, #0e3386, #121e56) !important;
  background-color: #121e56 !important;
  box-shadow: 0 4px 14px rgba(14, 51, 134, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .csr-hero-base,
  .csr-hero-orbs span,
  .csr-hero-network .net-line,
  .csr-hero-network .net-node,
  .csr-hero-network .net-hub,
  .csr-hero-particles span,
  .csr-hero-icons svg,
  .csr-hero-grid {
    animation: none !important;
  }
}

/* CSR Strategy hero replacement - blue animated platform dashboard */
#impactAssessment.csr-hero-animated {
  padding: 124px 0 142px;
}

#impactAssessment.csr-hero-animated::after {
  opacity: 1;
  background: linear-gradient(
    100deg,
    rgba(3, 12, 34, 0.98) 0%,
    rgba(5, 22, 58, 0.88) 42%,
    rgba(7, 37, 94, 0.52) 67%,
    rgba(10, 55, 128, 0.18) 100%
  );
}

.csr-hero-base {
  inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 74% 42%, rgba(48, 126, 255, 0.34), transparent 62%),
    radial-gradient(ellipse 42% 36% at 90% 72%, rgba(86, 184, 255, 0.24), transparent 58%),
    linear-gradient(125deg, #03112f 0%, #082462 45%, #0d4197 100%);
  animation: strategyBlueShift 16s ease-in-out infinite alternate;
}

.csr-hero-grid {
  background-image:
    linear-gradient(rgba(160, 205, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 205, 255, 0.075) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 34%, #000 100%);
  animation: strategyGridShift 28s linear infinite;
}

.csr-strategy-visual {
  position: absolute;
  right: clamp(22px, 7vw, 96px);
  top: 52%;
  width: min(50vw, 640px);
  aspect-ratio: 1.28;
  transform: translateY(-50%);
  opacity: 0.96;
}

.strategy-flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-line {
  fill: none;
  stroke: rgba(185, 222, 255, 0.38);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 9 12;
  animation: strategyFlow 18s linear infinite;
}

.flow-line-2,
.flow-line-4 {
  animation-duration: 14s;
  animation-direction: reverse;
}

.flow-dot {
  fill: #c7e6ff;
  filter: drop-shadow(0 0 10px rgba(102, 182, 255, 0.95));
  transform-origin: center;
  animation: strategyDotPulse 2.7s ease-in-out infinite;
}

.flow-dot-2 { animation-delay: -0.7s; }
.flow-dot-3 { animation-delay: -1.4s; }
.flow-dot-4 { animation-delay: -2s; }

.strategy-dashboard {
  position: absolute;
  left: 24%;
  top: 17%;
  width: 58%;
  height: 64%;
  border: 1px solid rgba(179, 220, 255, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(9, 33, 87, 0.95), rgba(11, 69, 154, 0.72)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%);
  box-shadow:
    0 34px 70px rgba(2, 10, 32, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
  animation: strategyPanelFloat 7.5s ease-in-out infinite;
}

.strategy-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 35%, transparent 62%);
  transform: translateX(-110%);
  animation: strategyPanelShine 7s ease-in-out infinite;
}

.dash-top {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(180, 220, 255, 0.2);
  background: rgba(3, 14, 42, 0.34);
}

.dash-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(197, 230, 255, 0.72);
}

.dash-body {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  height: calc(100% - 40px);
  padding: 18px;
}

.dash-sidebar {
  display: grid;
  gap: 13px;
  align-content: start;
}

.dash-sidebar span {
  height: 36px;
  border-radius: 10px;
  background: rgba(183, 222, 255, 0.12);
  border: 1px solid rgba(183, 222, 255, 0.18);
  box-shadow: inset 0 0 18px rgba(80, 160, 255, 0.08);
  animation: strategyTileGlow 4.8s ease-in-out infinite;
}

.dash-sidebar span:nth-child(2) { animation-delay: -1s; }
.dash-sidebar span:nth-child(3) { animation-delay: -2s; }
.dash-sidebar span:nth-child(4) { animation-delay: -3s; }

.dash-main {
  min-width: 0;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dash-metrics span {
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(137, 199, 255, 0.24), rgba(68, 143, 255, 0.08));
  border: 1px solid rgba(183, 222, 255, 0.18);
  position: relative;
}

.dash-metrics span::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 20%;
  bottom: 12px;
  height: 5px;
  border-radius: 999px;
  background: rgba(207, 235, 255, 0.58);
}

.dash-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.dash-chart,
.dash-checks {
  height: 126px;
  border-radius: 14px;
  border: 1px solid rgba(183, 222, 255, 0.18);
  background: rgba(4, 20, 58, 0.38);
}

.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 18px;
}

.dash-chart span {
  flex: 1;
  min-width: 8px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #b8e1ff, #2e8fff 70%, #1261d6);
  box-shadow: 0 0 16px rgba(63, 158, 255, 0.4);
  transform-origin: bottom;
  animation: strategyBarRise 3.8s ease-in-out infinite;
}

.dash-chart .bar-1 { height: 48%; animation-delay: -1.1s; }
.dash-chart .bar-2 { height: 72%; animation-delay: -2.2s; }
.dash-chart .bar-3 { height: 56%; animation-delay: -0.7s; }
.dash-chart .bar-4 { height: 88%; animation-delay: -1.8s; }
.dash-chart .bar-5 { height: 64%; animation-delay: -2.8s; }

.dash-checks {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 16px;
}

.dash-checks span {
  position: relative;
  display: block;
  height: 16px;
  border-radius: 999px;
  background: rgba(184, 224, 255, 0.18);
  overflow: hidden;
}

.dash-checks span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6ab8ff, #c9eaff);
  animation: strategyProgressFill 5s ease-in-out infinite;
}

.dash-checks span:nth-child(2)::before { width: 58%; animation-delay: -1.6s; }
.dash-checks span:nth-child(3)::before { width: 86%; animation-delay: -3.1s; }

.dash-progress {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1.4fr;
  gap: 10px;
  margin-top: 14px;
}

.dash-progress span {
  height: 12px;
  border-radius: 999px;
  background: rgba(198, 232, 255, 0.3);
  animation: strategyTileGlow 5.2s ease-in-out infinite;
}

.dash-progress span:nth-child(2) { animation-delay: -1.4s; }
.dash-progress span:nth-child(3) { animation-delay: -2.6s; }
.dash-progress span:nth-child(4) { animation-delay: -3.8s; }

.dash-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: -18%;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(135, 205, 255, 0.16), transparent);
  animation: strategyScan 5.8s linear infinite;
}

.strategy-node {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(190, 226, 255, 0.32);
  background: linear-gradient(145deg, rgba(8, 38, 96, 0.82), rgba(18, 94, 190, 0.5));
  box-shadow:
    0 18px 40px rgba(1, 9, 34, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  animation: strategyNodeFloat 6.5s ease-in-out infinite;
}

.strategy-node-1 { left: 7%; top: 18%; }
.strategy-node-2 { left: 5%; bottom: 21%; animation-delay: -1.4s; }
.strategy-node-3 { right: 4%; top: 10%; animation-delay: -2.7s; }
.strategy-node-4 { right: 1%; bottom: 20%; animation-delay: -4s; }

.node-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: block;
}

.node-icon::before,
.node-icon::after {
  content: "";
  position: absolute;
  border-color: rgba(221, 242, 255, 0.9);
}

.node-icon-project::before {
  inset: 5px 4px 4px;
  border: 2px solid rgba(221, 242, 255, 0.9);
  border-radius: 5px;
}

.node-icon-project::after {
  left: 10px;
  right: 8px;
  top: 13px;
  height: 2px;
  background: rgba(221, 242, 255, 0.9);
  box-shadow: 0 7px 0 rgba(221, 242, 255, 0.9);
}

.node-icon-people::before {
  width: 12px;
  height: 12px;
  left: 6px;
  top: 6px;
  border: 2px solid rgba(221, 242, 255, 0.9);
  border-radius: 50%;
  box-shadow: 13px 2px 0 0 rgba(221, 242, 255, 0.9);
}

.node-icon-people::after {
  width: 25px;
  height: 12px;
  left: 4px;
  bottom: 5px;
  border: 2px solid rgba(221, 242, 255, 0.9);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom: 0;
}

.node-icon-report::before {
  left: 5px;
  bottom: 5px;
  width: 5px;
  height: 15px;
  border-radius: 4px;
  background: rgba(221, 242, 255, 0.9);
  box-shadow: 10px -7px 0 rgba(221, 242, 255, 0.9), 20px -2px 0 rgba(221, 242, 255, 0.9);
}

.node-icon-report::after {
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 2px;
  background: rgba(221, 242, 255, 0.9);
}

.node-icon-compliance::before {
  left: 4px;
  top: 5px;
  width: 25px;
  height: 25px;
  border: 2px solid rgba(221, 242, 255, 0.9);
  border-radius: 50%;
}

.node-icon-compliance::after {
  left: 11px;
  top: 15px;
  width: 14px;
  height: 8px;
  border-left: 3px solid rgba(221, 242, 255, 0.9);
  border-bottom: 3px solid rgba(221, 242, 255, 0.9);
  transform: rotate(-45deg);
}

@keyframes strategyBlueShift {
  0% { transform: scale(1); filter: saturate(1); }
  100% { transform: scale(1.04); filter: saturate(1.18); }
}

@keyframes strategyGridShift {
  to { background-position: 52px 52px; }
}

@keyframes strategyFlow {
  to { stroke-dashoffset: -220; }
}

@keyframes strategyDotPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

@keyframes strategyPanelFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.45deg); }
}

@keyframes strategyPanelShine {
  0%, 45% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

@keyframes strategyTileGlow {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

@keyframes strategyBarRise {
  0%, 100% { transform: scaleY(0.82); }
  50% { transform: scaleY(1); }
}

@keyframes strategyProgressFill {
  0%, 100% { transform: translateX(-8%); opacity: 0.75; }
  50% { transform: translateX(0); opacity: 1; }
}

@keyframes strategyScan {
  to { transform: translateY(560%); }
}

@keyframes strategyNodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 991px) {
  .csr-strategy-visual {
    right: -14%;
    top: 58%;
    width: 86vw;
    opacity: 0.34;
  }

  #impactAssessment.csr-hero-animated::after {
    background: linear-gradient(100deg, rgba(3, 12, 34, 0.96), rgba(6, 26, 66, 0.82));
  }
}

@media (prefers-reduced-motion: reduce) {
  .csr-strategy-visual *,
  .csr-hero-base,
  .csr-hero-grid {
    animation: none !important;
  }
}

/* CSR Strategy hero image replacement */
#impactAssessment.csr-hero-animated {
  background-image: url("/csr-strategy-governance-hero.svg") !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 124px 0 142px;
}

#impactAssessment.csr-hero-animated .csr-hero-bg {
  display: none !important;
}

#impactAssessment.csr-hero-animated::after {
  background:
    linear-gradient(
      100deg,
      rgba(3, 12, 34, 0.96) 0%,
      rgba(3, 12, 34, 0.84) 34%,
      rgba(5, 23, 61, 0.5) 56%,
      rgba(7, 37, 92, 0.12) 100%
    );
}

@media (max-width: 991px) {
  #impactAssessment.csr-hero-animated {
    background-position: center right !important;
    padding: 112px 0 116px;
  }

  #impactAssessment.csr-hero-animated::after {
    background:
      linear-gradient(
        100deg,
        rgba(3, 12, 34, 0.97) 0%,
        rgba(3, 12, 34, 0.88) 52%,
        rgba(5, 23, 61, 0.58) 100%
      );
  }
}
