
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #f8fafc;
}

.font-display { font-family: 'Poppins', sans-serif; }

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.banner-slide {
    width: 25%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#banner .banner-slide {
    padding: 130px 0 70px 0;
}

/* Slide backgrounds */
.slide-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
background: linear-gradient(135deg, #0080ff 0%, #00cc66 100%);}

.slide-2 {
    /* background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%); */
background: linear-gradient(135deg, #4facfe 0%, #07a3ab 50%, #43e97b 100%);background: linear-gradient(135deg, #3fddde 0%, #590ab9 50%, #30cfd0 100%);}

.slide-3 {
    /* background: linear-gradient(135deg, #fa709a 0%, #fee140 50%, #ff6a88 100%); */
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);}

.slide-4 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 50%, #30cfd0 100%);
background: linear-gradient(135deg, #3fddde 0%, #590ab9 50%, #30cfd0 100%);background: linear-gradient(135deg, #0572d3 0%, #7c84e7 50%, #a1ffc1 100%);}

/* Floating shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: 0;
}

.shape-1 { width: 400px; height: 400px; top: -100px; left: -100px; background: white; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 300px; height: 300px; bottom: -50px; right: -50px; background: rgba(255,255,255,0.5); animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 250px; height: 250px; top: 50%; left: 60%; background: rgba(255,255,255,0.3); animation: float 12s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Navigation arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev { left: 30px; }
.nav-arrow.next { right: 30px; }

/* Dots indicator */
.dots-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    width: 40px;
    border-radius: 5px;
    background: white;
}

/* Slide content animations */
/* .slide-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.slide-content.active {
    opacity: 1;
    transform: translateY(0);
} */



/* Feature cards */
.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
} */

/* Icon circles */
.icon-circle {
    transition: all 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav link */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }

/* Stat counter */
.stat-number { font-variant-numeric: tabular-nums; }

/* Mobile menu */
.mobile-menu {
    transition: transform 0.3s ease;
}

.mobile-menu.hidden-menu {
    transform: translateX(100%);
}

/* Badge animation */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    z-index: 15;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Progress bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    z-index: 20;
}

.progress-fill {
    height: 100%;
    background: white;
    transition: width 0.1s linear;
}
.banner-slide{display: flex!important;align-items: center;}
.mySwiper3 .swiper-wrapper{justify-content: space-between;}
.mySwiper3 .swiper-slide{height:255px!important;}
.mySwiper2 .swiper-slide{height:266px!important;}
.mySwiper8 .swiper-slide{height:218px!important;}

#features-detail{background: #e6f7ff;}
#features-detail .swiper-slide{margin-bottom: 30px;background: #f5effb;}
#features-detail .swiper-slide:nth-child(4) {margin-bottom: 30px;background:none;}
#features-detail .swiper-slide:nth-child(4)>.rounded-3xl{background: #f5effb;}
.fsds .swiper-slide{background: rgba(255, 255, 255, 0.7);}
#achievements-detail{}


.from-accent-50 {
    --tw-gradient-from: #fff5e6 var(--tw-gradient-from-position)!important;
    --tw-gradient-to: rgb(255 245 230 / 0) var(--tw-gradient-to-position)!important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)!important;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops))!important;
}
.to-primary-50 {
    --tw-gradient-to: #e6f7ff var(--tw-gradient-to-position)!important;
}
.via-white {
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position)!important;
    --tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to)!important;
}
.mySwiper5{padding:0px 0 10px 0!important;}
.text-sm {
    font-size: 1rem!important;
    line-height: 1.5rem!important;
}
.text-xs {
    font-size: 1rem!important;
    line-height: 1.5rem!important;
}
.sada1 .stat-number{color: #2b59c3;}
.a11dadadadad .glass{background: #fff;}
.a11dadadadad .glass i{color:rgb(0 102 204 / var(--tw-text-opacity, 1));}
.a11dadadadad span{color:rgb(0 102 204 / var(--tw-text-opacity, 1));}



#features-detail .swiper-slide:nth-child(1),#features-detail .swiper-slide:nth-child(2),#features-detail .swiper-slide:nth-child(3),#features-detail .swiper-slide:nth-child(4)>.rounded-3xl{
    /* box-shadow: 0 5px 12px rgb(0 0 0 / 20%); */
}
.mySwiper9 .swiper-slide{
     /* box-shadow: 0 5px 12px rgb(0 0 0 / 20%); */
}
.mySwiper9{padding:5px!important;}
.fsds .swiper-slide {
    background: none!important;
    backdrop-filter: none!important;
}
.fsds .swiper-slide .glass{border: none!important;}
#achievements-detail .mb-16 {
    margin-bottom: 0.5rem;
}
#contact .mySwiper10 .text-white{
    color: #0267cd;
}
#contact .mySwiper10 .font-display{color: #333;}
#contact .mySwiper10 .a131{color: #333;}

