

    .navbar_neon {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 12px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px #0ff, 0 0 20px #8000ff;
}

.navbar_neon a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
  transition: 0.3s;
}

.navbar_neon a:hover {
  color: #0ff;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
}

.navbar_neon .logo {
  font-size: 22px;
  color: #0ff !important;
  font-weight: 800;
  text-shadow: 0 0 5px #0ff;
}


    .glass {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 20px;
      margin-bottom: 20px;
    }

    .btn-glassy {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.4);
    color: #0ff;
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  .btn-glassy:hover {
    background: rgba(0, 255, 255, 0.2);
    color: #fff;
    border-color: #0ff;
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  }
    h2 {
      font-weight: bold;
      border-bottom: 2px solid #0ff;
      padding-bottom: 10px;
      margin-bottom: 20px;
    }

    .btn-readmore {
    background: rgba(0, 255, 255, 0.15);
    border: 1px solid #0ff;
    color: #0ff;
    backdrop-filter: blur(8px);
    padding: 12px 30px;
    border-radius: 40px;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    margin-top: 15px;
    transition: all 0.3s ease;
  }

  .btn-readmore:hover {
    background: rgba(0, 255, 255, 0.3);
    color: #fff;
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  }
    .navbar {
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(10px);
    }
    .card {
        background: rgba(255,255,255,0.05);

        color: #fff;
        border: 1px solid rgba(0,255,255,0.2);
        box-shadow: 0 0 10px rgba(0,255,255,0.3);
        backdrop-filter: blur(6px);



    }
    .card img {
      border-radius: 15px;
    }
    .scrolling-wrapper {
      overflow-x: auto;
      display: flex;
      gap: 1rem;
    }
    .scrolling-wrapper .card {
      min-width: 250px;
    }
    footer {
      margin-top: 50px;
      padding: 20px;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(10px);
      text-align: center;
    }


    .nav-link {
        position: relative;
        color: #0ff !important;
        overflow: hidden;
        transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0ff;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #fff !important;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}

.nav-link:hover::after {
  left: 0;
  width: 100%;
}




.flicker {
  color: #0ff;
  font-weight: bold;
  text-align: center;
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff,
    0 0 40px #0ff;
  animation: softFlicker 3s infinite;
}

@keyframes softFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 100% {
    opacity: 1;
    text-shadow:
      0 0 5px #0ff,
      0 0 10px #0ff,
      0 0 20px #0ff,
      0 0 40px #0ff;
  }
  20%, 22%, 24%, 55% {
    opacity: 0.85;
    text-shadow:
      0 0 3px #0ff,
      0 0 6px #0ff,
      0 0 12px #0ff,
      0 0 24px #0ff;
  }
}


@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.4;
  }
}

.neon-shadow {
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #0ff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 8px #0ff, 0 0 16px #0ff;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: #0ff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 4px #0ff, 0 0 8px #0ff;
}


.touch-effect {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
  z-index: 9999;
  box-shadow: 0 0 20px #0ff, 0 0 40px #8000ff;
  opacity: 0;
}

.neon-divider {
  border-top: 3px solid #0ff;
  opacity: 0.6;
  margin: 40px 0;
  box-shadow:
    0 0 8px #0ff,
    0 0 16px #0ff,
    0 0 24px #0ff,
    0 0 32px #8000ff,
    0 0 40px #8000ff;
}


.neon-box {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(0,255,255,0.3);
  border-radius: 20px;
  box-shadow:
    0 0 10px #0ff,
    0 0 20px #0ff,
    0 0 30px #0ff,
    0 0 40px #8000ff;
  padding: 20px;
  backdrop-filter: blur(12px);
  transition: 0.3s;
}

.neon-box:hover {
  box-shadow:
    0 0 15px #0ff,
    0 0 30px #0ff,
    0 0 45px #8000ff,
    0 0 60px #8000ff;
  transform: translateY(-5px);
}

