.elementor-43508 .elementor-element.elementor-element-4969cd4{--display:flex;--min-height:127px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-43508 .elementor-element.elementor-element-4969cd4:not(.elementor-motion-effects-element-type-background), .elementor-43508 .elementor-element.elementor-element-4969cd4 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-43508 .elementor-element.elementor-element-fb0e277{--display:flex;}.elementor-43508 .elementor-element.elementor-element-d704431{--display:flex;}.elementor-43508 .elementor-element.elementor-element-a5af8f0{--display:flex;}.elementor-43508 .elementor-element.elementor-element-3cca401{--display:flex;}.elementor-43508 .elementor-element.elementor-element-3581b93{--display:flex;}@media(min-width:768px){.elementor-43508 .elementor-element.elementor-element-fb0e277{--content-width:909px;}.elementor-43508 .elementor-element.elementor-element-a5af8f0{--content-width:909px;}}/* Start custom CSS for html, class: .elementor-element-3ef1753 *//* === Diversity Statistics Section === */
.diversity-stats {
  background: #f8fbff;
  border-radius: 20px;
  padding: 60px 40px;
  margin-top: 60px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,87,255,0.05);
}
.diversity-stats h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}
.diversity-stats .subtitle {
  color: #475569;
  margin-bottom: 40px;
  font-weight: 500;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-content: center;
}
.stat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0,87,255,0.04);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,87,255,0.08);
}
.stat-card h3 {
  color: #0057ff;
  font-weight: 700;
  margin-bottom: 20px;
}
.stat-item {
  margin-bottom: 20px;
}
.stat-item .label {
  font-size: 14px;
  color: #475569;
  margin-bottom: 6px;
}
.bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 80px;
  gap: 10px;
}
.bar-bottom, .bar-top {
  width: 40%;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding-bottom: 4px;
}
.bar-bottom { background: #1e293b; }
.bar-top { background: #3b82f6; }
.percent {
  display: block;
  margin-top: 6px;
  color: #0057ff;
  font-weight: 700;
  font-size: 16px;
}
.source {
  font-size: 12px;
  color: #64748b;
  margin-top: 25px;
}
@media (max-width: 640px){
  .diversity-stats { padding: 40px 20px; }
}


<script>
document.addEventListener("DOMContentLoaded", ()=>{
  const bars = document.querySelectorAll(".bar-top, .bar-bottom");
  const observer = new IntersectionObserver(entries=>{
    entries.forEach(e=>{
      if(e.isIntersecting){
        e.target.style.transition="height 1s ease-out";
        e.target.style.height = e.target.getAttribute("style").match(/\d+/)+'%';
        observer.unobserve(e.target);
      }
    });
  },{threshold:0.3});
  bars.forEach(b=>observer.observe(b));
});
</script>/* End custom CSS */