
* { -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', sans-serif; }

/* Glassmorphism - Enhanced with more color */
.glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(42, 171, 184, 0.08);
}
.glass-dark {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.7);
}
.glass-primary {
    background: rgba(42, 171, 184, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(42, 171, 184, 0.15);
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Card Hover */
.card-hover {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(42, 171, 184, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #2aabb8 0%, #1f8a95 50%, #15565d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-warm {
    background: linear-gradient(135deg, #FF9A76 0%, #FF8B7B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Background - Enhanced with more color layers */
.hero-bg {
    background: 
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(42, 171, 184, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 80% 30%, rgba(125, 211, 168, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 80%, rgba(255, 154, 118, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 90% 90%, rgba(184, 164, 224, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #FAFDFE 0%, #F0F5F7 50%, #E8EFF2 100%);
}

/* Section Backgrounds with Rich Colors */
.section-bg-1 {
    background: 
        radial-gradient(ellipse 60% 40% at 0% 0%, rgba(42, 171, 184, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 100% 100%, rgba(125, 211, 168, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #FAFDFE 0%, #F5F9FA 100%);
}
.section-bg-2 {
    background: 
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255, 154, 118, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(42, 171, 184, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #F5F9FA 0%, #FAFDFE 100%);
}
.section-bg-3 {
    background: 
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184, 164, 224, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(110, 197, 233, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #FAFDFE 0%, #F0F5F7 100%);
}
.section-bg-4 {
    background: 
        radial-gradient(ellipse 70% 50% at 0% 50%, rgba(125, 211, 168, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 100% 50%, rgba(255, 139, 123, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #F0F5F7 0%, #FAFDFE 100%);
}

/* Tech Grid Pattern */
.tech-grid {
    background-image: 
        linear-gradient(rgba(42, 171, 184, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 171, 184, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Banner Slide */
.banner-slide {
    position: absolute;
    inset: 0;
    /* opacity: 0; */
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-slide.active {
    opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F0F5F7; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #4cbcc7, #2aabb8); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #2aabb8, #1f8a95); }

/* Smooth Scroll */
html { scroll-behavior: smooth; }

/* Button Gradient */
.btn-gradient {
    background: linear-gradient(135deg, #2aabb8 0%, #1f8a95 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 171, 184, 0.3);
}
.btn-gradient:hover {
    background: linear-gradient(135deg, #1f8a95 0%, #1a7079 100%);
    box-shadow: 0 10px 30px rgba(42, 171, 184, 0.4);
    transform: translateY(-2px);
}
.btn-gradient-warm {
    background: linear-gradient(135deg, #FF9A76 0%, #FF8B7B 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 154, 118, 0.3);
}
.btn-gradient-warm:hover {
    background: linear-gradient(135deg, #E8845C 0%, #FF7B6B 100%);
    box-shadow: 0 10px 30px rgba(255, 154, 118, 0.4);
    transform: translateY(-2px);
}

/* AI Badge */
.ai-badge {
    background: linear-gradient(135deg, rgba(255, 154, 118, 0.15) 0%, rgba(125, 211, 168, 0.15) 100%);
    border: 1px solid rgba(255, 154, 118, 0.3);
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(42, 171, 184, 0.2) 50%, transparent 100%);
}

/* Mobile Menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mobile-menu.active {
    transform: translateX(0);
}

/* Floating Customer Service */
.float-service {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 50;
}

/* Number Badge */
.number-badge {
    background: linear-gradient(135deg, #2aabb8 0%, #1f8a95 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Icon Container Styles */
.icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0.2;
    filter: blur(8px);
    z-index: -1;
}

/* Gradient Borders */
.gradient-border {
    position: relative;
    background: white;
    border-radius: 1rem;
}
.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #2aabb8, #7DD3A8, #FF9A76);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.mySwiper1{
    height: 100%;
}


.mySwiper1>.swiper-wrapper>.swiper-slide{
    display: flex!important;
    align-items: center;
  
}
.sj{display: none!important;}
.a11a{/* background: #e7f7f9; */border: solid 1px #269fab;}
.banner-slide3 .p-5 {
    padding: 0.5rem 1.25rem;
}
.yingyingdn{
    box-shadow: 0 2px 2px rgb(0 0 0 / 20%);
  border-radius: 1.5rem;
  }

.mySwiper2 .swiper-slide{height: 202px!important;}
.mySwiper3 .swiper-slide{height: 246px!important;}
.mySwiper7 .swiper-slide{height: 464px!important;}
.mySwiper8 .swiper-slide{height: 198px!important;}
.mySwiper9 .swiper-slide{height: 266px!important;}
.mySwiper7 .glass {
    background: rgba(255, 255, 255, 1);}
.ab111{padding-top: 0rem!important;}
.banner-slide2 .glass {
    

}
#home{background: linear-gradient(135deg, #f0f9ff 0%, #ecfeff 30%, #cffafe 60%, #bae6fd 100%);}


@media screen and (max-width: 968px) {
    .mySwiper1 .swiper-button-prev,.mySwiper1 .swiper-button-next{
        display: none;
    }
    .aaa11{display: flex;flex-direction: column;}
    .aaa11 .flex-1{margin-left:0!important;margin-top:20px;}
    .space-y-6 .grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .p-8 {
        padding: 2rem 0.5rem!important;
    }
    .aaa2{width: 100%;}
    .dn{display: none!important;}
    .sj{display: block!important;}
    .banner-slide1 .text-4xl,.banner-slide2 .text-3xl,.banner-slide3 .text-3xl,.banner-slide4 .text-3xl {
        font-size: 1.6rem!important;
        line-height: 2.25rem!important;
    }
    .mySwiper1 .banner-slide{padding:60px 0;height: 100%;}
    .d22>.flex,.d33>.flex,.d44>.flex{
        display: flex!important;
    }
    .mySwiper8 .glass {
        border: none;
    }
    .mySwiper2 .swiper-slide{height: auto!important;}
    .mySwiper3 .swiper-slide{height: auto!important;}
    .mySwiper7 .swiper-slide{height: auto!important;}
    .mySwiper8 .swiper-slide{height: auto!important;}
    .mySwiper9 .swiper-slide{height: auto!important;}
    .min-h-\[700px\] {
        min-height: auto!important;
    }
    .h-screen {
        height: auto!important;
    }
    #navbar{height:66px;align-items: center;}
    #navbar .max-w-7xl{
        height: 100%;
    }
    #navbar .md\:h-20 {
        height: 100%;
    }
    .foote11 .gap-8 {
        gap: 0.5rem!important;
    }
}

@media screen and (max-width: 767px) {
    .yingying{
      box-shadow: 0 5px 12px rgb(0 0 0 / 20%);
    border-radius: 1.5rem;
    }
  }
