/* ========================================
   TONRY Website Styles
   ======================================== */

/* CSS Variables */

:root {
    --primary-red: #fa6c24;
    --primary-red2: #dd582e;
    --dark-red: #C0392B;
    --primary-orange: #E67E22;
    --dark-blue: #1b1e23;
    --gray-blue: #1c1c1c;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-black: #000;
    --text-light: #999999;
    --border-gray: #DDDDDD;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

/* Reset & Base */

.clip-1 {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.clip-2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clip-3 {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.clip-4 {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

body {
    font-family: Arial, verdana, Tahoma, Candara, sans-serif;
    /*letter-spacing:0.5px;*/
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-red);
    text-decoration: none;
}

a:link {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Top Bar
   ======================================== */

.top-bar {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 7px 0;
    font-size: 15px;
}

.welcome-text {
    color: var(--white);
    padding-left: 22px;
}

.contact-info {
    color: var(--white);
}

.contact-info i {
    margin-right: 5px;
    color: var(--primary-red);
}

/* ========================================
   Navigation
   ======================================== */

.main-nav {
    background-color: var(--white);
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
}

.navbar-brand {
    padding: 0;
}

.logo-wrapper {
    /*display: flex;
    flex-direction: column;
    align-items: flex-start;*/
    position: fixed;
    top: 0px;
    left: 0px;
}

#header {
    position: fixed;
    Top: 0;
    z-index: 999;
    width: 100%;
}

.text-end {
    text-align: right
}

.logo-cn {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
    line-height: 1.2;
}

.logo-en {
    font-size: 24px;
    color: var(--dark-blue);
    font-weight: 600;
    line-height: 1.2;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 600;
    padding: 10px 15px;
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red2);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px 0;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-red2);
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link,
.navbar-nav>li>a {
    line-height: 74px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav>li>a:hover {
    color: var(--primary-red2);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 200px;
    padding: 10px 0;
    margin: 0;
    color: #212529;
    text-align: left;
    list-style: none;
    /* background-color: rgba(255, 255, 255, .85); */
    background-color: rgba(255, 255, 255, 1);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .175);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* 鼠标悬停时显示下拉菜单 */
.nav-item.dropdown:hover>.dropdown-menu,
.navbar-nav>li:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 下拉菜单项样式 */
.dropdown-item {
    display: flex;
    display: block;
    width: 100%;
    line-height: 36px;
    padding: 12px 20px !important;
    clear: both;
    font-weight: 400;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid #eee;
}

.dropdown-item:hover .fa-angle-double-right,
.dropdown-item:focus .fa-angle-double-right {
    transform: rotate(90deg);
    color: #fff
}

.dropdown-itema:hover,
.dropdown-item:focus {
    color: #fff;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #fff !important;
    background-color: #e9ecef;
    padding-left: 1.8rem;
    /* 悬停时轻微右移效果 */

    background-image: linear-gradient(to right, var(--primary-red), var(--primary-red));
    background-repeat: no-repeat;
    background-size: 0% 100%;
    animation: colorSlide 0.3s ease-in-out forwards;
}

@keyframes colorSlide {
    0% {
        background-size: 0% 100%;
    }

    100% {
        background-size: 100% 100%;
    }
}

/* 下拉箭头样式 */
.fa-angle-double-right,
.fa-angle-down {
    color: (--border-gray);
    margin-left: 3px;
    font-size: 0.8em;
    vertical-align: middle;
}

.nav-item.dropdown:hover .fa-angle-down,
.navbar-nav>li:hover .fa-angle-down {
    transform: rotate(180deg);
    /* 旋转180度，箭头向上 */
}

/* 当前激活状态 */
.nav-item.active>a,
.nav-link.active {
    color: var(--primary-red);
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    background-color: var(--primary-red2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.social-icons a:first-child {
    background-color: var(--white) !important;
    /* 红色背景示例 */
    color: var(--primary-red2) !important;
}

.social-icons a:hover {
    background-color: var(--dark-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   Banner Section
   ======================================== */

.banner-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    z-index: -1;
    margin-top: -19px;
    clear: both;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    padding-top: 10%;
    color: var(--white);
    max-width: 1200px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-title {
    font-size: max(40px, 2.8vw);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.banner-subtitle {
    font-size: max(22px, 1.8vw);
    margin-bottom: 10px;
    opacity: 0.9;
}

.banner-desc {
    font-size: max(18px, 1.5vw);
    opacity: 0.8;
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.banner-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.banner-dots .dot.active {
    background-color: var(--primary-red);
}

.banner-dots .dot:hover {
    background-color: var(--white);
}

/* ========================================
   Section Common Styles
   ======================================== */
.mt10 {
    margin-top: 10vh
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: min(72px, 3.6vw);
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 3vh;
}

.section-subtitle {
    font-size: max(14px, 1.1vw);
    color: var(--text-black);
}

.title-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.title-dots span {
    width: 1vmax;
    height: 1vmax;
    border-radius: 50%;
    background-color: var(--primary-red);
}

.title-underline {
    width: 80px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--primary-red);
    margin: 15px 0 25px;
}

/* ========================================
   Products Section
   ======================================== */
.product-section {
    background: url(../img/sec1_bj.jpg) no-repeat center;
    padding: 80px 0;
    background-color: var(--white);
}

.product-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: space-between;
}

.product-nav {
    width: 57px;
    height: 57px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-red);
}

.product-nav img {
    max-width: 100%
}

.product-nav:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: scale(1.1);
}

.product-display {
    text-align: center;
    flex: 1;
    max-width: 600px;
}

.product-image-wrapper {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-main-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

@media (max-width:767px) {

    .left-preview,
    .right-preview {
        display: none !important
    }

    .hidden-xs {
        display: none !important
    }
}

@media (min-width:768px) and (max-width:991px) {

    .left-preview,
    .right-preview {
        display: none !important
    }

    .hidden-sm {
        display: none !important
    }
}

@media (min-width:992px) and (max-width:1199px) {

    .hidden-md {
        display: none !important
    }
}

@media (min-width:1200px) {

    .hidden-lg {
        display: none !important
    }
}

.navbar-nav>li>a {
    padding: 0 1.6vw !important;
    font-size: max(15px, .9vw);
    font-weight: 600
}

@media (max-width:767px) {

    .nav-toggle {
        display: block;
    }

    .main-nav {
        background-color: var(--white);
        /* box-shadow: 0 2px 10px rgb(0 0 0 / 10%); */
        padding: 12px 0;
        height: 55px;
    }

    .container {
        width: 98%
    }

    .logo-wrapper img {
        max-width: 100% !important;
        height: 78px;
    }

    .global-stats {
        margin-top: 5%;
    }
}

@media (min-width: 768px) and (max-width: 837px) {
    .main-nav {
        background-color: var(--white);
        /* box-shadow: 0 2px 10px rgb(0 0 0 / 10%); */
        padding: 12px 0;
        height: 55px;
    }

    .nav-toggle {
        display: block;
    }

    .container {
        width: 750px
    }

    .logo-wrapper img {
        max-width: 100% !important;
        height: 78px;
    }

    .social-icons {
        display: none
    }

    .social-icons {
        display: none
    }

    .navbar-nav>li>a {
        padding: 0.7vw !important;
    }
}

.navbar {
    border-radius: 0 !important
}

@media (min-width: 838px) and (max-width: 991px) {
    .main-nav {
        background-color: var(--white);
        /* box-shadow: 0 2px 10px rgb(0 0 0 / 10%); */
        height: 55px;
    }

    .navbar-nav .nav-link,
    .navbar-nav>li>a {
        line-height: 37px;
    }

    .nav-toggle {
        display: block;
    }

    .container {
        width: 890px
    }

    .nav-toggle {
        display: block
    }

    .logo-wrapper img {
        max-width: 100% !important;
        height: 78px;
    }

    .social-icons {
        display: none
    }

    .social-icons {
        display: none
    }

    .navbar-nav>li>a {
        padding: 0.85vw !important;
    }
}

@media (min-width:992px)and (max-width: 1199px) {
    .nav-toggle {
        display: none
    }

    .container {
        width: 98%
    }

    .nav-toggle {
        display: none
    }

    .logo-wrapper img {
        max-width: 100% !important;
        height: 124px;
    }

    .welcome-text {
        display: none
    }

    .social-icons {
        display: none
    }

    .navbar-nav>li>a {
        padding: 0 0.85vw !important;
    }
}

@media (min-width:1200px)and (max-width: 1399px) {
    .banner-section {
        margin-top: 113px;
    }

    .nav-toggle {
        display: none
    }

    .container {
        width: 1170px
    }

    .logo-wrapper img {
        max-width: 100% !important;
        height: 124px;
    }
}

@media (min-width:1400px)and (max-width: 1599px) {
    .banner-section {
        margin-top: 113px;
    }

    .nav-toggle {
        display: none
    }

    .container {
        width: 1370px !important
    }

    .logo-wrapper img {
        max-width: 100% !important;
        height: 124px;
    }
}

@media (min-width:1600px)and (max-width: 1699px) {
    .banner-section {
        margin-top: 113px;
    }

    .nav-toggle {
        display: none
    }

    .container {
        width: 1570px !important
    }

    .logo-wrapper img {
        max-width: 100% !important;
        height: 124px;
    }
}

@media (min-width:1700px) {
    .banner-section {
        margin-top: 113px;
    }

    .nav-toggle {
        display: none
    }

    .container {
        width: 1670px !important
    }

    .logo-wrapper img {
        max-width: 100% !important;
        height: 124px;
    }
}

.product-name {
    font-size: max(20px, 1.2vw);
    color: var(--text-primary);
}

/* Product Preview Images (Left & Right) */

.product-preview {
    width: 280px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transform: scale(0.8);
    transition: var(--transition);
    overflow: hidden;
}

.product-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.left-preview {
    order: -1;
}

.right-preview {
    order: 1;
}

.product-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 4vh;
}

.thumbnail-item {
    width: 85px;
    height: 85px;
    border-radius: 14px;
    border: 2px solid #ffffff;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: url(../img/p_bj.png) no-repeat center
}

.thumbnail-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbnail-item:hover {
    border-color: var(--primary-red);
}

.thumbnail-item.active {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

/* Side thumbnails effect - 60% opacity and 80% size for adjacent items */

.thumbnail-item.side-item {
    opacity: 0.6;
    transform: scale(0.8);
}

/* ========================================
   About Section
   ======================================== */

.about-section {
    background: url(../img/sec2_bj.jpg) no-repeat;
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    margin-bottom: 40px;
}

.about-text {
    color: var(--text-black);
    margin-bottom: 15px;
    line-height: 1.8;
}

.btn-read-more {
    background-color: #fa6c24;
    text-transform: capitalize;
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 3vmax;
}

.btn-read-more:hover {
    background-color: var(--dark-red);
    color: var(--white);
    transform: translateY(-2px);
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats */

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3vmax;
    font-weight: 900;
    text-transform: capitalize;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    font-size: 2vmax;
    font-weight: 900;
    text-transform: capitalize;
    color: var(--text-black);
    /*display: block;*/
}

.stat-sublabel {
    font-size: min(18px, 1.2vw);
    text-transform: capitalize;
    color: var(--text-black);
    display: block;
}

/* ========================================
   Advantage Section
   ======================================== */

.advantage-section {
    overflow: hidden;
    position: relative;
    background-color: var(--bg-light);
    border-bottom: 1px solid #dedede;
    height: 100vh;
}

.advantage-card {
    padding: 40px 25px;
    text-align: center;
    /*border-radius: 4px;*/
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.advantage-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(250, 108, 36, 1), rgba(250, 108, 36, 0.5), rgba(250, 108, 36, 0));
    transition: height 0.4s ease;
    z-index: 0;
}

.advantage-card:hover::before {
    height: 100%;
}

.advantage-section .advantage-card::hover::before {
    background: url(../img/sec3_bj.jpg) no-repeat;
    background-size: cover;
    padding-Top: 80px;
    background-color: var(--bg-light);
    border-bottom: 1px solid #dedede;
}

.advantage-card:hover {
    color: var(--white);
}

.advantage-card:hover .advantage-icon {
    color: var(--white);
    transition: var(--transition);
}

.advantage-card:hover .advantage-title {
    color: var(--white);
    transition: var(--transition);
}

.advantage-card:hover .advantage-list {
    color: var(--white);
    transition: var(--transition);
}

.advantage-section .section-header {
    margin-bottom: 150px !important
}

.tab ul li .ta,
.tab ul li:hover .tac {
    display: block
}

.tab ul li .tac,
.tab ul li:hover .ta {
    display: none
}

.tab {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.tab ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    margin-bottom: 0 !important;
    height: 60vh;
}

.tab ul li {
    width: calc(100%/4);
    overflow: hidden;
    text-align: center;
    float: left;
    transition: var(--transition);
}

.tab ul li h5 {
    width: 100%;
    overflow: hidden;
    font-size: 2.4rem;
    color: #fff;
    margin: 0;
    line-height: 1;
}

/*.tab ul li:first-child i{ background: url(../img/sec4_1.png) no-repeat top center; display:block; max-width:70px;max-height:66px}
.tab ul li:first-child:hover i{ background: url(../img/sec4_1_1.png) no-repeat top center;}*/
.tab ul li p {
    width: 100%;
    overflow: hidden;
    font-family: Arial;
    color: #fff;
    text-transform: uppercase;
    transition: var(--transition);
}

.tab ul li.hover {
    border-right: none;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: var(--transition);
}

.tab ul li.hover h5,
.tab ul li.hover p {
    color: #fff;
}

.tab ul li.hover h5 {
    color: #0c5acd;
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: bold;
}

.tab ul li.hover p {
    color: #0c5acd;
    font-size: 1.2rem;
    line-height: 1;
    font-family: Arial;
}

.tab ul li a {
    text-decoration: none
}

@media (max-width:1199px) {
    .tab ul li {
        width: calc(100%/2);
        overflow: hidden;
        text-align: center;
        margin: 0 1.5%;
        padding: 20px 0 0 0;
        float: left;
    }

}

.inf4vw {
    font-weight: 900;
    font-size: min(72px, 3.6vmax)
}

#con_one_1 {
    background: url(../img/01.jpg) no-repeat top center;
    background-size: 100% 100%;
    transition: var(--transition);
    height: 100vh
}

#con_one_2 {
    background: url(../img/02.jpg) no-repeat top center;
    background-size: 100% 100%;
    transition: var(--transition);
    height: 100vh
}

#con_one_3 {
    background: url(../img/03.jpg) no-repeat top center;
    background-size: 100% 100%;
    transition: var(--transition);
    height: 100vh
}

#con_one_4 {
    background: url(../img/04.jpg) no-repeat top center;
    background-size: 100% 100%;
    transition: var(--transition);
    height: 100vh
}

.yslist {
    height: 100vh;
}

.advantage-icon img {
    max-width: 70px;
    max-height: 66px
}

.advantage-icon {
    /*font-size: 48px; color: var(--primary-red); */
    margin-bottom: 3vh;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.advantage-title {
    font-size: max(30px, 1.6vmax);
    font-weight: 600;
    color: #1b1e23;
    margin-bottom: 20px;
    position: relative;
    /*text-transform: capitalize;*/
    z-index: 1;
    transition: var(--transition);
    height: 10vh
}

.advantage-list {
    list-style: none;
    padding-bottom: 2vmax;
    margin: 0;
    text-align: left;
    /*text-transform: capitalize;*/
    font-size: 15px;
    color: #1b1e23;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.advantage-list li {
    font-size: min(16px, 0.95vw);
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
    display: block;
    width: 100% !important;
    text-align: left !important;
}

/* ========================================
   Global Section
   ======================================== */

.global-section {
    background: url(../img/sec4_bj.jpg) no-repeat;
    padding: 50px 0 0 0;
    background-size: 100%;
    background-color: var(--white);
}

.col-line-l {
    border-left: 1px solid #ddd;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}

.col-line-r {
    border-right: 1px solid #ddd;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}

.global-content {
    padding-right: 30px;
}

.global-content .title-dots {
    justify-content: flex-start;
    margin-bottom: 20px;
}

.global-subtitle {
    font-size: max(18px, 1.5vw);
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.global-stats {
    margin-top: 40%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 10vh;
}

.global-stat-item {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
}

.global-stat-number {
    font-size: max(48px, 3vw);
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}

.global-stat-plus {
    text-transform: capitalize;
    font-size: 3vmax;
    font-weight: 900;
    color: var(--primary-red);
}

.global-stat-label {
    text-transform: capitalize;
    font-size: 2vmax;
    font-weight: 600;
    color: var(--text-primary);
}

.global-stat-sublabel {
    font-size: max(16px, 1vw);
    /*text-transform: capitalize;*/
    color: var(--text-black);
    width: 100%;
    margin-top: 5px;
}

.world-map-wrapper {
    position: relative;
    height: 400px;
    margin-top: 120px;
}

.global-section .section-title {
    margin-top: 0px !important
}

.world-map {
    width: 100%;
    /*height: 100%;*/
    object-fit: contain;
}

.clearfix {
    clear: both;
    width: 100%:
}

.map-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--primary-red);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.map-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--primary-red);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* ========================================
   News Section
   ======================================== */
.ci2 {
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border-radius: 15px;
}

.news-section {
    padding: 6vmax 0;
    background: var(--bg-light) url(../img/sec5_bj.jpg) no-repeat;
    background-size: cover
}

.news-section .section-subtitle {
    font-size: max(14px, 1.1vw);
    color: var(--text-light) !important;
    margin-bottom: 0 !important
}

.news-section .section-header {
    text-align: left;
    float: left;
}

.news-section .title-dots {
    justify-content: flex-start;
}

.news-tabs {
    margin-Top: 2vmax;
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: flex-end;
}

.news-tab {
    padding: 10px 25px;
    border: 1px solid var(--border-gray);
    background-color: var(--white);
    color: var(--text-primary);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

/*.news-tab i{width:16px;height:16px;color: var(--white);}*/

.fflex {
    display: flex
}

.news-tab:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.news-tab.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    font-weight: 600;
}

.news-tab.active i {
    background: url(../img/in_arr.png) no-repeat center 80%;
    width: 15px;
    height: 16px;
    display: inline-block;
}

.news-panel {
    display: none;
}

.news-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.news-card {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    height: 300px;
    /*overflow: hidden;*/
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    Z-INDEX: 1
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    bottom: -25px;
    left: 15px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 15px;
    text-align: center;
    border-radius: 4px;
}

.news-date .day {
    display: block;
    font-size: max(36px, 3vw);
    /*font-weight: 700; */
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: max(15px, .85vw);
}

.news-body {
    padding: 3vmax 1vmax 1vmax;
}

.news-title {
    font-size: min(21px, 1.4vw);
    font-weight: 600;
    color: var(--text-black);
    line-height: 1.4;
}

.news-excerpt {
    font-size: min(16px, 0.9vw);
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    font-size: min(16px, .9vw);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-body:hover .news-link {
    color: var(--primary-red);
}

/* ========================================
   Contact Section
   ======================================== */

.contact-section {
    padding: 80px 0 40px;
    background-color: var(--dark-blue);
    color: var(--white);
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-header .section-title {
    color: var(--white);
    margin-bottom: 0;
}

.contact-slogan {
    color: var(--primary-red);
    font-size: max(18px, 1.51vw);
    /* font-style: italic;*/
}

.contact-block {
    margin-bottom: 30px;
}

.contact-block-title {
    font-size: max(20px, 1.2vw);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    line-height: 1;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-block-title span {
    display: block;
    width: 40px;
    height: 4px;
    margin-Top: 15px;
    border-radius: 2px;
    background: var(--primary-red)
}

.product-list li {
    margin-bottom: 8px;
}

.product-list a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    transition: var(--transition);
}

.product-list a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.contact-info-detail p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.contact-info-detail strong {
    color: var(--white);
}

.form-control {
    border-radius: 0px !important
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0);
    border-Top: 0px solid rgba(255, 255, 255, 0.2);
    border-left: 0px solid rgba(255, 255, 255, 0.2);
    border-right: 0px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 13px;
    margin-bottom: 15px;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-red);
    box-shadow: none;
    color: var(--white);
}

.btn-submit {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 6px 3VMAX;
    border: none;
    border-radius: 18px;
    font-size: 15px;
    FONT-WEIGHT: 600;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--dark-red);
}

.qr-block {
    /*  display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;*/
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
}

.qr-code span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background-color: var(--gray-blue);
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-cn {
    font-size: 12px;
}

.footer-logo .logo-en {
    font-size: 20px;
    color: var(--white);
}

.copyright {
    font-size: 15px;
    margin-bottom: 5px;
}

.tech-support {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.mb20 {
    margin-bottom: 20px
}

.footer-social a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 991px) {
    .global-stats {
        margin-top: 10%;
        flex-direction: row;
    }

    .mobile-navbar {
        display: block
    }

    .banner-section {
        height: 500px;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-content {
        padding-top: 100px;
    }

    .section-title {
        font-size: 30px;
    }

    .stats-row {
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .world-map-wrapper {
        display: none
    }

    .contact-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {

    .global-stats {
        margin-top: 10%;
        flex-direction: row;
    }

    .top-bar .text-end {
        text-align: left !important;
        margin-top: 5px;
    }

    .banner-section {
        height: 400px;
        clear: both;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .banner-content {
        padding-top: 80px;
    }

    .section-title {
        font-size: 24px;
    }

    .product-showcase {
        flex-direction: column;
    }

    .product-nav {
        order: 2;
    }

    .product-display {
        order: 1;
    }

    .product-thumbnails {
        gap: 10px;
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    /*.stat-item { flex: 0 0 calc(33.333% - 20px); }*/

    .advantage-card {
        margin-bottom: 20px;
    }

    .news-tabs {
        flex-wrap: wrap;
    }

    .contact-header {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-logo {
        align-items: center;
        margin-bottom: 15px;
    }

    .world-map-wrapper {
        display: none
    }
}

@media (max-width: 575px) {
    .world-map-wrapper {
        display: none
    }

    .banner-title {
        font-size: 22px;
    }

    .global-stats {
        margin-top: 10%;
        flex-direction: row;
    }

    /*.stat-item { flex: 0 0 100%; }*/

    .global-stat-number {
        font-size: 36px;
    }
}

/* Animation for scroll reveal */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/*menu*/
.nav-toggle {
    float: right;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    display: none
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #ea5a2d;
    margin-bottom: 3px
}

.nav-toggle span span {
    margin-top: 4px
}

.mobile-navbar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease .3s;
    transition: all ease .3s
}

.mobile-navbar .mask {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    background-color: rgba(0, 0, 0, .3)
}

.mobile-navbar .menu {
    position: fixed;
    width: 300px;
    height: 100vh;
    right: 0;
    top: 0;
    z-index: 999;
    background-color: #fff;
    padding: 0 20px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all ease .3s;
    transition: all ease .3s
}

.mobile-navbar .menu .menu-box {
    margin-top: 10px;
    text-align: right
}

.mobile-navbar .menu .menu-box .menu-close {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../img/close.png) no-repeat center center/auto 20px;
    cursor: pointer
}

.mobile-navbar .menu>ul>li {
    border-bottom: 1px solid #efefef;
    list-style-type: none
}

.mobile-navbar .menu>ul>li>a {
    display: block;
    line-height: 22px;
    font-size: 18px;
    padding: 16px 30px 16px 0;
    color: #333;
    position: relative;
    text-decoration: none
}

.mobile-navbar .menu>ul>li>a .toggle {
    display: inline-block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 0;
    top: 14px;
    background: url(../img/toggle.png) no-repeat center center/auto 100%;
    -webkit-transition: all ease .3s;
    transition: all ease .3s
}

.mobile-navbar .menu>ul>li>a.active .toggle {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.mobile-navbar .menu>ul>li .subnav {
    padding: 10px 30px 10px 20px;
    display: none
}

.mobile-navbar .menu>ul>li .subnav li {
    padding: 7px 0;
    list-style-type: none
}

.mobile-navbar .menu>ul>li .subnav li a {
    color: #999;
    text-decoration: none
}

.mobile-navbar.show {
    opacity: 1;
    visibility: visible
}

.mobile-navbar.show .menu {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}



@media (max-width: 1440px) {

    .main-menu .nav-menu ul li a {
        padding: 28px 20px
    }
}

@media (max-width:767px) {
    .nav-toggle {
        display: block;
    }

    .pagecon p img {
        display: block;
        width: 100%;
        text-align: center
    }
}

@media (max-width:320px) {
    .nav-toggle {
        margin-top: 10px
    }

}