/*cta*/
.cyber-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  /*color: #ffff00;*/
 
  border: 1px solid rgba(0, 247, 255, 0.5);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.4);
}

 .cyber-btn-dark {
 color:#22faff;
  background: linear-gradient(135deg, #020024, #050a30, #020024);
  }
 .cyber-btn-light {
 color:#0e4083;
  background: white;
  }

/* Neon glow animation */
.cyber-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 247, 255, 0.6),
    transparent
  );
  transform: translateX(-100%);
  animation: scan 3s infinite;
}

/* Pulse ring */
.cyber-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  border: 2px solid rgba(0, 247, 255, 0.6);
  animation: pulse 2s infinite;
}

.cyber-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 30px rgba(0, 247, 255, 0.9);
}

.cyber-text {
  position: relative;
  z-index: 2;
}

.cyber-arrow {
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.cyber-btn:hover .cyber-arrow {
  transform: translateX(6px);
}

/* Animations */
@keyframes scan {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

@keyframes pulse {
  0% { opacity: 0.2; }
  50% { opacity: 0.8; }
  100% { opacity: 0.2; }
}

/*cta*/
a {
    text-decoration: none!important;
}

a.inhclr{
        color: inherit;

}


.cyber-btn-blue {
    color: white;
    background: #0e4083;
}
