@charset "utf-8";
.shadow-lg {
    box-shadow: 0 1rem 2.3rem rgba(0, 0, 0, 0.175) !important;
}
/* Glassy dropdowns with brand secondary gradient + transparency */
.dark:not(.submenu-light) #mainMenu nav > ul > li .dropdown-menu,
#mainMenu.dark nav > ul > li .dropdown-menu {
  background: linear-gradient(
    135deg,
    rgba(0, 95, 186, 0.85),   /* blue */
    rgba(0, 186, 188, 0.75)   /* teal */
  );
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 186, 188, 0.65);
  border-radius: 14px;

  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Links inside dropdown */
.dark:not(.submenu-light) #mainMenu nav > ul > li .dropdown-menu a,
#mainMenu.dark nav > ul > li .dropdown-menu a {
  color: #fff;                 /* always white on glass bg */
  font-weight: 500;
  padding: .6rem 1.2rem;
  display: block;
  transition: background .25s ease, color .25s ease;
  border-radius: 6px;
}

/* Hover state */
.dark:not(.submenu-light) #mainMenu nav > ul > li .dropdown-menu a:hover,
#mainMenu.dark nav > ul > li .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Active / current item highlight */
.dark:not(.submenu-light) #mainMenu nav > ul > li .dropdown-menu a.active,
#mainMenu.dark nav > ul > li .dropdown-menu a.active {
  background: linear-gradient(90deg, var(--c-purple), var(--c-orange));
  color: #fff;
  font-weight: 600;
}

.glass-gradient {
  background: linear-gradient(135deg, rgba(0,95,186,0.75), rgba(0,186,188,0.75));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2rem;
  color: #fff;
}
#header.header-sticky.sticky-active .header-inner
 {
  background: linear-gradient(135deg, rgba(0,93,172,0.9), rgba(0,186,188,0.85));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
/* Glassy gradient footer */
.footer-glass {
  background: linear-gradient(135deg, rgba(0,93,172,0.9), rgba(0,186,188,0.85));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
/* Glassy gradient layered above the theme's black via ::before */
#footer.dark.footer-glass {
  position: relative;
  background-color: transparent !important; /* neutralize solid black */
  color:#fff;
}
#footer.dark.footer-glass::before {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(0,93,172,.9), rgba(0,186,188,.85));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.15);
  pointer-events:none;
  z-index:0;
}
#footer.dark.footer-glass > * { position: relative; z-index:1; }  /* lift content above overlay */

.line {
  clear: both;
  position: relative;
  width: 100%;
  margin: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15); /* soft transparent white */
}
.dark .social-icons.social-icons-border li a { border: 1px solid rgba(255, 255, 255, 0.60)!important; }
.glass-text{
	color:rgba(255, 255, 255, 0.60)!important; 
}

.social-icons.social-icons-border li a { border: 1px solid rgba(255, 255, 255, 0.60)!important;  background: transparent; color: rgba(255, 255, 255, 0.60)!important; }
/* buttons */
button.btn, .btn:not(.close):not(.mfp-close), a.btn:not([href]):not([tabindex]) {
  display: inline-block;
  font-family: inherit;
  border-radius: 0px;
  font-size: 14px;
  letter-spacing: .9px;
  text-decoration: none;
  padding: 12px 18px;
  position: relative;
background-color: transparent !important;
	text-transform: none;
  border-width: 0;
  border-style: solid;
  color: #fff;
}
/* Override theme defaults for our custom buttons */
.btn-gradient,
.btn-glass,
.btn-solid {
  background-color: transparent !important; /* allow gradient/glass to show */
  border-width: 0;                          /* gradient buttons already styled */
  border-radius: 999px;                     /* restore pill shape */
  font-weight: 600;                         /* restore proper weight */
  letter-spacing: 0;                        /* reset odd spacing */
  text-transform: none;                     /* no forced uppercase */
  font-size: 1rem;                          /* match design */
}
p {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    text-transform: none;
    line-height: 1.6;
    letter-spacing: 0.06em;
    color: #18428f;
}
body {
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    color: #18428f !important;
	font-weight: 300;
	 letter-spacing: 0.06em;
}
/* Reuse your glass gradient util on copy cards */
.glass-gradient{
  background: linear-gradient(135deg, rgba(0,95,186,.75), rgba(0,186,188,.75));
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
}
.outer-heading {
  font-size: 2rem;          /* adjust size */
  font-weight: 600;         /* semi-bold */
  color: #fff;              /* heading colour */

  margin-bottom: 2rem;
}
/* Outer card */
.toc-section .outer-card.gradient-bg {
  
  padding: 80px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.top-image-wrapper {
  position: absolute;
  top: -100px;           /* adjust overlap */
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
}

.top-image-wrapper img {
  
  height: 150px;
  border-radius: 50%;    /* optional: make circular */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* optional shadow */
}
.toc-section .swiper-slide.image-card {
  height: 280px;  /* taller than normal */
}
/* Glass cards */
.toc-section .inner-card.glass {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 30px;
  height: 220px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
	
}

.toc-section .inner-card.glass a {
  color: #005dac;
  text-decoration: none;
  font-weight: 300;
	font-size:14px!important;
	letter-spacing: 0.06rem;
	
}
.toc-section .inner-card.glass a:hover { color: #cc0000; }

/* Image card */
.toc-section .inner-card.image-card {
  border-radius: 20px;
  overflow: hidden;
  height: 250px;
}
.toc-section .inner-card.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Outer card as positioning context */
.toc-section .outer-card {
  position: relative;
}

/* Swiper container should clip extra slides */
.toc-section .toc-swiper {
  overflow: hidden;
}

/* Navigation arrows */
.toc-section .swiper-button-prev,
.toc-section .swiper-button-next {
  
  
  color: #fff!important;
  display: flex;
  align-items: center;
  justify-content: center;
  --swiper-navigation-size: 30px!important;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  z-index: 99;   /* make sure they're above slides */
  transition: background .2s ease;
}

.toc-section .swiper-button-prev { left: 40px; }
.toc-section .swiper-button-next { right: 40px; }

/* Align slide heights */
.toc-section .toc-swiper .swiper-wrapper {
  align-items: center;
}
.image-top {
    position: absolute;
    top: 20px;  /* Adjust vertical position */
    left: 20px; /* Adjust horizontal position */
    z-index: 2; /* Ensures top image is above */
    width: 100%; /* Ensures both images stay the same width */
}

.image-bottom {
    position: relative;
    z-index: 1; /* Stays behind */
    width: 100%;
}

.image-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.image-overlay {
    position: absolute;
    width: 100%;
    opacity: 0.9; /* Slight transparency for a layered effect */
}


.floating-element {
    position: absolute;
	 width: 100px;
    height: auto;
    z-index: -1;
    opacity: 0.8;
    animation: rotateLeaf 5s linear infinite; /* Adjust speed as needed */
}

/* Floating image wrapper - ensures images don’t break out */
.floating-image-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: visible; /* FIX: Ensures images are not hidden */
}

/* Image container */
.image-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust width as needed */
    height: 400px; /* FIX: Prevents collapse */
    cursor: pointer;
}
.glass-white {
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.25)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all 0.3s ease;
}

.glass-white:hover {
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.35)
  );
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}
/* Back image */
.image-back {
    position: absolute;
    top: -20px; /* Moves slightly higher */
    left: 10px;
    width: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

/* Front image */
.image-front {
    position: absolute;
    top: 20px; /* Moves slightly lower */
    left: -10px;
    width: 100%;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

/* Prevents images from stretching */
.floating-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fixes z-index swap logic */
.image-container img {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
	border-radius: 10px; /* Adjust for more/less roundness */
}
.icon-box .icon {
  height: 64px;
  width: 64px;
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
}


/* Fade Up and Rotate Slowly (5s) */
@keyframes fadeUpRotate {
  0% {
    opacity: 0;
    transform: translateY(20px) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(360deg);
  }
}

/* Target the correct SVG icons */
.icon-box .icon svg {
  animation: fadeUpRotate 5s ease forwards;
  animation-delay: 0.3s;
}
.outer-card-reports {
  border-radius: 20px;         /* makes the corners rounded */
  padding: 80px!important;              /* large inner padding as requested */
  width: 100%;                  /* only take up 70% of the row */
  position: relative;          /* so children can align properly */
	min-height:500px;
}

.fa-ul {
    list-style-type: none;
    margin-left: 25px;
    padding-left: 0;
}

.toc-list .fa-li {
  color: #fff!important;              /* icon colour */
  font-size: 16px;
}
.toc-list li {
  margin-bottom: 0.75rem;
  font-weight: 300;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Floating image wrapper - ensures images don’t break out */
.floating-image-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: visible; /* FIX: Ensures images are not hidden */
}

/* Image container */
.image-container {
    position: relative;
    width: 100%;
    max-width: 900px; /* Adjust width as needed */
    height: 400px; /* FIX: Prevents collapse */
    cursor: pointer;
}

/* Back image */
.image-back {
    position: absolute;
    top: -20px; /* Moves slightly higher */
    left: 40px;
    width: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

/* Front image */
.image-front {
    position: absolute;
    top: 25px; /* Moves slightly lower */
    left: -40px;
    width: 100%;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

/* Prevents images from stretching */
.floating-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fixes z-index swap logic */
.image-container img {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
	border-radius: 10px; /* Adjust for more/less roundness */
	animation: floatHorizontal 6s ease-in-out infinite;
}
@keyframes floatHorizontal {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px); /* Move slightly to the left */
  }
}
.image-floating-horizontal {
  animation: floatHorizontal 6s ease-in-out infinite;
}
@keyframes floatImage {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.image-front {
  animation: floatImage 6s ease-in-out infinite;
}
@keyframes floatAnimation {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.outer-bus {
  
  padding: 80px;
  border-radius: 1rem;
  position: relative;
  z-index: 1;
}

.inner-card {
  transition: transform 0.3s ease-in-out;
}

.inner-card:hover {
  transform: translateY(-5px);
}

.card-image-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #eee;
}
/* ----------------------------------------------
   STRATEGY MEMBER ICONS – ACCORDION & SLIDER
---------------------------------------------- */

/* Stakeholder dropdown styles */
.stakeholder-accordion .shd-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:transparent;
  border:0;
  color:#fff;
  font-weight:600;
  letter-spacing:.2px;
  cursor:pointer;
  padding:0;
  text-align:left;
}
.stakeholder-accordion .shd-toggle .chev{
  transition: transform .25s ease;
  opacity:.9;
  flex:0 0 auto;
}

.stakeholder-accordion .shd-panel{
  overflow:hidden;
  max-height:0;                 /* animated height */
  transition:max-height .35s ease;
}

.stakeholder-accordion .shd-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:16px;
}
@media (max-width: 992px){
  .stakeholder-accordion .shd-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width: 576px){
  .stakeholder-accordion .shd-grid{ grid-template-columns:1fr; }
}

.stakeholder-accordion .shd-card{
  display:flex;
  align-items:center;
  justify-content:center;
  height:45px;
  padding:8px;
  border-radius:14px;
  text-decoration:none;
  color:#fff;
  background: rgba(255,255,255,0.30);

  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  text-align:center;
  font-weight:500;
}
.stakeholder-accordion .shd-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16), 0 16px 28px rgba(0,0,0,0.18);
}

/* Open state helpers */
.stakeholder-accordion.is-open .shd-toggle .chev{ transform: rotate(180deg); }
/* stakeholder cards with icons */
.stakeholder-accordion .shd-card{
  flex-direction: column;
  gap:8px;
}

.stakeholder-accordion .shd-icon{
  width:38px;       /* adjust size */
  height:38px;
  object-fit:contain;
  display:block;
  transition:opacity .2s ease;
}
.stakeholder-accordion .shd-card:hover .shd-icon{
  opacity:1;
}
.stakeholder-accordion.is-open .shd-panel {
  max-height: 999px; /* enough to always show */
}

/* ===============================
   🎨 ROOT VARIABLES
================================ */
:root {
  --glass-bar-height: 70px;
  --glass-text-size: 17px;
  --glass-letter-spacing: 0.3em;
  --glass-radius: 12px;
  --glass-speed: 30s;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Secondary colour set */
  --c1: #00b7ff;
  --c2: #1fc9c3;
  --c3: #7842b7;
  --c4: #ff7f45;
  --c5: #c13232;

  /* Fade marquee controls */
  --fade-speed: 2.8s;      /* total fade cycle per item */
  --fade-stagger: 0.22s;   /* delay between neighbors */
  --item-gap: 2.2rem;      /* spacing between text copies */
  --min-copies: 6;         /* minimum items to ensure fill */
}

/* ===============================
   🎨 WRAPPER + ACCENT
================================ */
.closing-banner {
  background: #f1f2f4;
}

/* Accent gradient bar above glassy banner */
.closing-accent {
  height: 6px;
  margin: 0 ;
  border-radius: 999px;
  background: linear-gradient(to right, var(--c2), var(--c3), var(--c4));
  background-size: 200% 100%;
  animation: accentPulse 10s ease-in-out infinite;
}

/* ===============================
   🎨 GLASSY BAR BACKGROUND
================================ */
.closing-bar-glassy {
  position: relative;
  margin: 0 auto;
  height: var(--glass-bar-height);
  overflow: hidden;
  border-radius: var(--glass-radius);
  box-shadow: var(--shadow);
  background: linear-gradient(
    270deg,
    var(--c1),
    var(--c2),
    var(--c3),
    var(--c4),
    var(--c5),
    var(--c1)
  );
  background-size: 1200% 100%;
  animation: bgShift 60s linear infinite;
  backdrop-filter: blur(6px);
  isolation: isolate;
}

/* ✨ Dome highlight overlay */
.glass-overlay {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0.7;
  z-index: 2;
}

/* ===============================
   ✨ MARQUEE: STATIC FADE WAVE
   (no horizontal movement)
================================ */
.marquee-glassy {
  position: relative;
  display: flex;
  align-items: center!important;
  justify-content: center!important; /* keep it centered */
  padding-inline: 18px;
  z-index: 3;
}


.marquee-text {
  font-weight: 300;
  font-size: var(--glass-text-size);
  text-transform: uppercase;
  letter-spacing: var(--glass-letter-spacing);
  color: white;
  line-height: var(--glass-bar-height);
  display: inline-block;
  opacity: 0.35;
  animation: nssfFade var(--fade-speed) ease-in-out infinite;
}

/* Soft pulses from left → right */
@keyframes nssfFade {
  0%   { opacity: 0.35; }
  40%  { opacity: 1;    }
  60%  { opacity: 1;    }
  100% { opacity: 0.35; }
}

/* ===============================
   ✨ EXTRA: Optional sheen across bar
================================ */
.closing-bar-glassy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 15%,
    transparent 30%
  );
  background-repeat: no-repeat;
  background-size: 300% 100%;
  animation: nssfSheen 6s linear infinite;
  mix-blend-mode: soft-light;
}

@keyframes nssfSheen {
  0% { background-position: 110% 0; }
  100% { background-position: -110% 0; }
}

/* Soft pulses from left → right via staggered delays */
@keyframes nssfFade{
  0%   { opacity: 0.35; }
  40%  { opacity: 1;    }
  60%  { opacity: 1;    }
  100% { opacity: 0.35; }
}

/* Optional: tiny shimmering highlight that travels over the bar */
.closing-bar-glassy::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none; border-radius:inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.12) 15%, transparent 30%);
  background-repeat:no-repeat;
  background-size: 300% 100%;
  animation: nssfSheen 6s linear infinite;
  mix-blend-mode: soft-light;
}
@keyframes nssfSheen{
  0% { background-position: 110% 0; }
  100% { background-position: -110% 0; }
}


/* Animations */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes bgShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 1200% 50%;
  }
}

