html,
body {
    font-family: "Microsoft YaHei", "Microsoft YaHei UI", sans-serif;
    width: 100%;
    overflow-x: hidden;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.banner-text-glow {
    text-shadow: 0 0 10px rgba(0, 138, 230, 0.8);
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* Advantages Circle Animation */
.adv-item {
    transition: all 0.3s ease;
}

.adv-item:hover {
    transform: translateY(-5px);
}

.adv-icon-box:hover i {
    transform: scale(1.1);
}

.top-header {
    border-bottom: 1px solid rgba(238, 238, 238, 0.2);
}

/* Navigation Styles */
.main-nav {
    display: none;
    height: 100%;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}
.logo{
    height: 52px;
}
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.nav-link:hover {
    color: #008ae6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #008ae6;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    /* padding-top: 1.5rem; */
    width: 10rem;
    display: none;
    z-index: 50;
}

.dropdown-content {
    background-color: #081F37;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 0.375rem 0.375rem;
    padding: 0.5rem 0;
    animation: fadeIn 0.2s ease-out;
    font-size: 0.8rem;
    font-weight: normal;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: #EAEBEC;
    /* border-bottom: 1px solid #f9fafb; */
    transition: all 0.2s;
}

.dropdown-item:last-child {
    border-bottom: 0;
}

.dropdown-item:hover {
    /* background-color: #f9fafb; */
    color: #008ae6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner Styles */
.banner-slide {
    position: relative;
    margin-top: -1px;
}

.banner-img {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to bottom, transparent, rgba(17, 24, 39, 0.5)); */
}

.banner-content {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.banner-title {
    font-size: 1.875rem;
    /* 3xl */
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    display: flex;
    align-items: flex-end;
    text-shadow: 4px 2px 8px rgba(45, 111, 158, .83);
}

@media (min-width: 768px) {
    .banner-title {
        font-size: 3rem;
    }
}

.banner-highlight {
    color: #29F2FB;
}


.about-left {
    width: 92%;
    padding: 4rem 3rem 3rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-left .box {
    width: 50%;
}

/* Custom Utilities for v3 Compatibility */
.h-banner-sm {
    height: 500px;
}

.text-primary-dark {
    color: #00366F;
}

.bg-primary-dark {
    background-color: #001529;
}

.bg-tech-pattern {
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.size-88px {
    width: 88px;
    height: 88px;
}

.h-300px {
    height: 300px;
}

.h-450px {
    height: 450px;
}

.w-90pct {
    width: 90%;
}

.left-10pct {
    left: 10%;
}

.about-right {
    width: 560px;
}

.about-right .item {
    font-size: .875rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .h-banner-md {
        height: 678px;
    }
}

/* Animations from v3 JIT */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.animate-spin-slow {
    animation: spin 10s linear infinite;
}

.animate-pulse-slow {
    animation: pulse 4s infinite;
}

/* More Custom Utilities */
.shadow-glow-lg {
    box-shadow: 0 0 50px rgba(0, 138, 230, 0.3);
}

.shadow-glow-sm {
    box-shadow: 0 0 20px rgba(0, 138, 230, 0.3);
}

.top-15pct {
    top: 15%;
}

.left-15pct {
    left: 15%;
}

.right-15pct {
    right: 15%;
}

.top-50pct {
    top: 50%;
}

.left-5pct {
    left: 5%;
}

.right-5pct {
    right: 5%;
}

.bottom-15pct {
    bottom: 15%;
}


.titlebg1 {
    background: url(../images/titlebg1.png);
}

.text-primary {
    color: #003771;
}

.advantage {
    background: url(../images/advantage-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
}

.advantage h3 {
    color: #29F1FA;
}

.advantage .line {
    width: 10rem;
    height: 2px;
    background-color: #fff;
    margin: 0 20px;
    margin-top: -1px;
}


/* Clients Section */
.clients-section,
#news,
.advantage {
    background-color: #F8F8F8;
}

.client-card {
    @apply w-56 h-28 border border-gray-200 flex items-center justify-center text-gray-400 hover:text-gray-600 hover:shadow-lg transition duration-300 bg-white;
    border: 1px solid #ddd;
}

.clients-swiper .swiper-wrapper,
.notice-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.newsplay {
    background-color: #09407d;
    /* Dark blue matching the screenshot */
}

.advantage .centerimg {
    padding-top: 3rem;
}

.advantage .adv-item {
    position: absolute;
}

.advantage .adv-item1 {
    top: 0;
    left: 0;
}

.advantage .adv-item2 {
    top: 40%;
    left: 0;
}

.advantage .adv-item3 {
    top: 82%;
    left: 0;
}

.advantage .adv-item4 {
    top: 0;
    right: 0;
}

.advantage .adv-item5 {
    top: 40%;
    right: 0;
}

.advantage .adv-item6 {
    top: 82%;
    right: 0;
}


/* footer {
    background-color: #343434;
} */

#products {}

#products .item {
    width: 250px;
}

.icons1 {
    background-image: url(../images/icons.png);
    background-position: 0px 0px;
    width: 24px;
    height: 30px;
}

.icons2 {
    background-image: url(../images/icons.png);
    background-position: top -30px right 0px;
    width: 26px;
    height: 30px;
}

.icons3 {
    background-image: url(../images/icons.png);
    background-position: top -60px right 0px;
    width: 26px;
    height: 30px;
}

.icons4 {
    background-image: url(../images/icons.png);
    background-position: top -90px right 0px;
    width: 26px;
    height: 30px;
}

.icons5 {
    background-image: url(../images/icons.png);
    background-position: top -120px right 0px;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
}

.icons6 {
    display: inline-block;
    background-image: url(../images/icons.png);
    background-position: top -158px right -3px;
    width: 20px;
    height: 18px;
}

.advantage form .submitbtn {
    color: #fff;
    width: 100%;
    background: linear-gradient(135deg, #75BBFF, #003771);
    border-radius: 40px;
}

@media (max-width: 1024px) {
    .banner-content {
        padding-top: 80px;
    }

    .banner-title {
        font-size: 1.8rem;
        display: inline-block;
        line-height: 1.5;
    }

    .banner-title p {
        margin-top: 15px;
    }

    #mobile-menu-btn {
        flex: 0 0 50px;
        text-align: right;
    }

    .about-left {
        width: 100%;
        padding: 2rem 1rem;
    }

    .about-left .box {
        width: 100%;
    }

    .about-text {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 8;
        -webkit-box-orient: vertical;
    }

    .about-right {
        width: 100%;
    }

    .size-88px {
        width: 68px;
        height: 68px;
    }

    #products .item {
        width: 48%;
    }

    .advantage .line {
        width: 3rem;
    }

    .advantage .adv-item {
        position: relative;
    }

    .contact-icon img {
        width: 48px;
        height: 48px;
    }

    .contact-card {
        border: 1px solid #ddd;
    }
}