



/* ==========================
   HERO
========================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.hero .layer-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: var(--hero-gradient);
}

.hero .circle {
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  z-index: 3;
  background:
    radial-gradient(circle at 40% 40%, rgba(0, 183, 219, 0.2) 5%, transparent 20%),
    radial-gradient(circle at 60% 60%, rgba(172, 70, 255, 0.2) 5%, transparent 20%);
  filter: blur(30px);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/image/partikel.png);
  background-size: cover;
  background-position: center;
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: invert(1) sepia(100%) saturate(500%) hue-rotate(180deg);
  opacity: 1;
}



/* ==========================
   CARD
========================== */
.card-custom,
.accent,
footer .container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid var(--border-soft);
  background: var(--card-bg);
}

/* Glow untuk Card About */
.card-custom::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at -15% 70%, rgba(43, 127, 255, 0.1) 30%, transparent 30%),
    radial-gradient(circle at 115% 70%, rgba(0, 184, 219, 0.1) 30%, transparent 30%);
  filter: blur(20px);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.card-body {
  position: relative;
  z-index: 2;
}

/* ==========================
   ACCENT (Pengurus & Proker)
========================== */
.accent-1::before,
.accent-2::before,
.accent-3::before,
.accent-4::before,
.accent-5::before,
.accent-6::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  filter: blur(20px);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.accent-1::before { background: radial-gradient(circle at 90% 20%, rgba(43, 127, 255, 0.2) 10%, transparent 20%); }
.accent-2::before { background: radial-gradient(circle at 90% 20%, rgba(85, 43, 255, 0.2) 10%, transparent 20%); }
.accent-3::before { background: radial-gradient(circle at 90% 20%, rgba(43, 255, 138, 0.2) 10%, transparent 20%); }
.accent-4::before { background: radial-gradient(circle at 90% 20%, rgba(184, 43, 255, 0.2) 10%, transparent 20%); }
.accent-5::before { background: radial-gradient(circle at 90% 20%, rgba(255, 89, 43, 0.2) 10%, transparent 20%); }
.accent-6::before { background: radial-gradient(circle at 90% 20%, rgba(255, 43, 43, 0.2) 10%, transparent 20%); }

.pengurus p {
  font-size: 14px;
}

.pengurus .col-md-4 i {
  padding: 12px 14px;
  color: var(--icon-color);
}
