.strike-style {
  font-size: 52px;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  color: #b0c4de;
	justify-content:center;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.svg-wrapper {
  position: relative;
  display: inline-block;
}

#newerp {
  position: relative;
  font-size: 52px;
  font-weight: 600;
  color: #083B53;
  z-index: 2;
}

.circle-svg {
  position: absolute;
  top: -1px;
  left: -15px;
  width: 140px;
  height: 70px;
  z-index: 1;
  pointer-events: none;
}

.circle-path {
  fill: none;
  stroke: orange;
  stroke-width: 4;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawCircle 2s linear infinite;
  transform: rotate(-4deg);
  transform-origin: center;
}

.line-path {
  stroke: orange;
  stroke-width: 4;
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  animation: drawLine 2s linear infinite;
  transform: rotate(-10deg);
  transform-origin: left;
}

@keyframes drawCircle {
  0% {
    stroke-dashoffset: 400;
    opacity: 1;
  }
  80% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 130;
    opacity: 1;
  }
  80% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}



     .newlines {
  position: relative;
  display: inline-block;
  font-size: 52px;
  font-weight: bold;
  color: #083B53;
  padding-bottom: 15px;
}

.newlines::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: orange;
  clip-path: polygon(
    0% 60%, 10% 75%, 25% 90%, 50% 100%, 
    75% 90%, 90% 75%, 100% 60%, 
    90% 50%, 75% 40%, 50% 30%, 
    25% 40%, 10% 50%
  );

  transform: scaleX(0);
  transform-origin: left;
  animation: drawZigzag 2s ease-out infinite;
}

/* ✅ New Keyframes for One-way Draw and Instant Reset */
@keyframes drawZigzag {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  95% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}

.page-id-640 .sticky-btn {
  display: none !important;
}


/* Click disable + hover mega menu fix */
.menu-item.mega-no-click > a {
  pointer-events: none !important;
  cursor: default !important;
}

/* Royal Addons Mega Menu hover enable */
.menu-item.mega-no-click:hover > .elementor-mega-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