@keyframes accentPulse {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
/* General layout padding */
.hero-intro {
  background-color: #ffffff;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #002B5C; /* Primary navy */
  margin-bottom: 16px;
}

/* Animated or static line under heading */
.intro-underline {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, #18428f, #1fa0a3);
  margin-bottom: 24px;
}

/* Image */
.intro-year-img {
  max-width: 100%;
  height: auto;
}

/* Typography */
.lead {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-primary {
  color: #18428f !important;
}
.animated-overlay-text {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.year-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  z-index: 1;
  position: relative;
}

/* Animated gradient overlay */
.animated-overlay-text::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(270deg, #00b7ff, #1fc9c3, #7842b7, #ff7f45, #c13232, #00b7ff);
  background-size: 1200% 100%;
  animation: pulseGradient 15s ease infinite;
  mix-blend-mode: overlay;
  opacity: 0.85;
  z-index: 2;
  pointer-events: none;
}

/* Title below */
.headline {
  font-size: 24px;
  color: #002b5c;
  font-weight: 600;
}

/* Gradient motion */
@keyframes pulseGradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* --- GLOBAL SAFETY --- */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

/* Kill accidental horizontal overflow (shadows/transforms/100vw, etc.) */
html, body { overflow-x: hidden; }

/* If anything uses 100vw for backgrounds, tame it on desktop */
@media (min-width: 992px){
  .fullwidth, .w-100vw, [data-fullwidth="true"] { width: 100% !important; }
}

/* --- DESKTOP TIGHT BAND: 1200–1440px (covers 1366×768) --- */
@media (min-width: 1200px) and (max-width: 1440px){
  /* Tighter container so content doesn’t kiss edges */
  .container { 
    max-width: 1140px;              /* was likely 1200/1320 */
    padding-left: 32px; 
    padding-right: 32px;
  }

  /* If that hero/mosaic is a section, give it side padding too */
  .theme-hero, .hero-intro, .mosaic-wrap, .report-overview {
    padding-left: 32px; 
    padding-right: 32px;
  }

  /* Bootstrap gutters—slightly wider for breathing room */
  .row { --bs-gutter-x: 1.75rem; }  /* default 1.5rem */

  /* Your tiled images/cards: increase gap so tiles don’t feel cramped */
  .card-grid, .tile-grid, .image-grid { 
    gap: 20px !important;
  }

  /* 2025 block: prevent it growing too wide at this size */
  .animated-overlay-text { 
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- WIDER DESKTOPS: 1440–1920px --- */
@media (min-width: 1441px) and (max-width: 1920px){
  .container { 
    max-width: 1280px; 
    padding-left: 36px; 
    padding-right: 36px;
  }
  .row { --bs-gutter-x: 1.75rem; }
}

/* --- IMAGE TILES HYGIENE (prevents overflow + adds consistent rounding) --- */
.tile, .image-card, .mosaic-img, .card-grid figure {
  border-radius: 20px;
  overflow: hidden;                 /* prevents radius from being visually broken */
}
.tile img, .image-card img, .mosaic-img img, .card-grid img {
  display: block;
  width: 100%; 
  height: 100%; 
  object-fit: cover;                /* no stretching, no overflow */
}

/* --- COMMON CULPRIT: transforms/shadows sticking out on the right --- */
[style*="translateX("], .parallax, .floating, .shadow-lg {
  will-change: transform;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  :root {
    --glass-bar-height: 60px;
    --glass-text-size: 15px;
  }
}

@media (max-width: 576px) {
  :root {
    --glass-bar-height: 54px;
    --glass-text-size: 14px;
    --glass-letter-spacing: 0.04em;
  }

  .closing-banner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group,
  .closing-accent,
  .closing-bar-glassy {
    animation: none !important;
  }

  .marquee-glassy {
    mask-image: none;
  }
}
/* --- Global equal spacing for all containers --- */
.container {
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}

/* --- Soften bulky shadows --- */
.shadow-lg {
  box-shadow: 0 6px 14px rgba(0,0,0,.08), 
              0 2px 6px rgba(0,0,0,.06) !important;
}
.shadow-md {
  box-shadow: 0 4px 10px rgba(0,0,0,.06) !important;
}

/* --- Extra breathing space at larger desktops --- */
@media (min-width: 1200px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* Give room inside container for all three cards to breathe */
.toc-section .container {
 
  max-width: 1340px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: visible;
}

.toc-swiper {
  overflow: hidden;
}

.toc-swiper .swiper-wrapper {
  display: flex;
}

.toc-swiper .swiper-slide {
  flex-shrink: 0;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.heading-accent {
  position: relative;
  display: inline-block;
}

.heading-accent::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 64px;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(to right, var(--c2), var(--c3), var(--c4));
}
.heading-glassy {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  border-radius: var(--glass-radius);
  color: #fff;
}

.bg-white .heading-glassy {
  background: none;
  backdrop-filter: none;
  color: #1e1e1e;
}
/* Animated heading (already in your CSS) */
.heading-animated {
  font-weight: 800 !important;
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 8s linear infinite;
}

/* New gradient swatch */
.gr-blueteal {
  background: linear-gradient(to right, #18428f, #1fa0a3);
}


@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}
.vertical-label {
  position: absolute;
  top:90%;
  right: 60px; /* adjust outward position */
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  border-radius: 10px;
  white-space: nowrap;
  text-align: center;
  z-index: 5;
  opacity: 0.9;
	
}
.vertical-label {
  background: linear-gradient(90deg, #fff, #ffdddd, #fff);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 6s linear infinite;
}

@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}
#header.sticky-on {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(0,93,172,0.9), rgba(0,186,188,0.85));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Report card image – allows for flexible height */
.report-card {
  height: auto;
  max-height: 480px; /* Adjust this number as needed */
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image inside report card – fills space neatly */
.report-card img {
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}
.report-card { grid-column: span 2;  grid-row: span 2;}
.report-card {
  height: clamp(300px, 50vh, 500px);
}
/* Container setup */
.tile--text {
  position: relative;
  overflow: hidden; /* so leaves don’t leak outside */
  z-index: 1;
}

/* Common leaf style */
.floating-leaf {
  position: absolute;
  width: 40px;
  opacity: 0;
  animation: floatLeaf 12s linear infinite;
}

/* Base animation - zigzag drift */
@keyframes floatLeaf {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  50% {
    transform: translate(-60px, 200px) rotate(90deg); /* drift down-left */
  }
  75% {
    transform: translate(60px, 350px) rotate(180deg); /* then drift down-right */
  }
  100% {
    transform: translate(-40px, 500px) rotate(270deg); /* drift left again */
    opacity: 0;
  }
}

/* Variants: each leaf gets its own speed + delay */
.floating-leaf:nth-child(1) { animation-delay: 0s; animation-duration: 10s; }
.floating-leaf:nth-child(2) { animation-delay: 3s; animation-duration: 14s; }
.floating-leaf:nth-child(3) { animation-delay: 6s; animation-duration: 12s; }
.floating-leaf:nth-child(4) { animation-delay: 1s; animation-duration: 15s; }
.floating-leaf:nth-child(5) { animation-delay: 5s; animation-duration: 13s; }
.flip-x {
  transform: scaleX(-1); /* horizontal flip */
}

.flip-y {
  transform: scaleY(-1); /* vertical flip */
}

.flip-both {
  transform: scale(-1, -1); /* both directions */
}
:root{
  --blue:#18428f;
  --green:#19b68f;
  --radius:22px;
  --gap:28px;
}

/* make grid hold an overlay */
.card-grid{
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1.15fr;
  grid-auto-rows: minmax(220px,auto);
  gap: var(--gap);
	 isolation: isolate;        /* <-- important for mix-blend-mode */
}

/* tiles keep your look; add soft lift */
.card-grid .card-tile{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(0,0,0,.16);
  transition: transform .45s ease, box-shadow .45s ease, filter .45s ease;
	z-index: 2;
}
.card-grid .card-tile:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0,0,0,.22);
  filter: saturate(108%);
}

/* images fill */
.image-card img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* shimmer sweeping across all three */
.card-grid .grid-shimmer{
   position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 15%,
    rgba(24,66,143,0.25) 34%,   /* was .08 → now .25 */
    rgba(25,182,143,0.35) 48%,  /* was .20 → now .35 */
    rgba(24,66,143,0.25) 62%,   /* was .08 → now .25 */
    rgba(255,255,255,0) 80%
  );
  mix-blend-mode: overlay;  /* you can also try 'soft-light' for softer look */
  filter: blur(8px);
  background-size: 220% 220%;
  animation: shimmerSweep 9s linear infinite;
}
@keyframes shimmerSweep{
  0%   { background-position: 120% 0%; }
  100% { background-position: -20% 100%; }
}

/* scroll reveal */
.reveal{ opacity:0; transform: translateY(14px); }
.reveal.is-in{ opacity:1; transform:none; transition: opacity .6s ease, transform .6s ease; }

/* motion/accessibility */
@media (prefers-reduced-motion: reduce){
  .grid-shimmer{ animation:none; }
  .card-grid .card-tile{ transition:none; }
  .reveal{ opacity:1; transform:none; }
}

/* responsive */
@media (max-width: 992px){
  .card-grid{ grid-template-columns:1fr; }
}
/* Timeline container */
.nssf-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* Connector line */
.timeline-track {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 70px;
  height: 4px;
  background: linear-gradient(90deg,#1f6dd8,#17bba6,#7a47c2);
  opacity: .35;
  border-radius: 4px;
  z-index: 0;
}

/* Cards */
.card-materiality {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 22px 20px 18px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  position: relative;
  z-index: 1;
}

/* Node on timeline */

/* Donut base */
/* Animate gradient rotation */
/* Animatable custom props */
@property --p  { syntax: "<number>"; inherits: false; initial-value: 0; }
@property --rot{ syntax: "<angle>";  inherits: false; initial-value: 0deg; }

@keyframes donutGradSpin {
  to { --rot: 360deg; }
}

.donut{
  --p: 0;
  --ring: 14px;

  /* dark track */
  --track1: #0f3e87;
  --track2: #0a2c61;

  /* light fill (colour → white with opacity) */
  --fill1: rgba(31,109,216,1);
  --fill2: rgba(255,255,255,0.9);

  width: 140px; height: 140px;
  margin: 0 auto 16px;
  border-radius: 50%;
  position: relative;

  /* base dark ring */
  background:
    conic-gradient(from -90deg, var(--track1) 0deg, var(--track2) 360deg);

  /* overlay lighter arc */
  background-image:
    conic-gradient(from calc(-90deg + var(--rot)),
      var(--fill1) 0deg, var(--fill2) calc(var(--p)*1deg),
      transparent 0 360deg),
    conic-gradient(from -90deg, var(--track1) 0deg, var(--track2) 360deg);

  -webkit-mask: radial-gradient(circle at 50% 50%, transparent calc(50% - var(--ring)), #000 calc(51% - var(--ring)));
          mask: radial-gradient(circle at 50% 50%, transparent calc(50% - var(--ring)), #000 calc(51% - var(--ring)));

  transition: --p 1.3s ease-out;
  animation: donutGradSpin 6s linear infinite;
}

/* Theme variants */
.donut[data-grad="blue"]{
  --track1:#0f3e87; --track2:#0a2c61;
  --fill1:rgba(31,109,216,1); --fill2:rgba(255,255,255,0.9);
}
.donut[data-grad="green"]{
  --track1:#0a6b5a; --track2:#074e42;
  --fill1:rgba(13,187,155,1); --fill2:rgba(255,255,255,0.9);
}
.donut[data-grad="purple"]{
  --track1:#4a289a; --track2:#341c6c;
  --fill1:rgba(107,59,210,1); --fill2:rgba(255,255,255,0.9);
}
/* Row wrapper */
.process-timeline-row {
  position: relative;
  margin-top: 40px;
}

/* Gradient connector line */
.process-line {
  position: absolute;
  top: 60px; /* aligns with icons */
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 60px); /* keeps it inside the row, not outside */
  height: 3px;
  background: linear-gradient(90deg,#1f6dd8,#17bba6,#7a47c2);
  border-radius: 3px;
  opacity: .4;
  z-index: 0;
}

/* Step cards */
.process-step-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 32px 20px 28px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
  transition: transform .3s ease, box-shadow .3s ease;
}
.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Duotone icons */
.process-step-icon {
  font-size: 48px;
  margin-bottom: 14px;
  --fa-primary-color: #1f6dd8;
  --fa-secondary-color: #17bba6;
  --fa-secondary-opacity: 1;
  animation: floatIcon 3s ease-in-out infinite;
}

/* Staggered float animation */
@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* Mobile stack */
@media (max-width: 991.98px){
  .process-line { display: none; }
  .process-step-card { margin-bottom: 22px; }
}
/* Gradient button */
.btn-gradient {
  background: linear-gradient(90deg,#1f6dd8,#17bba6,#7a47c2);
  background-size: 200% auto;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Hover shimmer */
.btn-gradient:hover {
  background-position: right center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Icon spacing */
.btn-gradient i {
  transition: transform .3s ease;
}
.btn-gradient:hover i {
  transform: translateX(4px);
}/* Outer wrapper now uses gr- classes */
.outlook-card {
  border-radius: 22px;
  padding: 4rem 4rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  color: #fff;
}

/* Text block */
.outlook-text h2,
.outlook-text h3 {
  margin-bottom: 18px;
}
.outlook-text p {
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
}















/* Fading image container */
.outlook-image-fade {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
}
.outlook-image-fade img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.outlook-image-fade img.active {
  opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 991.98px){
  .outlook-card {
    padding: 30px 20px;
  }
  .outlook-image-fade {
    height: 240px;
    margin-top: 20px;
  }
}
.heading-animated-white {
  display: inline-block;
  font-weight: 800 !important;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.6),
    rgba(255,255,255,1),
    rgba(255,255,255,0.6)
  );
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerWhite 6s linear infinite;
}
.intro-underline-white {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  margin-bottom: 24px;
}
@keyframes shimmerWhite {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}
.outlook-card .row {
  display: flex;
  align-items: stretch; /* makes cols equal height */
}
.outlook-card .col-lg-6 {
  display: flex;
  flex-direction: column;
}
.outlook-image-fade, 
.outlook-image-fade img {
  height: 100% !important; /* fill parent height */
  object-fit: cover;
}
/* Internal Controls Section */
.internal-controls-section {
  background: #fff; /* keep neutral, section gradient comes from parent if needed */
}

/* Card Style */
.ic-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Icon Style */
.ic-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a2c82, #2d75c7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}

/* Headings */
.ic-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #18428f;
}

/* Paragraphs */
.ic-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
}

/* Wide card variation */
.ic-card.wide {
  text-align: left;
}
.section-grey-purple-bg {
  background: linear-gradient(135deg, #f3f3f3, #f6f3fa, #ffffff);
  background-size: 200% 200%;
  animation: shimmerBackground 12s ease-in-out infinite;
}
/* ===============================
   NSSF Gradient Backgrounds
   =============================== */

/* Blue → Green → White accent */
.section-blue-green-bg {
  background: linear-gradient(
    135deg,
    rgba(24, 66, 143, 0.15),  /* NSSF Blue */
    rgba(108, 190, 69, 0.15), /* NSSF Green */
    rgba(255, 255, 255, 0.15) /* White accent */
  );
  background-size: 200% 200%;
  animation: shimmerBackground 12s ease-in-out infinite;
}

/* Green → Blue → White accent */
.section-green-blue-bg {
  background: linear-gradient(
    135deg,
    rgba(108, 190, 69, 0.15), /* NSSF Green */
    rgba(24, 66, 143, 0.15),  /* NSSF Blue */
    rgba(255, 255, 255, 0.15) /* White accent */
  );
  background-size: 200% 200%;
  animation: shimmerBackground 12s ease-in-out infinite;
}

/* Strong Blue → Green (no white) */
.section-blue-green-strong {
  background: linear-gradient(
    135deg,
    rgba(24, 66, 143, 0.25),  /* Blue */
    rgba(108, 190, 69, 0.25)  /* Green */
  );
  background-size: 200% 200%;
  animation: shimmerBackground 15s ease-in-out infinite;
}

/* Strong Green → Blue (no white) */
.section-green-blue-strong {
  background: linear-gradient(
    135deg,
    rgba(108, 190, 69, 0.25), /* Green */
    rgba(24, 66, 143, 0.25)   /* Blue */
  );
  background-size: 200% 200%;
  animation: shimmerBackground 15s ease-in-out infinite;
}

/* Subtle misty gradient (Blue dominant) */
.section-blue-mist {
  background: linear-gradient(
    135deg,
    rgba(24, 66, 143, 0.1),
    rgba(108, 190, 69, 0.05),
    rgba(255, 255, 255, 0.2)
  );
  background-size: 250% 250%;
  animation: shimmerBackground 18s ease-in-out infinite;
}

/* Subtle misty gradient (Green dominant) */
.section-green-mist {
  background: linear-gradient(
    135deg,
    rgba(108, 190, 69, 0.1),
    rgba(24, 66, 143, 0.05),
    rgba(255, 255, 255, 0.2)
  );
  background-size: 250% 250%;
  animation: shimmerBackground 18s ease-in-out infinite;
}

/* Shared shimmer animation */
@keyframes shimmerBackground {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-blue-turquoise-bg {
  background: linear-gradient(
    135deg, 
    rgba(24, 66, 143, 0.07),  /* NSSF Blue */
    rgba(31, 160, 163, 0.08), /* Turquoise */
    rgba(255, 255, 255, 0.07) /* White accent */
  );
  background-size: 200% 200%;
  animation: shimmerBackground 12s ease-in-out infinite;
}
}
@keyframes shimmerBackground {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Base card - glassy look */
.timeline-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Optional shimmer background */
.timeline-card.shimmer {
  background: linear-gradient(
    135deg, 
    rgba(255,255,255,0.7), 
    rgba(249,249,251,0.8), 
    rgba(255,255,255,0.7)
  );
  background-size: 200% 200%;
  animation: shimmerBackground 12s ease-in-out infinite;
}

/* Icons */
.timeline-icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.timeline-icon.float {
  animation: floatIcon 6s ease-in-out infinite;
}

/* Background shimmer animation */
@keyframes shimmerBackground {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating icons animation */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Timeline connector line */
.assurance-row {
  position: relative;
}

.assurance-row::before {
  content: "";
  position: absolute;
  top: 50px; /* aligns behind icons */
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(
    90deg, 
    rgba(24,66,143,0.2), 
    rgba(163,136,79,0.3), 
    rgba(24,66,143,0.2)
  );
  z-index: 0;
}

/* Tablet: 2 per row */
@media (max-width: 991px) {
  .assurance-row::before {
    left: 10%;
    right: 10%;
    top: 40px;
  }
  .timeline-icon { font-size: 2.4rem; }
}

/* Mobile: 1 per row (hide line) */
@media (max-width: 767px) {
  .assurance-row::before {
    display: none;
  }

  .timeline-card {
    margin-bottom: 20px;
  }

  .timeline-icon { font-size: 2rem; }
}
/* Section wrapper */
.assurance-section {
  position: relative;
  z-index: 1;
}

/* Glassy timeline cards (updated for more blur) */
.timeline-card.glassy {
  background: rgba(255, 255, 255, 0.65); /* more transparent */
  backdrop-filter: blur(6px) saturate(140%); /* stronger blur */
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  padding: 40px 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card.glassy:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Stronger shimmer background */
.timeline-card.shimmer { background: linear-gradient( 135deg, rgba(255,255,255,0.7), rgba(249,249,251,0.8), rgba(255,255,255,0.7) ); background-size: 250% 250%; animation: shimmerBackground 9s ease-in-out infinite; }

/* Gradient circle around icons */
.timeline-icon-circle {
  width: 80px;
  height: 80px;

  border-radius: 50%;
  background: linear-gradient(135deg, #5e3fee, #2b7bff);
  display: flex;
  align-items: center;
  justify-content:center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(94, 63, 238, 0.3);
  animation: floatIcon 6s ease-in-out infinite;
}

/* Timeline connector line */
.assurance-row {
  position: relative;

}

.assurance-row::before {
  content: "";
  position: absolute;
  top: 60px; /* aligns behind icons */
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, #5e3fee, #2b7bff, #5e3fee);
  background-size: 200% 200%;
  animation: shimmerLine 9s linear infinite;
  z-index: 0;
}

/* Animations */
@keyframes shimmerBackground {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmerLine {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .assurance-row::before {
    display: none;
  }
  .timeline-card {
    margin-bottom: 20px;
  }
}
/* Outer card wrapper for capitals */
.capital-outer-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 60px 40px;
}

/* Capital cards inside */
.capital-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9); /* clearer text readability */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.capital-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Shimmer effect */
.capital-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: shimmer 3s infinite;
  pointer-events: none;
  z-index: 1; /* sits under text + icon */
}

@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* Full-size icons */
.capital-icon {
  height: 110px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2; /* stays above shimmer */
  animation: iconPulse 4s ease-in-out infinite;
}

/* Icon pulse/glow */
@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0.7));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
  }
}

/* Headings */
.capital-card h5 {
  font-weight: 700;
  color: #18428f;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

/* Text */
.capital-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
  .capital-icon {
    height: 70px;
  }
}
/* Icon animation: pulse + slow rotate */
.capital-icon {
  height: 110px;
  width: auto;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  animation: iconPulse 4s ease-in-out infinite,
             iconRock 6s ease-in-out infinite;
}

@keyframes iconRock {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(15deg); }
}
/* New class for accent + button */
.closing-accent-btn {
  display: flex;
  align-items: center;   /* keep line + button aligned */
  justify-content: center;
  gap: 15px;
  margin: 0 auto 20px;
}

.closing-accent-btn .line {
  flex: 1;
  height: 4px;           /* slimmer so it shows even with tall buttons */
  border-radius: 999px;
  background: linear-gradient(to right, var(--c2), var(--c3), var(--c4));
  background-size: 200% 100%;
  animation: accentPulse 10s ease-in-out infinite;
  align-self: center;    /* ensures line stays centred to button */
}

.line-button {
  padding: 6px 20px;
  border-radius: 25px;
  background: linear-gradient(to right, var(--c2), var(--c3), var(--c4));
  background-size: 200% 100%;
  animation: accentPulse 10s ease-in-out infinite;
  border: none;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  white-space: normal;       /* allow wrapping */
  word-break: break-word;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
  max-width: 85%;
  line-height: 1.3;          /* keeps 2 lines tight */
}

.line-button:hover {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 0 12px rgba(255,255,255,0.5);
}
h2, .h2 {
    font-size: 35px;
    line-height: 1.3em;
    font-weight: 500;
}
.framework-circle {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
  border-radius: 50%;
}

.framework-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 40px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  z-index: 2;
}

/* Circular items */
.framework-item {
  position: absolute;
  width: 130px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.framework-item:hover {
  background: linear-gradient(135deg, #18428f, #6cbe45);
  box-shadow: 0 0 15px rgba(255,255,255,0.6);
  transform: scale(1.1);
}

/* Positions (7 items) */
.framework-item:nth-child(2) { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.framework-item:nth-child(3) { top: 15%; left: 85%; transform: translate(-50%, -50%); }
.framework-item:nth-child(4) { top: 50%; left: 100%; transform: translate(-50%, -50%); }
.framework-item:nth-child(5) { top: 85%; left: 85%; transform: translate(-50%, -50%); }
.framework-item:nth-child(6) { top: 100%; left: 50%; transform: translate(-50%, -50%); }
.framework-item:nth-child(7) { top: 85%; left: 15%; transform: translate(-50%, -50%); }
.framework-item:nth-child(8) { top: 50%; left: 0%; transform: translate(-50%, -50%); }

/* 🔹 Responsive */
@media (max-width: 991px) {
  .framework-circle {
    width: 350px;
    height: 350px;
  }
  .framework-item {
    width: 100px;
    height: 65px;
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  .framework-circle {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    border-radius: 0;
  }
  .framework-center {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    margin-bottom: 20px;
  }
  .framework-item {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.framework-circle {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px dashed red; /* debug outline */
}

.framework-item {
  background: rgba(0,0,0,0.2); /* force visible bg */
  color: #000; /* dark text for testing */
}/* Frameworks section */
.framework-timeline-row .process-step-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-radius: 20px;
  padding: 50px 25px 40px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.framework-timeline-row .process-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.framework-timeline-row .process-step-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #18428f, #1fa0a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: floatIcon 4s ease-in-out infinite, iconShimmer 6s ease infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@keyframes iconShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Connector line */
.framework-timeline-row .process-line {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #18428f, #1fa0a3, #6cbe45, #5e3fee);
  background-size: 300% 300%;
  animation: lineGlow 10s linear infinite;
  z-index: 0;
}

@keyframes lineGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.framework-timeline-row {
  position: relative;
}

.framework-timeline-row .process-line {
  position: absolute;
  top: 70px; /* aligns with icon row */
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #18428f, #1fa0a3, #6cbe45, #5e3fee);
  background-size: 300% 300%;
  animation: lineGlow 10s linear infinite;
  z-index: 0;
}

@keyframes lineGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.framework-timeline-row .process-step-card {
  position: relative;
  z-index: 1; /* keep cards above line */
}
.framework-timeline-row .process-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.05)
  );
  transform: skewX(-20deg);
  animation: shimmer 8s infinite;
  border-radius: 20px;
}

@keyframes shimmer {
  0%   { left: -50%; }
  50%  { left: 120%; }
  100% { left: 120%; }
}
/* Sweeping shimmer (before) */
.framework-timeline-row .process-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(94, 63, 238, 0.15),   /* purple */
    rgba(31, 160, 163, 0.25), /* turquoise */
    rgba(24, 66, 143, 0.18)   /* blue */
  );
  transform: skewX(-20deg);
  animation: cardShimmer 8s infinite;
  z-index: 0;
  border-radius: 20px;
  filter: blur(30px); /* <-- blur the shimmer itself */
}

/* Soft glowing base (after) */
.framework-timeline-row .process-step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 40% 60%,
    rgba(0, 180, 255, 0.4),
    transparent 80%
  );
  filter: blur(80px);   /* big blur for glow */
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  border-radius: 20px;
}

/* Shimmer animation */
@keyframes cardShimmer {
  0%   { left: -50%; }
  50%  { left: 120%; }
  100% { left: 120%; }
}

/* Ensure card content stays above */
.framework-timeline-row .process-step-card > * {
  position: relative;
  z-index: 1;
}
/* Ensure each card is the positioning context */
.framework-timeline-row .process-step-card {
  position: relative;   /* key: anchors ::before and ::after */
  overflow: hidden;     /* clips glow inside card box */
  border-radius: 20px;  /* keeps rounded blur edges */
}

.framework-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framework-card img {
  width: 80px;
  height: auto;
  margin-bottom: 12px;
  border-radius: 12px;
}

.framework-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.framework-card p {
  font-size: 0.9rem;
  color: #444;
}

.framework-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.framework-center {
  background: linear-gradient(135deg, #3e8cff, #21c8f6);
  border-radius: 20px;
  padding: 40px 20px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.framework-center img.center-image {
  width: 100px;
  margin-bottom: 20px;
}
/* Glassy card (reusing your style) */
.process-step-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.process-step-card img {
  max-width: 80px;
  margin-bottom: 16px;
  border-radius: 12px;
}

.framework-timeline-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  grid-gap: 1.5rem;
}

/* Each card is a block */
.process-step-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

/* Tall center card spans 2 rows */
.tall-card {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.framework-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  grid-template-rows: repeat(3, 200px);  /* 3 equal rows */
  gap: 20px;
}

/* Normal cards */
.process-step-card {
  flex: 1;
  display: flex;
  flex-direction: column; /* stack items vertically */
  align-items: center;    /* center horizontally */
  justify-content: center;/* center vertically */
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}
/* Explicit placement for each card */
.king  { grid-column: 1; grid-row: 1; }
.uk    { grid-column: 1; grid-row: 2; }
.ir    { grid-column: 1; grid-row: 3; }

.gri   { grid-column: 3; grid-row: 1; }
.sdg   { grid-column: 3; grid-row: 2; }
.ifrs  { grid-column: 3; grid-row: 3; }

/* Tall NSSF card */
.nssf {
  grid-column: 2;      /* center column */
  grid-row: 1 / span 2; /* spans row 1 and row 2 */
}
.border-radius-20{
	border-radius: 20px!important;
}

/* =======================
   UNIVERSAL GRADIENT SET
   ======================= */

/* Blue–Green shimmer */
.bg-gradient-blue-green {
  background: linear-gradient(135deg, #0072ff, #00c6a7);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}

/* Purple–Blue shimmer */
.bg-gradient-purple-blue {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
}

/* Teal–Turquoise shimmer */
.bg-gradient-teal-turq {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  background-size: 200% 200%;
  animation: gradientShift 14s ease infinite;
}

/* Gold–Orange shimmer */
.bg-gradient-gold-orange {
  background: linear-gradient(135deg, #f6d365, #fda085);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
}

/* Pink–Magenta shimmer */
.bg-gradient-pink-magenta {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
}

/* Subtle Glassy White overlay */
.bg-glassy-white {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
}
/* Universal shimmer animation */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Shimmer overlay */
.shimmer-overlay {
  position: relative;
  overflow: hidden;
}

.shimmer-overlay::after {
  content: "";
  position: absolute;
  top: 0; left: -200%;
  width: 60%; height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.04) 50%,
    rgba(255,255,255,0) 100%
  );
  animation: shimmerSlide 8s infinite;
}

@keyframes shimmerSlide {
  0%   { left: -150%; }
  100% { left: 150%; }
}
/* Glassy card wrapper */
.card-glassy {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.15);
  position: relative;
}
.process-step-card[data-bg-image] {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}

.process-step-card[data-bg-image]::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: attr(data-bg-image url); /* modern spec */
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.process-step-card-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  color: #fff;
}

/* Gradient shimmer overlay */
.process-step-card-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 114, 255, 0.45),
    rgba(0, 198, 167, 0.45),
    rgba(142, 45, 226, 0.45)
  );
  background-size: 300% 300%;
  animation: overlayShimmer 18s ease-in-out infinite;
  z-index: 0;
}

/* Keep text above overlay */
.process-step-card-bg > * {
  position: relative;
  z-index: 1;
}

/* Shimmer movement */
@keyframes overlayShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Recognition Section */
.recognition-section {
  padding: 100px 0;
}

.recognition-swiper {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.recognition-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recognition-captions {
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 80px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.recognition-captions h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.recognition-captions p {
  font-size: 14px;
	
  line-height: 1.6;
  margin: 0;
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
}
.swiper-pagination-bullet-active {
  background: #fff;
}
.recognition-captions {
  position: relative;
}

.recognition-caption-wrapper {
  min-height: 2.5em; /* reserve space for 1–2 lines */
  margin-top: 1rem;
  display: flex;
  align-items: center;
}

#recognition-caption {
  margin: 0;
	font-weight: 700;       /* bold */
  font-style: italic;     /* italic */
  color: #00B5AD;         /* turquoise blue (adjust if needed) */
 
  transition: opacity 0.5s ease; /* smooth fade */
}
/* Base style for gradient border cards */
.card-gradient {
  position: relative;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Gradient line placement */
.card-gradient::before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #00B5AD, #36D1DC, #0072ff);
  z-index: 2;
}

/* Variants for each side */
.card-gradient.top::before {
  top: 0; left: 0; right: 0;
  height: 5px;
}

.card-gradient.bottom::before {
  bottom: 0; left: 0; right: 0;
  height: 5px;
}

.card-gradient.left::before {
  top: 0; bottom: 0; left: 0;
  width: 5px;
}

.card-gradient.right::before {
  top: 0; bottom: 0; right: 0;
  width: 5px;
}

/* Optional glassy shimmer overlay */
.card-gradient::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}
.glassles-gradient {
    background: linear-gradient(135deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .15));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
}
/* Lift up on hover */
.card-hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover-lift:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Subtle zoom */
.card-hover-zoom {
  transition: transform 0.4s ease;
}
.card-hover-zoom:hover {
  transform: scale(1.05);
}

