
body { font-family: 'Inter', sans-serif; }
  
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progressGrow {
  from { width: 0; }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #0d9488 0%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, #f0fdfa 0%, #faf5ff 100%);
}

.gradient-primary {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.gradient-accent {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #14b8a6, #a855f7);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse-dot {
  animation: pulse-dot 2s infinite;
}

.blob {
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.grid-pattern {
  background-image: 
    linear-gradient(rgba(20, 184, 166, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 184, 166, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.glow {
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.3);
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

/* Banner Slideshow */
.banner-container {
  position: relative;
  overflow: hidden;
}

.banner-slides {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide {
  min-width: 100%;
  position: relative;
}

.banner-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(19, 176, 159, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-dot.active {
  background: rgba(19, 176, 159, 1);
  width: 40px;
  border-radius: 6px;
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  background: rgba(19, 176, 159, 0.8);}

.banner-arrow .text-gray-700{color: #fff;}

.banner-arrow:hover {
  background: rgba(19, 176, 159, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.banner-arrow-left {
  left: 20px;
}

.banner-arrow-right {
  right: 20px;
}

/* Auto-scroll carousel */
.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  /* display: flex; */
  gap: 24px;
  /* animation: scroll 30s linear infinite; */
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-item {
  min-width: calc(33.333% - 16px);
}


@media (max-width: 768px) {
  .carousel-item {
    min-width: calc(100% - 16px);
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .carousel-item {
    min-width: calc(50% - 16px);
  }
}

/* Slide animations */
.slide-content > * {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

.slide-content > *:nth-child(1) { animation-delay: 0.2s; }
.slide-content > *:nth-child(2) { animation-delay: 0.4s; }
.slide-content > *:nth-child(3) { animation-delay: 0.6s; }
.slide-content > *:nth-child(4) { animation-delay: 0.8s; }

/* Progress bar animation */
.progress-bar {
  animation: progressGrow 2s ease-out forwards;
}

/* Floating elements */
.floating-card {
  animation: floatCard 4s ease-in-out infinite;
}
#navbar .mt-4{margin-top: 0;}
#navbar {background: #fff;}

.pt-24 .nbbb{box-shadow: 0 2px 4px rgba(0,0,0,0.1);background: rgb(19 176 159 / 0.1);}
#contact .p-8{padding: 2rem 0.5rem;}
.banner-slides {
    height: 100%;
}
#tech .bbb {
    display: flex;width: 100%;
  }
  #tech .bbb1 {
    display: flex;flex-direction: column;
  }
  #tech  .bg-gradient-to-br{
    flex-shrink: 0;
    margin-right: 20px;
    align-self: center;
  }
  #admin .swiper-slide{height:434px!important;}
  #tester .swiper-slide{height:282px!important;}
  #finance .swiper-slide{height:539px!important;}
  .pt-24 {
    padding-top: 4.5rem!important;
}
.mySwiper5 .swiper-slide{height:522px!important;}
/* .swiper {
  padding: 5px!important;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  margin-bottom: 5px!important;
} */
#tech .swiper-slide{height:400px!important;}


.mySwiper76>.swiper-button-next,.mySwiper76>.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  color: #0284c7;
  border-radius: 50%;

}
.mySwiper76>.swiper-button-next:after,.mySwiper76>.swiper-button-prev:after {
font-size: 16px;
font-weight: bold;
}
.swiper-pagination-bullet {
  width: 15px!important;
  height: 15px!important;
}
.mySwiper76>.swiper-wrapper {
  align-items: center;
}

@media screen and (max-width: 968px) {
  
    .dn{display: none!important;}
    .text-4xl {
        font-size: 1.7rem!important;
        /* line-height: 2rem!important; */
    }
    /* 
    .text-lg {
        font-size: 1rem!important;
        line-height: 1.6rem!important;
    } */
    .banner-slide131313 .grid{display: block!important;}

    .pt-24 {
        padding-top: 4.8rem!important;
    }
    .px-6 {
        padding-left: 0.75rem!important;
        padding-right: 0.75rem!important;
    }
    .p-8 {
        padding: 2rem 1rem!important;
    }
    #contact .font-semibold{font-size: 0.9rem;font-weight: normal;}
    .py-20 {
        padding-top: 2.5rem!important;
        padding-bottom: 2.5rem!important;
    }
    #tech .bbb {
        display: block;
      }
      #tech .bbb1 {
        display: block;flex-direction: column;
      }
      #admin .swiper-slide,#tester .swiper-slide,#finance .swiper-slide{height:auto!important;}
      .banner-arrow-right,.banner-arrow-left{display: none;}
      #users .swiper-slide{
        /* overflow:hidden;
        border-radius: 1.5rem; */
      }
      /* #admin .swiper-slide{
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    } */

    .carousel-container {
      overflow: visible;
      position: relative;
  }
  .mySwiper5 .swiper-slide {
    height: auto!important;
}
#tech .swiper-slide{height: auto!important;}
.carousel-prev,.carousel-next {
  display: none;
}
.mySwiper76>.swiper-button-next, .mySwiper76>.swiper-button-prev{
  display: none;
}
#bannerSlides .mySwiper76 .banner-slide{padding:40px 0;}
.swiper-button-next, .swiper-button-prev{z-index:999999999!important;}
.a311311313{
display: none!important;
}
}

@media screen and (max-width: 767px) {
  .yingying{
    box-shadow: 0 5px 12px rgb(0 0 0 / 20%);
  border-radius: 1.5rem;
  }
}