:root {
  --body-bg-color: #000000;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --footer-bg-color: #0d0d0d50;
  --link-color: #abf1rgba(13, 13, 13, 0.199)
  --header-bg-color: #ffffff;
  --font-family: Tahoma, Geneva, sans-serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.06) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 229, 255, 0.08), transparent 22%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.05), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(0, 153, 255, 0.06), transparent 24%);
  animation: bgGlowMove 10s ease-in-out infinite;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.95; 
  background:
    linear-gradient(115deg,
      transparent 0%,
      transparent 44%,
      rgba(0, 234, 255, 0.00) 45%,
      rgba(0, 234, 255, 0.35) 47.5%,
      rgba(255, 255, 255, 0.65) 50%,
      rgba(0, 234, 255, 0.35) 52.5%,
      rgba(0, 234, 255, 0.00) 55%,
      transparent 56%,
      transparent 100%
    ),
    linear-gradient(65deg,
      transparent 0%,
      transparent 28%,
      rgba(255, 255, 255, 0.00) 29.5%,
      rgba(255, 255, 255, 0.35) 31.5%,
      rgba(0, 183, 255, 0.45) 33%,
      rgba(255, 255, 255, 0.00) 35%,
      transparent 37%,
      transparent 100%
    ),
    linear-gradient(135deg,
      transparent 0%,
      transparent 70%,
      rgba(0, 225, 255, 0.00) 71.5%,
      rgba(0, 225, 255, 0.28) 73.5%,
      rgba(255, 255, 255, 0.55) 75%,
      rgba(0, 225, 255, 0.00) 77%,
      transparent 79%,
      transparent 100%
    );
  background-size: 180% 180%, 160% 160%, 200% 200%;
  filter: blur(0.3px); 
  animation: neonLinesMove 12s linear infinite;
}
@keyframes neonLinesMove {
  0% {
    background-position: -30% 0%, 120% 20%, 50% 120%;
  }
  50% {
    background-position: 60% 40%, 40% 80%, 80% 40%;
  }
  100% {
    background-position: 140% 100%, -20% 120%, 120% -20%;
  }
}
@keyframes bgGlowMove {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate3d(0, -12px, 0) scale(1.03);
    opacity: 1;
  }
}
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}
h2, h3 {
  color: var(--heading-color) !important;
}
.content-area a {
  color: rgb(188, 253, 245);
  text-decoration: underline;
}
.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
  .sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}
.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}
.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}
.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}
.sidebar-page-list li a:hover {
  padding-left: 11px;
}
.error_page {
  min-height: 70vh;
}
  .footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}
.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}
.footer a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
.footer img {
        filter: brightness(0) invert(1);
      }
 .navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.hero-section h1 {
  position: relative;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #dff9ff 40%, #7cecff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 10px rgba(0, 229, 255, 0.25),
    0 0 20px rgba(0, 153, 255, 0.18),
    0 0 40px rgba(0, 153, 255, 0.08);
  animation: heroGlow 3.5s ease-in-out infinite;
}
.hero-section {
  padding: 115px 0 30px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
      box-shadow: 0 2px 10px rgba(90, 189, 235, 0.1);
}
.hero-section.with-bg {
  background-image: url('/images/tebg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.171));
  opacity: 0.5;
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 77px 0;
  }
}
  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }
  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    margin: 7px 0;
  }
  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }
  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}
.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}
.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}
.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}
.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.dropdown.open .dropdown-menu {
  display: block;
}
@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }
  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}