/* Glow effect */
.card-hover-glow {
  transition: box-shadow 0.4s ease;
}
.card-hover-glow:hover {
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.6);
}

/* Rotate shimmer */
.card-hover-tilt {
  transition: transform 0.3s ease;
}
.card-hover-tilt:hover {
  transform: rotate3d(1, 1, 0, 8deg);
}/* === Underline Pulse Animation === */
.intro-underline2 {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #102B5D, #009596);
  background-size: 200% auto;
  animation: underline2Pulse 3s ease-in-out infinite;
}

@keyframes underline2Pulse {
  0%, 100% {
    width: 60px;
    background-position: 0% center;
  }
  50% {
    width: 120px;
    background-position: 100% center;
  }
}
.line-button:hover {
  background: #fff; /* solid white */
  color: var(--c3); /* keep text in your middle gradient colour */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* soft lift */
  transform: translateY(-2px); /* subtle hover float */
}
/* ===========================
   PROCESS TIMELINE SECTION
   =========================== */
/* ===============================
   PROCESS TIMELINE SECTION
   =============================== */
.process-timeline {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* === Wrapper keeps everything aligned inside container === */
.process-timeline-wrapper {
  position: relative;
  padding-left: 0;
}

/* === Vertical animated gradient line === */
.process-timeline-line {
  position: absolute;
  top: 40px;
  bottom: 120px;
  left: 150px; /* aligns perfectly with image centers */
  width: 5px;
  background: linear-gradient(180deg, #7a3cff, #00c2ff, #ff7e5f);
  border-radius: 5px;
  background-size: 100% 200%;
  animation: gradientScroll 6s ease-in-out infinite;
  z-index: 1;
}

/* Smooth gradient scroll */
@keyframes gradientScroll {
  0%   { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}

/* ===============================
   LAYOUT OF EACH ROW
   =============================== */
.gobodo-layout {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* ===============================
   IMAGE WRAPPER & IMAGE STYLE
   =============================== */
.gobodo-image-outer {
  flex-shrink: 0;
  width: 300px; /* control this value for consistency */
  display: flex;
  justify-content: center;
  align-items: center;
}

.gobodo-image {
  width: 100%;
  max-width: 300px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  position: relative;
  z-index: 2;
}

/* ===============================
   GLASSY CONTENT CARDS
   =============================== */
.glassy-card {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  padding: 40px 50px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.glassy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* ===============================
   HEADING UNDERLINE STYLE
   =============================== */
.underline-selector-green {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00f2fe, #4facfe);
  border-radius: 2px;
  margin-bottom: 15px;
}

/* ===============================
   CARD TEXT STYLES
   =============================== */
.glassy-card h5 {
  color: #001f3f;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}


/* ===============================
   DOTS ON VERTICAL TIMELINE
   =============================== */

/* ===============================
   RESPONSIVE FIXES
   =============================== */
@media (max-width: 991px) {
  .process-timeline-line {
    display: none; /* hide the line on mobile */
  }

  .gobodo-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gobodo-image-outer {
    width: 100%;
    margin-bottom: 20px;
    justify-content: flex-start;
  }

  .gobodo-image {
    max-width: 100%;
  }

  .glassy-card {
    padding: 30px 25px;
  }

  .process-timeline-card::before {
    display: none; /* hide dots on mobile for clarity */
  }
}
.timeline-icon-circle-board {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(94, 63, 238, 0.3);
    animation: floatIcon 6s ease-in-out infinite;
}
.intro-underline-board {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 24px;
}


/* Hover Float */
.hover-float {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hover-float:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Pulse Border (optional for emphasis) */
.pulse-border {
  position: relative;
  z-index: 0;
}
.pulse-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg,#00b4d8,#48cae4,#0096c7);
  z-index: -1;
  animation: pulseAnim 3s infinite linear;
}
@keyframes pulseAnim {
  0%   { opacity: 0.4; }
  50%  { opacity: 0.9; }
  100% { opacity: 0.4; }
}

.outer-gradient-card {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.outer-gradient-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 40%,
    transparent 80%
  );
  background-size: 200% 100%;
  animation: shimmerMove 12s infinite linear;
  pointer-events: none;
}

@keyframes shimmerMove {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
/* Outer gradient card */
.outer-gradient-card {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Slide layout */
/* Core slide layout */

/* Slide is a flex row */
.theme-carousel .swiper-slide {
  display: flex;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Left half = image */
.theme-carousel .image-side {
  flex: 1;                 /* take 50% */
  min-width: 0;            /* prevent overflow */
}
.theme-carousel .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right half = text */
/* Make text-side position relative so shimmer can overlay it */
.theme-carousel .text-side {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px;
  position: relative;
  overflow: hidden; /* clip the shimmer inside the box */
  background: rgba(255,255,255,0.10);
  border-radius: 0; /* matches slide edges */
}

.theme-carousel .text-inner {
  max-width: 500px;
	padding:30px 70px 30px 70px;
}
/* Swiper nav & pagination */
.theme-carousel .swiper-button-next,
.theme-carousel .swiper-button-prev {
  color: #fff;
}
.theme-carousel .swiper-pagination-bullet {
  background: rgba(255,255,255,0.6);
}
.theme-carousel .swiper-pagination-bullet-active {
  background: #fff;
}

/* Shimmer overlay */

.theme-carousel .swiper,
.theme-carousel .swiper-wrapper,
.theme-carousel .swiper-slide {
  height: 480px; /* pick a height that works well with your images/text */
}

/* Vision 2035 donuts */
.theme-donuts .donut-card {
  text-align: center;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.theme-donuts .donut {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  animation: rotateDonut 12s linear infinite;
}

.theme-donuts .donut span {
  position: absolute;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  z-index: 2;
}

/* Color variants */
.donut-green {
  background: conic-gradient(#28a745 0deg, #9be7b9 120deg, #e0e0e0 120deg);
}
.donut-blue {
  background: conic-gradient(#007bff 0deg, #80bdff 180deg, #e0e0e0 180deg);
}
.donut-teal {
  background: conic-gradient(#20c997 0deg, #6fe2c2 90deg, #e0e0e0 90deg);
}

/* Rotation */
@keyframes rotateDonut {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Text row */
.theme-donuts .donut-text {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.theme-donuts .donut-text h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.theme-donuts .donut-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.theme-donut {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  overflow: hidden;
}

/* rotating arc (main colour) */
.donut-green {
  background: conic-gradient(#28a745 0deg 180deg, transparent 180deg 360deg);
}
.donut-blue {
  background: conic-gradient(#007bff 0deg 220deg, transparent 220deg 360deg);
}
.donut-teal {
  background: conic-gradient(#20c997 0deg 270deg, transparent 270deg 360deg);
}

/* dark gradient arc behind (purple-blue) */
.theme-donut::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    transparent 0deg 180deg,
    #3a0ca3 180deg,
    #4361ee 360deg
  );
  z-index: 0;
}

/* text label */
.theme-donut span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

/* rotation animation */
.theme-donut {
  animation: rotateDonut 12s linear infinite;
}
@keyframes rotateDonut {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Base donut */
.theme-donut {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  overflow: hidden;
  animation: rotateDonut 12s linear infinite;
}

.theme-donut span {
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Purple-blue gradient background (static) */
.theme-donut::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(#3a0ca3 0deg, #4361ee 360deg);
  z-index: 0;
}

/* Individual donuts with arc length */
.donut-green {
  background: conic-gradient(#28a745 0deg 180deg, transparent 180deg 360deg);
}
.donut-blue {
  background: conic-gradient(#007bff 0deg 240deg, transparent 240deg 360deg);
}
.donut-teal {
  background: conic-gradient(#20c997 0deg 342deg, transparent 342deg 360deg);
}

/* Animation */
@keyframes rotateDonut {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Overlay gradient for the background */
.gradient-overlay-pull {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.4), 
    rgba(0, 0, 0, 0.6)
  ); /* dark fade */
  z-index: 1;
}

/* Glassy card */
.glassy-pull {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

/* Pull quote styling */
.pull-quote {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  position: relative;
}

.intro-underline3 {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 24px;
}
.process-timeline-wrapper-cap {
    position: relative;
    z-index: 0; /* base layer */
}

.process-timeline-line-cap {
    position: absolute;
    top: 50px;
    bottom: 140px;
    left: 80px;
    width: 5px;
    background: linear-gradient(180deg, #7a3cff, #00c2ff, #ff7e5f);
    border-radius: 5px;
    background-size: 100% 200%;
    animation: gradientScroll 6s ease-in-out infinite;
    z-index: -0; /* force behind everything */
}
.gobodo-image-cap {
    width: 100%;
    max-width: 160px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    position: relative;
    z-index: 2!important;
	padding:20px;
}

.gobodo-image-outer-cap {
    flex-shrink: 0;
    width: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 1!important;
}
.strat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
/* Stakeholder Cards */
.stakeholder-step-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden; /* required for shimmer */
}

/* Lift on hover */
.stakeholder-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* === Shimmer Effect (continuous) === */
.stakeholder-step-card::before {
    content: "";
    position: absolute;
    top: 0; left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    animation: shimmer 3s linear infinite; /* always run */
}

@keyframes shimmer {
    0%   { left: -150%; }
    100% { left: 150%; }
}

/* === Stakeholder Images === */
.stakeholder-step-image {
    margin-bottom: 20px;
}

.stakeholder-step-image img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite; /* continuous animation */
}

/* Icon Float Animation */
@keyframes floatIcon {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-8px) scale(1.05); }
    100% { transform: translateY(0px); }
}
h4, .h4 {
    font-size: 18px!important;
    line-height: 24px;
    font-weight: 600;
}

/* SDG Grid */
.sdg-grid {
  margin-top: 20px;
}

.sdg-tile {
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sdg-tile img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.sdg-tile:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.sdg-tile:hover img {
  transform: scale(1.1);
}
/* SDG row flex container */
.sdg-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;     /* no wrapping, always one row */
  gap: 20px;             /* space between tiles */
  overflow-x: auto;      /* allows horizontal scroll on small screens */
  padding-bottom: 10px;
}

/* SDG tile reuse glassy look */
.sdg-tile {
  flex: 1 1 auto;
  max-width: 150px;   /* keeps them equal and neat */
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sdg-tile img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.sdg-tile:hover {
  transform: translateY(-6px) scale(1.05);
}

.sdg-tile:hover img {
  transform: scale(1.1);
}

/* On smaller screens allow horizontal scroll */
.sdg-row::-webkit-scrollbar {
  height: 8px;
}
.sdg-row::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
}
/* SDG Row */
.sdg-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
  position: relative;
  overflow: hidden; /* needed for shimmer */
  padding: 20px 0;
}

/* SDG tile */
.sdg-tile {
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform 0.3s ease;
  flex: 1 1 auto;
  max-width: 150px;
}

/* SDG tile icons */
.sdg-tile img {
  height: 100px;
  width: auto;
  object-fit: contain;
  animation: fadeIcon 4s ease-in-out infinite;
  opacity: 0.85;
}

/* Fade animation */
@keyframes fadeIcon {
  0%   { opacity: 0.85; }
  50%  { opacity: 1; }
  100% { opacity: 0.85; }
}

/* Shimmer overlay */
.shimmer-overlay::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0%   { left: -150%; }
  100% { left: 150%; }
}
/* Override glassy-card look only when used in SDG row */
.sdg-row .glassy-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* smaller, softer shadow */
  padding: 20px; /* tighter padding so icons are centered nicely */
}
/* Shimmer overlay effect for SDG row */
.sdg-row.shimmer-overlay::before {
  content: "";
  position: absolute;
  top: 0; left: -200%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.65) 50%,
    rgba(255,255,255,0) 100%
  );
  animation: shimmer 6s linear infinite;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes shimmer {
  0%   { left: -200%; }
  100% { left: 200%; }
}
h5, .h5 {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
}

/* === TOP RISKS SLIDER === */

/* Swiper container spacing */
.top-risks-swiper {
  padding-top: 25px;       /* space above cards */
  padding-bottom: 60px;    /* space below for scrollbar */
  overflow: visible;       /* prevent clipping of shadows/shimmer */
  position: relative;
}

/* Wrapper alignment */
.top-risks-swiper .swiper-wrapper {
  align-items: stretch;
  padding: 10px 0;
}

/* Slides */
.top-risks-swiper .swiper-slide {
  flex: 0 0 auto;
  width: 21%;              /* 4 per row on desktop */
  max-width: 21%;
  margin: 0 10px;          /* small gap */
  height: auto;
  box-sizing: border-box;
}

/* Risk cards */
.risk-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding: 30px 20px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.risk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

/* Shimmer overlay */
.risk-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 250%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(0, 191, 255, 0) 20%,
    rgba(72, 255, 203, 0.10) 40%,
    rgba(198, 72, 255, 0.10) 60%,
    rgba(255, 189, 72, 0.10) 80%,
    rgba(0, 191, 255, 0) 100%
  );
  animation: shimmer-slide 4s infinite linear;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0.4;
}

@keyframes shimmer-slide {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* Number bubbles */
.risk-icon {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #7b4eff, #00c6ff);
  margin: 0 auto 20px;
}

/* Title */
.risk-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #111;
  margin: 0;
}

/* Timeline line behind bubbles */
.top-risks-swiper::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #06c9ff 0%, #5e4fff 100%);
  z-index: 1;
}

/* Scrollbar */
.top-risks-scrollbar {
  position: relative;
  height: 4px;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
  margin-top: 25px;
}
.top-risks-scrollbar .swiper-scrollbar-drag {
  background: linear-gradient(90deg, #06c9ff, #5e4fff);
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 991px) {
  .top-risks-swiper .swiper-slide {
    width: 90%; /* 3 per row */
    max-width: 90%;
  }
  .risk-icon {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  .risk-title {
    font-size: 1rem;
  }
}



/* Outer glassy card container */
.glassy-outer-card {
  position: relative; /* Required for shimmer positioning */
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden; /* Ensure shimmer stays inside */
}

/* Shimmer overlay on outer card */
.glassy-outer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 250%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(0, 191, 255, 0) 20%,    /* transparent blue fade in */
    rgba(0, 191, 255, 0.08) 40%, /* soft cyan-blue */
    rgba(72, 255, 203, 0.12) 60%,/* teal-green highlight */
    rgba(0, 191, 255, 0.08) 80%, /* soft cyan fade out */
    rgba(0, 191, 255, 0) 100%    /* fully transparent edge */
  );
  animation: shimmer-slide 5s infinite linear;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0.35; /* keep it faint */
}

/* Keyframes for shimmer motion */
@keyframes shimmer-slide {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

/* Inner slides stay the same */
.risk-card {
  position: relative;
  padding: 25px 20px 20px;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  background: #fff;
}

/* Pagination dots under the cards */
.top-risks-pagination {
  margin-top: 25px !important;
  position: relative;
  text-align: center;
}
/* ===============================
   Leader Section (Image + Quote)
   =============================== */

/* Leader Section (Image + Quote) */
.leader-section .row {
  display: flex;
  align-items: stretch;
}


/* Left image card */
.leader-section .leader-photo {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  height: 100%;
}

/* Right column as anchor */
.leader-section .col-md-7.position-relative,
.leader-section .col-md-6.position-relative {
  position: relative;
}

/* Text card (overlap + shorter) */
/* Text card (full width of col, overlapping image) */
/* Right text column as flexbox container */
.leader-section .col-md-7,
.leader-section .col-md-6 {
  display: flex;
  align-items: center;    /* vertical centering */
  position: relative;
}

/* Text card */
.leader-section .leader-text {
  margin-left: -40px;     /* overlap into image */
  width: calc(100% + 40px); /* stretch all the way right */
  height: 80%;            /* 20% shorter than image */
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(0,186,188,0.9),
    rgba(91,127,255,0.9)
  );
  color: #fff;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 60px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.leader-section .col-md-7 {
  padding-right: 0;   /* remove Bootstrap gutter on the right */
}
/* Inner content */
.leader-section .leader-text .card-body {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Divider line */
/* Gradient divider line */
.soft-divider {
  border: 0;
  height: 4px;  /* a little thicker for visibility */
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(140,82,255,0.9),   /* purple */
    rgba(255,64,64,0.9)     /* red */
  );
}
.soft-divider {
  display: block;   /* ensure it shows */
  width: 100%;      /* full width of the card */
  margin: 10px 0;   /* vertical spacing */
}

/* Responsive fallback */
@media (max-width: 991.98px) {
  .leader-section .leader-text {
    position: relative;
    top: auto;
    left: 0;
    transform: none;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
}
/* Base shimmer animation */
@keyframes hero-shimmer {
  0%   { left: -150%; }
  100% { left: 150%; }
}

/* Shared shimmer structure */
.hero-animation-image,
.hero-animation-text {
  position: relative;
  overflow: hidden;
}

/* Shimmer for IMAGE: sits on top */
.hero-animation-image::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 250%; height: 100%;
  background: linear-gradient(
    120deg,
    rgba(140,82,255,0) 20%,
    rgba(140,82,255,0.25) 40%,
    rgba(140,82,255,0.25) 60%,
    rgba(140,82,255,0) 80%
  );
  animation: hero-shimmer 4s infinite linear;
  z-index: 2; /* on top of image */
  pointer-events: none;
}

/* Shimmer for TEXT: sits behind text */
.hero-animation-text::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 250%; height: 100%;
  background: linear-gradient(
    120deg,
    rgba(140,82,255,0) 20%,
    rgba(140,82,255,0.25) 40%,
    rgba(140,82,255,0.25) 60%,
    rgba(140,82,255,0) 80%
  );
  animation: hero-shimmer 4s infinite linear;
  z-index: 0; /* behind text */
  pointer-events: none;
}

.hero-animation-text > * {
  position: relative;
  z-index: 1; /* bring text above shimmer */
}
/* ===============================
   Timeline line
   =============================== */
#materialityTimeline {
  position: relative;
}
#materialityTimeline .process-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  margin: 0 auto;
  background: linear-gradient(90deg, #0046ad, #009879, #7b3fe4, #e63946);
  opacity: 0.25;
  z-index: 0;
}

/* ===============================
   Timeline cards (glassy look)
   =============================== */
.card-materiality.glassy {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 2rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-materiality.glassy:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ===============================
   Donut charts
   =============================== */
.md-donut {
  --size: 100px;
  --thickness: 12px;
  position: relative;
  width: var(--size);
  height: var(--size);
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #d6d6d6; /* static grey base */
  overflow: hidden;
}

/* text in the middle */
.md-donut::after {
  content: attr(data-percent) "%";
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: #03314d;
  background: #fff;
  border-radius: 50%;
  width: calc(var(--size) - var(--thickness)*2);
  height: calc(var(--size) - var(--thickness)*2);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* rotating colored arc */
.md-donut .arc {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--donut-color, #0046ad) 0deg var(--donut-angle, 90deg),
    transparent var(--donut-angle, 90deg) 360deg
  );
  animation: spinArc 16s linear infinite;
  z-index: 1;
}

@keyframes spinArc {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* keep your existing .md-donut exactly as is */

/* Multi-colour donut (static, segmented) */
/* ===============================
   Multi-colour rotating donut
   =============================== */
.md-donut-multi {
  --size: 100px;
  --thickness: 12px;
  position: relative;
  width: var(--size);
  height: var(--size);
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #d6d6d6; /* grey base same as normal donuts */
  overflow: hidden;
}

/* inner circle with central % */
.md-donut-multi::after {
  content: attr(data-percent) "%";
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: #03314d;
  background: #fff;
  border-radius: 50%;
  width: calc(var(--size) - var(--thickness)*2);
  height: calc(var(--size) - var(--thickness)*2);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* rotating coloured ring */
.md-donut-multi .arc {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    
    #17B0A4 0deg 280deg,    
    #F47B20 280deg 360deg
    
  );
  animation: spinMultiArc 15s linear ; /* slower than single arc */
  z-index: 1;
}

/* keep labels static */
.donut-label {
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: #03314d;
  z-index: 3;
  pointer-events: none;
}




/* Label donuts (use data-label instead of %) */
.md-donut-label::after {
  content: attr(data-label);
  font-size: 14px;
  font-weight: 600;
  color: #03314d;
}

.centered-left {
  display: inline-block;     /* shrink-wrap the text block */
  text-align: left;          /* align text inside */
}
.text-center-wrapper {
  text-align: center;        /* center the block itself */
	padding:0 30px 0 30px;
}

h3, .h3 {
    font-size: 21px;
    line-height: 1.5em;
    letter-spacing: 0.05em;
}

/* Pull card */
.sdg-pull {
  display: flex;
  align-items: center;   /* icon + text inline */
  gap: 1.2rem;
  padding: 1.2rem 1.8rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex-direction: row;
}
.sdg-pull:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* Shimmer effect */
.sdg-pull::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 200%; height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  animation: shimmerSlide 4s infinite;
}
@keyframes shimmerSlide {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* Circle icon */
.sdg-icon-circle {
  flex: 0 0 50px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: pulseGlow 3s infinite alternate;
}

/* Glow animation */
@keyframes pulseGlow {
  from { box-shadow: 0 0 10px rgba(106,17,203,0.5); }
  to   { box-shadow: 0 0 20px rgba(37,117,252,0.8); }
}

/* Text area inline with icon */
.sdg-pull .card-body {
  padding: 0;
  margin: 0;
  flex: 1;                       /* take remaining width */
}
.sdg-pull .card-body p {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
  display: inline-block;          /* ensures it sits beside the icon */
  vertical-align: middle;         /* align middle with icon */
}
.pulse-animated {
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  from { box-shadow: 0 0 10px rgba(106,17,203,0.5); }
  to   { box-shadow: 0 0 20px rgba(37,117,252,0.8); }
}
.sdg-timeline-wrapper {
    position: relative;
    padding-left: 0;
}
.sdg-timeline-line {
    position: absolute;
    top: 40px;
    bottom: 80px;
    left: 150px;
    width: 5px;
    z-index: 1;
    background: linear-gradient(rgb(122, 60, 255), rgb(0, 194, 255), rgb(255, 126, 95)) 0% 0% / 100% 200%;
    border-radius: 5px;
    animation: 6s ease-in-out 0s infinite normal none running gradientScroll;
}
.btn-glassy {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px!important;
  border: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-glassy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #00bfff, #c648ff);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hover effect */
.btn-glassy:hover {
  background: linear-gradient(135deg, #48ffcb, #7a3cff);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Active */
.btn-glassy:active {
  transform: scale(0.97);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Duotone world icon styling */
.btn-glassy i {
  font-size: 18px;
  --fa-primary-color: #ffffff;
  --fa-secondary-color: #ffffff;
  --fa-secondary-opacity: 0.7;
}
..timeline-card.image-card {
  padding: 0!important;              /* no padding around image */
  display: flex;           /* let image stretch */
}

.timeline-card.image-card img {
  width: 100%;
  height: 100%;            /* take full card height */
  object-fit: cover;        /* crop nicely without distortion */
  border-radius: 20px;      /* keep rounded corners */
}
.organisational-step-icon {
    font-size: 80px;
    /* margin-bottom: 14px; */
    --fa-primary-color: #1f6dd8;
    --fa-secondary-color: #17bba6;
    --fa-secondary-opacity: 1;
    animation: floatIcon 3s ease-in-out infinite;
}

.org-card {
  position: relative;
  background: url('../images/home/org-1.jpg') bottom/cover no-repeat;
  border-radius: 20px; /* optional, keep consistent with design */
  overflow: hidden;    /* makes overlay respect radius */
}

.org-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 🔵 Use your gradient variables instead of black overlay */
  background: linear-gradient(135deg, #18428F 0%, #6CBE45 100%); /* Blue → Green */
  opacity: 0.85; /* adjust strength of overlay */
  border-radius: inherit;
  z-index: 1; /* sits under text but above image */
}

.org-card > * {
  position: relative;
  z-index: 2; /* ensures your text/content is above the overlay */
}
/* Utility to match your inline padding/radius from HTML */
.p-20 { padding: 20px; }
.rounded-24 { border-radius: 24px; }

/* ====== Glass cards (3 x 2 grid) ====== */
/* === GLANCE CARDS STACK === */

/* === GLANCE CARDS STACK (CLEAN) === */

/* layout-only spacing scoped to glance */
.glance-row > [class*='col-'] { padding: 15px; }
.glance-card { margin-bottom: 30px; width: 100%; }

/* back card */
.glance-card {
  position: relative;
  border-radius: 24px;
  height: 250px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  overflow: visible;
  animation: floaty 7s ease-in-out infinite;
}

/* stagger (cards are inside columns, so target the columns) */
.glance-row > [class*='col-']:nth-child(2) .glance-card { animation-delay: 2s; }
.glance-row > [class*='col-']:nth-child(3) .glance-card { animation-delay: 4s; }

@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ---- docking controls (use variables, no duplicates) ---- */
.glance-card { --front-left: 20px; --front-right: 20px; }
.glance-card.glance-right { --front-left: 20px; --front-right: 20px; }   /* show more gradient on the left */
.glance-card.glance-left  { --front-left: 0px;  --front-right: 80px; }  /* show more on the right */

/* front frosted card uses the vars above */
.glance-front {
  position: absolute;
  top: -30px;
  left: var(--front-left);
  right: var(--front-right);
  height: calc(100% - 0px);
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 30px 20px 20px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  overflow: hidden; /* for shimmer */
}

/* shimmer */
.glance-front::before{
  content:"";
  position:absolute; inset:0;
  left:-150%; width:250%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 80%);
  animation: shimmer 10s linear infinite;
}
@keyframes shimmer { from {left:-150%;} to {left:150%;} }

/* icon & text */
.glance-icon{
  position:absolute; left:30px; top:30px;
  width:55px; height:55px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; color:#fff; box-shadow:0 3px 12px rgba(0,0,0,0.15);
}
.glance-body{ padding-left:90px; }
.glance-body h3{ font-weight:600; font-size:1.2rem; margin-bottom:10px; color:#111; }
.glance-body p{ font-size:14px; margin:0; }

/* mobile: recenter the front card so it doesn't hug the edge */
@media (max-width:576px){
  .glance-card.glance-right { --front-left:16px; --front-right:16px; }
  .glance-card.glance-left  { --front-left:16px; --front-right:16px; }
}
.framework-masonry-org {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.process-step-card-org {
  position: relative;
  overflow: hidden; /* ensures the image won’t spill outside */
  border-radius: 12px; /* optional, to keep rounded corners */
}

.process-step-card-org img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* image fills, keeps aspect ratio */
  border-radius: inherit;
}

/* === OUR-LOCATIONS: Glassy Tables Upgrade === */
.location-tables .table-responsive{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none; /* no outer border */
  transition: transform .25s ease, box-shadow .25s ease;
}
.location-tables .table-responsive:hover{
  transform: translateY(-2px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.22);
}

/* Subtle shimmer sweep */
.location-tables .table-responsive::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 20%,
    rgba(255,255,255,0.12) 40%,
    rgba(255,255,255,0.0) 60%);
  transform: translateX(-150%);
  animation: location-table-shimmer 6s linear infinite;
  pointer-events:none;
  opacity:.35;
}
@keyframes location-table-shimmer{
  0% { transform: translateX(-150%); }
  100% { transform: translateX(150%); }
}

/* Table core */
.location-tables table.table{
  margin:0;
  border-collapse: separate;
  border-spacing:0;
  background: transparent;
  border: none !important;
}
.location-tables table.table thead th{
  border:none !important;
  padding:18px 20px;
}
.location-tables table.table tbody td, 
.location-tables table.table tbody th{
  background: rgba(255,255,255,0.55);
  border: none !important;
  padding:16px 18px;
}

/* Zebra rows */
.location-tables table.table tbody tr:nth-child(odd) td{
  background: rgba(255,255,255,0.62);
}

/* Row hover */
.location-tables table.table tbody tr{
  transition: background .25s ease;
}
.location-tables table.table tbody tr:hover td{
  background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0.75));
}

/* Fine grid dividers (replace heavy borders) */
.location-tables table.table tbody td + td{
  box-shadow: inset 1px 0 0 rgba(14,26,42,0.06);
}
.location-tables table.table tbody tr + tr td{
  box-shadow: inset 0 1px 0 rgba(14,26,42,0.06);
}

/* First & last cell rounding */
.location-tables .table-responsive table.table thead tr:first-child th:first-child{ border-top-left-radius: 12px; }
.location-tables .table-responsive table.table thead tr:first-child th:last-child{ border-top-right-radius: 12px; }
.location-tables .table-responsive table.table tbody tr:last-child td:first-child{ border-bottom-left-radius: 12px; }
.location-tables .table-responsive table.table tbody tr:last-child td:last-child{ border-bottom-right-radius: 12px; }

/* Branch name “badges” */
.location-tables table.table td span.font-weight-800{
  display:inline-block;
  padding:6px 10px;
  border-radius:10px;
  background: linear-gradient(135deg, rgba(7,28,75,0.08), rgba(50,94,199,0.10));
  box-shadow: inset 0 0 0 1px rgba(7,28,75,0.12);
  letter-spacing:.2px;
}

/* Accessibility focus ring */
.location-tables .table-responsive:focus-within{
  box-shadow: 0 0 0 3px rgba(50,94,199,0.35), 0 20px 50px rgba(0,0,0,0.18);
}

/* Mobile tweaks */
@media (max-width: 767.98px){
  .location-tables .table-responsive{
    border-radius:16px;
  }
  .location-tables table.table thead h3{
    font-size:1.1rem;
  }
  .location-tables table.table tbody td{
    padding:12px 14px;
    font-size: 0.95rem;
  }
}
/* ==== Location Tables: shimmer overlay ==== */
.location-tables {
  position: relative;
  overflow: hidden;         /* clip edges */
  isolation: isolate;       /* contain z-index stacking */
}

/* Shimmer OVERLAY (sits above content, but doesn’t block it) */
.location-tables::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 20%,
    rgba(255,255,255,0.48) 45%,
    rgba(255,255,255,0) 70%);
  transform: translateX(-150%);
  animation: location-shimmer 7s linear infinite;
  pointer-events: none;      /* don’t block clicks */
  z-index: 9;                /* above table cells */
  opacity: .65;              /* subtle by default */
  mix-blend-mode: soft-light;/* keeps text legible */
  will-change: transform;
}

@keyframes location-shimmer {
  0%   { transform: translateX(-150%); }
  100% { transform: translateX(150%); }
}

/* Boost shimmer a little when hovered */
.location-tables:hover::after {
  opacity: .35;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .location-tables::after {
    animation: none;
    opacity: 0;
  }
}
/* ===== Map Showcase (NSSF 2025) ===== */
.map-showcase { position: relative; }

/* Map image wrapper */
.map-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  transform: translateZ(0); /* promote layer */
}

/* Subtle breathing fade + micro-zoom for the map */
.map-hero-img {
  display: block;
  width: 100%;
  height: auto;
  animation: map-breathe 10s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes map-breathe {
  0%, 100% { transform: scale(1);   opacity: .98; }
  50%      { transform: scale(1.01); opacity: 1;   }
}

/* Glassy shimmer overlay across the map */
.map-hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 20%,
    rgba(255,255,255,.28) 45%,
    rgba(255,255,255,0) 70%);
  transform: translateX(-150%);
  animation: map-shimmer 8s linear infinite;
  mix-blend-mode: soft-light;
  pointer-events: none;
  opacity: .22;
}
@keyframes map-shimmer {
  0%   { transform: translateX(-150%); }
  100% { transform: translateX(150%); }
}

/* Hover lift + brighter sheen */
.map-hero:hover { transform: translateY(-2px); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.map-hero:hover::after { opacity: .3; }

/* ===== Legend Card (glassy) ===== */
.glassy-map-legend {
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
  transition: transform .25s ease, box-shadow .25s ease;
}
.glassy-map-legend:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(0,0,0,.18);
}
.glassy-map-legend .card-body { padding: 22px 26px; }

/* Legend grid + items */
.map-legend-grid .legend-icon {
  display:inline-flex; align-items:center; justify-content:center;
  width:76px; height:76px;
  border-radius: 20px;
  background: radial-gradient(120% 120% at 30% 30%, rgba(255,255,255,.9) 0%, rgba(255,255,255,.55) 60%, rgba(255,255,255,.35) 100%);
  box-shadow: inset 0 0 0 1px rgba(14,26,42,.08), 0 8px 18px rgba(0,0,0,.08);
  margin: 0 auto 10px auto;
  overflow: hidden;
}
.map-legend-grid .legend-icon img{
  max-height: 60px; width: auto; height: 60px;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.06));
}
.map-legend-grid .legend-label {
  font-weight: 700;
  letter-spacing: .2px;
}

/* Optional: tiny shimmer on icons on hover */
.map-legend-grid .legend-icon::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(255,255,255,0) 20%, rgba(255,255,255,.6) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events:none;
}
.map-legend-grid .legend-icon:hover::after{
  animation: legend-sheen 1.2s ease;
  opacity: .6;
}
@keyframes legend-sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce){
  .map-hero-img { animation: none; }
  .map-hero::after { animation: none; opacity: 0; }
  .map-legend-grid .legend-icon:hover::after { animation: none; }
}
/* ===== Core Values 2025 (unique scope) ===== */
.values-2025 { position: relative; }

.values-2025-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 991.98px){
  .values-2025-grid { grid-template-columns: 1fr; }
}

.value-card {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 22px 60px rgba(0,0,0,.12);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 26px 72px rgba(0,0,0,.16); }

/* subtle sheen */
.value-card::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 20%, rgba(255,255,255,.28) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-140%);
  animation: values-sheen 8s linear infinite;
  pointer-events:none; opacity:.18; mix-blend-mode: soft-light;
}
@keyframes values-sheen{
  0%{ transform: translateX(-140%); } 100%{ transform: translateX(140%); }
}