.neon_box_static {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.neon_box_static::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(270deg, #0ff, #8000ff, #f0f, #0ff);
  background-size: 600% 600%;
  border-radius: 20px;
  z-index: -1;
  animation: neonBorder 6s ease infinite;
}

@keyframes neonBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.neon_ribben {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  backdrop-filter: blur(6px);
  z-index: 1;
  box-shadow:
    0 0 6px #0ff,
    0 0 12px #8000ff;
  border: 1.5px solid #0ff;
}

.neon_ribben::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px;
  border: 1.5px solid transparent;
  background: linear-gradient(270deg, #0ff, #8000ff, #f0f, #0ff);
  background-size: 300% 300%;
  opacity: 0.4;
  z-index: -1;
  filter: blur(6px);
  animation: neonGlowLite 6s ease infinite;
}

@keyframes neonGlowLite {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.neon_button_alt {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #0ff;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0 0 10px #0ff,
    0 0 20px #0ff,
    0 0 30px #8000ff,
    0 0 50px #8000ff;
  transition: 0.3s;
}

.neon_button_alt::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(270deg, #0ff, #8000ff, #f0f, #0ff);
  background-size: 600% 600%;
  opacity: 0.6;
  z-index: -1;
  border-radius: 50px;
  filter: blur(8px);
  animation: neonButtonGlowAlt 5s ease infinite;
}

@keyframes neonButtonGlowAlt {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.neon_button_alt:hover {
  border-color: #f0f;
  box-shadow:
    0 0 20px #f0f,
    0 0 40px #ff00ff,
    0 0 60px #ff00ff;
  color: #fff;
}

.neon_button_alt:hover::before {
  background: linear-gradient(270deg, #f0f, #ff00ff, #8000ff, #f0f);
  background-size: 600% 600%;
}

  .carousel-container {
      width: 100%;
      max-width: 1600px;
      max-height: 1400px;
      margin: 50px auto;
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    }

    .carousel {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      min-height: 450px;
      overflow: hidden;
    }

    .carousel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      border-radius: 20px;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }

    .carousel img.active {
      opacity: 1;
      z-index: 1;
    }

    /* ریسپانسیو برای موبایل */
    @media (max-width: 768px) {
      .carousel {
        aspect-ratio: 1/ 1;
        min-height: 450px;
      }

      .carousel-container {
        margin: 20px auto;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
      }

      .carousel img {
        border-radius: 10px;
      }
    }

    /* برای تبلت */
    @media (max-width: 1200px) {
      .carousel {
        aspect-ratio: 1 / 1;

      }
    }


.carousel-cta-bottom {
  position: relative;
  text-align: center;
  margin-top: 20px;
  z-index: 1;
}

.carousel-cta-bottom a {
  padding: 12px 24px;
  font-size: 20px;
  border-radius: 10px;
}


.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
  box-shadow: 0 0 10px cyan;
  transition: all 0.3s ease;
}

.carousel button:hover {
  background-color: rgba(0,0,0,0.7);
}

.carousel .prev { left: 10px; }
.carousel .next { right: 10px; }


.neon_btn_exit_lt {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #f44;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0 0 4px #f44,
    0 0 8px #f44;
  transition: all 0.3s ease;
}

.neon_btn_alt_lt {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #0ff;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0 0 8px #0ff,
    0 0 16px #8000ff;
  transition: all 0.3s ease;
}

.neon_btn_alt_lt::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(270deg, #0ff, #8000ff, #f0f, #0ff);
  background-size: 400% 400%;
  opacity: 0.4;
  z-index: -1;
  border-radius: 50px;
  filter: blur(4px);
  animation: neonButtonGlowAlt 6s ease infinite;
}

@keyframes neonButtonGlowAlt {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.neon_btn_alt_lt:hover {
  border-color: #f0f;
  box-shadow:
    0 0 14px #f0f,
    0 0 28px #ff00ff;
  color: #fff;
}

.neon_btn_alt_lt:hover::before {
  opacity: 0.6;
}


    .status-ok {
  color: #0f0;
}

.status-fail {
  color: #FF6B6B;
}

.neon_btn_alt_lt_sp {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #0ff;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.neon_btn_alt_lt_sp::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;

  background-size: 400% 400%;
  opacity: 0.4;
  z-index: -1;
  border-radius: 50px;
  filter: blur(4px);
  animation: neonButtonGlowAlt 6s ease infinite;
}

@keyframes neonButtonGlowAlt {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
