/* Basic reset and styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: 'ui-monospace';
  background: white;
  overflow-x: hidden;
  z-index: 1;
  position: relative;
  background: linear-gradient(359deg, #e7d0ca, #ccc2ff);
}

/* For Chrome, Safari, and Edge */
::-webkit-scrollbar {
  width: 8px; /* Adjust width for vertical scrollbar */
  height: 8px; /* Adjust height for horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color of the track */
}

::-webkit-scrollbar-thumb {
  background: #888; /* Color of the scroll thumb */
  border-radius: 4px; /* Rounded edges for a sleek look */
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* Darker shade when hovered */
}





header {
  position: relative;
  display: flex;
  /* Use flexbox to layout children horizontally */
  align-items: center;
  /* Center-align items vertically */
  justify-content: center;
  /* Space between logo and nav */
  padding: 0px 20px;
  /* Padding around the entire header */
  z-index: 2;
  /* margin-top: 10px; */
  margin: 10px;
  /* background: linear-gradient(148deg, #9e83b7, #66c9e6); */
  /* border-radius: 20px; */
  font-family: ui-monospace;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

#nodeCluster {
  display: block;
  border-radius: 50%;
  /* Ensures the visual shape is circular */
  background: radial-gradient(circle, #222, #111);
  box-shadow: 11px 12px 4px rgba(0, 0, 0, 0.1);
  /* Adds spherical depth */
}

.main-container {

  /* margin-top: 100px; */
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
  text-align: center;
  z-index: 2;
  position: relative;
}


.prod-name {
  font-size: 5em;
  font-family: ui-monospace;
}

h1 {
  width: 75%;
  margin: 0.5em 0;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.description {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  font-style: oblique;
  color: darkblue;
  font-size: 3em;
  width: 50%;
}

.sub-heading {
  font-size: 2em;
}

.highlight {
  /* color: #FFEB3B; */
  color: #FFE400;
}

.content-container {
  width: 75%;
  /* max-width: 1000px; */
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

/* Figure styling adds depth via shadow and subtle 3D transform */
.video-depth {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Wrapper to position the play overlay */
.video-wrapper {
  position: relative;
  display: inline-block;
  box-shadow: 11px 12px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

video {
  width: 100%;
  /* max-width: 640px; */
  height: auto;
  display: block;
  border-radius: 4px;
}

 /* Custom play button overlay */
 .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}
.play-overlay::before {
  content: '';
  display: block;
  margin-left: 5px; /* Adjusts the triangle position */
  width: 0;
  height: 0;
  border-left: 16px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
/* Hide play overlay when video is playing */
.hidden {
  display: none;
}

.cyberpunk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.grid-item {
  position: relative;
  padding: 20px;
  border: 1px solid;
  /* Metallic gradient background */
  background: linear-gradient(45deg, #07052c, #614a6ce0);
  box-shadow:  11px 12px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border-radius: 10px;
}

/* Title style */
.grid-item h2 {
  margin-bottom: 10px;
  /* font-size: 1.2rem; */
  color: #00ffff;
  /* text-transform: uppercase; */
}

/* Description style */
.grid-item p {
  /* font-size: 0.95rem; */
  line-height: 1.4;
  color: #fff;
}

/* Hover effect: slight scale & stronger glow */
.grid-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #0ff;
}







@keyframes hoverEffect {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}



.logo-container a img {
  height: 120px;
  /* Adjust height of the logo */
  width: auto;
  /* border: 1px solid black; */
  /* border-radius: 10px; */
  /* Maintain aspect ratio of the logo */
}


nav {
  display: flex;
  /* Ensures all nav items are lined up in a row */
  align-items: center;
  /* Center-align nav items vertically */
  white-space: nowrap;
}

nav a {
  margin-left: 20px;
  /* Spacing between each nav link */
  text-decoration: none;
  /* Removes underline from links */
  color: inherit;
  /* Inherits color from parent elements */
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

nav ul li {
  padding: 0 1rem;
}

nav ul li a {
  text-decoration: underline;
  color: #333;
  font-weight: bolder;
  font-size: x-large;
}

.feature-heading {
  font-size: xxx-large;
  padding: 10px;
  margin-top: 100px;
  margin-left: 10%;
  background: linear-gradient(45deg, rgb(73 72 171 / 80%), rgba(255, 255, 255, 0.2));

}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.image-item {
  text-align: center;
  margin: 10px;
}

.image-item img {
  width: 100%;
  height: 250px;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 11px 12px 4px rgba(0, 0, 0, 0.1);
}

.image-item p {
  margin-top: 5px;
  font-size: 24px;
  color: white;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0.2));
}

.image-item img:hover {
  transform: scale(1.5);
  /* Scale the image up by 10% on hover */
}


.text-block {
  position: relative;
  font-size: xxx-large;
  /* font-family: Arial, sans-serif; */
  color: white;
  text-align: center;
  padding: 30px 40px;
  background: linear-gradient(126deg, #9b30a7, #414cedde);
  border-radius: 10px;
  box-shadow: 11px 12px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
  margin-top: 50px;
  border: 1px solid;
}
/* Styling for the strike-through "address" */
.strike {
  color: black;
  text-decoration: line-through;
  text-decoration-color: red;
  text-decoration-thickness: 7px;
}
/* Canvas overlay */
.particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}


.how-it-works {

  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;

}

.flow-container {
  display: flex;
  align-items: center;
}

/* Futuristic styling for each step */
.flow-step {
  background: #1a1a1a;
  padding: 30px 40px;
  margin: 0 10px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s forwards, pulse 3s ease-in-out infinite;
  box-shadow: 0 0 15px rgb(97 77 193 / 50%), 0 0 30px rgb(101 20 228 / 50%);
}

/* Shine effect on hover */
.flow-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: left 0.5s ease-in-out;
}

.flow-step:hover::before {
  left: 100%;
}

/* Text shadow for neon glow */
.flow-step span {
  font-size: x-large;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 5px #fff, 0 0 10px #ff0066, 0 0 15px #ffcc00;
}

/* Futuristic styling for arrow */
.arrow {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
  margin: 0 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s forwards;
  filter: drop-shadow(0 0 8px #ff0066) drop-shadow(0 0 16px #ffcc00);
}

/* Sequential animation delays for steps */
.flow-step:nth-child(1) {
  animation-delay: 0.5s;
}

.flow-step:nth-child(3) {
  animation-delay: 1.5s;
}

.flow-step:nth-child(5) {
  animation-delay: 2.5s;
}

.flow-step:nth-child(7) {
  animation-delay: 3.5s;
}

/* Animation delays for arrows (every even child) */
.arrow:nth-of-type(1) {
  animation-delay: 1s;
}

.arrow:nth-of-type(2) {
  animation-delay: 2s;
}

.arrow:nth-of-type(3) {
  animation-delay: 3s;
}

/* Fade in keyframes */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle pulse animation */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

.image-item-construction{

  height: 250px;
 
}



.footer-text {
  font-size: 0.8rem;
  /* Small font size */
  color: #6c757d;
  /* Subtle gray color */
  margin: 0;
  line-height: 1.5;
}