.value-inner { display:flex; align-items: center; gap: 20px; padding: 24px; }
.value-icon {
  flex:0 0 84px; height:84px; width:84px;
  border-radius: 18px;
  background: radial-gradient(120% 120% at 30% 30%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.65) 60%, rgba(255,255,255,.45) 100%);
  box-shadow: inset 0 0 0 1px rgba(14,26,42,.08), 0 10px 22px rgba(0,0,0,.08);
  display:flex; align-items:center; justify-content:center;
  transition: transform .25s ease;
}
.value-card:hover .value-icon { transform: translateY(-4px); }

/* icon size */
.value-icon i { font-size: 90px; }

/* title & copy */
.value-text h4 {
  margin:0 0 6px 0;
  font-weight:800;
  color:#114b8b; /* NSSF deep blue-ish */
}
.value-text p { margin:0; color:#28599b; }

/* gradient accent bar (left edge) */
.value-card::before{
  content:""; position:absolute; left:0; top:0; bottom:0; width:6px;
  background: linear-gradient(180deg, #34c1b5 0%, #2f6bff 100%); opacity:.85;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .value-card::after{ animation:none; opacity:0; }
}
/* === Glass morph upgrades (non-destructive) === */

/* Card: deeper glass, gradient stroke, soft inner glow */
.values-2025 .value-card{
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
  border: 1px solid rgba(255,255,255,.45);
  box-shadow:
    0 22px 60px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.40);
  position: relative;
  overflow: hidden;
}

/* gradient “edge” like the map chips (rounded and subtle) */
.values-2025 .value-card::before{
  content:"";
  position:absolute; left:0; top:0; bottom:0; width:10px;
  background: linear-gradient(180deg, #34c1b5 0%, #2f6bff 100%);
  opacity:.95;
  border-top-left-radius: 20px; border-bottom-left-radius: 20px;
}

/* diagonal glass sheen across the card (keeps your old one but slightly crisper) */
.values-2025 .value-card::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 20%, rgba(255,255,255,.22) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-140%);
  animation: values-sheen 8s linear infinite;
  pointer-events:none; mix-blend-mode: soft-light; opacity:.18;
}
@keyframes values-sheen{
  0%{ transform: translateX(-140%);} 100%{ transform: translateX(140%);}
}

/* Icon tile: more “glass”, halo + micro-sheen on hover */
.values-2025 .value-icon{
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.72));
  border: 1px solid rgba(255,255,255,.45);
  box-shadow:
    inset 0 0 0 1px rgba(14,26,42,.06),
    0 10px 22px rgba(0,0,0,.10);
}
.values-2025 .value-icon::before{ /* soft inner highlight */
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(120% 100% at 30% 25%, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 60%);
  border-radius: inherit;
  pointer-events:none;
}
.values-2025 .value-icon::after{ /* hover sheen */
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(255,255,255,0) 20%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-120%);
  opacity:0; pointer-events:none; border-radius: inherit;
  transition: opacity .2s ease;
}
.values-2025 .value-card:hover .value-icon::after{
  animation: value-icon-sheen 1.2s ease;
  opacity:.7;
}
@keyframes value-icon-sheen{
  0%{ transform: translateX(-120%);} 100%{ transform: translateX(120%);}
}

/* Gentle float for the icon (toggle if you prefer static) */
.values-2025 .value-icon i{
  font-size: 40px;
  animation: value-float 4.8s ease-in-out infinite;
  will-change: transform;
}
@keyframes value-float{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* Font Awesome duotone colours (primary/secondary) */
.values-2025 .value-icon .fa-duotone{
  --fa-primary-color: #1e4e96;     /* deep brand blue */
  --fa-secondary-color: #34c1b5;   /* teal accent */
  --fa-secondary-opacity: 1;
}

/* Optional: alternate accent per card (gives a lively row) */
.values-2025 .value-card:nth-child(2)::before{
  background: linear-gradient(180deg, #2f6bff 0%, #7a5cff 100%);
}
.values-2025 .value-card:nth-child(3)::before{
  background: linear-gradient(180deg, #16d39a 0%, #2fb8ff 100%);
}
.values-2025 .value-card:nth-child(4)::before{
  background: linear-gradient(180deg, #7a5cff 0%, #34c1b5 100%);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .values-2025 .value-card::after,
  .values-2025 .value-icon::after,
  .values-2025 .value-icon i{ animation:none; }
}
/* ==== Icon holder motion (values-2025) ==== */

/* Stop the old icon <i> float if we added it earlier */
.values-2025 .value-icon i { animation: none; }

/* 1) Gentle orbit (default) — small bob + tiny rotate */
.values-2025 .value-icon{
  will-change: transform;
  animation: icon-orbit 9s ease-in-out infinite;
  transform-origin: 50% 55%;
}
@keyframes icon-orbit{
  0%   { transform: translateY(0) rotateZ(0deg); }
  25%  { transform: translateY(-6px) rotateZ(1.5deg); }
  50%  { transform: translateY(0) rotateZ(0deg); }
  75%  { transform: translateY(6px) rotateZ(-1.5deg); }
  100% { transform: translateY(0) rotateZ(0deg); }
}

/* Stagger even cards so they don’t move in sync */
.values-2025 .value-card:nth-child(even) .value-icon{
  animation-delay: -4.5s;
}

/* 2) Optional: spin on hover (adds a playful twirl) */
.values-2025 .value-card:hover .value-icon{
  animation-play-state: paused;                  /* pause orbit while spinning */
  transition: transform .9s ease;
  transform: rotateZ(360deg) translateY(-2px);   /* quick spin */
}

/* 3) Optional alternative: subtle 3D tilt (enable instead of orbit) */
/*
.values-2025 .value-icon{
  animation: icon-tilt 7s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes icon-tilt{
  0%,100% { transform: rotateX(0deg) rotateY(0deg) translateY(0); }
  25%     { transform: rotateX(6deg) rotateY(-4deg) translateY(-4px); }
  50%     { transform: rotateX(0deg) rotateY(0deg) translateY(0); }
  75%     { transform: rotateX(-6deg) rotateY(4deg) translateY(4px); }
}
*/

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  .values-2025 .value-icon{ animation: none !important; transform: none !important; }
}
/* === Aurora Overlay === */
.bg-overlay.aurora-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(123, 63, 243, 0.55),
    rgba(243, 95, 95, 0.55),
    rgba(255, 255, 255, 0.25)
  );
  background-size: 300% 300%;
  animation: auroraFlow 14s ease-in-out infinite;
  z-index: 1;
}

@keyframes auroraFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.aurora-section .container,
.animated-overlay-text .container,
.img-frame .container {
  position: relative;
  z-index: 2;
}
/* Frame to host shimmer overlay */
.img-frame {
  position: relative;
  display: inline-block;
  border-radius: 24px;          /* matches your rounded-24 */
  overflow: hidden;
  isolation: isolate;           /* keeps overlay effects contained */
}

/* Continuous shimmer sweep */
.shimmer-sweep::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.07) 42%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.07) 58%,
    rgba(255,255,255,0) 100%
  );
  translate: -150% 0;           /* start off-canvas left */
  pointer-events: none;
  mix-blend-mode: screen;       /* nice on darker images/overlays */
  animation: shimmer-slide 3.2s linear infinite;
  will-change: transform;
}

/* Hover lift + micro tilt */
.hover-lift {
  transition: transform 380ms cubic-bezier(.2,.8,.2,1), 
              box-shadow 380ms cubic-bezier(.2,.8,.2,1);
  transform-origin: center;
}
.hover-lift:hover {
  transform: translateY(-6px) rotate3d(0, 1, 0, 4deg) scale(1.015);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Optional: very light idle float for “living” feel */
.levitate {
  animation: levitate 6.5s ease-in-out infinite;
}
@keyframes levitate {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Shimmer keyframes */
@keyframes shimmer-slide {
  0%   { transform: translateX(0);        }
  100% { transform: translateX(300%);     }
}

/* Make the image itself fill the frame cleanly */
.img-frame > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* keeps aspect if you set a fixed height on parent */
  border-radius: inherit;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .shimmer-sweep::after,
  .levitate {
    animation: none !important;
  }
  .hover-lift,
  .hover-lift:hover {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}
.timeline-card2.shimmer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(249, 249, 251, 0.8), rgba(255, 255, 255, 0.7));
    background-size: 250% 250%;
    animation: shimmerBackground 9s ease-in-out infinite;
}
.timeline-card2.glassy {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px) saturate(140%);
    -webkit-backdrop-filter: blur(6px) saturate(140%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    padding: 40px 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-icon-circle2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(94, 63, 238, 0.3);
    animation: floatIcon 6s ease-in-out infinite;
}
.bg-overlay.flexi-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(123, 63, 243, 0.85), rgba(243, 95, 95, 0.75), rgba(255, 255, 255, 0.55));
    background-size: 300% 300%;
    animation: auroraFlow 14s ease-in-out infinite;
    z-index: 1;
}
/* Scope the overlay used on the hero so it can't inherit borders/outlines from global .bg-overlay */

/* ============================
   NSSF Engagement 2025 (scoped)
   ============================ */

/* Brand tokens — replace with exact HEX from your swatch if needed */
:root{
  --nssf-blue:   #00B7FA;  /* P 106-8 C (blue)   */
  --nssf-teal:   #00A8BC;  /* P 124-6 C (teal)   */
  --nssf-purple: #652D91;  /* P 106-8 C (purple) */
  --nssf-orange: #F26524;  /* P 34-8  C (orange) */
  --nssf-red:    #A21B1C;  /* P 49-16 C (optional) */
   --nssf-lightgreen:    #8DC63F;  /* P 49-16 C (optional) */
}

/* Section wrapper (no globals touched) */
.nssf-engagement-2025 { position: relative; }

/* Base card */
.nssf-engagement-2025 .stat-card{
  position: relative;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
  transition: transform .3s ease, box-shadow .3s ease;
  isolation: isolate; /* keep overlays contained */
}

/* Soft connector glow like your audit cards */
.nssf-engagement-2025 .stat-card::before{
  content:"";
  position:absolute;
  left:-30%; right:-30%; top:20px;
  height:6px; border-radius:999px;
  filter: blur(12px); opacity:.55; z-index:0;
  background: linear-gradient(90deg, var(--c1), color-mix(in oklab, var(--c1), white 30%));
}

/* Glass shimmer surface (your animation applied here) */
.nssf-engagement-2025 .stat-card.shimmer{
  background: linear-gradient(135deg,
              rgba(255,255,255,0.70),
              rgba(249,249,251,0.80),
              rgba(255,255,255,0.70));
  background-size: 250% 250%;
  animation: shimmerBackground 12s ease-in-out infinite;
}
@keyframes shimmerBackground{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* Brand modifiers (strictly NSSF palette) */
.nssf-engagement-2025 .stat-card--blue   { --c1: var(--nssf-blue);   }
.nssf-engagement-2025 .stat-card--teal   { --c1: var(--nssf-teal);   }
.nssf-engagement-2025 .stat-card--purple { --c1: var(--nssf-purple); }
.nssf-engagement-2025 .stat-card--orange { --c1: var(--nssf-orange); }
.nssf-engagement-2025 .stat-card--red { --c1: var(--nssf-red); }
.nssf-engagement-2025 .stat-card--lightgreen { --c1: var(--nssf-lightgreen); }
/* Optional if you add a 5th later */
/* .nssf-engagement-2025 .stat-card--red { --c1: var(--nssf-red); } */

.nssf-engagement-2025 .stat-card .card-body {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
}

/* Icon badge */
.nssf-engagement-2025 .stat-icon {
  width:56px; height:56px; border-radius:50%;
  display:grid; place-items:center; margin-bottom:16px;
  background: radial-gradient(120% 120% at 30% 20%,
              color-mix(in oklab, var(--c1), white 35%), var(--c1));
  box-shadow: 0 8px 18px rgba(0,0,0,.12), inset 0 0 18px rgba(255,255,255,.35);
}
.nssf-engagement-2025 .stat-icon i { font-size:26px; color:#fff; }

/* Text */
.nssf-engagement-2025 .stat-title { font-size:18px; margin:0 0 6px; }
.nssf-engagement-2025 .stat-sub   { font-size:14px; opacity:.85; margin:0 0 16px; }

.nssf-engagement-2025 .stat-number,
.nssf-engagement-2025 .stat-number-static {
  font-size:36px; font-weight:800; letter-spacing:.5px; line-height:1; margin-bottom:6px;
  background: linear-gradient(135deg, var(--c1), color-mix(in oklab, var(--c1), white 35%));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}

.nssf-engagement-2025 .stat-foot {
  font-size:12px; text-transform:uppercase; letter-spacing:.06em; opacity:.75;
}

/* Hover */
.nssf-engagement-2025 .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.14);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .nssf-engagement-2025 .stat-number,
  .nssf-engagement-2025 .stat-number-static { font-size:32px; }
}
@media (max-width: 575.98px) {
  .nssf-engagement-2025 .stat-card .card-body { padding: 22px 20px; }
  .nssf-engagement-2025 .stat-number,
  .nssf-engagement-2025 .stat-number-static { font-size:30px; }
}


/* Responsive tweaks */
@media (max-width: 991.98px){
  .nssf-engagement-2025 .stat-number{ font-size:32px; }
}
@media (max-width: 575.98px){
  .nssf-engagement-2025 .stat-card .card-body{ padding: 22px 20px; }
  .nssf-engagement-2025 .stat-number{ font-size:30px; }
}

