
          /* Custom styles for Gansu Yuren Tang Biotechnology */
body {
  scroll-behavior: smooth;
}

/* Canvas animation for hero section */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}

/* Additional styling for mobile menu */
.mobile-menu-open {
  display: block !important;
}

/* Hover effects for cards */
.service-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    margin-bottom: 2rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

/* Animation for canvas particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

        