.text_aboutus {
  position: absolute;
  left: 15%;
  top: 40%;
  font-weight: bold;
  color: #fff;
  font-size: 4rem;
}

#product_zuo,
#product_zuo1,
#product_zuo2,
#product_zuo3,
#product_you,
#product_you1,
#product_you2,
#product_you3 {
  cursor: pointer;
}

.magic-hover {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s ease;
}

.magic-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  z-index: -1;
  transition: all .6s ease;
}

.magic-hover:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.magic-hover:hover::before {
  left: 100%;
}

.magic-hover-color {
  position: relative;
  z-index: 1;
  transition: all .3s ease;
}

.magic-hover-color:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.1) saturate(1.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.magic-hover-glow {
  position: relative;
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}

.magic-hover-glow:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}

.magic-hover-glow:hover::after {
  content: '';
  position: absolute;
  inset: -5px;
  background: inherit;
  z-index: -1;
  filter: blur(20px);
  opacity: .7;
  transform: scale(1.05);
}

.magic-hover-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform .5s ease, box-shadow .3s ease;
}

.magic-hover-3d:hover {
  transform: rotateY(5deg) rotateX(5deg) translateZ(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
}

.magic-hover-pulse {
  transition: all .3s ease;
}

.magic-hover-pulse:hover {
  animation: pulseAnimation 1.5s infinite;
}

@keyframes pulseAnimation {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .1);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, .05);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

.magic-hover-shine {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.magic-hover-shine::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, .4) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transform: scale(.5);
  z-index: -1;
  transition: opacity .3s, transform .5s;
}

.magic-hover-shine:hover::after {
  opacity: 1;
  transform: scale(1.5);
}

.magic-hover-shine:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
}

@media (max-width: 998px) {
  .navbar_parent {
    height: 40% !important;
  }
}

@media (max-width: 768px) {
  .text_aboutus {
    left: 5% !important;
    right: 5% !important;
    top: 50%;
    width: auto !important;
    max-width: 90%;
    font-size: clamp(1.75rem, 7vw, 2.6rem) !important;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .magic-hover,
  .magic-hover-color,
  .magic-hover-glow,
  .magic-hover-3d,
  .magic-hover-pulse,
  .magic-hover-shine {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}

/* Decorative layers and legacy full-viewport sections must not create root scrolling. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}