.values-2025-grid2 {
    display: grid
;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.response-timeline-wrapper {
    position: relative;
    z-index: 0;
}
.response-timeline-line {
    position: absolute;
    top: -20px;
    bottom: 80px;
    left: 140px;
    width: 5px;
    background: linear-gradient(180deg, #7a3cff, #00c2ff, #ff7e5f);
    border-radius: 5px;
    background-size: 100% 200%;
    animation: gradientScroll 6s ease-in-out infinite;
}
/* Soft mist version */
.section-green-mist-bg {
  background: linear-gradient(
    135deg,
    rgba(108, 190, 69, 0.10),  /* NSSF Green */
    rgba(24, 66, 143, 0.10),   /* NSSF Blue */
    rgba(255, 255, 255, 0.2)   /* White mist accent */
  );
  background-size: 200% 200%;
  animation: shimmerBackground 12s ease-in-out infinite;
}

/* Stronger diagonal version */
.section-green-strong-bg {
  background: linear-gradient(
    135deg,
    rgba(108, 190, 69, 0.35), 
    rgba(24, 66, 143, 0.35)
  );
  background-size: 200% 200%;
  animation: shimmerBackground 14s ease-in-out infinite;
}

/* Radial fade version */
.section-green-radial-bg {
  background: radial-gradient(
    circle at center,
    rgba(108, 190, 69, 0.25),
    rgba(24, 66, 143, 0.25),
    rgba(255, 255, 255, 0.15)
  );
  background-size: cover;
}

/* Top → bottom version */
.section-green-vertical-bg {
  background: linear-gradient(
    180deg,
    rgba(24, 66, 143, 0.082),
    rgba(108, 190, 69, 0.08)
  );
}

/* Animated shimmer keyframes (reuse) */
@keyframes shimmerBackground {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================
   Z-Index Utility Classes
   ============================ */

/* Base levels */
.z-0    { z-index: 0 !important; }
.z-1    { z-index: 1 !important; }
.z-5    { z-index: 5 !important; }
.z-10   { z-index: 10 !important; }
.z-20   { z-index: 20 !important; }
.z-30   { z-index: 30 !important; }
.z-40   { z-index: 40 !important; }
.z-50   { z-index: 50 !important; }

/* Higher stacking contexts */
.z-100  { z-index: 100 !important; }
.z-200  { z-index: 200 !important; }
.z-500  { z-index: 500 !important; }
.z-999  { z-index: 999 !important; }

/* Common use cases */
.z-auto { z-index: auto !important; }

/* Optional helpers */
.z-top  { z-index: 2147483647 !important; } /* max int for “always on top” */
.z-neg  { z-index: -1 !important; }        /* push below */

.journey2025-wrapper {
  position: relative;
  z-index: 0;
}

.journey2025-line {
  position: absolute;
  top: 40px;
  bottom: 80px;
  left: 140px;
  width: 5px;
  background: linear-gradient(180deg, #7a3cff, #00c2ff, #ff7e5f);
  border-radius: 5px;
  background-size: 100% 200%;
  animation: gradientScroll 6s ease-in-out infinite;
  z-index: 1;
}

.journey2025-layout {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.journey2025-image-outer {
  flex-shrink: 0;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.journey2025-image {
  width: 100%;
  max-width: 300px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  position: relative;
  z-index: 2;
}

/* New circle on top of image */
.journey2025-circle {
    position: absolute;
    bottom: -50px;
    left: 48%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, #6CBE45, #18428F);
    color: #fff;
    font-weight: 700;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.journey2025-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  padding: 24px;
}
/* Base glassy card */
.table-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

/* Header/Footer gradient blocks */
.table-card-header,
.table-card-footer {
  padding: 20px 30px;
}

/* Body styling */
.table-card-body {
  padding: 40px;
}

/* Headings */
.table-heading {
  font-size: 1.6rem;
  font-weight: 600;
}
.table-subheading {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-blue);
}
/* Glassy shimmer table card */
/* Glassy base */
.table-card.glassy {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

/* Shimmer only inside body */
.table-card-body.shimmer {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7),
    rgba(249, 249, 251, 0.8),
    rgba(255, 255, 255, 0.7)
  );
  background-size: 200% 200%;
  animation: shimmerBackground 12s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

/* Shimmer animation */
@keyframes shimmerBackground {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Dividers */
.line-divider {
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 0;
}


/* Lists */
.list-glassy {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-glassy li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
  color: var(--primary-blue);
}
.list-glassy li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: bold;
}
.list-sdg .fa-li {
  top: 0.15em; /* aligns image with text baseline */
}

.list-sdg .li-icon {
  width: 2em!important;      /* consistent size */
  height: 2em!important;     /* forces square shape */
  object-fit: contain;
  vertical-align: middle;
}
/* Step Card */
.step-card {
	position: relative; /* required for ::before glow line */
  border-radius: 20px;
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  background: rgba(255,255,255,0.65);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* Shimmer Background */
.step-card.shimmer {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7),
    rgba(249, 249, 251, 0.8),
    rgba(255, 255, 255, 0.7)
  );
  background-size: 200% 200%;
  animation: shimmerBackground 12s ease-in-out infinite;
}
@keyframes shimmerBackground {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Step Badge */
.step-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f6dd8, #17bba6);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(31,109,216,0.4);
  animation: pulseGlow 2.5s infinite ease-in-out;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 15px rgba(31,109,216,0.4); }
  50%     { box-shadow: 0 0 30px rgba(23,187,166,0.8); }
}

/* Titles */
.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

/* Sublist */
.step-sublist {
  padding-left: 18px;
  margin: 0;
  font-size: 16px;
}
.step-sublist li {
  margin-bottom: 5px;
  line-height: 1.4;
}
.nssf-steps-2025 .step-card {
  position: relative;   /* required for ::before anchoring */
  overflow: hidden;     /* ensures glow doesn’t bleed out */
}

.nssf-steps-2025 .step-card::before {
  content: "";
  position: absolute;
  left: 0%;          /* instead of -30% */
  right: 0%;         /* keeps it within the card */
  top: 20px;
  height: 2px;
  border-radius: 999px;
  filter: blur(6px);
  opacity: .65;
  z-index: 0;
  background: linear-gradient(
    90deg,
    var(--c1, #1f6dd8),
    color-mix(in oklab, var(--c1, #1f6dd8), white 30%)
  );
}
/* Survey Card */
.survey-card {
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  position: relative;
}

/* Question text */
.survey-question {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-blue);

}

/* Score Badge */
.survey-score-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1f6dd8, #17bba6);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  align-self: flex-start;
}
/* Animated score badge */
.survey-score-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1f6dd8, #17bba6);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-top: auto;
  align-self: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover / universal button float */
.survey-score-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(23,187,166,0.4);
}

/* Optional subtle pulse if you want continuous animation */
@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(23,187,166,0.3);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(23,187,166,0.6);
  }
}

.survey-score-badge.pulse {
  animation: badgePulse 3s infinite ease-in-out;
}
.risk-list li{
    margin-bottom: 0.55rem;
    font-weight: 400;
}

.legend-row {
  width: 100%;
  gap: 20px;
}

/* Glassy cards */
.legend-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  transition: transform 0.25s ease, background 0.25s ease;
}

/* Animated icons */
.legend-card i {
  font-size: 16px;
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 0.5;
  animation: rotateIcon 6s linear infinite;
}

@keyframes rotateIcon {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Flush left/right edges */
.legend-card:first-child { margin-left: 0 !important; }
.legend-card:last-child { margin-right: 0 !important; }
.legend-outer-card {
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.legend-row {
  gap: 20px;
  justify-content: center; /* centers them nicely */
}

.legend-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  font-weight: 500;
  color: #123063;

  white-space: nowrap;
}
.riskorg-card {
  position: relative;
  background: url('../images/home/uganda-5.jpg') top/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
}

.riskorg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #18428F 0%, #6CBE45 100%);
  opacity: 0.85;
  border-radius: inherit;
  z-index: 1;

  /* 🔒 stop unwanted movement */
  background-size: auto !important;
  background-position: center !important;
  animation: none !important;
}


.riskorg-card > * {
  position: relative;
  z-index: 2;
}
.text-lg, .text-lg span {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.05em;
}
/* --- Glassy Material Matters Table --- */
.glassy-material-table {
  border-collapse: collapse !important;
  border-spacing: 0;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, .45),
    rgba(255, 255, 255, .25)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

/* Table header */
.glassy-material-table thead th {
  border: none !important;
  background: transparent;
  position: relative;
}

/* Table body cells */
.glassy-material-table tbody td {
  position: relative;
  background: transparent;
  padding: 1rem;
}

/* Horizontal gradient dividers (between rows) */
.glassy-material-table tbody tr:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(140,82,255,0.9),
    rgba(255,64,64,0.9)
  );
  pointer-events: none;
}

/* Vertical gradient dividers (between columns) */
.glassy-material-table td:not(:last-child)::after,
.glassy-material-table th:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(140,82,255,0.9),
    rgba(255,64,64,0.9)
  );
  pointer-events: none;
}

/* Gradient border at very bottom of the whole table */
.glassy-material-table::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(140,82,255,0.9),
    rgba(255,64,64,0.9)
  );
}

/* --- Shimmer overlay --- */
.shimmer-overlay::after {
  content: "";
  position: absolute;
  top: 0; 
  left: -150%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 20%,
    rgba(255,255,255,0.05) 30%,
    rgba(255,255,255,0) 40%
  );
  animation: shimmerMove 18s infinite linear;
  pointer-events: none;
}

@keyframes shimmerMove {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* --- Pills for stage titles --- */
.badge-pill-stage {
  display: block;
  background: #f1f5ff;
  color: #18428F;
  font-weight: 700;
  padding: 6px 14px;
  margin: 10px 0;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* --- Duotone icons --- */
.material-icon {
  font-size: 32px;
  --fa-primary-color: #18428F;
  --fa-secondary-color: #6CBE45;
  --fa-secondary-opacity: 1;
  margin-bottom: 8px;
  display: block;
}
.location-tables table.table tbody tr + tr td {
  box-shadow: inset 0 4px 0 transparent; /* reset grey */
  position: relative;
}

.location-tables table.table tbody tr + tr td::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
/*  background: linear-gradient(
    90deg,
    rgba(140,82,255,0.9),
    rgba(255,64,64,0.9)
  );
*/}
/* Red → Orange gradient */
.g2-red-orange2 {
 --start: rgba(230, 57, 70, 1);   /* Red with transparency */
  --end: rgba(255, 127, 80, 0.55);    /* Orange with transparency */
  --angle: 135deg;
  --tint: 0; /* 0 = normal, closer to 1 = lighter */
  background: linear-gradient(
    var(--angle), 
    var(--start) calc(100% * var(--tint)), 
    var(--end)
  );
  position: relative;
}

/* Optional helper for lighter tints */
.g2-red-orange2.tint-25 { --tint: 0.25; }
.g2-red-orange2.tint-50 { --tint: 0.50; }
.g2-red-orange2.tint-75 { --tint: 0.75; }
.stakeholder-swiper {
  width: 100%;
  padding: 0px 0;
}

.stakeholder-swiper img {
  max-height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
/* Equal height setup */
.returns-row {
  display: flex;
  flex-wrap: wrap;
}
.returns-row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* Glassy card base */
.returns-card {
  border-radius: 20px;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;

}

/* Chart */
.returns-chart {
  justify-content: center;
  align-items: center;
}
.returns-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px; /* optional, to match the rounded card */
}

/* Text card */
.returns-text {
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;

}
/* Heading */
.returns-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.returns-underline {
  width: 80px;
  height: 4px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #4fd1c5, #3182ce);
  border-radius: 2px;
}

/* Body text */
.returns-body {
  font-size: 1rem;
  line-height: 1.6;
  color: #f5f5f5;
}
.returns-text {
  position: relative; /* make it a positioning context */
  overflow: hidden;   /* contain the shimmer inside the card */
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
}

/* Shimmer overlay */
.returns-text::before {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.04) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer-slide 6s infinite;
  pointer-events: none; /* don't block text clicks */
  border-radius: inherit;
}

@keyframes shimmer-slide {
  0%   { left: -60%; }
  50%  { left: 110%; }
  100% { left: 110%; }
}
.outlook-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* equal height across columns */
}

.outlook-stat-card .card-body {
  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  text-align: left;       /* keep text centered */
  height: 100%;             /* fill parent card */
}
.outlook-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px; /* adjust if needed */
  z-index: 1;
  background: url('../images/home/is-1.jpg') center/cover no-repeat; /* your image */
}

/* Gradient overlay */
.outlook-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24,66,143,0.9), rgba(23,187,166,0.9));
  z-index: 0;
}

/* Ensure content sits above */
.outlook-card > * {
  position: relative;
  z-index: 1;
}
.outlook-card-purple {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px; /* adjust if needed */
  z-index: 1;
  background: url('../images/home/reg-5.jpg') center/cover no-repeat; /* your image */
}
/* Purple blurred gradient variant */
.outlook-card-purple::before {
  content: "";
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg,  rgba(123, 47, 247, 0.9),rgba(24, 66, 143, 0.9));
  z-index: 0;
}

/* Keep content above gradient */
.outlook-card-purple > * {
  position: relative;
  z-index: 1;
}

.outlook-card-purple {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px; /* adjust if needed */
  z-index: 1;
  background: url('../images/home/reg-5.jpg') center/cover no-repeat; /* your image */
}
/* Purple blurred gradient variant */
.outlook-card-purple::before {
  content: "";
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg,  rgba(123, 47, 247, 0.9),rgba(24, 66, 143, 0.9));
  z-index: 0;
}

/* Keep content above gradient */
.outlook-card-purple > * {
  position: relative;
  z-index: 1;
}
/* Universal Outlook Card (no image, no gradient) */
.outlook-card-universal {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px; /* adjust if needed */
  z-index: 1;
}

/* Make sure children always sit above any applied gradient */
.outlook-card-universal > * {
  position: relative;
  z-index: 1;
}

/* Pillar Base */
.pillar-icon {
  width: 60px;
  height: 140px;
  margin: 0 auto 20px auto;
  background: #f0f0f0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

/* Top & Base Caps */
.pillar-icon::before,
.pillar-icon::after {
  content: "";
  position: absolute;
  left: -10px;
  width: calc(100% + 20px);
  height: 15px;
  background: #0046ad;
  border-radius: 4px;
}
.pillar-icon::before { top: -15px; }
.pillar-icon::after { bottom: -15px; }

/* Fill element */
.pillar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: inherit;
}

/* Variants */

/* Pillar 1: animate between 50% and 100% */
.pillar-1 .pillar-fill {
  background: linear-gradient(to top, #17bba6, #a7f3d0);
  animation: fillHalfToFull 6s ease-in-out infinite;
}

/* Pillar 2: animate between 50% and 100% */
.pillar-2 .pillar-fill {
  background: linear-gradient(to top, #7b3fe4, #e9d5ff);
  animation: fillHalfToFull 6s ease-in-out infinite;
  animation-delay: 1s;
}

/* Pillar 3: animate between 95% and 100% */
.pillar-3 .pillar-fill {
  background: linear-gradient(to top, #e63946, #fecaca);
  animation: fillAlmostFull 6s ease-in-out infinite;
  animation-delay: 2s;
}

/* Keyframes */
@keyframes fillHalfToFull {
  0%   { height: 50%; }
  50%  { height: 100%; }
  100% { height: 50%; }
}

@keyframes fillAlmostFull {
  0%   { height: 95%; }
  50%  { height: 100%; }
  100% { height: 95%; }
}
/* Reuse location-tables + glassy-material-table */

.glance-step-icon {
    font-size: 40px;
    /* margin-bottom: 14px; */
    --fa-primary-color: #1f6dd8;
    --fa-secondary-color: #17bba6;
    --fa-secondary-opacity: 1;
    animation: floatIcon 3s ease-in-out infinite;
	 text-align: left !important;
  display: block; /* make it respect alignment */
}
/* ===========================
   Glance Table Styles (25/50/25)
   =========================== */

/* Table container */
.glassy-material-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.9);
}

/* Column widths */
.glance-table .col-left  { width: 25%; }
.glance-table .col-middle{ width: 50%; }
.glance-table .col-right { width: 25%; }

/* Table rows */
.glance-table tr {
  vertical-align: top;
}

/* Text + headings */

.glance-table h4,
.glance-table h5 {
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #243256;
}

.glance-table h4 { font-size: 20px; }
.glance-table h5 { font-size: 17px; }

/* FontAwesome icons inside middle cells */
.glance-table i {
  display: block;
  margin: 0 auto 10px auto;
  color: #1bbf72;
}

/* Gradient headers */
.glance-table thead tr th {
  padding: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  border: none;
  color: #fff;
}


/* Divider line for left column */

/* Responsive tweaks */
@media (max-width: 991px) {
  .glance-table .col-left,
  .glance-table .col-middle,
  .glance-table .col-right {
    width: 100% !important;
    display: block;
  }
  .glassy-material-table { border-radius: 12px; }
  .glance-table h4 { font-size: 18px; }
  .glance-table h5 { font-size: 16px; }
}
/* Equal height fix for 25/50/25 glance tables */
.glance-table tr {
  display: flex;            /* make each row flex */
  align-items: stretch;     /* make children same height */
}

.glance-table td {
  display: flex;            /* make each cell flex container */
  flex-direction: column;   /* stack content vertically */
}

.
.force-left {
  text-align: left !important;
}

.roadmap-row {
  display: flex;
  align-items: stretch;
}

.roadmap-card {
  text-align: left !important;
  align-items: flex-start !important;
}

.process-step-card2 {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    padding: 20px;
}
.process-step-card2 {
    flex: 1;
    display: flex
;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}
.process-step-card2 {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.process-step-card2 {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 24px;
    text-align: left;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step-card2 {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 32px 20px 28px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Ambition icon badge */
.ambition-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0046ad, #00c389);

  color: #fff;
  font-size: 32px;
  position: relative;
  animation: pulseGlow 3s infinite;
}

/* Pulse glow animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(23, 187, 166, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(23, 187, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(23, 187, 166, 0); }
}

.md-donut-simple {
  --size: 70px;
  --track: #e6e6e6;
  --fill: #17bba6;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: conic-gradient(var(--fill) 0deg, var(--track) 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #243256;
  position: relative;
}

.md-donut-simple::before {
  content: "";
  position: absolute;
  width: calc(var(--size) - 14px);
  height: calc(var(--size) - 14px);
  border-radius: 50%;
  background: #fff;
}

.md-donut-simple .donut-number {
  position: relative;
  z-index: 1;
}
.md-donut-simple {
  flex-direction: column; /* stack number + label */
}

.md-donut-simple .donut-label {
  position: relative;
  z-index: 1;            /* keep it above white circle */
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
  color: #243256;        /* or match your brand colour */
}

.thead-translucent {
  background: linear-gradient(
    135deg,
    #003399,   /* deep NSSF blue */
    #6600cc    /* NSSF purple */
  );
  opacity: 0.5; /* controls transparency but keeps purple */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
  .heading-icon {
    max-height: 40px;
    width: auto;
  }
.vision-step-icon {
    font-size: 100px;
    /* margin-bottom: 14px; */
    --fa-primary-color: #1f6dd8;
    --fa-secondary-color: #17bba6;
    --fa-secondary-opacity: 1;
   top:0
}
.w-10{
	width:10%!important;
}

/* Shared base for icons */
.ppp-icon-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 48px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  animation: spinSlow 20s linear infinite;
}

/* Gradients for each pillar (NSSF colours) */
.ppp-people {
  background: linear-gradient(135deg, #004d9d, #00c389); /* NSSF dark blue → green */
}
.ppp-planet {
  background: linear-gradient(135deg, #00c389, #17bba6); /* green → teal */
}
.ppp-profit {
  background: linear-gradient(135deg, #004d9d, #6a1b9a); /* dark blue → purple */
}

/* Slow spin animation */
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Icon hover effect for extra punch */
.ppp-icon-wrap:hover {
  animation: spinFast 3s linear infinite;
  transform: scale(1.05);
}
@keyframes spinFast {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* ================================
   Outlook Fade With Captions
   ================================ */
/* Wrapper */
.outlook-fade-with-captions {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* Slides */
.fade-slide-with-caption {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s ease;
  border-radius: 16px;
  overflow: hidden;
}

.fade-slide-with-caption.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  z-index: 2;
}

/* Image */
.fade-slide-with-caption img {
  border-radius: 16px;
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* Zoom effect */
.fade-slide-with-caption.active:hover img {
  transform: scale(1.05);
}

/* Overlay */
.fade-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(0,77,157,0.8), rgba(0,195,255,0.7));
  color: #fff!important;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Show overlay on hover */
.fade-slide-with-caption:hover .fade-overlay {
  opacity: 1;
}

/* Info icon */
.read-more-icon {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,195,255,0.85), rgba(0,77,157,0.85));
  color: #fff;
  z-index: 3;
  transition: opacity 0.3s ease;
}

.read-more-icon i {
  font-size: 1.2rem;
}

/* Hide icon when overlay is shown */
.fade-slide-with-caption:hover .read-more-icon {
  opacity: 0;
}



/* Top row: text (2/3) + portrait (1/3) */
.hiinnovator-grid .top-row {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Bottom row: wide (50%) + landscape (50%) */
.hiinnovator-grid .bottom-row {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
}

/* Card base */
.hiinnovator-grid .grid-card {
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 20px;
}

/* Text card */
.hiinnovator-grid .text-card {
  color: #fff;
	display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical center */

  height: 100%;              /* make sure it fills its parent */
}

/* Portrait card */
.hiinnovator-grid .portrait-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hiinnovator-grid .portrait-card .caption {
  font-size: 0.85rem;
  margin-top: 10px;
  text-align: center;
  color: #333;
}

/* Wide + landscape images */
.hiinnovator-grid .wide-card img,
.hiinnovator-grid .landscape-card img {
  width: 100%;
  height: auto;
  object-fit: cover!important;
}
/* Shimmer animation for outer card */
.card.shimmer {
  position: relative;
  overflow: hidden;
}

.card.shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shimmerMove 3s infinite;
}

@keyframes shimmerMove {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* Glassy effect for text card */
.hiinnovator-grid .text-card {
  background: rgba(255, 255, 255, 0.08); /* light frosted background */
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
/* Landscape card - force height */
.hiinnovator-grid .landscape-card {
  display: flex;
  align-items: stretch;
  height: 100%;
}

/* Image fills full height */
.hiinnovator-grid .landscape-card img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block;
}
/* Wrapper to position icon */
.image-wrapper {
  position: relative;
  display: inline-block;
}

/* Icon hint overlay */
.lightbox-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 50%;
  pointer-events: none; /* don't block the link click */
  transition: all 0.3s ease;
}

/* Optional hover effect */
.image-wrapper:hover .lightbox-hint {
  background: rgba(0,195,255,0.8);
}
/* Wrapper */
/* Wrapper */
.image-hover-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 12px;
}

/* Image */
.image-hover-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

/* Caption overlay */
.hover-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none; /* make sure click still hits the img */
}

/* Reveal on hover */
.image-hover-wrap:hover .hover-caption {
  opacity: 1;
  transform: translateY(0);
}
/* Wrapper */
.sexy-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* Inner */
.sexy-card-inner {
  position: relative;
}

/* Image */
.sexy-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  transition: transform 0.5s ease;
}

.read-more-icon {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  opacity: 0.75;
  pointer-events: none; /* don’t block lightbox click */

  /* Perfect circle */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Gradient + styling */
  background: linear-gradient(135deg, #00c3ff, #004d9d);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.read-more-icon i {
  font-size: 20px;
  color: #fff!important;
}

/* Hover state */
.sexy-card:hover .read-more-icon {
  transform: translateX(-50%) scale(1.1);
  opacity: 0; /* fades out as overlay slides up */
}


/* Pulse hover effect */
.sexy-card:hover .read-more-icon {
  transform: translateX(-50%) scale(1.1);
  opacity: 0; /* fades out when overlay comes up */
}


/* Overlay */
.sexy-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(0,195,255,0.7), rgba(0,77,157,0.9));
  color: #fff;
  padding: 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
  text-align: center;
}

/* Caption */
.sexy-caption {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 90%;
}

/* Hover effect */
.sexy-card:hover img {
  transform: scale(1.05);
}

