@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.wrapper {
    background-color: black;
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 0;
}

.wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:  
        radial-gradient(at 20% 30%, rgba(1, 239, 172, 0.034) 0%, transparent 50%),  
        radial-gradient(at 70% 20%, rgba(81, 23, 139, 0.068) 0%, transparent 50%),  
        radial-gradient(at 30% 70%, rgba(20, 126, 165, 0.12) 0%, transparent 50%),  
        radial-gradient(at 80% 80%, rgba(1, 203, 174, 0.14) 0%, transparent 50%),  
        radial-gradient(at 50% 50%, rgba(48, 13, 172, 0.12) 0%, transparent 50%);
    filter: blur(50px);
    z-index: -1;
}

.container {
    width: 90vw;
    max-width: 100%;
    margin: 0 auto;
}

header {
    padding: 50px 0;
}

header .logo a{
    text-transform: uppercase;
    font-size: 29px;
    font-weight: 800;
    color: #cdf97c;
}

header nav {
    float: right;
    width: 50%;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

header nav ul li {
    display: inline-block;
    position: relative;
    z-index: 2;
}

header nav ul li a {
    color: #fff;
}

header nav ul li:not(.active):not(.btn) a {
    position: relative;
    text-decoration: none;
}

header nav ul li:not(.active):not(.btn) a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 5px;
    background-color: #aa7cfb;
}

header nav ul {
    display: flex;
    align-items: center;
}



:root {
    --clr-neon: #aa7cfb;
    --clr-bg: hsl(323 21% 16%);
  }
  
  header nav ul li.btn a {
      font-size: 16px;
      height: 40px;
      width: 130px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      text-decoration: none;
      color: var(--clr-neon);
      border: var(--clr-neon) 3px solid;
      background-color: transparent;
      border-radius: 0.25em;
      text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em currentColor;
      box-shadow: inset 0 0 0.5em 0 var(--clr-neon), 0 0 0.5em 0 var(--clr-neon);
      transition: all 0.5s;
      padding: 0;
  }
  
  header nav ul li.btn a:hover {
      background-color: var(--clr-neon);
      color: #fff;
  }

  header nav ul li .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    border: var(--clr-neon) 2px solid;
    border-radius: 0.4em;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
    z-index: 3;
    box-shadow: 0 0 0.5em var(--clr-neon);
    left: -65px;
}

header nav ul li:hover .submenu {
    display: block;
}

header nav ul li .submenu li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    transition: background-color 0.3s ease;
    border-radius: 0.25em;
    text-align: center;
    background-color: black;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

header nav ul li .submenu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    color: white;
    text-decoration: none;
    text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em currentColor;
    transition: color 0.3s;
}

header nav ul li .submenu li:hover {
    background-color: var(--clr-neon);
}

header nav ul li .submenu li a:hover {
    color: #fff;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
    flex-wrap: wrap;
}

.hero--info {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 20px;
}

.hero--info h2 {
    color: #aa7cfb;
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 20px;
    margin-top: -100px;
}

.hero--info h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero--info a {
    display: inline-block;
    margin-top: 20px;
}

.glowing-btn {
    padding: 10px 20px;
    background-color: #aa7cfb;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    margin-top: 30px;
}

.hero--banner {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.bannerseoality {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

:root {
  --glow-color: #aa7cfb;
}

.glowing-btn {
  position: relative;
  color: var(--glow-color);
  cursor: pointer;
  padding: 0.35em 1em;
  border: 0.18em solid var(--glow-color);
  border-radius: 0.45em;
  background: none;
  perspective: 3em;
  font-size: 1.6em;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-top: 30px;
  margin-left: 18px;

  -webkit-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
    0px 0px 0.5em 0px var(--glow-color);
  -moz-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
    0px 0px 0.5em 0px var(--glow-color);
  box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
    0px 0px 0.5em 0px var(--glow-color);
  animation: border-flicker 5s linear infinite;
}

.glowing-txt {
  float: left;
  margin-right: -0.8em;
  -webkit-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
    0 0 0.45em var(--glow-color);
  -moz-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
    0 0 0.45em var(--glow-color);
  text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--glow-color);
  animation: text-flicker 3s linear infinite;
}

.faulty-letter {
  opacity: 0.5;
  animation: faulty-flicker 2s linear infinite;
}

.glowing-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.7;
  filter: blur(1em);
  transform: translateY(120%) rotateX(95deg) scale(1, 0.35);
  background: var(--glow-color);
  pointer-events: none;
}

.glowing-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  background-color: var(--glow-color);
  box-shadow: 0 0 100em 0.2em var(--glow-color);
  transition: opacity 100ms linear;
}

.glowing-btn:hover {
  color: rgba(0, 0, 0, 0.8);
  text-shadow: none;
  animation: none;
}