.fancy-section {
  position: relative;
  padding: 70px 28px;
  margin: 50px auto;
  background:
    radial-gradient(circle at top left, rgba(0, 225, 255, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(0, 140, 255, 0.14), transparent 35%),
    linear-gradient(145deg, #05070b 0%, #0b1018 45%, #06090f 100%);
  border: 1px solid rgba(120, 220, 255, 0.16);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 18px 60px rgba(0, 0, 0, 0.65),
    0 0 35px rgba(0, 180, 255, 0.10);
  overflow: hidden;
  isolation: isolate;
}
.fancy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 28px;
  background: linear-gradient(
    130deg,
    rgba(0, 255, 255, 0.0) 0%,
    rgba(0, 238, 255, 0.45) 22%,
    rgba(255, 255, 255, 0.10) 50%,
    rgba(0, 153, 255, 0.45) 78%,
    rgba(0, 255, 255, 0.0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: borderGlow 5s linear infinite;
}
.fancy-section::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 45%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.015) 30%,
    rgba(0, 238, 255, 0.13) 50%,
    rgba(255, 255, 255, 0.02) 70%,
    transparent 100%
  );
  transform: rotate(16deg);
  filter: blur(6px);
  animation: shineSweep 7s ease-in-out infinite;
  pointer-events: none;
}
.fancy-section h2,
.fancy-section h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f5fbff;
  text-shadow:
    0 0 8px rgba(0, 221, 255, 0.12),
    0 0 18px rgba(0, 160, 255, 0.10);
  z-index: 1;
}
.fancy-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #dff9ff 45%, #7feaff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleFloat 4.8s ease-in-out infinite, neonPulse 3.2s ease-in-out infinite;
}
.fancy-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 110px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00eaff, #6fd6ff, transparent);
  box-shadow:
    0 0 10px rgba(0, 234, 255, 0.8),
    0 0 24px rgba(0, 140, 255, 0.45);
  animation: linePulse 2.8s ease-in-out infinite;
}
.fancy-section h2::after {
  content: "";
  position: absolute;
  inset: auto auto -6px -18px;
  width: 160px;
  height: 40px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.20), transparent 72%);
  filter: blur(10px);
  z-index: -1;
  animation: auraMove 4s ease-in-out infinite;
}
.fancy-section h3 {
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  padding: 10px 18px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    rgba(7, 14, 22, 0.72);
  border: 1px solid rgba(92, 215, 255, 0.16);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.02),
    0 0 16px rgba(0, 174, 255, 0.08);
  animation: h3Glow 3.8s ease-in-out infinite;
}
.fancy-section h3::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 234, 255, 0.85), transparent);
  filter: blur(0.3px);
  animation: topLineScan 2.6s linear infinite;
}
.fancy-section p {
  position: relative;
  color: rgba(235, 245, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.85;
  text-shadow: 0 0 1px rgba(255,255,255,0.04);
  z-index: 1;
}
.fancy-section a {
  color: #7aefff;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.fancy-section a:hover {
  color: #c7fbff;
  text-shadow:
    0 0 8px rgba(0, 238, 255, 0.45),
    0 0 18px rgba(0, 140, 255, 0.25);
}
.fancy-section .inner-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(116, 218, 255, 0.10);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 30px rgba(255,255,255,0.015);
}
@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 8px rgba(0, 221, 255, 0.12),
      0 0 18px rgba(0, 160, 255, 0.10);
    filter: brightness(1);
  }
  50% {
    text-shadow:
      0 0 10px rgba(0, 245, 255, 0.35),
      0 0 22px rgba(0, 153, 255, 0.22),
      0 0 36px rgba(0, 153, 255, 0.12);
    filter: brightness(1.06);
  }
}
@keyframes titleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes h3Glow {
  0%, 100% {
    box-shadow:
      inset 0 0 18px rgba(255, 255, 255, 0.02),
      0 0 16px rgba(0, 174, 255, 0.08);
    border-color: rgba(92, 215, 255, 0.16);
  }
  50% {
    box-shadow:
      inset 0 0 18px rgba(255, 255, 255, 0.04),
      0 0 22px rgba(0, 220, 255, 0.14),
      0 0 34px rgba(0, 120, 255, 0.10);
    border-color: rgba(92, 215, 255, 0.30);
  }
}
@keyframes linePulse {
  0%, 100% {
    opacity: 0.7;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.08);
  }
}
@keyframes auraMove {
  0%, 100% {
    transform: translateX(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateX(18px) scale(1.08);
    opacity: 1;
  }
}
@keyframes borderGlow {
  0%, 100% {
    opacity: 0.7;
    filter: hue-rotate(0deg);
  }
  50% {
    opacity: 1;
    filter: hue-rotate(12deg);
  }
}
@keyframes shineSweep {
  0% {
    transform: translateX(-140%) rotate(16deg);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(320%) rotate(16deg);
    opacity: 0;
  }
}
@keyframes topLineScan {
  0% {
    opacity: 0.25;
    transform: translateX(-12px);
  }
  50% {
    opacity: 1;
    transform: translateX(12px);
  }
  100% {
    opacity: 0.25;
    transform: translateX(-12px);
  }
}
@media (max-width: 768px) {
  .fancy-section {
    padding: 60px 20px;
    border-radius: 22px;
  }
  .fancy-section h3 {
    padding: 8px 14px;
  }
}
.glass-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 229, 255, 0.10), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(0, 153, 255, 0.12), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.05), transparent 35%),
    linear-gradient(180deg, rgba(3, 8, 15, 0.92) 0%, rgba(6, 12, 20, 0.96) 50%, rgba(2, 6, 12, 0.94) 100%);
  isolation: isolate;
}
.glass-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.05) 50%, transparent 80%);
  transform: translateX(-120%);
  animation: sectionShine 9s ease-in-out infinite;
  pointer-events: none;
}
.glass-section::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -140px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.16) 0%, rgba(0, 217, 255, 0.04) 38%, transparent 72%);
  filter: blur(24px);
  animation: floatingOrb 10s ease-in-out infinite;
  pointer-events: none;
}
.glass-section .container {
  position: relative;
  z-index: 2;
}
.glass-section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff 0%, #d9f8ff 45%, #7cecff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 12px rgba(0, 229, 255, 0.18),
    0 0 30px rgba(0, 140, 255, 0.10);
  animation: titlePulse 4s ease-in-out infinite;
}
.glass-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #37e7ff, #8edfff, transparent);
  box-shadow:
    0 0 10px rgba(55, 231, 255, 0.75),
    0 0 22px rgba(0, 140, 255, 0.35);
  animation: lineGlow 2.8s ease-in-out infinite;
}
.glass-section .section-intro {
  max-width: 1180px;
  margin: 1.6rem auto 0;
  color: rgba(235, 245, 255, 0.90);
  font-size: 1.08rem;
  line-height: 1.95;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.06);
}
.box-one {
  position: relative;
  padding: 78px 32px 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%),
    rgba(11, 19, 31, 0.52);
  border: 1px solid rgba(121, 221, 255, 0.16);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 24px rgba(255, 255, 255, 0.02),
    0 0 24px rgba(0, 170, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  animation: boxFloat 6s ease-in-out infinite;
}
.box-one:hover {
  transform: translateY(-8px);
  border-color: rgba(121, 221, 255, 0.32);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 0 28px rgba(255, 255, 255, 0.03),
    0 0 36px rgba(0, 208, 255, 0.14);
}
.box-one::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 238, 255, 0.28), rgba(255, 255, 255, 0.06), rgba(0, 136, 255, 0.22));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}
.box-one::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 231, 255, 0.14), transparent 70%);
  filter: blur(10px);
  animation: orbPulse 6s ease-in-out infinite;
  pointer-events: none;
}
.icon-wrap {
  position: absolute;
  top: 22px;
  left: 28px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    rgba(0, 18, 34, 0.62);
  border: 1px solid rgba(122, 233, 255, 0.20);
  box-shadow:
    0 0 18px rgba(0, 214, 255, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: iconGlow 3.5s ease-in-out infinite;
}
.icon-wrap i {
  font-size: 1.5rem;
  color: #7cecff;
  text-shadow:
    0 0 10px rgba(0, 225, 255, 0.45),
    0 0 24px rgba(0, 132, 255, 0.18);
}
.box-one h3 {
  position: relative;
  margin-bottom: 1.1rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  color: #f6fcff;
  text-shadow:
    0 0 8px rgba(0, 221, 255, 0.12),
    0 0 18px rgba(0, 120, 255, 0.08);
}
.box-one h3::after {
  content: "";
  display: block;
  width: 84px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #39e7ff, rgba(57, 231, 255, 0.15));
  box-shadow: 0 0 12px rgba(57, 231, 255, 0.45);
}
.box-one p {
  position: relative;
  margin-bottom: 1rem;
  color: rgba(237, 245, 255, 0.90);
  font-size: 1.03rem;
  line-height: 1.92;
  z-index: 1;
}
.box-one p:last-child {
  margin-bottom: 0;
}
@keyframes titlePulse {
  0%, 100% {
    transform: translateY(0);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-3px);
    filter: brightness(1.08);
  }
}
@keyframes lineGlow {
  0%, 100% {
    opacity: 0.75;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.08);
  }
}
@keyframes boxFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes iconGlow {
  0%, 100% {
    box-shadow:
      0 0 18px rgba(0, 214, 255, 0.10),
      inset 0 1px 0 rgba(255,255,255,0.08);
  }
  50% {
    box-shadow:
      0 0 26px rgba(0, 231, 255, 0.20),
      0 0 44px rgba(0, 132, 255, 0.08),
      inset 0 1px 0 rgba(255,255,255,0.10);
  }
}
@keyframes orbPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}
@keyframes floatingOrb {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(24px) translateX(-18px);
  }
}
@keyframes sectionShine {
  0% {
    transform: translateX(-130%) skewX(-18deg);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(240%) skewX(-18deg);
    opacity: 0;
  }
}
@media (max-width: 991.98px) {
  .glass-section {
    padding: 80px 0;
  }
  .box-one {
    padding: 74px 24px 24px;
  }
  .icon-wrap {
    left: 22px;
  }
}
@media (max-width: 575.98px) {
  .glass-section h2 {
    font-size: 2rem;
  }
  .glass-section .section-intro,
  .box-one p {
    font-size: 0.98rem;
    line-height: 1.82;
  }
  .box-one {
    border-radius: 22px;
  }
}
.styled-section {
  position: relative;
  max-width: 1180px;
  margin: 80px auto;
  padding: 42px 34px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(7, 12, 20, 0.92) 0%, rgba(10, 18, 30, 0.88) 45%, rgba(4, 8, 14, 0.94) 100%);
  border: 1px solid rgba(116, 223, 255, 0.14);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 28px rgba(255, 255, 255, 0.02),
    0 0 30px rgba(0, 183, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.styled-section::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(0, 234, 255, 0.28),
    rgba(255, 255, 255, 0.08),
    rgba(0, 128, 255, 0.22),
    rgba(0, 234, 255, 0.18)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.styled-section::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -18%;
  width: 38%;
  height: 190%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 25%,
    rgba(0, 238, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.02) 75%,
    transparent 100%
  );
  transform: rotate(14deg);
  filter: blur(8px);
  animation: styledShine 8s ease-in-out infinite;
  pointer-events: none;
}
.styled-section p,
.styled-section ul {
  position: relative;
  z-index: 2;
}
.styled-section p {
  margin: 0 0 1.35rem;
  color: rgba(239, 246, 255, 0.92);
  font-size: 1.06rem;
  line-height: 1.95;
  letter-spacing: 0.01em;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.04);
}
.styled-section p:first-child,
.styled-section p:nth-child(2) {
  padding: 0 0 0 22px;
  border-left: 2px solid rgba(77, 225, 255, 0.28);
}
.styled-section p:first-child::before,
.styled-section p:nth-child(2)::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #8ef5ff 0%, #00d9ff 55%, rgba(0, 217, 255, 0.15) 100%);
  box-shadow:
    0 0 10px rgba(0, 225, 255, 0.7),
    0 0 22px rgba(0, 140, 255, 0.28);
  animation: pulseDot 2.8s ease-in-out infinite;
}
.styled-section p:nth-of-type(3) {
  display: inline-block;
  margin-top: 0.4rem;
  margin-bottom: 1.25rem;
  padding: 10px 18px;
  border-radius: 16px;
  font-weight: 700;
  color: #f8fdff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    rgba(5, 18, 31, 0.56);
  border: 1px solid rgba(126, 225, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 18px rgba(0, 183, 255, 0.08);
  text-shadow:
    0 0 8px rgba(0, 221, 255, 0.12),
    0 0 16px rgba(0, 120, 255, 0.08);
  animation: titleGlow 3.6s ease-in-out infinite;
}
.styled-section ul {
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.styled-section ul li {
  position: relative;
  padding: 18px 20px 18px 54px;
  border-radius: 22px;
  color: rgba(241, 247, 255, 0.94);
  font-size: 1rem;
  line-height: 1.75;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(9, 16, 27, 0.62);
  border: 1px solid rgba(111, 219, 255, 0.14);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 0 18px rgba(0, 170, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  animation: cardFloat 5.5s ease-in-out infinite;
}
.styled-section ul li:nth-child(2) {
  animation-delay: 0.4s;
}
.styled-section ul li:nth-child(3) {
  animation-delay: 0.8s;
}
.styled-section ul li:nth-child(4) {
  animation-delay: 1.2s;
}
.styled-section ul li:nth-child(5) {
  animation-delay: 1.6s;
}
.styled-section ul li:nth-child(6) {
  animation-delay: 2s;
}
.styled-section ul li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04)),
    rgba(0, 27, 48, 0.88);
  border: 1px solid rgba(110, 230, 255, 0.22);
  box-shadow:
    0 0 12px rgba(0, 221, 255, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.styled-section ul li::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 25px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #9ff8ff 0%, #22ddff 58%, #008cff 100%);
  box-shadow:
    0 0 8px rgba(0, 231, 255, 0.85),
    0 0 18px rgba(0, 140, 255, 0.35);
  animation: bulletPulse 2.4s ease-in-out infinite;
}
.styled-section ul li:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 219, 255, 0.28);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 26px rgba(0, 208, 255, 0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)),
    rgba(10, 20, 34, 0.72);
}
.styled-section .glow-orb-one,
.styled-section .glow-orb-two {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
  z-index: 1;
}
.styled-section .glow-orb-one {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -40px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.16), transparent 70%);
  animation: orbMoveOne 9s ease-in-out infinite;
}
.styled-section .glow-orb-two {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -30px;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.14), transparent 70%);
  animation: orbMoveTwo 11s ease-in-out infinite;
}
@keyframes styledShine {
  0% {
    transform: translateX(-140%) rotate(14deg);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    transform: translateX(320%) rotate(14deg);
    opacity: 0;
  }
}
@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}
@keyframes titleGlow {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      0 0 18px rgba(0, 183, 255, 0.08);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.10),
      0 0 26px rgba(0, 225, 255, 0.14),
      0 0 34px rgba(0, 120, 255, 0.08);
  }
}
@keyframes bulletPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}
@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes orbMoveOne {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(20px) translateX(-16px);
  }
}
@keyframes orbMoveTwo {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-14px) translateX(18px);
  }
}
@media (max-width: 991.98px) {
  .styled-section {
    padding: 34px 24px;
    border-radius: 24px;
  }
  .styled-section ul {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .styled-section {
    margin: 56px auto;
    padding: 28px 18px;
  }
  .styled-section p {
    font-size: 0.98rem;
    line-height: 1.82;
  }
  .styled-section p:first-child,
  .styled-section p:nth-child(2) {
    padding-left: 18px;
  }
  .styled-section ul li {
    padding: 16px 16px 16px 48px;
    border-radius: 18px;
    font-size: 0.95rem;
  }
}
  .section-wallets {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.349)),  url('/images/tesla-bg.webp');
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 50px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 40px;
    border: 1px solid #2c3e50;
}
.section-wallets h2 {
    color: #ffffff!important; 
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-wallets h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e7e4e4;
    bottom: -8px;
    left: 0;
}
.section-wallets p {
    color: #ffffff;
    line-height: 1.6;
}
.section-wallets h3 {
    color: #ffffff!important; 
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.section-wallets h3:hover {
    background-color: #2c3e50; 
    color: #fff;
    transform: scale(1.05);
}
.section-wallets ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.section-wallets ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #dadada; 
}
.section-wallets ul li::before {
    content: "✔"; 
    font-size: 1.5rem;
    color: #e2e2e2; 
    margin-right: 10px;
    transition: color 0.3s ease;
}
.section-wallets ul li:hover::before {
    color: #ebebeb; 
}
.linking {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
}
.linking h3 {
  margin: 0;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff, #7cecff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 10px rgba(0, 229, 255, 0.25),
    0 0 20px rgba(0, 140, 255, 0.15);
  position: relative;
}
.linking h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3fe6ff, transparent);
  box-shadow:
    0 0 10px rgba(0, 234, 255, 0.7);
}
.linking ul {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.linking .nav-item a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(235,245,255,0.9);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(10,18,30,0.65);
  border: 1px solid rgba(110, 220, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 6px 16px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
  overflow: hidden;
}
.linking .nav-item a::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3fe6ff;
  box-shadow:
    0 0 8px rgba(0, 234, 255, 0.9),
    0 0 18px rgba(0, 140, 255, 0.4);
  opacity: 0;
  transition: 0.25s;
}
.linking .nav-item a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 229, 255, 0.15),
    transparent
  );
  transform: translateX(-120%);
  transition: 0.6s;
}
.linking .nav-item a:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: rgba(110, 220, 255, 0.35);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.3),
    0 0 18px rgba(0, 208, 255, 0.15);
}
.linking .nav-item a:hover::after {
  transform: translateX(120%);
}
.linking .nav-item a:hover::before {
  opacity: 1;
}
.linking .nav-item a:active {
  transform: scale(0.96);
}
@media (max-width: 768px) {
  .linking {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .linking ul {
    width: 100%;
  }
}