.sexy-card:hover .sexy-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Fade icon out when overlay shows */
.sexy-card:hover .read-more-icon {
  opacity: 0;
}

.sexy-overlay {
  pointer-events: none; /* overlay won't eat clicks */
}
.sexy-overlay .sexy-caption,
.sexy-overlay .read-more-icon {
  pointer-events: auto; /* caption/icon still interactive if needed */
}
.fin-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px; /* adjust if needed */
  z-index: 1;
  background: url('../images/home/sv-17.jpg') bottom/cover no-repeat; /* your image */
}

/* Gradient overlay */
.fin-card::before {
  content: "";
  position: absolute;
  inset: 0;
background: linear-gradient(135deg, rgba(24,66,143,0.9), rgba(0,77,157,0.9));
	z-index: 0;
}

/* Ensure content sits above */
.fin-card > * {
  position: relative;
  z-index: 1;
}

/* Stakeholder showcase image cards */
/* Stakeholder showcase image cards */
.stakeimg {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 8px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.stakeimg:hover {
  transform: translateY(-8px);
}

/* Swiper pagination bar styling */
.nssfSwiper .swiper-pagination {
  position: relative;
  margin-top: 25px; /* spacing from images */
}

.nssfSwiper .swiper-pagination-progressbar {
  background: rgba(220, 220, 220, 0.35); /* brighter track so it’s visible */
  height: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.nssfSwiper .swiper-pagination-progressbar-fill {
  background: linear-gradient(90deg, #18428F, #17BBA6); /* NSSF dark blue → green */
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(23,187,166,0.6); /* subtle glow */
  transition: width 0.4s ease;
}

.gradient-reverse {
  position: relative;
  z-index: 0;
}

.gradient-reverse::before {
  content: "";
  position: absolute;
  inset: 0; /* full cover */
  background: inherit;
  transform: scaleX(-1);
  border-radius: inherit; /* respect rounded corners */
  z-index: -1;
  pointer-events: none; /* don’t interfere with clicks */
}
/* Dark Blue → Turquoise */
.bg-overlay.bt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(24, 66, 143, 0.85),   /* dark blue */
        rgba(23, 187, 166, 0.75),  /* turquoise */
        rgba(255, 255, 255, 0.35)  /* soft highlight */
    );
    background-size: 300% 300%;
    animation: auroraFlow 14s ease-in-out infinite;
    z-index: 1;
}

/* Green → Dark Blue */
.bg-overlay.gb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(23, 187, 166, 0.85),  /* turquoise/green */
        rgba(24, 66, 143, 0.75),   /* dark blue */
        rgba(255, 255, 255, 0.35)  /* soft highlight */
    );
    background-size: 300% 300%;
    animation: auroraFlow 14s ease-in-out infinite;
    z-index: 1;
}
.md-donut.custom-label::after {
  content: attr(data-label);   /* pulls in the custom label */
  font-size: 14px;
  font-weight: 700;
  color: #0046ad;  /* brand blue */
}
.md-donut::after {
  font-size: 14px;
  font-weight: 700;
  color: #0046ad; /* NSSF dark blue */
  text-align: center;
}

/* Wrapper */
.matrix-tables .table-responsive {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

/* Table core */
.matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}
.matrix-table thead th {
  border: none !important;
  padding: 18px 20px;
}
.matrix-table tbody td {
  background: rgba(255,255,255,0.55);
  border: none !important;
  padding: 16px 18px;
  position: relative;
  vertical-align: top;
}

/* Gradient dividers */
.matrix-table tbody td + td::after,
.matrix-table thead th + th::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(140,82,255,0.9), rgba(255,64,64,0.9));
}
.matrix-table tbody tr + tr td::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(140,82,255,0.9), rgba(255,64,64,0.9));
}

/* Pills */
.matrix-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #18428F, #6C3FB6);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  text-align: center;
}

/* Interest column gradient */
.interest-col {
  background: linear-gradient(
    180deg,
    rgba(24, 66, 143, 0.75),
    rgba(108, 63, 182, 0.45)
  );
  color: #fff;
  text-align: center;
  vertical-align: middle !important;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.interest-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
}
.matrix-pill.vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 10px;
}

/* Rounded corners */
.matrix-table thead tr:first-child th:first-child { border-top-left-radius: 12px; }
.matrix-table thead tr:first-child th:last-child  { border-top-right-radius: 12px; }
.matrix-table tbody tr:last-child td:first-child  { border-bottom-left-radius: 12px; }
.matrix-table tbody tr:last-child td:last-child   { border-bottom-right-radius: 12px; }
.matrix-table tbody tr:nth-child(2)::after, /* Moderate */
.matrix-table tbody tr:nth-child(3)::after { /* Low */
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #18428f, #6a3edb);
}
/* Style the Interest row cell */
.matrix-table .interest-row .interest-col {
  background: linear-gradient(
    180deg,
    rgba(24, 66, 143, 0.75),
    rgba(108, 63, 182, 0.45)
  );
  color: #fff;
  text-align: top;
  vertical-align: middle;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.2);
}

/* Gradient divider lines for High, Moderate, Low rows */
.matrix-table tbody tr.high-row::after,
.matrix-table tbody tr.moderate-row::after,
.matrix-table tbody tr.low-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #18428f, #6a3edb);
}
/* Vertical gradient line for the Interest + High/Moderate/Low column */
.matrix-table tbody td.interest-col::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #18428f, #6a3edb);
}
/* Interest (vertical text, no pill) */
.interest-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

/* Influence (footer full-width text, no pill) */
.influence-label {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

/* Ensure footer row is full gradient */
.matrix-table tbody tr:last-child td {
  background: linear-gradient(90deg, #18428f, #6a3edb);
  color: #fff;
}
/* Remove gradient line on the very last column */
.matrix-table tbody td:last-child::after,
.matrix-table thead th:last-child::after {
  content: none !important;
}
/* TEST shimmer overlay with color */
.matrix-tables .table-responsive::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 250%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 0, 0, 0.03) 0%,   /* bright red */
    rgba(0, 255, 0, 0.02) 50%,  /* bright green */
    rgba(0, 0, 255, 0.03) 100%  /* bright blue */
  );
  animation: shimmer 5s infinite linear;
  pointer-events: none;
  z-index: 0;
  border-radius: 20px;
	 /* Glassy blur effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Shimmer animation */
@keyframes shimmer {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50%);
  }
}

/* Keep table above overlay */
.matrix-tables .matrix-table {
  position: relative;
  z-index: 1;
}
.fa-4x {
    font-size: 4.55em;
}

.gr-pute2 {
 background: linear-gradient(
    135deg,
    rgba(108, 63, 182, 0.75),  /* purple with opacity */
    rgba(23, 187, 166, 1)   /* teal with opacity */
  );
}
.gr-purple-blue-trans {
  background: linear-gradient(
    135deg,
    rgba(140, 82, 255, 0.4),   /* purple with 40% opacity */
    rgba(24, 66, 143, 0.4)     /* blue with 40% opacity */
  );
}

.glassy-material-table thead tr {
  border-radius: 0 !important;
}

.glassy-material-table thead th:first-child,
.glassy-material-table thead th:last-child {
  border-radius: 0 !important;
}
/* Testimonial Block */
.testimonial-block {
  margin-bottom: 60px;
  position: relative;
}

/* Image wrapper */
.testimonial-image-wrapper {
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.testimonial-block:hover .testimonial-image-wrapper {
  transform: translateX(-5px); /* subtle nudge on hover */
}



/* Optional shimmer */
.testimonial-card-unique.shimmer-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0) 70%
  );
  animation: shimmer 6s infinite linear;
}

@keyframes shimmer {
  100% { left: 100%; }
}

/* Main card */
.testimonial-card-unique {
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 35px;
  position: relative;
  overflow: visible; /* let image break out */
}

/* Text area */
.testimonial-text-unique {
  padding-right: 20px;
}

/* Icon */
.testimonial-icon-unique {
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
  color: var(--c-blue, #18428f);
}

/* Quote */
.testimonial-quote-unique {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #243256;
}

/* Author */
.testimonial-author-unique {
  font-size: 0.95rem;
  color: #18428f;
  margin: 0;
}

/* Image popout */
.testimonial-image-popout {
  position: relative;
  z-index: 2;
  margin-top: -100px;  /* pop upward */
  margin-bottom: -35px; /* pop downward */
}

.testimonial-img-unique {
  width: 100%;
  max-width: 320px; /* larger than card */
  border-radius: 20px;
  object-fit: cover;
}
/* Image wrapper */
.before-step {
  height: 100%;
}

.before-step img {
  object-fit: cover;
  border-radius: 20px;
  height: 100%;     /* Fill column height */
  width: 100%;
  display: block;
}

/* Timeline row alignment */
.before-timeline-row {
  position: relative;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;  /* Equal height columns */
}

/* Text content card */
.before-step-card {
  
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
  padding: 24px;
	position:relative;
}

/* Responsive */
@media (max-width: 767.98px) {
  .before-step img {
    height: auto; /* natural scaling */
  }
}
.before-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 50%);
    height: 3px;
    background: linear-gradient(90deg, #1f6dd8, #17bba6, #7a47c2);
    border-radius: 3px;
    opacity: .4;
    z-index: -1;
}

.before-step-icon {
    font-size: 120px;
    /* margin-bottom: 14px; */
    --fa-primary-color: #1f6dd8;
    --fa-secondary-color: #17bba6;
    --fa-secondary-opacity: 1;
    animation: floatIcon 3s ease-in-out infinite;
}



/* Gradient colour variations */
.icon-blue {
  background: linear-gradient(135deg, #6EC1E4, #4A90E2);
}

.icon-teal {
  background: linear-gradient(135deg, #3AD29F, #1F9D89);
}

.icon-purple {
  background: linear-gradient(135deg, #A97EF8, #6B4BB5);
}

.icon-orange {
  background: linear-gradient(135deg, #FFA873, #FF6B3B);
}
/* Glassy Quote Card */
/* Glassy Quote Card with Unique Shimmer */
.quote-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08); /* glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 4px solid #ffffff;
  border-radius: 14px;
  padding: 25px 30px;
  color: #ffffff;
  max-width: 800px;
  margin: 20px auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden; /* keep shimmer inside */
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
}

/* Shimmer only inside quote-card */
.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  animation: quoteShimmer 6s infinite;
}

@keyframes quoteShimmer {
  0% {
    left: -150%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/* Glassy Quote Card with Gradient Border + Shimmer */
.colour-quote {
  position: relative;
  background: rgba(255, 255, 255, 0.08); /* glassy */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 25px 25px 25px 40px; /* extra left padding for border */

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 0;
}

.colour-quote blockquote {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Gradient border strip */
.colour-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px; /* thickness of border */
  height: 100%;
  border-radius: 14px 0 0 14px; /* curves only left side */
  background: linear-gradient(180deg, #18428f, #17bba6);
  z-index: 2;
}

/* Shimmer overlay */
.colour-quote::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  animation: colourQuoteShimmer 6s infinite;
  z-index: 1;
}

@keyframes colourQuoteShimmer {
  0% { left: -150%; }
  50% { left: 100%; }
  100% { left: 100%; }
}
/* Scoped smaller stat icons for NSSF engagement tables */
.nssf-engagement-2025 .stat-icon-small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  background: radial-gradient(120% 120% at 30% 20%,
    color-mix(in oklab, var(--c1), white 35%), var(--c1));
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15), inset 0 0 10px rgba(255, 255, 255, .3);
}
.digital-impact-timeline {
  position: relative;
}

.digital-impact-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #00c389, #17bba6, #7b2ff7, #f107a3, #ff6a00, #ffb347);
  border-radius: 6px;
  z-index: 0;
}

.digital-impact-timeline .stat-card {
  position: relative;
  z-index: 1;
}
/* Timeline line behind the 4 cards */
.timeline-row {
  position: relative;
}

.timeline-row::before {
  content: "";
  position: absolute;
  top: 50%; /* halfway down the row */
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(
    90deg,
    #00c389,
    #17bba6,
    #7b2ff7,
    #f107a3,
    #ff6a00,
    #ffb347
  );
  z-index: 0; /* behind cards */
}

/* make sure the cards sit above the line */
.timeline-row .card {
  position: relative;
  z-index: 1;
}
/* Animate only the numbers in the Social Media Impact section */
.digital-index-timeline .stat-number2 {
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  animation: statNumber2Fade 0.6s ease forwards;
}

/* stagger animation for each number in a card */
.digital-index-timeline .stat-entry2:nth-child(1) .stat-number2 { animation-delay: 0.2s; }
.digital-index-timeline .stat-entry2:nth-child(2) .stat-number2 { animation-delay: 0.4s; }
.digital-index-timeline .stat-entry2:nth-child(3) .stat-number2 { animation-delay: 0.6s; }

@keyframes statNumber2Fade {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nssf-engagement-2025 .stat-number2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: .5px;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--c1),
 color-mix(in oklab, var(--c1), white 35%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
}
.timeline-card-4 {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fin-step-icon {
    font-size: 60px;
    --fa-primary-color: #1f6dd8;
    --fa-secondary-color: #17bba6;
    --fa-secondary-opacity: 1;
    animation: floatIcon 3s ease-in-out infinite;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.4);
}

.play-button i {
  font-size: 2rem;
  color: white;
}
..media-equal {
  height: 350px; /* shared height */
  overflow: hidden;
  border-radius: 1rem;
}

.media-equal img,
.media-equal video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill both width & height */
  border-radius: 1rem;
  display: block;
}

/* Unique Impact Table styling */
.impact-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.impact-thead th {
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
}

.impact-header-row {
  border-radius: 12px 12px 0 0;
}

.impact-table table {
  border-collapse: separate;
  border-spacing: 0;
}

.impact-table td, 
.impact-table th {
  padding: 15px;
  text-align: center;
  vertical-align: middle;

}


.impact-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}
/* Box shadow and rounding for whole table */
.impact-table {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

/* Left align all table content */
.impact-table th,
.impact-table td {
  text-align: left !important;
  padding: 14px 18px;
  vertical-align: middle;
}

.impact-tables table.table tbody tr + tr td::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;

}
/* Ensure each row is positioned */
.impact-tables table.table tbody tr {
  position: relative;
}
/* Ensure positioning works */
.location-tables table.table tbody tr {
  position: relative;
}

/* Sky blue + turquoise blurred gradient variant */
.outlook-card-skyblue {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px; /* adjust if needed */
  z-index: 1;
  background: url('../images/home/me-3.jpg') center/cover no-repeat; /* your image */
}

.outlook-card-skyblue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(23, 187, 166, 0.9) ,rgba(0, 191, 255,0.9)   /* NSSF Sky Blue */
      /* NSSF Turquoise */
  );
  z-index: 0;
}

/* Keep content above gradient */
.outlook-card-skyblue > * {
  position: relative;
  z-index: 1;
}
.emp-masonry-org {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3 equal-width columns */
  grid-auto-rows: auto; /* height adjusts to content */
  gap: 20px;
}
.outlook-card-green {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px; /* adjust if needed */
  z-index: 1;
  background: url('../images/home/is-1.jpg') center/cover no-repeat; /* your image */
}

/* Gradient overlay */
.outlook-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24,66,143,0.9), rgba(23,187,166,0.9));
  z-index: 0;
}

/* Ensure content sits above */
.outlook-card > * {
  position: relative;
  z-index: 1;
}

.outlook-card-nssf {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px; /* adjust if needed */
  z-index: 1;
  background: url('../images/home/me-3.jpg') center/cover no-repeat; /* your image */
}

/* Gradient overlay */
.outlook-card-nssf::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24,66,143,0.9), rgba(0,113,188,0.9)); /* dark blue + primary blue */
  z-index: 0;
}

/* Ensure content sits above */
.outlook-card-nssf > * {
  position: relative;
  z-index: 1;
}
.outlook-card-nssf-orange {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px; /* adjust if needed */
  z-index: 1;
  background: url('../images/home/legal-bg.jpg') center/cover no-repeat; /* replace per card */
}

/* Orange-red gradient overlay */
.outlook-card-nssf-orange::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(227, 66, 52, 0.92),   /* NSSF red */
    rgba(255, 138, 0, 0.92)    /* NSSF orange */
  );
  z-index: 0;
}

/* Content above overlay */
.outlook-card-nssf-orange > * {
  position: relative;
  z-index: 1;
  color: #fff; /* white text for contrast */
}

/* Base copy for employee pillars */
.employee-pillar {
  width: 60px;
  height: 140px;
  margin: 0 auto 20px auto;
  background: #f0f0f0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.employee-pillar::before,
.employee-pillar::after {
  content: "";
  position: absolute;
  left: -10px;
  width: calc(100% + 20px);
  height: 15px;
  background: #ccc; /* neutral cap */
  border-radius: 4px;
}
.employee-pillar::before { top: -15px; }
.employee-pillar::after { bottom: -15px; }

.employee-pillar .pillar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: inherit;
}

/* Animated Pillars */

/* Male Managers - 74% - Blue */
.male-managers .pillar-fill {
  background: linear-gradient(to top, #0046ad, #5faaff);
  animation: fill74 6s ease-in-out infinite;
}

/* Female Managers - 26% - Orange */
.female-managers .pillar-fill {
  background: linear-gradient(to top, #ff7b2f, #ffd5b0);
  animation: fill26 6s ease-in-out infinite;
  animation-delay: 0.5s;
}

/* Male Employees - 53% - Teal */
.male-employees .pillar-fill {
  background: linear-gradient(to top, #17bba6, #a7f3d0);
  animation: fill53 6s ease-in-out infinite;
  animation-delay: 1s;
}

/* Female Employees - 47% - Purple */
.female-employees .pillar-fill {
  background: linear-gradient(to top, #7b3fe4, #e9d5ff);
  animation: fill47 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Keyframes */

/* Male Managers - animate around 74% */
@keyframes fill74 {
  0%, 100% { height: 65%; }
  50%      { height: 74%; }
}

/* Female Managers - animate around 26% */
@keyframes fill26 {
  0%, 100% { height: 20%; }
  50%      { height: 26%; }
}

/* Male Employees - animate around 53% */
@keyframes fill53 {
  0%, 100% { height: 45%; }
  50%      { height: 53%; }
}

/* Female Employees - animate around 47% */
@keyframes fill47 {
  0%, 100% { height: 40%; }
  50%      { height: 47%; }
}

/* Male Managers - 74% - Blue */
.male-managers .pillar-fill {
  height: 74%;
  background: linear-gradient(to top, #0046ad, #5faaff);
}

/* Female Managers - 26% - Orange */
.female-managers .pillar-fill {
  height: 26%;
  background: linear-gradient(to top, #ff7b2f, #ffd5b0);
}

/* Male Employees - 53% - Teal */
.male-employees .pillar-fill {
  height: 53%;
  background: linear-gradient(to top, #17bba6, #a7f3d0);
}

/* Female Employees - 47% - Purple */
.female-employees .pillar-fill {
  height: 47%;
  background: linear-gradient(to top, #7b3fe4, #e9d5ff);
}

.regulators-step-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    padding: 24px;
    position: relative;
}
.regulators-step-icon {
    font-size: 90px;
    /* margin-bottom: 14px; */
    --fa-primary-color: #1f6dd8;
    --fa-secondary-color: #17bba6;
    --fa-secondary-opacity: 1;
    animation: floatIcon 3s ease-in-out infinite;
}

.regulators-line {
    position: absolute;
    top: 50%;
    left: -80px;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 50%);
    height: 3px;
    background: linear-gradient(90deg, #1f6dd8, #17bba6, #7a47c2);
    border-radius: 3px;
    opacity: .4;
    z-index: -1;
}

/* TAX CHART */
/* Base pillar setup */
.tax-chart .tax-pillar {
  width: 70px;
  height: 180px;
  margin: 0 auto 20px auto;
  border-radius: 12px;
  background: rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
}

/* Fill */
.tax-chart .pillar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 12px;
  animation: fillPulse 4s ease-in-out infinite;
}

/* Different colours + target heights */
.tax-chart .tax-collected .pillar-fill {
  background: linear-gradient(180deg, #7D5FFF, #18428F); /* purple → blue */
  --target-height: 25%; /* boosted for visibility */
  animation-delay: 0.3s;
}

.tax-chart .tax-vat .pillar-fill {
  background: linear-gradient(180deg, #0FD6FF, #5BC0EB); /* teal → sky blue */
  --target-height: 15%; /* boosted for visibility */
  animation-delay: 0.6s;
}

.tax-chart .tax-income .pillar-fill {
  background: linear-gradient(180deg, #3D8B37, #18428F); /* green → blue */
  --target-height: 75%; /* slightly reduced */
  animation-delay: 0.9s;
}

/* Animation keyframes: fill → unfill → repeat */
@keyframes fillPulse {
  0%   { height: 0; }
  50%  { height: var(--target-height); }
  100% { height: 0; }
}

/* Headings */
.tax-chart h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
/* Tax Values 2025 */
.tax-values-2025 .value-card {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .58));
  border: 1px solid rgba(255, 255, 255, .45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .12);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}

.tax-values-2025 .value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .18);
}

.tax-values-2025 .value-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  text-align: left; /* Force left alignment */
}

.tax-values-2025 .value-icon {
  flex-shrink: 0;
  color: var(--nssf-blue, #18428F);
  margin-top: 4px; /* aligns icon with text */
}

.tax-values-2025 .value-text {
  flex: 1;
}

.tax-values-2025 .value-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.4rem 0;
  color: #222;
  text-align: left;
}

.tax-values-2025 .value-text p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

/* Left gradient accent */
.tax-values-2025 .value-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, #34c1b5 0%, #2f6bff 100%);
  opacity: .9;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

/* Shimmer effect */
.tax-values-2025 .value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 20%, rgba(255,255,255,.22) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-140%);
  animation: tax-sheen 8s linear infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: .18;
}

@keyframes tax-sheen {
  100% { transform: translateX(140%); }
}

/* Responsive */
@media (max-width: 767px) {
  .tax-values-2025 .value-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }
  .tax-values-2025 .value-card::before {
    width: 100%;
    height: 6px;
    top: 0;
    left: 0;
    border-radius: 20px 20px 0 0;
  }
}
.assurance-row .image-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.assurance-row .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fills card completely */
  border-radius: 20px;   /* match your card corners */
}
.performance-bars {
  display: flex;
  justify-content: center; /* centers them horizontally */
  gap: 30px;               /* spacing between donuts */
  flex-wrap: wrap;         /* allows wrapping on smaller screens */
  margin: 20px 0;
}

/* === Outer card container === */
.esg-outer-card {
  border-radius: 20px;
  padding: 30px;
}

/* === Masonry Grid === */
.esg-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3-column desktop grid */
  gap: 20px;
}

/* Environmental spans full width */
.esg-card-wide {
  grid-column: span 3;
}

/* === Cards === */
.esg-card {
  background: rgba(250,250,250,0.2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
}

/* Headings inside cards */
.esg-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color:#fff;
}

/* Text lists */
.esg-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.4;
}
.esg-card ul li i {
  color: #17B0A4;
}

