.max-w-screen-md {
  max-width: 768px;
}

.innovative-chip-text-mob {
  font-size: 16px;
  line-height: unset;
  margin-bottom: 10px;
}
.innovative-chip-text-desk {
  font-size: 18px;
  line-height: unset;
  margin-bottom: 12px;
}

.video-cardh {
  width: 254px;
  height: 454px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  background: #000;
}

.video-cardh iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.swiper-slide {
  /* width: 300px;
  height: 300px; */
}

.hello {
  /* width: 300px;
  height: 300px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(59, 130, 246, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(59, 130, 246, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 70%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: #3b82f6;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 40%;
  left: 20%;
  animation-delay: 1s;
}
.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 60%;
  left: 30%;
  animation-delay: 2s;
}
.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 30%;
  left: 70%;
  animation-delay: 0.5s;
}
.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  top: 70%;
  left: 80%;
  animation-delay: 1.5s;
}
.particle:nth-child(6) {
  width: 7px;
  height: 7px;
  top: 50%;
  left: 60%;
  animation-delay: 3s;
}
.particle:nth-child(7) {
  width: 3px;
  height: 3px;
  top: 80%;
  left: 40%;
  animation-delay: 2.5s;
}
.particle:nth-child(8) {
  width: 5px;
  height: 5px;
  top: 15%;
  left: 85%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 1;
  }
  50% {
    transform: translateY(-40px) translateX(-5px);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) translateX(15px);
    opacity: 1;
  }
}

.hero-section-mobile-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.hero-section-mobile {
  background: linear-gradient(135deg, #2b2a2b 0%, #253848 50%, #1a1a1a 100%);
  width: 100%;
  height: 100%;
}