.glowing-btn:hover .glowing-txt {
  animation: none;
}

.glowing-btn:hover .faulty-letter {
  animation: none;
  text-shadow: none;
  opacity: 1;
}

.glowing-btn:hover:before {
  filter: blur(1.5em);
  opacity: 1;
}

.glowing-btn:hover:after {
  opacity: 1;
}

@keyframes faulty-flicker {
  0% {
    opacity: 0.1;
  }
  2% {
    opacity: 0.1;
  }
  4% {
    opacity: 0.5;
  }
  19% {
    opacity: 0.5;
  }
  21% {
    opacity: 0.1;
  }
  23% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  83% {
    opacity: 0.4;
  }

  87% {
    opacity: 1;
  }
}

@keyframes text-flicker {
  0% {
    opacity: 0.1;
  }

  2% {
    opacity: 1;
  }

  1% {
    opacity: 0.1;
  }

  9% {
    opacity: 1;
  }

  12% {
    opacity: 0.1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0.3;
  }
  30% {
    opacity: 1;
  }

  70% {
    opacity: 0.7;
  }
  72% {
    opacity: 0.2;
  }

  77% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.9;
  }
}

@keyframes border-flicker {
  0% {
    opacity: 0.1;
  }
  2% {
    opacity: 1;
  }
  4% {
    opacity: 0.1;
  }

  8% {
    opacity: 1;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 600px) {
  .hero {
    flex-direction: column;
    padding: 50px 10px;
  }

  .hero--info {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero--banner {
    width: 100%;
    margin-top: 30px;
  }

  .bannerseoality {
    width: 100%;
    object-fit: contain;
  }

  .glowing-btn {
    font-size: 1.2em;
    margin-top: 20px;
  }

  .hero--info h2 {
    font-size: 18px;
  }

  .hero--info h1 {
    font-size: 30px;
  }
}



.container .OurServices {
    padding-top: 20px;
    text-align: center;
}

.OurServices h2 {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    padding-top: 200px;
}

.OurServices .Services {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 50px 0;
    gap: 30px;
    flex-wrap: nowrap;
}

.OurServices .block {
    text-align: center;
    flex: 1 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    border-radius: 30px;
    transition: border-color 0.5s ease;
}

.OurServices .block img {
    width: 100%;
    max-width: 320px;
    height: auto;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.OurServices .block span {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #ffffff;
}

.OurServices .block .btn-more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.OurServices .block:hover {
    border-color: #cdf97c;
}

.OurServices .block:hover img {
    transform: scale(1.1);
    opacity: 0.3;
}

.OurServices .block:hover .btn-more {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .OurServices .block {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 480px) {
    .OurServices .block {
        flex: 1 1 100%;
    }
}

.highlighted {
    color: #cdf97c;
}


.big-text {
    padding: 50px 0;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    width: 1200px;
}

.neon-text {
    color: #aa7cfb;
    text-shadow: 
        0 0 2px #aa7cfb,
        0 0 5px #aa7cfb,
        0 0 5px #000000,
        0 0 3px #000000;
    font-weight: 500;
    font-size: 20px;
}

.highlight-box {
    background-color: #aa7cfb;
    color: #ffffff;
    padding: 5px 10px;
    border: 2px solid #aa7cfb;
    display: inline-block;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.103);
}

.workprocess {
    background: url('/img/bgprocess.png') no-repeat center center fixed;
    background-size: cover;
    padding: 80px 0;
}

.workprocess h3,
.workprocess p {
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.workprocess h3 {
    font-size: 30px;
}

.workprocess .infoprocess {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.workprocess .infoprocess .block {
    text-align: center;
    width: 20%;
    margin: 30px 2%;
}

.workprocess .infoprocess .block img {
    margin-bottom: 15px;
}

.about-us {
    padding: 100px 20px;
    text-align: center;
}

.about-us h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.about-us-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.about-text {
    max-width: 600px;
    text-align: justify;
    padding: 10px 10px;
    border: 2px solid #aa7cfb;
    display: inline-block;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.032);
}

.about-text p {
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    padding: 10px;
    width: 70%;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
    margin-top: 50px;
}

.stat:hover {
    transform: scale(1.05);
}

.stat h3 {
    font-size: 24px;
    color: #ffffff;
    margin: 0;
}

.stat p {
    font-size: 16px;
    color: #aa7cfb;
    margin: 5px 0 0;
}

.head-text {
    font-size: 32px;

}

.toggle-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    gap: 5px;
}

.toggle-button {
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 14px;
    margin-top: 30px;
}

.toggle-button.active {
    background-color: #aa7cfb;
    color: white;
}

.toggle-button:hover {
    background-color: #e6e6e6;
}

.price-list .service {
    display: none;
    padding: 40px;

}

.price-list .service.active {
    display: block;
    text-align: center;
    padding-top: 30px;
}

.packages {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 120px;
    padding-top: 30px;
}

.package-card {
    background-color: #ffffff1f;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 15px;
    width: 230px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.package-card h3 {
    font-size: 1.3em;
    margin-bottom: 8px;
}

.package-card .price {
    font-size: 1.8em;
    color: #ffffff;
    margin: 8px 0;
    background: #77777779;
    border-radius: 10px;
    padding: 10px 0px;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.package-card ul li {
    margin: 5px 0;
    font-size: 1em;
    color: #ffffff;
}

.package-card .buy-button:hover {
    background-color: #cdf97c;
    box-shadow: 
        0 0 50px #cdf97c, 
        0 0 25px #cdf97c, 
        0 0 50px #cdf97c,
        0 0 100px #cdf97c, 
        0 0 200px #cdf97c;
}

.buy-button {
    background-color: #cdf97c;
    color: rgb(0, 0, 0);
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .toggle-buttons {
        flex-direction: column;
        align-items: center;
    }

    .toggle-button {
        width: 100%;
        margin: 5px 0;
    }

    .package-card {
        padding: 15px;
        margin: 10px 0;
    }
}

.container h2 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    padding-top: 100px;
}

.package-card {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.package-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toggle-button.blink {
    animation: blink-animation 0.5s ease-in-out;
}

.package-card ul li:nth-child(odd) {
    color: #ffffff;
}

.package-card ul li:nth-child(even) {
    color: #c1ffcb;
}



.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab {
    background-color: #2c2c2c;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.tab h2 {
    font-size: 40px;
}

.tab_button {
    background-color: #ab7cfbb7;
    color: #fff;
    padding: 15px;
    text-align: left;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.tab_button:hover {
    background-color: #8b63d134;
}

.tab_button:focus {
    outline: none;
}

.tab_panel {
    padding: 15px;
    background-color: #1f1f1f;
    display: none;
    color: #ddd;
    font-size: 1em;
}

.tab_panel p {
    margin: 0;
}

.tab.active .tab_panel {
    display: block;
}

.tab.active .tab_button {
    background-color: #cdf97cd8;
    color: #121212;
}

@media (max-width: 600px) {
    .tab_button {
        font-size: 1em;
        padding: 12px;
    }

    .tab_panel {
        font-size: 0.9em;
    }
}

.footer {
    width: 100vw;
    max-width: 100%;
    background-color: #171c21;
    padding: 40px 20px;
    text-align: center;
    margin-top: 25px;
    position: relative;
    left: 0;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

.contact-payment {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    max-width: 600px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border: 1px solid #ab7cfb;
    text-align: center;
}

.payment-methods {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    max-width: 280px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border: 1px solid #ab7cfb;
    display: block;
    text-decoration: none;
}

.payment-methods p {
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 40px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.payment-icons img[alt="other crypto"] {
    width: 110px;
}

.payment-icons img:hover {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .contact-payment {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .payment-methods {
        max-width: 100%;
    }
}


.highlight {
    color: #cdf97cd8;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.modal-content {
    width: 300px;
    padding: 20px;
    background: #ffffff1a;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    text-align: center;
    color: rgb(255, 255, 255);
    border: 1px solid #cdf97cd8;
    max-height: 90vh;
    overflow-y: auto;
}
.close {
    cursor: pointer;
    font-size: 20px;
    color: #ab7cfb;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    padding-left: 30px;
    width: 80%;
    max-width: 750px;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ab7cfb;
    line-height: 2;
    max-height: 90vh;
    overflow-y: auto;
}
.popup h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #aa7cfb;
    text-align: center;
}

.popup p {
    font-size: 16px;
    margin-bottom: 30px;
}

.btn-close {
    text-decoration: none;
    padding: 10px 20px;
    background-color: transparent;
    color: #ab7cfb;
    border: 1px solid #ab7cfb;
    font-size: 16px;
    cursor: pointer;
}

.btn-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}


.popup .popup-content a {
    text-decoration: none;
}

.popup.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .popup-content, .modal-content {
        width: 95%;
        max-height: 80vh;
    }
}

section {
    padding: 50px 20px;
    text-align: center;
  }
  
  .neon-divider {
    width: 50%;
    height: 6px;
    margin: 30px auto;
    background-color: #ab7cfb;
    box-shadow: 0 0 20px #ab7cfb, 0 0 30px #ab7cfbab;
    border-radius: 5px;
  }

  .neon-divider2 {
    width: 50%;
    height: 6px;
    margin: 90px auto;
    background-color: #ab7cfb;
    box-shadow: 0 0 20px #ab7cfb, 0 0 30px #ab7cfbab;
    border-radius: 5px;
  }

  .email-link {
    display: none;
    font-size: 18px;
    color: #ab7cfb;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

.payment-methods:hover .email-link {
    display: block;
}