/* === Image Cards === */
.esg-card.esg-image {
  background-size: cover;
  background-position: center;
  min-height: 250px;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.esg-card.esg-image .overlay {
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 20px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Responsive Adjustments === */

/* Tablet (576px – 991px): 2-column layout */
@media (max-width: 991px) and (min-width: 576px) {
  .esg-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .esg-card-wide {
    grid-column: span 2;
  }
}

/* Mobile (< 576px): single column */
@media (max-width: 575px) {
  .esg-masonry-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .esg-card-wide {
    grid-column: span 1;
  }
}
/* Glassy card style for each accordion item */
.accordion .ac-item {
  border-radius: 18px;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Hover & active lift effect */
.accordion .ac-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Accordion titles */
.accordion .ac-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  font-weight: 700;
  font-size: 16px;
  color: #18428f;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

/* Title hover glow */
.accordion .ac-title:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Icons inside titles */
.accordion .ac-title img {
  max-width: 52px;   /* slightly smaller so edges don’t get cut */
  max-height: 52px;
  padding: 4px;      /* add breathing room */
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  object-fit: contain; /* keeps proportions */
  border-radius: 25%;
}
.accordion .ac-title img:hover {
  transform: scale(1.05);
}

/* Accordion content */
.accordion .ac-content {
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeIn 0.35s ease;
}

/* List styles inside content */
.accordion .ac-content .list-icon li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #18428f;
  line-height: 1.5;
}

.accordion .ac-content .list-icon i {
  margin-right: 10px;
  font-size: 1rem;
  opacity: 0.85;
  color: #18428f;
}

/* Subtle fade animation for opening */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.gradient-soft-overlay {
  background: linear-gradient(
    135deg, 
    rgba(0, 128, 255, var(--grad-opacity, 0.85)) 0%,   /* blue */
    rgba(0, 200, 150, var(--grad-opacity, 0.85)) 100%  /* teal */
  );
}

.gr-blor-soft {
  background-image: linear-gradient(
    var(--gr-angle, 135deg),
    rgba(0, 128, 255, var(--grad-opacity, 0.65)),   /* Blue #0080FF */
    rgba(255, 128, 0, var(--grad-opacity, 0.65))    /* Orange #FF8000 */
  );
}
.w-15 { width: 13%; }
.w-35 { width: 35%; }
.w-6col {
  width: 16.6667%; /* 100% ÷ 6 */
}

/* ===============================
   Executive Slider (based on Leader Section)
   =============================== */

.executive-slider .row {
  display: flex;
  align-items: stretch;
}

/* Left image card */
.executive-slider .executive-photo,
.executive-slider .leader-photo {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  height: 100%;
}
.executive-slider .executive-photo img,
.executive-slider .leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right text column */
.executive-slider .col-md-8 {
  display: flex;
  align-items: center;
  position: relative;
}

/* Text card */
.executive-slider .leader-text {
  margin-left: 0px; /* overlap */
  height: 80%;        /* same as your working code */
  width: 100%;
  border-radius: 16px;
  color: #fff;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 60px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.executive-slider .leader-text .card-body {
  width: 100%;
  margin: 0;
 padding: 0 40px 0 40px; /* add padding-right */
  word-break: normal;  /* default */
  white-space: normal; /* allow wrapping */
}

/* Divider */
.executive-slider .soft-divider {
  border: 0;
  height: 1px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(140,82,255,0.9), rgba(255,64,64,0.9));
  width: 100%;
  margin: 10px 0;
}
.leader-text .swiper-slide .card-body {
  padding: 40px 0;   /* top/bottom 40px, left/right 60px */
  white-space: normal;
  overflow-wrap: break-word;
}
.executive-slider .leader-text .swiper-slide {
  padding: 0 60px;  /* top/bottom 0, left/right 60px */
  box-sizing: border-box; /* include padding in width */
}
/* Responsive */
@media (max-width: 991.98px) {
  .executive-slider .leader-text {
    margin-left: 0;
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
  }
}

/* Swiper controls */
/* Executive Slider: Smaller navigation arrows */
.executive-slider .swiper-button-next,
.executive-slider .swiper-button-prev {
  width: 25px!important;       /* smaller width */
  height: 25px!important;      /* smaller height */
  font-size: 12px!important;   /* scale down the arrow icon */
  color: rgba(250,250,250,0.6);
  
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.2s ease;
}
.executive-slider .swiper-button-next:after,
.executive-slider .swiper-button-prev:after {
  font-size: 25px !important; /* override */
}
.executive-slider .swiper-button-next:hover,
.executive-slider .swiper-button-prev:hover {

  transform: scale(1.1);
}

/* Adjust arrow position slightly inward if needed */
.executive-slider .swiper-button-next {
  right: 10px;
}

.executive-slider .swiper-button-prev {
  left: 10px;
}

.executive-slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}
.executive-slider .swiper-pagination-bullet-active {
  background: #ffd27f;
  opacity: 1;
}

/* Profile image full */
.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Equal buttons */
.profile-actions .btn-profile {
  width: 100%;
  margin: 6px 0;
  border-radius: 50px;
  padding: 12px 18px;
  font-weight: 600;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.profile-actions .btn-profile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.lineheight-custom li {
  line-height: 1.8;     /* taller line height */
  margin-bottom: 8px;   /* small gap under each li */
}
.lineheight-custom2 li {
  line-height: 1.6;     /* taller line height */
  margin-bottom: 6px;   /* small gap under each li */
}

#boardTeddy .card {
  display: flex;
  align-items: center; /* vertical centering */
}

#boardTeddy .sdg-icon-circle {
  margin-right: 15px; /* space between icon and list */
}
#boardTeddy .card-body {
  display: flex;
  align-items: center;
}
#trainingOwor .card-body {
  display: flex;
  align-items: center;
}
#certificationsOgong .card-body {
  display: flex;
  align-items: center;
}
#othermembershipLyomoki .card-body {
  display: flex;
  align-items: center;
}
#qualificationsBigirwa .card-body {
  display: flex;
  align-items: center;
}
#expertiseGgoobi .card-body {
  display: flex;
  align-items: center;
}
/* Foreword card (copy of outlook-card, no background image) */
.foreword-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px;
  z-index: 1;
/*  background: rgba(255,255,255,0.05); /* subtle glassy background */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
}

/* Gradient overlay (unique for foreword) */
.foreword-card::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 0;
  border-radius: 20px;
}

.foreword-card > * {
  position: relative;
  z-index: 1;
}

/* Timeline line reaching foreword card */
.foreword-timeline-line {
  position: absolute;
  top: 40px;
  bottom: 80px;
  left: 150px;
  width: 4px;
  background: linear-gradient(
    180deg,
    rgba(0, 82, 155, 0.6),   /* NSSF Primary Blue */
    rgba(0, 158, 96, 0.5)    /* NSSF Green */
  );
  border-radius: 5px;
  background-size: 100% 200%;
  animation: gradientScroll 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes gradientScroll {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}


/* Glassy circular icon holder */
.timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: #fff;
    background: linear-gradient(135deg, rgba(102,45,145,0.9), rgba(242,101,36,0.9)); /* NSSF Purple → Red */
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
}
.foreward-underline {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, #662D91, #F26524);
    margin-bottom: 24px;
}

@media (min-width: 992px) {
  .gov-height-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 240px; /* adjust as needed */
  }
  /* Vertically center content inside */
  .vcenter-card {
    flex: 1;                        /* take available height */
    display: flex;                  
    justify-content: center;        /* horizontal centre (optional) */
    text-align: left;             /* if you want text centred */
  }
  
  .for-height-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 220px; /* adjust as needed */
  }
}

/* ====== Government glance cards (3 x 2 grid) ====== */
/* layout-only spacing scoped to gov-glance */
.gov-glance-row > [class*='col-'] { padding: 15px; }
.gov-glance-card { margin-bottom: 30px; width: 100%; }

/* back card */
.gov-glance-card {
  position: relative;
  border-radius: 24px;
  height: 200px; /* desktop height */
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  overflow: visible;
 
}

/* stagger */
.gov-glance-row > [class*='col-']:nth-child(2) .gov-glance-card { animation-delay: 2s; }
.gov-glance-row > [class*='col-']:nth-child(3) .gov-glance-card { animation-delay: 4s; }

@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ---- docking controls ---- */
.gov-glance-card { --front-left: 20px; --front-right: 20px; }
.gov-glance-card.gov-glance-right { --front-left: 20px; --front-right: 20px; }
.gov-glance-card.gov-glance-left  { --front-left: 0px;  --front-right: 80px; }

/* front frosted card */
.gov-glance-front {
  position: absolute;
  top: -30px;
  left: var(--front-left);
  right: var(--front-right);
  height: auto;
  min-height: calc(100% - 0px);
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 30px 20px 20px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  overflow: hidden;
}

/* shimmer */
.gov-glance-front::before{
  content:"";
  position:absolute; inset:0;
  left:-150%; width:250%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 80%);
  animation: shimmer 10s linear infinite;
}
@keyframes shimmer { from {left:-150%;} to {left:150%;} }

/* icon & text */
.gov-glance-icon{
  position:absolute; left:30px; top:30px;
  width:55px; height:55px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; color:#fff; box-shadow:0 3px 12px rgba(0,0,0,0.15);
}
.gov-glance-body{ padding-left:90px; }
.gov-glance-body p{ font-size:14px; margin:0; }

/* mobile: auto height + recenter */
@media (max-width:768px){
  .gov-glance-card { height: auto; }
}
@media (max-width:576px){
  .gov-glance-card.gov-glance-right { --front-left:16px; --front-right:16px; }
  .gov-glance-card.gov-glance-left  { --front-left:16px; --front-right:16px; }
}
.gov-step-icon {
    font-size: 80px;
    --fa-primary-color: #E94E1B;   /* NSSF orange */
    --fa-secondary-color: #C8102E; /* NSSF red */
    --fa-secondary-opacity: 1;
    animation: floatIcon 3s ease-in-out infinite;
}
.gov-timeline-line {
    position: absolute;
    top: 40px;
    bottom: 120px;
    left: 150px;
    width: 5px;
    background: linear-gradient(180deg, #C8102E, #E94E1B, #ff7e5f);
    border-radius: 5px;
    background-size: 100% 200%;
    animation: gradientScroll 6s ease-in-out infinite;
    z-index: 1;
}

/* ====== Call-out box cards (3 x 2 grid) ====== */
/* layout-only spacing scoped to call-out-box */
.call-out-box-row > [class*='col-'] { padding: 15px; }
.call-out-box-card { margin-bottom: 30px; width: 100%; }

/* back card */
.call-out-box-card {
  position: relative;
  border-radius: 24px;
  height: auto; /* always auto height */
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  overflow: visible;
  animation: floaty 7s ease-in-out infinite;
}

/* stagger */
.call-out-box-row > [class*='col-']:nth-child(2) .call-out-box-card { animation-delay: 2s; }
.call-out-box-row > [class*='col-']:nth-child(3) .call-out-box-card { animation-delay: 4s; }

@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ---- docking controls ---- */
.call-out-box-card { --front-left: 20px; --front-right: 20px; }
.call-out-box-card.call-out-box-right { --front-left: 20px; --front-right: 20px; }
.call-out-box-card.call-out-box-left  { --front-left: 0px;  --front-right: 80px; }

/* front frosted card */
.call-out-box-front {
  position: absolute;
  top: -30px;
  left: var(--front-left);
  right: var(--front-right);
  height: auto;
  min-height: calc(100% - 0px);
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 30px 90px 30px 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  overflow: hidden;
}

/* shimmer */
.call-out-box-front::before {
  content:"";
  position:absolute; inset:0;
  left:-150%; width:250%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 80%);
  animation: shimmer 10s linear infinite;
}
@keyframes shimmer { from {left:-150%;} to {left:150%;} }

/* icon & text */
.call-out-box-icon {
  position:absolute; left:30px; top:30px;
  width:55px; height:55px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; color:#fff; box-shadow:0 3px 12px rgba(0,0,0,0.15);
}
.call-out-box-body { padding-left:90px; }
.call-out-box-body p { font-size:14px; margin:0; }

/* mobile: auto height + recenter */
@media (max-width:576px){
  .call-out-box-card.call-out-box-right { --front-left:16px; --front-right:16px; }
  .call-out-box-card.call-out-box-left  { --front-left:16px; --front-right:16px; }
}
.call-out-box-card {
  position: relative;   /* ensure front card is positioned inside */
  z-index: 2;           /* bring card above footer */
}

.call-out-box-front {
  position: relative;   /* change from absolute to relative so it flows naturally */
  top: -30px;               /* reset offset */
  left: 30px;
  right: auto;
  margin-top: 0;
}

.foreword-icon {
  max-height: 78px;   /* keep proportionate */
  width: auto;
  margin-left: 15px;
}

/* Government shimmer overlay with blur */
.gov-shimmer {
  position: relative;
  overflow: hidden; /* keeps shimmer inside */
  border-radius: inherit; /* matches parent rounding */
}

.gov-shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 250%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(12px); /* softness */
  animation: govShimmerMove 6s infinite;
  pointer-events: none;
}

/* Shimmer movement */
@keyframes govShimmerMove {
  0% {
    left: -150%;
  }
  100% {
    left: 100%;
  }
}
/* White transparent overlay */
.gov-overlay {
  position: relative;
  overflow: hidden;

}

.gov-overlay::before {
  content: "";
  position: absolute;
  inset: 0; /* shorthand for top/right/bottom/left: 0 */
  background: rgba(255, 255, 255, 0.15); /* adjust opacity as needed */
  pointer-events: none; /* don't block clicks */
  z-index:-1;
}
/* Base look */
/* Base pill style */
.nssf-engagement-2025 .num-pill {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12),
              inset 0 0 18px rgba(255, 255, 255, .35);
}

