.hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 80px 10%;
      backdrop-filter:blur(3px);
       background: linear-gradient(to right , rgba(211, 211, 211, 0.295),rgba(165, 165, 165, 0.313),rgba(126, 126, 126, 0.322),rgba(61, 61, 61, 0.308));    }

    .hero-wrapper {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 60px;
      width: 100%;
    }

    /* LEFT CONTENT */
    .hero-content h1 {
      font-size: 3.2rem;
      font-weight: 700;
      margin-bottom: 22px;
      line-height: 1.2;
    }

    .hero-content h1 span {
      color: #000000;
    }

    .hero-content p {
      font-size: 1.1rem;
      color: #000000;
      margin-bottom: 18px;
      line-height: 1.7;
      max-width: 620px;
    }

    .hero-buttons {
      margin-top: 32px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-buttons a {
      padding: 14px 30px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .btn-primary {
      background: #6e6e6e;
      color: #020617;
      box-shadow: 0 0 30px rgba(32, 32, 32, 0.4);
      z-index:10;
    }

    .btn-primary:hover {
      background: #505050;
      box-shadow: 0 0 45px rgba(141, 141, 141, 0.998);
    }

    .btn-secondary {
      border: 2px solid #000000;
      color: #000000;
      z-index:10;
    }

    .btn-secondary:hover {
      background: #6e6e6e;
      color: #020617;
    }

/* RIGHT VISUAL */
.hero-visual {
position: relative;
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
overflow: hidden;
}


/* SVG POSITIONS */
.svg1 { position: absolute; top: 15%; right: 5%; }
.svg2 { position: absolute; top: 45%; left: 18%; }
.svg3 { position: absolute; top: 68%; right: 33%; }


/* BASE SPARK GLOW */
.svg1,
.svg2,
.svg3 {
filter:
drop-shadow(0 0 6px rgba(255,255,255,0.7))
drop-shadow(0 0 14px rgba(180,180,180,0.8))
drop-shadow(0 0 30px rgba(120,120,120,0.9));



}

.svg1 {
  stroke: #a3a3a3;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;

  filter: drop-shadow(0 0 5px #2e2e2e)
          drop-shadow(0 0 15px #2e2e2e)
          drop-shadow(0 0 25px #2e2e2e);

  animation: glowPulseSVG 2s infinite alternate;
}
.svg2 {
  stroke: #a3a3a3;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;

  filter: drop-shadow(0 0 5px #2e2e2e)
          drop-shadow(0 0 15px #2e2e2e)
          drop-shadow(0 0 25px #2e2e2e);

  animation: glowPulseSVG 2s infinite alternate;
}
.svg3 {
  stroke: #a3a3a3;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;

  filter: drop-shadow(0 0 5px #2e2e2e)
          drop-shadow(0 0 15px #2e2e2e)
          drop-shadow(0 0 25px #2e2e2e);

  animation: glowPulseSVG 2s infinite alternate;
}
@keyframes glowPulseSVG {
  0% {
    opacity: 0.6;
    filter: drop-shadow(0 0 10px #2e2e2e)
            drop-shadow(0 0 20px #2e2e2e);
  }
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 15px #2e2e2e)
            drop-shadow(0 0 25px #2e2e2e)
            drop-shadow(0 0 35px #2e2e2e);
  }
}
.svg1 path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: lightningFlow 0.9s infinite linear;
}
.svg2 path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: lightningFlow 0.9s infinite linear;
}
.svg3 path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: lightningFlow 0.9s infinite linear;
}

@keyframes lightningFlow {
  0% {
    stroke-dashoffset: 220;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  box-shadow:
    0 0 15px white,
    0 0 30px rgba(255,255,255,0.9),
    0 0 60px rgba(200,200,200,0.8);
  animation: megaSparks 1.2s infinite linear;
}

.hero-visual::after {
  animation-delay: 0.6s;
}

@keyframes megaSparks {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(160px, -160px) scale(2);
    opacity: 0;
  }
}


   @media (max-width: 1024px) {

  .hero {
    padding: 70px 10%;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 60vh;
  }

  /* SVG POSITION ADJUST */
  .svg1 { top: 15%; right: 25%; }
  .svg2 { top: 45%; left: 30%; }
  .svg3 { top: 67%; right: 40%; }
}
@media (max-width: 820px) {
  .svg1 { top: 15%; right: 20%; }
  .svg2 { top: 45%; left: 20%; }
  .svg3 { top: 67%; right: 40%; }
}
@media (max-width: 480px) {

  .hero {
    padding: 60px 10%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-buttons a {
    padding: 12px 22px;
    font-size: 0.95rem;
  }
  .svg1 { top: 15%; right: 6%; }
  .svg2 { top: 48%; left: 6%; }
  .svg3 { top: 67%; right: 30%; }
  
}
.hover-word {
  position: relative;
  display: inline-block;
  padding: 4px 8px;
  transition: color 0.45s ease-in-out;
  z-index: 1;
}

.hover-word::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #787878; /* WHITE BACKGROUND */
  z-index: -1;
  transition: width 0.45s ease-in-out;
}

.hover-word:hover {
  color: #ffffff; /* text color change */
}

.hover-word:hover::before {
  width: 100%;
}