.via-purple-600 {
    --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position)!important;
    --tw-gradient-stops: var(--tw-gradient-from), #9333ea var(--tw-gradient-via-position), var(--tw-gradient-to)!important;
    --tw-gradient-stops: var(--tw-gradient-from), #0066cc var(--tw-gradient-via-position), var(--tw-gradient-to)!important;
}
.to-pink-500 {
    --tw-gradient-to: #1daa6e var(--tw-gradient-to-position)!important;
}
.mySwiper10 .bg-white\/20 {
    background-color: rgb(255 255 255 / 0.8);
}
.from-gray-50 {
    --tw-gradient-from: #f5e6ff var(--tw-gradient-from-position)!important;
    --tw-gradient-to: rgb(249 250 251 / 0) var(--tw-gradient-to-position)!important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)!important;
}
.to-blue-50 {
    --tw-gradient-to: #e6fff5 var(--tw-gradient-to-position)!important;
}
.mySwiper11 .glass{background: #fff!important;}
.mySwiper9 .glass{background: #fff!important;}
.aa13131,.aa13132,.a1dsdas{background: #f5effb!important;}
.a1dsdas{margin-top:40px;}
.mySwiper6 .swiper-slide{border:solid 1px #ddd;}
.flex {
    display: flex!important;
}
.sj{display: none!important;}
/* #features-detail .swiper-slidelast:nth-child() .rounded-3xl{background: #f3e8ff;} */

@media screen and (min-width:968px) and (max-width:1300px){
    .container {
      max-width: 98%!important;
  }
  .md\:text-6xl {
    font-size:2.2rem!important;
    line-height: 1.2!important;
}
.mySwiper3 .swiper-slide{height:275px!important;}
.mySwiper8 .swiper-slide{height:268px!important;}

}

/* Responsive */
@media screen and (max-width: 968px) {
    .banner-carousel { height: auto; /* min-height: 100vh; */ }
    .nav-arrow { width: 44px; height: 44px; font-size: 16px; }
    .nav-arrow.prev { left: 12px; }
    .nav-arrow.next { right: 12px; }
    .dn{display: none!important;}
    .sj{display: block!important;}
    #achievements-detail .p-8 {
        padding: 1rem;
    }
    #features-detail .p-8 {
        padding: 2rem 1rem;
    }
    .mySwiper1 .swiper-button-next,.mySwiper1 .swiper-button-prev{display: none;}
    .mySwiper1 .slide-1 .glass{width: calc(50% - 6px);}
    .slide-2 .glass {
        width: calc(50% - 6px);
    }
    .slide-3 .glass {
        width: calc(100% - 0px);
    }
    .slide-4 .glass {
        width: calc(50% - 6px);
    }
    .sada1 .glass {
        width: 100%;
    }
    .p-8 {
        padding: 2rem 0.5rem!important;
    }
    .px-6 {
        padding-left: 0.5rem!important;
        padding-right: 0.5rem!important;
    }
    .px-5 {
        padding-left: 0.4rem!important;
        padding-right: 0.4rem!important;
    }
    .px-4 {
        padding-left: 0.5rem!important;
        padding-right: 0.5rem!important;
    }


      .mySwiper11{margin-bottom: 4rem;}
    .ssd .p-4 {
        padding: 0.2rem!important;
    }
    .a1dsdas .p-4 {
        padding: 2rem 1rem!important;
        margin-top:0px;
    }
    .dssd111{white-space: nowrap; }
    #features-detail .md\:grid-cols-2{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .mySwiper9{padding:0px!important;}
    .mySwiper4{background: #f5effb!important;border-radius: 1.5rem;}
    .mySwiper4 .swiper-wrapper{display: flex!important;align-items: center;}
    .mySwiper4 .glass{height:100%!important;}
    .mySwiper11{background: #fff!important;border-radius: 1.5rem;}
    .mySwiper11 .glass{height:100%!important;margin-bottom: 0rem!important;box-shadow:none!important;background:#fff!important;border: none!important;}
    .mySwiper3 .swiper-slide{height:auto!important;}
    .mySwiper2 .swiper-slide{height:auto!important;}
    .mySwiper8 .swiper-slide{height:auto!important;}
    .mySwiper8 .swiper-slide{height:auto!important;}
    .flex {
        display: flex!important;
    }
    .mySwiper1 .dn{display: none!important;}
    .slide-1 .glass i,.slide-1 .glass span {
        color: #007860;
    }
    .slide-2 .glass i,.slide-2 .glass span {
        color: rgb(0 102 204 / var(--tw-text-opacity, 1));
    }
    .slide-3 .glass i,.slide-3 .glass span {
        color: #8871ba;
    }
    .slide-4 .glass i,.slide-4 .glass span {
        color: #5e77aa;
    }
    .sada1 .stat-number {
        font-size: 2rem;
    }
    .sada1 .p-6 {
        padding: 0.5rem 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .yingying{
      box-shadow: 0 5px 12px rgb(0 0 0 / 20%);
    border-radius: 1.5rem;
    }
  }