/* NSSF official 12-colour set */
.nssf-engagement-2025 .num-pill-one {
  background: radial-gradient(120% 120% at 20% 20%, #AB121C, #AB121C); /* NSSF Red */
}

.nssf-engagement-2025 .num-pill-two {
  background: radial-gradient(120% 120% at 30% 20%, #0055A2, #0055A2);
}

.nssf-engagement-2025 .num-pill-three {
  background: radial-gradient(120% 120% at 30% 20%, #00A8BC, #00A8BC); /* lighter turquoise */
}

.nssf-engagement-2025 .num-pill-four {
  background: radial-gradient(120% 120% at 30% 20%, #00BEFA, #00BEFA); /* sky blue */
}
.nssf-engagement-2025 .num-pill-five {
  background: radial-gradient(120% 120% at 30% 20%, #6CBE45, #6CBE45);
}

.nssf-engagement-2025 .num-pill-six {
  background: radial-gradient(120% 120% at 30% 20%, #8C57AC, #8C57AC); /* lighter NSSF purple */
}
.nssf-engagement-2025 .num-pill-seven {
  background: radial-gradient(120% 120% at 30% 20%, #F78C5C, #F78C5C); /* lighter NSSF orange */
}

.nssf-engagement-2025 .num-pill-eight {
  background: radial-gradient(120% 120% at 30% 20%, #62B46B, #62B46B);
}

.nssf-engagement-2025 .num-pill-nine {
  background: radial-gradient(120% 120% at 30% 20%, #00BEFA, #00BEFA);
}

.nssf-engagement-2025 .num-pill-ten {
  background: radial-gradient(120% 120% at 30% 20%, #00A8BC, #00A8BC);
}

.nssf-engagement-2025 .num-pill-eleven {
  background: radial-gradient(120% 120% at 30% 20%, #662D91, #662D91);
}

.nssf-engagement-2025 .num-pill-twelve {
  background: radial-gradient(120% 120% at 30% 20%, #F26524, #F26524);
}


/* Pill badge for section headings */
.nssf-engagement-2025 .pill-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nssf-blue);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
              inset 0 1px 6px rgba(255, 255, 255, 0.35);
}
.governance-timeline .timeline-wrapper {
  position: relative;
  margin: 0 auto;
  padding-left: 30px;
  border-left: 3px solid rgba(0,0,0,0.1); /* timeline line */
}

.governance-timeline .timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.governance-timeline .timeline-item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #18428F, #6CBE45);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
}
.outlook-card-gov {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px; /* adjust if needed */
  z-index: 1;
  background: url('../images/home/water.jpg') top/cover no-repeat; /* your image */
}
/* Purple blurred gradient variant */
.outlook-card-gov::before {
  content: "";
  position: absolute;
  inset: 0;
 background: linear-gradient(
  135deg,
  rgba(0, 190, 250, 0.9),  /* Sky Blue */
    rgba(255, 255, 255, 0.3),  /* White */
  rgba(0, 168, 188, 0.9) /* Teal */
 
);
  z-index: 0;
}

/* Keep content above gradient */
.outlook-card-gov > * {
  position: relative;
  z-index: 1;
}

.govglass {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
  width: 78px;
  border-radius: 50%; /* make it circular */

  /* glassy purple gradient */
  background: linear-gradient(
    145deg,
    rgba(140, 82, 255, 0.55),
    rgba(182, 110, 255, 0.45)
  );

  backdrop-filter: blur(10px); /* frosted glass effect */
  -webkit-backdrop-filter: blur(10px);

  /* soft shadow to lift it */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
              inset 0 2px 6px rgba(255, 255, 255, 0.25);
}

.govglass i {
  font-size: 34px;
  color: #fff;     /* crisp white */
  opacity: 0.9;    /* softer, glassy look */
}
.trend-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 190, 250, 0.8), rgba(0, 168, 188, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 190, 250, 0.3);
    animation: floatIcon 6s ease-in-out infinite;
}
.pillar-donut {
  --size: 100px;
  --thickness: 12px;
  position: relative;
  width: var(--size);
  height: var(--size);
  margin-right: 15px;
  border-radius: 50%;
  background: #d6d6d6; /* grey base */
  overflow: hidden;
}

/* label inside */
.pillar-donut::after {
  content: attr(data-label);
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: #03314d;
  background: #fff;
  border-radius: 50%;
  width: calc(var(--size) - var(--thickness)*2);
  height: calc(var(--size) - var(--thickness)*2);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* coloured progress arc */
.pillar-arc {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--pillar-color, #0046ad) 0deg 0deg,
    transparent 0deg 360deg
  );
  
  
  z-index: 1;
  transition: background 1.5s ease-out;
}

.pillar-text { flex: 1; }
/* Connector line centered across row */
.timeline-line-centered {
  position: absolute;
  left: 20px;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #f26a21, #7b3fe4, #00a8bc);
  top: 50%;
  transform: translateY(-50%);
  z-index: -1; /* behind cards & image */
}

/* Center image column */
.timeline-img-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scale image to ~80% height of text cards */
.timeline-img-80 {
  height: 80%;         /* instead of max-height */
  width: auto;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.nssf-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* NSSF brand gradients */
.nssf-icon-orange {
  --c1: #f26a21;
  background: radial-gradient(120% 120% at 30% 20%,
    color-mix(in oklab, var(--c1), white 35%), var(--c1));
}

.nssf-icon-purple {
  --c1: #7b3fe4;
  background: radial-gradient(120% 120% at 30% 20%,
    color-mix(in oklab, var(--c1), white 35%), var(--c1));
}

.nssf-icon-blue {
  --c1: #00a8bc;
  background: radial-gradient(120% 120% at 30% 20%,
    color-mix(in oklab, var(--c1), white 35%), var(--c1));
}
/* Equal height row only for this variation */
.process-timeline-row-img {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

/* Cards stretch to equal height */
.process-timeline-row-img .process-step-card,
.process-timeline-row-img .timeline-img-centered {
  height: 100%;
}

/* Image fills and crops */
.timeline-img-equal {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.badge-pill-stage-gradient {
    display: block;
    background: linear-gradient(135deg, #7b3fe4, #e63946); /* purple → red */
    color: #fff; /* white text for contrast */
    font-weight: 700;
    padding: 6px 14px;
    margin: 10px 0;
    border-radius: 20px;
    font-size: 0.9rem;
}
/* Masonry wrapper */
.gov-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
}

/* Base card */
.gov-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

/* Image card */
.gov-img {
  padding: 0;
  background: none;
}
.gov-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Size variations */
.gov-small { grid-row: span 1; }
.gov-medium { grid-row: span 2; }
.gov-tall { grid-row: span 3; }
.gov-feature {
  grid-column: span 2;
  grid-row: span 2;
}
.nssf-icon-green {
  --c1: #8BC34A; /* NSSF light green */
  background: radial-gradient(
    120% 120% at 30% 20%,
    color-mix(in oklab, var(--c1), white 35%),
    var(--c1)
  );
}
/* ESG Timeline */
.esg-timeline {
  position: relative;
  padding-top: 100px;
}

/* Timeline line (sits behind icons) */
.esg-track {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    rgba(139,195,74,0.8),   /* green */
    rgba(33,150,243,0.8),  /* blue */
    rgba(156,39,176,0.8),  /* purple */
    rgba(255,152,0,0.8),   /* orange */
    rgba(0,188,212,0.8)    /* teal */
  );
  backdrop-filter: blur(6px);
  border-radius: 4px;
  z-index: 0;
}


/* Icon wrapper */
.esg-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  position: relative;
  z-index: 2; /* sits above line */
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Gradient “glassy” variations */
.nssf-icon-green {
  --c1: #8BC34A;
  background: radial-gradient(120% 120% at 30% 20%,
    color-mix(in oklab, var(--c1), white 35%), var(--c1));
}
.nssf-icon-blue {
  --c1: #2196F3;
  background: radial-gradient(120% 120% at 30% 20%,
    color-mix(in oklab, var(--c1), white 35%), var(--c1));
}
.nssf-icon-purple {
  --c1: #9C27B0;
  background: radial-gradient(120% 120% at 30% 20%,
    color-mix(in oklab, var(--c1), white 35%), var(--c1));
}
.nssf-icon-orange {
  --c1: #FF9800;
  background: radial-gradient(120% 120% at 30% 20%,
    color-mix(in oklab, var(--c1), white 35%), var(--c1));
}
.nssf-icon-yellow {
  --c1: #FFC107;
  background: radial-gradient(120% 120% at 30% 20%,
    color-mix(in oklab, var(--c1), white 35%), var(--c1));
}
.nssf-icon-teal {
  --c1: #00BCD4;
  background: radial-gradient(120% 120% at 30% 20%,
    color-mix(in oklab, var(--c1), white 35%), var(--c1));
}

/* Cards */
.esg-card {
  margin-top: 50px;
  padding: 25px;
  border-radius: 20px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}
.ls-esg{
  letter-spacing:0.01em!important;
}
/* Swiper Adjustments */
.esg-timeline .swiper-wrapper {
  padding-bottom: 40px;
}
.esg-timeline .swiper-slide {
  box-sizing: border-box;
}
.esg-card {
  width: 100%;
}
/* Space inside container so cards don’t hit edges */
.esg-timeline {
  padding: 100px 40px 60px; /* top + sides + bottom */
}

/* Bottom scrollbar */
.esg-scrollbar {
  height: 6px;
  border-radius: 3px;
  background: rgba(200,200,200,0.3);
  margin-top: 20px;
}

.outer-esg-card {
  position: relative;
  border-radius: 20px;
  padding: 40px;
  background: 
    linear-gradient(
      135deg,
      rgba(139,195,74,0.65),   /* lighter NSSF green */
      rgba(0,188,212,0.65)     /* turquoise */
    ),
    url("../images/home/eth-9.jpg"); /* your image */
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  overflow: hidden;
}

/* Shimmer overlay */
.outer-esg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 6s infinite;
  pointer-events: none; /* don't block interaction */
}
.outer-esg-card2 {
  position: relative;
  border-radius: 20px;
  padding: 40px;
  background: 
    linear-gradient(
      135deg,
      rgba(139,195,74,0.65),   /* lighter NSSF green */
      rgba(0,188,212,0.65)     /* turquoise */
    ),
    url("../images/home/sat-27.jpg"); /* your image */
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  overflow: hidden;
}

/* Shimmer overlay */
.outer-esg-card2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 6s infinite;
  pointer-events: none; /* don't block interaction */
}

/* Shimmer animation */
@keyframes shimmer {
  0%   { left: -150%; }
  100% { left: 150%; }
}
.bar-item {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.9rem;
  position: relative;
}

.bar-item span:first-child {
  flex: 0 0 100px; /* label width */
  font-weight: 500;
  color: #333;
}

.bar {
  height: 14px;
  border-radius: 7px;
  position: relative;
}

.bar-gradient {
  background: linear-gradient(90deg, #5E3FEE, #9C27B0);
  box-shadow: 0 2px 6px rgba(94,63,238,0.3);
}

.bar-value {
  position: absolute;
  top: 50%;
  right: -20px; /* push it out to the end of the bar */
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #5E3FEE;
  color: #5E3FEE;
  font-weight: bold;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.md-donut-static {
  --size: 120px;
  --thickness: 16px;
  position: relative;
  width: var(--size);
  height: var(--size);
  margin: 0 10px 1rem;
  border-radius: 50%;
  background: #d6d6d6;
  overflow: hidden;
  display: inline-block;
}

.md-donut-static .arc {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--donut-color, #0046ad) 0deg var(--donut-angle, 90deg),
    transparent var(--donut-angle, 90deg) 360deg
  );
  z-index: 1;
}

.md-donut-static::before {
  content: "";
  position: absolute;
  top: var(--thickness);
  left: var(--thickness);
  width: calc(var(--size) - var(--thickness)*2);
  height: calc(var(--size) - var(--thickness)*2);
  border-radius: 50%;
  background: #fff;
  z-index: 2;
}

/* Exec labels */
.donut-label-exec {
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: #03314d;
  background: #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 3;
}

/* Position each one manually if needed */
.md-donut-static:nth-child(1) .donut-label-exec {
  top: 70%; left: 35%;
}
.md-donut-static:nth-child(2) .donut-label-exec {
  top: 30%; left: 65%;
}

/* ===========================
   Gender labels
   =========================== */
.donut-label-gender { composes: donut-label-base; }

/* 7 Male */
.md-donut-static.gender-1 .donut-label-gender {
  top: 70%; left: 35%;
}

/* 3 Female */
.md-donut-static.gender-2 .donut-label-gender {
  top: 30%; left: 65%;
}

/* ===========================
   International Experience labels
   =========================== */
.donut-label-intl { composes: donut-label-base; }

/* 10 East Africa */
.md-donut-static.intl-1 .donut-label-intl {
  top: 75%; left: 30%;
}

/* 5 Americas */
.md-donut-static.intl-2 .donut-label-intl {
  top: 25%; left: 65%;
}

/* 4 Europe */
.md-donut-static.intl-3 .donut-label-intl {
  top: 15%; left: 50%;
}

.skills-bars {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 300px; /* chart height */
  gap: 12px;
}

.skill-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.skill-label {
  margin-top: 8px;
  font-size: 0.8rem;
  text-align: center;
  width: 80px;
}

.bar-vertical {
  width: 14px;
  border-radius: 7px;
  background: linear-gradient(180deg, #5E3FEE, #9C27B0);
  position: relative;
}

.bar-value {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #5E3FEE;
  color: #5E3FEE;
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.bar-item {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.bar {
  height: 14px;
  border-radius: 7px;
  position: relative;
  display: inline-block;
}

.bar-value {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid currentColor;
  color: currentColor;
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Unique colours for each bar */
.bar-1 { background: linear-gradient(90deg, #8BC34A, #4CAF50); color:#4CAF50; }
.bar-2 { background: linear-gradient(90deg, #2196F3, #1976D2); color:#1976D2; }
.bar-3 { background: linear-gradient(90deg, #FF9800, #F57C00); color:#F57C00; }
.bar-4 { background: linear-gradient(90deg, #9C27B0, #7B1FA2); color:#7B1FA2; }
.bar-5 { background: linear-gradient(90deg, #E91E63, #C2185B); color:#C2185B; }
.bar-6 { background: linear-gradient(90deg, #00BCD4, #0097A7); color:#0097A7; }
.bar-7 { background: linear-gradient(90deg, #3F51B5, #283593); color:#283593; }
.bar-8 { background: linear-gradient(90deg, #FFC107, #FFA000); color:#FFA000; }


.text-turquoise {
  color: #00A8BC; /* NSSF turquoise */
}
.governess-line {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 60px);
    height: 3px;
    background: linear-gradient(90deg, #1f6dd8, #17bba6, #7a47c2);
    border-radius: 3px;
    opacity: .4;
    z-index: 0;
}
.governess-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex
;
    flex-direction: column;
    padding: 40px;
    z-index: 1;
}
.governess-height-card {
        display: flex
;
        flex-direction: column;
        height: 100%;
        min-height: 205px;
    }
.divider-icon-trigger {
  position: relative;
  text-align: center;
  margin-top: -28px; /* sits neatly on divider */
}

.divider-icon-trigger .nssf-icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  position: relative;
}
.stat-icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 8px;
    font-size: 1.2rem; /* smaller size */
  }
.w-1-6 {
  width: 16.6667%!important; /* 100% ÷ 6 */
}
.w-1-5 {
  width: 15%; /* For the 5 equal columns */
}

..glassy-material-table tbody tr:not(:last-child):not(.border-top)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(140, 82, 255, 0.9),
    rgba(255, 64, 64, 0.9)
  );
  pointer-events: none;
}


.glassy-material-table td[rowspan] {
  position: relative;
  z-index: 1; /* lift pill above the divider */
  background: #fff!important; /* mask any divider that slips behind */
}

.soft-divider-row td {
  position: relative;
  z-index: 9999; /* lift above shimmer/glassy effects */
  padding: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(140, 82, 255, 0.9),
    rgba(255, 64, 64, 0.9)
  );
}
.border-top {
  border-top: 1px solid transparent; /* ensures border box exists */
  border-image: linear-gradient(
    90deg,
    rgba(140, 82, 255, 0.9),
    rgba(255, 64, 64, 0.9)
  ) 1;
  position: relative;
  z-index: 2; /* lift above the ::after line */
}
.foreword-timeline-line2 {
    position: absolute;
    top: -40px;
    bottom: 80px;
    left: 140px;
    width: 5px;
    background: linear-gradient(180deg, #662D91, #F26524, #AB121C);
    border-radius: 5px;
    background-size: 100% 200%;
    animation: gradientScroll 6s 
ease-in-out infinite;
    z-index: -1;
}

.my-height{
  min-height:auto!important;
}
.m-b-38{
  margin-bottom:38px!important;
}
.equal-img {
  width: 100%;
  height: 100%; /* no forced height */
  object-fit:cover; /* show the whole image, no cropping */
  display:block;
}

.img-box {
  width: 100%;
  height: 250px;          /* equal height */
  background-size: cover; /* smooth cropping */
  background-position: 50% 50%;
  border-radius: 20px;
}
.nssf-icon-circle2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: -40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.nssf-engagement-table .table-responsive,
.nssf-engagement-table .glassy-material-table {
  overflow: visible;   /* allow toggle to escape */
}

.nssf-engagement-table .divider-wrapper {
  position: relative;
}
 
.nssf-engagement-table .toggle-icon {
  position: absolute;
  right: 10px;
  top: -12px;      /* sits above divider */
  z-index: 9999;
}
.purple-icon {
  color: #6A1B9A; /* NSSF purple */
  font-size: 0.9rem;
}
.orange-icon {
  color: #F57C00; /* NSSF orange */
  font-size: 0.9rem;
}
.divider-with-icon {
  position: relative;
}

.divider-with-icon .soft-divider {
  margin: 0;
  border: none;

}

.glassy-icon-circle {
  position: absolute;
  right: 20px;       /* overlap outside the line */
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 2; /* make sure it sits above */
}
.glassy3-icon-circle {
  position: absolute;
  right: 20px;       /* overlap outside the line */
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 2; /* make sure it sits above */
}
.nssf-icon-green2 {
  --c1: #8BC34A;
  background: radial-gradient(
    120% 120% at 30% 20%,
    color-mix(in oklab, var(--c1), white 35%),
    var(--c1)
  );
}
.governess2-height-card {
    display: flex
;
    flex-direction: column;
    height: 100%;
    min-height: 180px;
}
.swipe-icon {
  position: absolute;
  top: -25px;          /* adjust above scrollbar */
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: rgba(255,255,255,); /* semi-transparent */
  animation: swipeHint 2s infinite;
}

@keyframes swipeHint {
  0%   { transform: translateX(-50%) translateX(0); opacity: 0.8; }
  50%  { transform: translateX(-50%) translateX(10px); opacity: 1; }
  100% { transform: translateX(-50%) translateX(0); opacity: 0.8; }
}
.swipe-hint {
  position: absolute;
  bottom: -15px;       /* adjust placement */
  left: 98%;
  transform: translateX(-50%);
  font-size: 1.0rem;
  z-index: 10;
  animation: swipePulse 2s infinite;
  cursor: pointer;
  height:30px;
  width:30px;
}

@keyframes swipePulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50%      { transform: translateX(-50%) scale(1.1); opacity: 1; }
}
/* Equal height fix – ESG Timeline only */
.esg-timeline .swiper-wrapper.equal-height-esg {
  display: flex;
  align-items: stretch; /* force all slides to tallest */
}

.esg-timeline .swiper-slide.equal-height-esg-slide {
  display: flex;
  flex-direction: column;
  height: auto !important; /* override Swiper inline heights */
}

.esg-timeline .esg-card.equal-height-esg-card {
  flex: 1; /* stretch to fill */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* space text nicely */
}

/* Icon stays natural, not stretched */
.esg-timeline .equal-height-esg-slide .esg-icon {
  flex: 0 0 auto;
  margin-bottom: 15px;
}

.timeline-card {
  /* ensure this is fully filling the parent vertically/horizontally as needed */
  height: 100%;
  width: 100%; /* or as required */
  position: relative; /* not always required, but useful */
  overflow: hidden; /* hide any overflow if image goes outside bounds */
}

.timeline-card .img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* optional, to control cropping focal point */
  display: block; /* helps avoid inline-gap issues */
}

/* unique scope for this page only */
.assurance-img-card .outlook-fade-with-captions,
.assurance-img-card .fade-slide-with-caption {
  height: 100%;  /* stretch wrapper to card height */
}

.assurance-img-card .img-cover {
  width: 100%;
  height: 100%;          /* fill card height */
  object-fit: cover;     /* crop to cover without distortion */
  object-position: center;
  display: block;
  border-radius: 16px;
}

/* Interview Q&A section */
.retirement-interview .glassy-interview-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.retirement-interview .glassy-interview-card:hover {
  transform: translateY(-6px);
}

.retirement-interview .glassy-interview-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.retirement-interview h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.retirement-interview p {
  font-weight: 400;
  color: var(--pblue);
}

/* Icon colour variations */
.nssf-icon-blue { background-color: #007bff;  color:#fff;}
.nssf-icon-green { background-color: #28a745;  color:#fff;}
.nssf-icon-purple { background-color: #6f42c1; color:#fff; }
.nssf-icon-gold { background-color: #a3884f; color:#fff;}

/* Responsive tweaks */
@media (max-width: 767px) {
  .retirement-interview .glassy-interview-card {
    padding: 20px;
  }
  .retirement-interview h4 {
    font-size: 1.1rem;
  }
}
/* Existing Purple-Blue */
.gr-purple-blue-trans {
  background: linear-gradient(
    135deg,
    rgba(140, 82, 255, 0.4),  /* purple */
    rgba(24, 66, 143, 0.4)   /* blue */
  );
}
.gr-blue-teal-trans {
  background: linear-gradient(
    135deg,
    rgba(24, 66, 143, 0.4) ,  /* purple */
    rgba(0, 200, 200, 0.4)   /* blue */
  );
}
/* Blue-Teal */
.gr-purple-teal-trans {
  background: linear-gradient(
    135deg,
    rgba(140, 82, 255, 0.4),  /* NSSF purple */
    rgba(0, 200, 200, 0.4)    /* NSSF turquoise */
  );
}
/* Purple → Turquoise (NSSF style) */
.g2-purple-teal {
  background: linear-gradient(
    135deg,
    #8c52ff,   /* NSSF Purple */
    #00c8b4    /* NSSF Turquoise */
  );
}

/* Green-Purple */
.gr-green-purple-trans {
  background: linear-gradient(
    135deg,
     rgba(140, 82, 255, 0.4) ,
    rgba(0, 200, 120, 0.4)   /* green */
     /* purple */
  );
}

/* Orange-Red */
.gr-ored-trans {
  background: linear-gradient(
    135deg,
    rgba(255, 94, 0, 0.4),    /* orange */
    rgba(200, 0, 60, 0.4)     /* red */
  );
}

/* Blue-Purple (inverse emphasis) */
.gr-blue-purple-trans {
  background: linear-gradient(
    135deg,
    rgba(0, 120, 220, 0.4),   /* blue */
    rgba(160, 90, 255, 0.4)   /* purple */
  );
}
.w-10{
  width:10%!important;
}
.nssf-engagement-2025 .stat-number {
  opacity: 0; 
  transition: opacity 0.6s ease;
}
.nssf-engagement-2025 .stat-number.visible {
  opacity: 1;
}

/* Stacked experience bar */
/* Main fat bar */
.experience-bar {
  width: 100%;
  margin: 0 auto;
  height: 60px;
  border-radius: 100px;
  overflow: hidden;
  display: flex;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.2);
}

/* Thin label bar */
.experience-bar-labels {
  width: 100%;
  margin: 0 auto;
  height: 20px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
}

/* Segments */
.bar-segment,
.label-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Numbers inside fat bar */
.bar-value2 {
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

/* Labels inside thin bar */
.label-text {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* Colours */
.segment-blue { background: #0046AD; }
.segment-green { background: #17B0A4; }
.segment-turquoise { background: #36d1dc; }

/* Foreword card styling */
.foreword-card {
  border-radius: 20px;
  overflow: hidden;
}

/* Image wrapper */
.foreword-img-wrap {
  width: 100%;
  height: 100%;
}

/* Image itself */
.foreword-img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* fill card without distortion */
  border-radius: inherit;
}

/* Text block */
.foreword-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.outlook-card-gov2 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px; /* adjust if needed */
  z-index: 1;
  background: url('../images/home/final-13.jpg') bottom/cover no-repeat; /* your image */
}
/* Purple blurred gradient variant */
.outlook-card-gov2::before {
  content: "";
  position: absolute;
  inset: 0;
 background: linear-gradient(
  135deg,
  rgba(0, 190, 250, 0.9),  /* Sky Blue */
    rgba(255, 255, 255, 0.7),  /* White */
  rgba(0, 168, 188, 0.9) /* Teal */
 
);
  z-index: -1;
}

.md-donut-admin {
  position: relative;
  display: inline-block;
}

.md-donut-admin .donut-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  color: #333;
}
.nssf-timeline-reset {
  grid-template-columns: unset !important;
  display: block !important;
}
.gap-sdg {
    gap: 2rem !important;
}


/* === FINANCIAL TABLES === */
.financial-tables {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* shimmer overlay */
.financial-tables::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 20%,
    rgba(255,255,255,0.48) 45%,
    rgba(255,255,255,0) 70%
  );
  transform: translateX(-150%);
  animation: financial-shimmer 7s linear infinite;
  pointer-events: none;
  z-index: 9;
  opacity: .65;
  mix-blend-mode: soft-light;
  will-change: transform;
}
.financial-tables:hover::after { opacity: .35; }

@keyframes financial-shimmer {
  0%   { transform: translateX(-150%); }
  100% { transform: translateX(150%); }
}

@media (prefers-reduced-motion: reduce) {
  .financial-tables::after { animation: none; opacity: 0; }
}

/* wrapper */
.financial-tables .table-responsive {
  position: relative;
  border-radius: 20px;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.financial-tables .table-responsive:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.22);
}

/* table core */
.financial-tables table.table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  border: none !important;
}
.financial-tables table.table thead th {
  border: none !important;
  padding: 18px 20px;
  font-weight: 700;
  white-space: wrap;
}
.financial-tables table.table tbody td,
.financial-tables table.table tbody th {
  background: rgba(255,255,255,0.55);
  border: none !important;
  padding: 16px 18px;
  text-align: left;
}

/* zebra rows */
.financial-tables table.table tbody tr:nth-child(odd) td {
  background: rgba(255,255,255,0.62);
}

/* row hover */
.financial-tables table.table tbody tr {
  transition: background .25s ease;
  position: relative; /* for ::after borders */
}
.financial-tables table.table tbody tr:hover td {
  background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0.75));
}

/* gradient vertical borders */
.financial-tables table.table td:not(:last-child)::after,
.financial-tables table.table th:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #8c52ff, #ff4040);
  pointer-events: none;
}

/* gradient horizontal borders (every row bottom) */
.financial-tables table.table tbody tr::after {
  content: "";
  position: absolute;
  bottom: 0;
  right:0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, #8c52ff, #ff4040);
  pointer-events: none;
}

/* rounding */
.financial-tables .table-responsive table.table thead tr:first-child th:first-child { border-top-left-radius: 12px; }
.financial-tables .table-responsive table.table thead tr:first-child th:last-child  { border-top-right-radius: 12px; }
.financial-tables .table-responsive table.table tbody tr:last-child td:first-child { border-bottom-left-radius: 12px; }
.financial-tables .table-responsive table.table tbody tr:last-child td:last-child  { border-bottom-right-radius: 12px; }

/* focus ring */
.financial-tables .table-responsive:focus-within {
  box-shadow: 0 0 0 3px rgba(50,94,199,0.35), 0 20px 50px rgba(0,0,0,0.18);
}

/* scrollbars (only mobile/tablet) */
@media (max-width: 991.98px) {
  .financial-tables .table-responsive {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px; /* ✅ keep only one */
  }

  .financial-tables .table-responsive::-webkit-scrollbar {
    height: 6px;
    margin-top: 8px; /* spacing from bottom edge */
  }
  .financial-tables .table-responsive::-webkit-scrollbar-track {
    background: transparent;
  }
  .financial-tables .table-responsive::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--nssf-blue), var(--nssf-purple));
    border-radius: 20px;
  }

  /* Header alignment for mobile */
  .financial-tables table.table thead th {
    text-align: left;
    vertical-align: top;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.2;
    white-space: wrap;
    word-break: break-word;
  }

  /* Narrower widths for first two columns on mobile */
  .financial-tables table.table th:first-child,
  .financial-tables table.table td:first-child {
    width: 20%;
    min-width: 100px;
  }
  .financial-tables table.table th:nth-child(2),
  .financial-tables table.table td:nth-child(2) {
    width: 20%;
    min-width: 100px;
  }

  /* Remaining columns */
  .financial-tables table.table th,
  .financial-tables table.table td {
    min-width: 122px;
  }
}

/* desktop: show full width, no scroll */
@media (min-width: 992px) {
  .financial-tables .table-responsive {
    background: rgba(255, 255, 255, 0.08); /* glassy, semi-transparent */
    padding-bottom: 18px;                  /* extra gap for floating scrollbar */
    overflow-x: auto;
    overflow-y: hidden;
  }

  .financial-tables .table-responsive::-webkit-scrollbar {
    height: 6px;
  }
  .financial-tables .table-responsive::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--nssf-blue), var(--nssf-purple));
    border-radius: 20px;
  }
  .financial-tables .table-responsive::-webkit-scrollbar-track {
    background: transparent; /* ✅ makes scrollbar look floating */
    
  }
}

/*  Force gradient border on last column */
.financial-tables table.table td:last-child::after,
.financial-tables table.table th:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #8c52ff, #ff4040)!important;
  pointer-events: none;
}

/* Gradient bottom border for EVERY cell */
.financial-tables .glassy-material-table th,
.financial-tables .glassy-material-table td {
  position: relative;
}
.financial-tables .glassy-material-table th::after,
.financial-tables .glassy-material-table td::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #8c52ff, #ff4040);
  pointer-events: none;
}
@media (max-width: 767px) {
  .financial-tables table.table th:first-child,
  .financial-tables table.table td:first-child {
    width: 220px;     /* 🔧 set your exact width */
    min-width: 220px; /* keeps it fixed */
    max-width: 220px; /* prevents it from stretching */
    white-space: normal; /* allow wrapping if text is long */
    word-break: break-word; /* break words if needed */
  }
  
}
.mainMenu-open #header:not(.submenu-light).dark .header-inner {
    background: linear-gradient(90deg, #006FBA, #17BBA6) !important;
}
/* === Heatmap Carousel Fixes (Mobile) === */

.heatmap-static {
  margin: 20px auto;
  max-width: 100%;
}

.heatmap-card {
  background: linear-gradient(180deg, #2e3c90, #c43448); /* same as your gradient */
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.heatmap-card img {
  width: 100%;
  height: auto;
  display: block;
}

.heatmap-caption {
  padding: 20px;
  background: rgba(255,255,255,0.85); /* optional glass effect */
  border-radius: 0 0 20px 20px;
}

.heatmap-caption h2 {
  margin-bottom: 15px;
}
/* Default: show thead as table-header-group (desktop/tablet) */

.performance-tables .table-responsive {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  background: #fff; /* white background for performance tables */
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}
.performance-tables th .fa-duotone {
  margin-right: 6px;
}

.performance-tables th span {
  white-space: nowrap; /* keeps text in one line */
  font-size: 0.9rem;
}
.performance-tables .table-responsive::-webkit-scrollbar {
  height: 4px; /* thin bar */
}

.performance-tables .table-responsive::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #18428F, #6C3FB6); /* same blue-purple */
  border-radius: 2px;
}

.performance-tables .table-responsive::-webkit-scrollbar-track {
  background: transparent;
}
/* === Performance Table Styling with Gradient Borders === */
.performance-tables .table {
  background: #fff;
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);

  /* Outer gradient border */
  border: 0px solid transparent;
  border-image: linear-gradient(90deg, #18428F, #6C3FB6) 1;
}

/* Reset cells */
.performance-tables .table th,
.performance-tables .table td {
  position: relative;
  padding: 12px 15px;

  z-index: 1;
}

/* === Inner Vertical Dividers === */
.performance-tables .table td:not(:last-child)::after,
.performance-tables .table th:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #18428F, #6C3FB6);
  z-index: 0;
}

/* === Inner Horizontal Dividers === */
.performance-tables .table tr:not(:last-child) td::before,
.performance-tables .table tr:not(:last-child) th::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #18428F, #6C3FB6);
  z-index: 0;
}
.sustain-graph-img {
  height: 400px !important; /* desktop */
  width: 100%;
  object-fit: contain;
}
/* Container for matrix-style cards */
.matrix-cards {
  display: flex;
  flex-direction: column;
}

/* Card look */
.matrix-cards .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

/* Titles inside cards */
.matrix-cards h5 {
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* Flex row for values */
.matrix-cards .d-flex > div {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Mobile headings */
@media (max-width: 767px) {
  .matrix-cards .mobile-heading-alt {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    margin-right: 6px;
  }
}

/* Hide mobile-heading-alt on desktop */
@media (min-width: 768px) {
  .matrix-cards .mobile-heading-alt {
    display: none;
  }
}

.full-cover-card-img {
  position: relative;
  height: 100%; /* ensures the wrapper fills card height */
}

.full-cover-card-img img {
  width: 100%;
  height: 100%;        /* force to fill parent */
  object-fit: cover;   /* crop and cover fully */
  border-radius: inherit;
  display: block;
}
/* Default (desktop): bigger icons */
.map-legend-inline .legend-item {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left aligned */
  margin-bottom: 20px;
  text-align: left;
}

.map-legend-inline .legend-icon {
  width: 46px;
  height: 46px;
  margin-right: 12px;
  border-radius: 12px;
  background: radial-gradient(
    120% 120% at 30% 30%,
    rgba(255, 255, 255, .9) 0%,
    rgba(255, 255, 255, .55) 60%,
    rgba(255, 255, 255, .35) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(14, 26, 42, .08),
              0 8px 18px rgba(0, 0, 0, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile override */
@media (max-width: 767px) {
  .map-legend-inline .legend-item {
    justify-content: flex-start !important; /* force left align */
    margin-bottom: 15px;
  }

  .map-legend-inline .legend-icon {
    width: 30px;  /* smaller icons */
    height: 30px;
    margin-right: 10px;
  }

  .map-legend-inline .legend-icon i {
    font-size: 0.65rem;
  }

  .map-legend-inline .legend-label p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}


.m-top-minus {
    margin-top: -30px !important;
}