/*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;
}

/*whats app*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 103px;
    right: 26px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;

    /* add animation */
    animation: pulse-animation 2s infinite;
}

.whatsapp-float:hover {
    animation: none;
    transform: scale(1.1);
}

/*/whatsapp*/

@media screen and (max-width:768px){
    .whatsapp-float {
        left: 20px;
        bottom: 21px;
    }
}

#back-to-top-btn
{
    display:none!important;
}

/* Pulse animation */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/*@keyframes pulse-animation {*/
/*    0% {*/
/*        box-shadow: 0 0 0 0 rgba(0,196,237,.8)*/
/*    }*/

/*    100% {*/
/*        box-shadow: 0 0 0 50px rgba(0,196,237,0)*/
/*    }*/
/*}*/

    @media screen and (max-width:768px){
  

section#eleven {
    display: none;
}
    }
    
