
canvas#network{position:absolute;top:0;left:0;width:100%;height:100%}




/* ROOT WRAPPER (prevents leakage) */
.neuro-core-wrap {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0a1f44, #0f2e6b);
  font-family: 'Segoe UI', sans-serif;
}

/* CONTAINER */
.neuro-core-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.neuro-core-header {
  text-align: center;
  margin-bottom: 50px;
}

.neuro-core-header h2 {
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.neuro-core-header p {
  color: #cbd5e1;
  font-size: 15px;
  max-width: 600px;
  margin: auto;
}

/* GRID */
/* GRID */
.neuro-core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD */
.neuro-core-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER */
.neuro-core-box:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #00c6ff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* ICON (Lucide SVG only) */
.neuro-core-box svg {
  width: 42px;
  height: 42px;
  stroke: #00c6ff;
  stroke-width: 1.8;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

/* ICON HOVER */
.neuro-core-box:hover svg {
  transform: scale(1.15);
  stroke: #ffd54f;
}

/* TITLE */
.neuro-core-box h3 {
  font-size: 17px;
  color: #ffffff;
  font-weight: 600;
}

/* DESCRIPTION (add this if you include text later) */
.neuro-core-box p {
  font-size: 14px;
  color: #cbd5e1;
  margin-top: 8px;
}

/* GLOW LINE */
.neuro-core-box::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #00c6ff, #ffd54f);
  transition: 0.4s;
}

.neuro-core-box:hover::after {
  width: 100%;
}
/* WRAPPER */
.neuro-exp-wrap {
  font-family: 'Segoe UI', sans-serif;
  background: #0b1d3a;
  color: #fff;
}

/* HERO */
.neuro-exp-hero {
  text-align: center;
  padding: 60px 20px 30px;
}

.neuro-exp-hero img {
  width: 100%;
  max-width: 950px;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0,198,255,0.25);
}

.neuro-exp-hero p {
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #cbd5e1;
  font-size: 15px;
}

/* CONTAINER */
.neuro-exp-container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* BLOCK */
.neuro-exp-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
  position: relative;
}

/* HOVER */
.neuro-exp-block:hover {
  transform: translateY(-6px);
  border-color: #ffd54f;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* TITLE */
.neuro-exp-block h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00c6ff;
}

/* TEXT */
.neuro-exp-block p {
  font-size: 14px;
  color: #cbd5e1;
}

/* PARALLAX */
.neuro-exp-parallax {
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
 
  position: relative;
}

.neuro-exp-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.neuro-exp-parallax span {
  position: relative;
  font-size: 28px;
  font-weight: 600;
  color: #ffd54f;
  letter-spacing: 1px;
}

















