/* ==========================================================================
   TONGYU WEBSITE STYLES - Complete 1:1 Replica Stylesheet
   Using original tycooler CDN styles + custom overrides
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BASE RESET & GLOBAL STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: subpixel-antialiased;
    overflow-x: hidden;
}

main {
    padding-top: 0;
}

a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #017bdd;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   2. LAYOUT & CONTAINER
   -------------------------------------------------------------------------- */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

.layout {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --------------------------------------------------------------------------
   3. HEADER STYLES (Original tycooler structure)
   -------------------------------------------------------------------------- */
.section-header-wrap-block {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transform: none !important;
}

.section-header-wrap-block .layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    width: 90%;
    max-width: 1380px;
    margin: 0 auto;
}

.logo img {
    height: 63px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    margin: 0 5px;
    text-transform: capitalize;
}

.nav-list > li > a {
    display: block;
    padding: 1rem 1.2rem;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: #017bdd;
}

/* Mega Menu */
.has-mega-menu {
    position: static !important;
}

.has-mega-menu > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.has-mega-menu > a b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.has-mega-menu > a b svg {
    fill: currentColor;
}

.nav-li-1 > a b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 子页面 Solutions 下拉菜单图片居中 */
.section-header-wrap-block .nav[data-module]>li[data-sub-type="1"]>ul ul .ico {
    display: block !important;
}
.section-header-wrap-block .nav[data-module]>li[data-sub-type="1"]>ul ul .ico img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.mega-dropdown {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 900px;
    max-width: 100vw;
    padding: 2rem;
    border-top: 2px solid #017bdd;
    border-radius: 0 0 5px 5px;
    background: #fff;
    box-shadow: 0 0 5px 5px rgba(147, 147, 147, 0.1);
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    max-height: 85vh;
    min-height: 352px;
    overflow: auto;
    transition: 0.35s;
    transform: scaleY(0.2);
    transform-origin: center top;
}

.has-mega-menu:hover .mega-dropdown {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}

.mega-column {
    min-width: 200px;
    text-align: center;
    flex: 1;
}

.mega-column .mega-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
}

.mega-column .mega-title::after {
    display: none;
}

.mega-column .mega-title img, .mega-column .mega-title picture { display: block; margin-left: auto; margin-right: auto; } .mega-column .mega-title img {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain !important;
    margin-bottom: 0.5rem;
}

.mega-column .mega-title em {
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    text-align: center;
}

.mega-column .mega-title:hover em {
    color: #017bdd;
}

.mega-column .mega-title b {
    display: none;
}

.mega-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mega-sub li {
    margin-bottom: 0.8rem;
    text-align: center;
}

.mega-sub li a {
    font-size: 14px;
    color: #666;
    transition: color 0.3s;
    white-space: nowrap;
    text-align: center;
    display: block;
}

.mega-sub li a:hover {
    color: #017bdd;
}

.nav-list > li.has-dropdown > a::after {
    /* Removed - tycooler framework already provides dropdown arrow */
    display: none;
}

.nav-list .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-list > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.nav-list .dropdown li a {
    display: block;
    padding: 0.8rem 1.2rem;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.nav-list .dropdown li a:hover {
    background: #f8f9fa;
    color: #017bdd;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 0.3rem 0.5rem;
}

.search-box .search-input {
    border: none;
    background: transparent;
    padding: 0.4rem 0.5rem;
    font-size: 13px;
    width: 150px;
    outline: none;
    color: #333;
}

.search-box .search-input::placeholder {
    color: #666;
}

.search-box .search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    color: #666;
    display: flex;
    align-items: center;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #333;
}

.language-switch {
    position: relative;
    cursor: pointer;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

/* --------------------------------------------------------------------------
   4. HERO BANNER SECTION
   -------------------------------------------------------------------------- */
.section-banner-wrap-block {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    overflow: hidden;
    background: #1a1a2e;
    margin-top: 80px;
}

.section-banner-wrap-block .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.6) 0%, rgba(22,33,62,0.6) 50%, rgba(15,52,96,0.6) 100%);
    z-index: 2;
}

.section-banner-wrap-block .item-info {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    width: 60%;
    padding-left: calc(10% + 150px);
    z-index: 10;
}

.section-banner-wrap-block .item-title {
    font-size: 40px;
    font-family: Georgia, serif;
    text-align: left;
    line-height: 52px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #fff;
    padding: 48px 0 20px;
}

.section-banner-wrap-block .item-desc {
    font-size: 17px;
    line-height: 1.6;
    padding-bottom: 75px;
    color: rgba(255,255,255,0.9);
    text-transform: none;
}

.section-banner-wrap-block .btn {
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    border-width: 1px;
    padding: 15px 35px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.section-banner-wrap-block .btn-contact {
    background: #fff;
    color: #017bdd;
    border: none;
    padding: 15px 47px;
    margin-right: 13px;
}

.section-banner-wrap-block .btn-contact:hover {
    background: #017bdd;
    color: #fff !important;
}

.section-banner-wrap-block .btn-explore {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.section-banner-wrap-block .btn-explore:hover {
    background: #1B7DDA;
    color: #fff;
}

.hero-banner-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 10;
}

.hero-banner-scroll span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: scroll-anim 1.5s infinite;
}

@keyframes scroll-anim {
    0% { top: 8px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* --------------------------------------------------------------------------
   5. ABOUT TONGYU SECTION
   -------------------------------------------------------------------------- */
.section-about-wrap-block {
    position: relative;
    padding: 50px 0 10px;
    background: rgb(247, 247, 247);
}

.section-about-wrap-block .layout {
    position: relative;
    padding: 0 0 50px 0;
    z-index: 9;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1380px;
    margin: 0 auto;
}

.section-about-wrap-block .layout.d-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-about-wrap-block .about-img {
    position: relative;
    overflow: hidden;
    width: 50.5%;
    padding-top: 0;
    border-radius: 5px;
}

.section-about-wrap-block .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.section-about-wrap-block .about-inner {
    flex: 1;
    padding-left: 90px;
    padding-top: 35px;
}

.section-about-wrap-block .about-inner .section-header-wrap {
    text-align: left;
}

.section-about-wrap-block .about-inner h2.section-title {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 30px;
    color: #333;
    line-height: 1.2;
    margin-bottom: 0;
}

.section-about-wrap-block .about-inner h2.section-title strong {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 30px;
    color: #333;
}

.section-about-wrap-block .about-desc {
    position: relative;
    margin: 10px 0 30px 0;
    font-weight: 400;
    font-size: 18px;
    color: #766a6a;
    line-height: 30px;
}

.section-about-wrap-block .about-desc .q1 {
    color: #000;
    font-size: 20px;
}

.section-about-wrap-block .about-desc .q1 > div {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 6px;
}

.section-about-wrap-block .about-desc .q1 > div > div {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 6px;
}

.section-about-wrap-block .about-desc .industries-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 15px 0;
}

.section-about-wrap-block .about-desc .industries-list li {
    width: 49%;
    font-size: 16px;
    font-weight: 500;
    color: #454545;
}

.section-about-wrap-block .about-desc h3 {
    padding-top: 0;
    padding-bottom: 5px;
    font-weight: 700;
    margin-top: 10px;
    font-size: 22px;
    color: #000;
}

.section-about-wrap-block .about-desc p {
    font-size: 15px;
    color: #000;
    line-height: 1.6;
}

.section-about-wrap-block .about-bottom {
    padding-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.section-about-wrap-block .about-btn {
    border-radius: 27px;
    font-size: 18px;
    padding: 0.85rem 3.3rem;
    background: #017bdd;
    color: #fff;
    border: none;
}

.section-about-wrap-block .about-btn:hover {
    background: #015a9e;
}

.section-about-wrap-block .about-phone {
    margin-left: 60px;
}

.section-about-wrap-block .about-phone img {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: rgb(228, 234, 236);
    vertical-align: middle;
    border-radius: 50%;
    object-fit: none;
}

.section-about-wrap-block .about-phone span {
    font-size: 20px;
    font-weight: bold;
    color: #203635;
    vertical-align: middle;
    margin-left: 10px;
}

.section-about-wrap-block .about-phone span a {
    color: #203635;
}

/* --------------------------------------------------------------------------
   5B. STATS NUMBER SECTION
   -------------------------------------------------------------------------- */
.section-number-wrap-block {
    position: relative;
    padding: 2.5rem 0;
    background-color: rgb(247, 247, 247);
    text-align: center;
}

.section-number-wrap-block .number-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 1380px;
    margin: 0 auto;
}

.section-number-wrap-block .number-item {
    flex: 1;
    min-width: 150px;
}

.section-number-wrap-block .item-inner {
    position: relative;
    padding: 1rem;
}

.section-number-wrap-block .item-num {
    display: inline-block;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    color: #000;
}

.section-number-wrap-block .item-num span {
    position: relative;
    top: -10px;
    font-size: 30px;
    margin-left: 3px;
}

.section-number-wrap-block .item-line {
    display: block;
    margin: 0.5rem auto;
    width: 3rem;
    height: 1px;
    background-color: #000;
}

.section-number-wrap-block .item-desc {
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

@media (max-width: 1366px) {
    .section-number-wrap-block {
        padding: 5rem 0;
    }

    .section-number-wrap-block .item-num {
        font-size: 3rem;
    }

    .section-number-wrap-block .item-desc {
        font-size: 16px;
    }

    .section-number-wrap-block .item-line {
        margin: 1rem auto;
    }
}

@media (max-width: 768px) {
    .section-number-wrap-block {
        padding: 2.5rem 0;
    }

    .section-number-wrap-block .item-num {
        font-size: 2.5rem;
    }

    .section-number-wrap-block .item-desc {
        font-size: 14px;
    }

    .section-number-wrap-block .item-line {
        margin: 0.5rem auto;
    }
}

@media (max-width: 480px) {
    .section-number-wrap-block .number-item {
        width: 50%;
    }

    .section-number-wrap-block .item-inner {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   6. STATS GRID
   -------------------------------------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
    width: 100%;
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item .stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: #017bdd;
}

.stat-item .stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-item .stat-number {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #017bdd;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.stat-item .stat-label {
    display: block;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   7. INDUSTRY SOLUTIONS SECTION
   -------------------------------------------------------------------------- */
.section-application-wrap-block {
    position: relative;
    margin: 3rem 0 0;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.section-application-wrap-block .title-bar {
    position: absolute;
    padding: 60px 3%;
    top: 0;
    left: 0;
    z-index: 9;
}

.section-application-wrap-block h1[heading-type="1"] {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 30px !important;
    color: #fff;
    text-align: center;
}

.section-application-wrap-block .title-bar .text {
    font-size: 1.285rem;
    color: #fff;
}

.section-application-wrap-block .application-items {
    position: relative;
    display: flex;
    width: 100%;
}

.section-application-wrap-block .application-item {
    position: relative;
    width: 25%;
    height: 68rem;
    padding: 1rem 4rem;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    transition: all .3s ease;
}

.section-application-wrap-block .application-item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.2;
    z-index: 0;
    background-color: #000;
    transition: all .3s ease;
}

.section-application-wrap-block .item-inner {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    color: #ffffff;
}

.section-application-wrap-block .item-short,
.section-application-wrap-block .item-info {
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
}

.section-application-wrap-block .item-title {
    position: relative;
    font-size: 1.71rem;
    line-height: 1.5;
    padding-bottom: 30px;
    font-weight: 400;
    color: #ffffff;
}

.section-application-wrap-block .item-desc {
    font-size: 1.14rem;
    line-height: 1.375;
    margin: 1.2rem 0;
    padding: 0;
    opacity: 0;
}

.section-application-wrap-block .item-more {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: .8rem 3rem;
    border-radius: .5rem;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    color: rgb(1, 123, 221);
    border: none;
    font-weight: 800;
    font-size: 16px;
}

/* Hover effect */
.section-application-wrap-block .application-items:hover .application-item {
    width: 15.5733333333%;
}

.section-application-wrap-block .application-items:hover .application-item:hover {
    width: 53.28%;
}

.section-application-wrap-block .application-items:hover .application-item:hover::after {
    opacity: 0;
}

.section-application-wrap-block .application-item:hover .item-desc {
    opacity: 1;
}

.section-application-wrap-block .application-item .item-info {
    bottom: 2.15rem;
}

.section-application-wrap-block .application-item,
.section-application-wrap-block .application-item::after,
.section-application-wrap-block .item-short,
.section-application-wrap-block .item-info {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

/* Hover effect using #solutions-section for higher specificity */
#solutions-section > .layout.application-items:hover > .application-item {
    width: 15.5733333333% !important;
}

#solutions-section > .layout.application-items:hover > .application-item:hover {
    width: 53.28% !important;
}

#solutions-section > .layout.application-items:hover > .application-item:hover::after {
    opacity: 0 !important;
}

#solutions-section {
    margin-top: 0px;
    padding-top: 55px;
    padding-bottom: 110px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#solutions-section > .layout.title-bar {
    display: none;
}

#solutions-section > h1 {
    color: rgb(0, 0, 0);
    font-size: 54px;
    font-weight: 800;
    padding-bottom: 10px;
    display: block;
    text-align: center;
}

#solutions-section > p {
    color: rgb(91, 91, 91);
    text-align: center;
    padding-bottom: 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
}

#solutions-section > .layout.application-items {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

#solutions-section > .layout.application-items > .application-item {
    height: 600px;
    width: 25% !important;
}

#solutions-section > .layout.application-items > .application-item > .item-inner > .item-info > .btn.item-more {
    background-color: rgb(255, 255, 255);
    opacity: 1;
    color: rgb(1, 123, 221);
    border: none;
    font-weight: 800;
    font-size: 16px;
}

#solutions-section > .layout.application-items > .application-item > .item-inner > .item-info > .item-title {
    font-size: 24px;
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   8. TECHNICAL SUPPORT SECTION
   -------------------------------------------------------------------------- */
.section-advantage-wrap-block {
    padding: 5rem 0;
    background: #142D51;
    color: #fff;
}

.section-advantage-wrap-block .section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    font-family: 'Georgia', serif;
}

.section-advantage-wrap-block .ts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 90%;
    max-width: 1380px;
    margin: 0 auto;
}

.section-advantage-wrap-block .ts-card {
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.section-advantage-wrap-block .ts-card:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-5px);
}

.section-advantage-wrap-block .ts-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: #4da6ff;
}

.section-advantage-wrap-block .ts-card-icon svg,
.section-advantage-wrap-block .ts-card-icon img {
    width: 100%;
    height: 100%;
}

.section-advantage-wrap-block .ts-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.section-advantage-wrap-block .ts-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. COOPERATION BRAND SECTION
   -------------------------------------------------------------------------- */
.section-partner-wrap-block {
    padding: 80px 0;
    background: #fff;
}

.section-partner-wrap-block .section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-family: 'Georgia', serif;
}

/* --------------------------------------------------------------------------
   9. COOPERATION BRAND SECTION
   -------------------------------------------------------------------------- */
.cooperation-brand-section {
    position: relative;
    padding: 6.4rem 0 2.5rem 0;
    background: url(/static/images/652e26624d05743325.png) no-repeat center 65%;
    background-color: #f4f4f4;
}

.cooperation-brand-section .brand-outer-wrap {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cooperation-brand-section .title-bar {
    position: relative;
    margin-bottom: 2.7rem;
    text-align: center;
}

.cooperation-brand-section .title-bar .title {
    padding: 12px 0;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 30px;
    color: #333;
    font-family: 'Georgia', serif;
}

.cooperation-brand-section .title-bar .text {
    color: #848484;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6875;
}

.cooperation-brand-section .title-bar .text strong {
    font-weight: 600;
}

.cooperation-brand-section .partner-items {
    display: flex;
    padding: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.cooperation-brand-section .partner-item {
    padding: 2rem;
    width: 16.66%;
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
    animation: floatIn 0.8s ease forwards;
}

.cooperation-brand-section .partner-item img {
    width: 100%;
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cooperation-brand-section .partner-item:nth-of-type(1) { animation-delay: 0.1s; }
.cooperation-brand-section .partner-item:nth-of-type(2) { animation-delay: 0.2s; }
.cooperation-brand-section .partner-item:nth-of-type(3) { animation-delay: 0.3s; }
.cooperation-brand-section .partner-item:nth-of-type(4) { animation-delay: 0.4s; }
.cooperation-brand-section .partner-item:nth-of-type(5) { animation-delay: 0.5s; }
.cooperation-brand-section .partner-item:nth-of-type(6) { animation-delay: 0.6s; }
.cooperation-brand-section .partner-item:nth-of-type(7) {
    margin-left: 1px;
    animation-delay: 0.7s;
}
.cooperation-brand-section .partner-item:nth-of-type(n+7) {
    transform: translateY(-10rem) translateX(-100px);
    animation: floatInUp 0.8s ease forwards;
}

@keyframes floatInUp {
    to {
        opacity: 1;
        transform: translateY(-10rem) translateX(0);
    }
}

/* Responsive */
@media (max-width: 1550px) {
    .cooperation-brand-section {
        padding: 5rem 0 1.8rem 0;
    }

    .cooperation-brand-section .title-bar {
        margin-bottom: 2rem;
    }

    .cooperation-brand-section .partner-items {
        padding: 1.3rem 0;
    }

    .cooperation-brand-section .partner-item {
        padding: 1.3rem;
    }

    .cooperation-brand-section .partner-item:nth-of-type(n+7) {
        transform: translateY(-8rem);
    }

    .cooperation-brand-section .title-bar .title {
        font-size: 2.75rem;
    }

    .cooperation-brand-section .title-bar .text {
        font-size: 1rem;
    }
}

@media (max-width: 1366px) {
    .cooperation-brand-section {
        padding: 3.5rem 0 1rem 0;
    }

    .cooperation-brand-section .title-bar {
        margin-bottom: 1.2rem;
    }

    .cooperation-brand-section .title-bar .title {
        padding: 0.5rem 0;
        font-size: 2.3rem;
    }

    .cooperation-brand-section .title-bar .text {
        font-size: 12px;
    }

    .cooperation-brand-section .partner-item {
        padding: 1rem;
    }

    .cooperation-brand-section .partner-item:nth-of-type(n+7) {
        transform: translateY(-6rem);
    }
}

@media (max-width: 992px) {
    .cooperation-brand-section .title-bar {
        margin-bottom: 1rem;
    }

    .cooperation-brand-section .partner-items {
        padding: 0.5rem 0;
    }

    .cooperation-brand-section .partner-item {
        padding: 10px;
    }

    .cooperation-brand-section .partner-item:nth-of-type(n+7) {
        transform: translateY(-10%);
    }
}

@media (max-width: 640px) {
    .cooperation-brand-section {
        padding: 1.5rem 0;
    }

    .cooperation-brand-section .title-bar .title {
        font-size: 2rem;
    }

    .cooperation-brand-section .partner-item {
        padding: 5px;
    }

    .cooperation-brand-section .partner-item:nth-of-type(n+7) {
        transform: translateY(-7%);
    }
}

/* --------------------------------------------------------------------------
   10. OUR NEWS SECTION
   -------------------------------------------------------------------------- */
.section-news-wrap-block {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-news-wrap-block .section-header-wrap {
    text-align: center;
    margin-bottom: 3rem;
}

.section-news-wrap-block .section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Georgia', serif;
}

.section-news-wrap-block .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    width: 90%;
    max-width: 1380px;
    margin: 0 auto;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.news-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.news-card .news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 12px;
    color: #999;
}

.news-date {
    color: #666;
}

.news-tag {
    background: #017bdd;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-read-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #017bdd;
}

.btn-read-more::after {
    content: ' →';
}

.news-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-side .news-card {
    display: flex;
    flex-direction: row;
}

.news-side .news-card img {
    width: 40%;
    height: auto;
    min-height: 200px;
}

.news-side .news-card .news-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   11. FOOTER - Original Globalso Demo79 Footer Style
   -------------------------------------------------------------------------- */
.section-footer-wrap-block {
    background-color: #232323;
    padding-top: 43px;
}

[heading-type="6"] {
    position: relative;
    padding: 2rem 0;
}

.section-footer-wrap-block .layout.title-bar {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 46px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1;
    margin: 0 auto 77px !important;
    text-align: center;
}

.section-footer-wrap-block .layout.title-bar .title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 46px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1;
    margin: 0 0 77px;
}

.section-footer-wrap-block .layout.title-bar .title strong {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-footer-wrap-block .layout.title-bar em {
    font-style: normal;
}

.section-footer-wrap-block .layout.title-bar i {
    width: 85px;
    height: 4px;
    display: block;
    margin: 15px auto 0;
}

.section-footer-wrap-block .layout.title-bar span.line {
    background-color: #c5c5c5;
    display: block;
    height: 1px;
    margin: 10px auto 0 !important;
    max-width: 90%;
    width: 536px !important;
    left: auto !important;
    transform: none !important;
}

.section-footer-wrap-block .foor-service {
    padding-bottom: 0;
}

.foot-contact-item {
    width: 47%;
    padding-right: 1vw;
}

.foot-contact-item .inquiry-info {
    color: #fff;
    width: 70%;
    font-size: 29px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 30px;
}

.foot-contact-item .foot-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.foot-contact-item .foot-contact li {
    list-style: none;
}

.foot-contact-item .foot-contact li a {
    display: flex;
    padding-bottom: 5px;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

.foot-contact-item .foot-contact li a:not(:hover) {
    color: #999;
}

.foot-contact-item .foot-contact li a:hover {
    color: #fff;
}

.foot-contact-item .foot-contact .foot-ico {
    flex-shrink: 0;
    margin: 5px 10px 0 0;
    display: flex;
    align-items: center;
}

.foot-contact-item .foot-contact .foot-ico svg,
.foot-contact-item .foot-contact .foot-ico img {
    width: 18px;
    height: 18px;
    fill: #adadad;
}

.foot-contact-item .foot-sns {
    margin-top: 47px;
    width: auto;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: left !important;
}

.foot-contact-item .foot-sns li {
    display: inline-block;
    padding-right: 0;
}

.foot-contact-item .foot-sns li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    background: #333;
    color: #999;
    border-radius: 50%;
    font-size: 13px;
    transition: all 0.3s ease;
}

.foot-contact-item .foot-sns li a:hover {
    background: #017bdd;
    color: #fff;
}

.foot-contact-item .foot-sns li a svg {
    width: 24px !important;
    height: 24px !important;
    fill: currentColor;
}

.foot-inquiry-item {
    width: 47%;
    border-left: 1px solid #999;
    padding: 0 26px 0 127px;
}

.foot-inquiry-item .inquiry-form {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.foot-inquiry-item .form-item {
    width: 48%;
    padding-bottom: 20px;
}

.foot-inquiry-item .form-item input,
.foot-inquiry-item .form-item textarea {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0 20px;
    font-size: 14px;
    line-height: 46px;
}

.foot-inquiry-item .form-item textarea {
    min-height: 147px;
    padding: 20px;
    line-height: 1.5;
    resize: none;
}

.foot-inquiry-item .form-item input::placeholder,
.foot-inquiry-item .form-item textarea::placeholder {
    color: #999;
}

.foot-inquiry-item .form-item.item-message {
    width: 100%;
}

.foot-inquiry-item .form-item.item-submit {
    width: 35%;
    padding-bottom: 0;
}

.foot-inquiry-item .form-item.item-code {
    width: 61%;
    padding-bottom: 0;
}

.foot-inquiry-item .btn-submit {
    font-size: 16px;
    line-height: 1;
    width: 100%;
    height: 100%;
    padding: 12px 30px;
    background: #017bdd;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.foot-inquiry-item .btn-submit:hover {
    background: #015a9e;
}

.section-footer-wrap-block .copyright {
    font-size: 12px;
    padding: 41px 0;
    line-height: 1.5;
    text-align: center;
    color: #999;
    margin-top: 100px;
    border-top: 1px solid #999;
}

.section-footer-wrap-block .copyright a {
    color: #a6a6a6;
}

.section-footer-wrap-block .copyright a:hover {
    color: #fff;
}

/* Floating inquiry form */
.form-footer-inquiry-block {
    position: fixed;
    right: 10px;
    min-width: 300px;
    min-height: 450px;
    width: 368px;
    height: 457px;
    bottom: -399px;
    padding: 1rem;
    z-index: 9998;
    transition: bottom 0.3s ease;
}

.form-footer-inquiry-block[open] {
    bottom: -14px;
}

.form-footer-inquiry-block .content-wrap {
    height: 100%;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

.form-footer-inquiry-block .form-title {
    color: #fff;
    height: auto;
    background-color: var(--bs-theme-color, #017bdd);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.form-footer-inquiry-block .form-title em {
    font-style: normal;
}

.form-footer-inquiry-block .form-title svg {
    width: 24px;
    height: 24px;
}

.form-footer-inquiry-block .inquiry-form {
    height: auto;
    padding: 1.35rem 2rem;
}

.form-footer-inquiry-block .inquiry-form .form-item {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.form-footer-inquiry-block .inquiry-form input,
.form-footer-inquiry-block .inquiry-form textarea {
    width: 100%;
    padding: 10px 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    font-size: 14px;
}

.form-footer-inquiry-block .inquiry-form textarea {
    min-height: 80px;
    resize: none;
}

.form-footer-inquiry-block .inquiry-form .btn-submit {
    width: 100%;
    padding: 12px;
    background: #017bdd;
    color: #fff;
    border: none;
    cursor: pointer;
}


/* --------------------------------------------------------------------------
   12. RESPONSIVE STYLES
   -------------------------------------------------------------------------- */
@media (max-width: 1320px) {
    .section-banner-wrap-block .item-title {
        font-size: 40px;
        font-weight: 600;
        padding: 20px 0 20px;
    }

    .section-banner-wrap-block .item-desc {
        padding-bottom: 20px;
        line-height: 1.4;
        font-size: 17px;
    }

    .section-banner-wrap-block .btn {
        padding: 0.5rem 1rem;
    }

    .section-about-wrap-block .about-inner h2.section-title strong {
        font-size: 40px;
        line-height: 1;
    }

    .section-about-wrap-block .about-inner .about-bottom {
        justify-content: space-between;
    }

    .section-about-wrap-block .about-inner .about-bottom .about-phone {
        margin-top: 10px;
        margin-left: 0;
    }
}

@media (max-width: 1366px) {
    #solutions-section > .layout.application-items > .application-item {
        height: 50rem;
    }
}

@media (max-width: 1200px) {
    #solutions-section > .layout.title-bar .title {
        font-size: 2.5rem;
    }

    #solutions-section > .layout.application-items > .application-item {
        height: 42rem;
        padding: 1rem;
    }

    #solutions-section > .layout.application-items {
        width: 100% !important;
        max-width: 100% !important;
    }

    .ts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-about-wrap-block .about-inner h2.section-title strong {
        font-size: 30px;
    }

    .section-about-wrap-block .about-desc {
        font-size: 14px;
        margin: 8px 0;
    }

    .section-about-wrap-block .about-btn {
        padding: 8px 30px;
        font-size: 18px;
    }

    .section-about-wrap-block .about-inner,
    .section-about-wrap-block .about-img {
        padding-top: 0;
    }
}

@media (max-width: 992px) {
    .section-header-wrap-block .layout {
        width: 96% !important;
        height: auto;
        min-height: 70px;
        padding: 0.5rem 1rem;
    }

    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section-about-wrap-block .layout {
        flex-direction: column;
        gap: 2rem;
    }

    .section-about-wrap-block .about-img {
        max-width: 100%;
    }

    .section-about-wrap-block .about-inner {
        padding-left: 20px;
        text-align: center;
    }

    .section-about-wrap-block .about-inner .title {
        line-height: 1.4;
    }

    .section-about-wrap-block .about-inner .about-bottom .about-phone span {
        font-size: 18px;
    }

    .section-about-wrap-block .about-inner .about-bottom .about-phone img {
        width: 50px;
        height: 50px;
    }

    .section-banner-wrap-block .item-title {
        font-size: 40px;
    }

    .section-banner-wrap-block .item-info {
        width: 80%;
        left: 10%;
    }

    #solutions-section > .layout.title-bar {
        padding: 30px 3%;
    }

    #solutions-section > .layout.title-bar .title {
        font-size: 2rem;
    }

    #solutions-section > .layout.application-items {
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
    }

    #solutions-section > .layout.application-items .item-title {
        font-size: 1.14rem;
    }

    #solutions-section > .layout.application-items .item-desc {
        font-size: 1rem;
    }

    #solutions-section > .layout.application-items .item-more {
        padding: 0.8rem 1.2rem;
    }

    #solutions-section > .layout.application-items > .application-item {
        height: 36rem;
    }
}

@media (max-width: 768px) {
    #solutions-section > .layout.application-items > .application-item {
        padding: .5rem;
    }

    #solutions-section > .layout.application-items {
        flex-wrap: wrap;
        width: 100% !important;
        max-width: 100% !important;
    }

    #solutions-section > .layout.application-items .item-title {
        font-size: 1rem;
    }

    #solutions-section > .layout.application-items .item-desc {
        margin-bottom: .5rem;
    }

    #solutions-section > .layout.application-items > .application-item,
    #solutions-section > .layout.application-items:hover > .application-item:hover,
    #solutions-section > .layout.application-items:hover > .application-item {
        width: 50% !important;
    }

    .ts-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-footer-wrap-block .foot-service {
        flex-direction: column;
    }

    .foot-contact-item,
    .foot-inquiry-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-banner-wrap-block .item-title {
        font-size: 32px;
    }

    .section-banner-wrap-block .item-info {
        width: 80%;
        left: 5%;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-side .news-card {
        flex-direction: column;
    }

    .section-about-wrap-block {
        padding: 1rem 0;
    }

    .section-about-wrap-block .about-inner {
        padding: 0;
        width: 100%;
        order: 1;
    }

    .section-about-wrap-block .about-img {
        width: 100%;
        order: 2;
        margin-top: 10px;
    }

    .section-about-wrap-block .about-inner .about-bottom {
        padding-top: 0;
    }

    .section-about-wrap-block .about-inner .about-bottom .about-phone img {
        width: 25px;
        height: 25px;
        border-radius: 20%;
    }

    .section-about-wrap-block .about-inner .about-bottom .about-phone {
        padding-bottom: 5px;
    }

    .section-about-wrap-block .about-inner .about-bottom .about-phone span {
        font-size: 16px;
    }

    .news-side .news-card img,
    .news-side .news-card .news-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px !important;
    }

    .section-about-wrap-block {
        padding: 3rem 0;
    }

    .section-about-wrap-block .about-desc {
        font-size: 16px;
        font-weight: 500;
    }

    .section-about-wrap-block .about-btn {
        font-size: 20px;
    }

    .section-about-wrap-block .about-inner {
        padding-left: 0;
    }

    .section-about-wrap-block .about-img img {
        width: 100%;
        max-width: 100%;
    }

    .section-about-wrap-block .about-inner .title strong {
        font-size: 40px;
    }

    .section-banner-wrap-block .item-title {
        font-size: 28px;
    }

    .section-banner-wrap-block .item-desc {
        font-size: 16px;
    }

    #solutions-section > h1 {
        font-size: 40px;
    }

    #solutions-section {
        padding-bottom: 80px;
    }

    #solutions-section > .layout.application-items > .application-item {
        width: 100%;
    }

    .section-footer-wrap-block .title-bar .title {
        font-size: 2rem;
    }

    .section-footer-wrap-block .foot-service {
        flex-direction: column;
    }

    .foot-contact-item,
    .foot-inquiry-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .inquiry-form .form-item.item-name,
    .inquiry-form .form-item.item-email,
    .inquiry-form .form-item.item-phone,
    .inquiry-form .form-item.item-country {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==========================================================================
   PRODUCT PAGE STYLES
   ========================================================================== */

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, #0c3d6e 0%, #017bdd 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-banner .page-title {
  font-family: 'Georgia', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.page-banner .page-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
}

/* Breadcrumb Section */
.breadcrumb-section {
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  padding: 0.75rem 0;
}
.breadcrumb-section .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #017bdd;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb-sep {
  color: #999;
  font-size: 1rem;
}
.breadcrumb-current {
  color: #666;
  font-weight: 500;
}

/* Product Categories Section */
.product-categories {
  padding: 5rem 0;
  background: #fff;
}
.category-header {
  text-align: center;
  margin-bottom: 3rem;
}
.category-title {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.category-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.category-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.category-card:hover {
  background: #fff;
  border-color: #017bdd;
  box-shadow: 0 8px 30px rgba(1,123,221,0.12);
  transform: translateY(-4px);
  color: inherit;
}
.category-icon {
  width: 60px;
  height: 60px;
  background: #017bdd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #fff;
}
.category-icon svg {
  width: 28px;
  height: 28px;
}
.category-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.category-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}
.category-count {
  font-size: 0.9rem;
  color: #017bdd;
  font-weight: 600;
}

/* Featured Products Section */
.section-product-featured {
  padding: 5rem 0;
  background: #f8f9fa;
}
.text-center { text-align: center; }

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.filter-group { display: flex; align-items: center; gap: 0.5rem; }
.filter-label { font-size: 0.9rem; color: #666; font-weight: 500; }
.filter-select {
  height: 38px;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #333;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.filter-select:focus { outline: none; border-color: #017bdd; }
.filter-search {
  display: flex;
  align-items: center;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  margin-left: auto;
}
.filter-search-input {
  height: 100%;
  padding: 0.5rem 1rem;
  border: none;
  font-size: 0.9rem;
  color: #333;
  background: transparent;
  min-width: 200px;
}
.filter-search-input:focus { outline: none; }
.filter-search-input::placeholder { color: #999; }
.filter-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1rem;
  background: #017bdd;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.filter-search-btn:hover { background: #0c3d6e; }

/* Pagination */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.pagination-info { font-size: 0.875rem; color: #666; }
.pagination { display: flex; align-items: center; gap: 0.375rem; }
.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn:hover { border-color: #017bdd; color: #017bdd; }
.page-btn.active { background: #017bdd; border-color: #017bdd; color: #fff; }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.page-btn.page-prev, .page-btn.page-next { padding: 0 0.75rem; }

@media (max-width: 767px) {
  .pagination-wrap { flex-direction: column; align-items: center; }
  .filter-bar { flex-direction: column; align-items: stretch; }
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.product-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: #017bdd;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
}
.product-card-content { padding: 1.25rem; }
.product-card-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.product-card-category { font-size: 0.75rem; color: #999; text-transform: uppercase; letter-spacing: 0.05em; }
.product-card-title { font-size: 1.05rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.5rem; line-height: 1.35; }
.product-card-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.product-card-spec { font-size: 0.8rem; color: #999; margin-bottom: 0.75rem; }
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #017bdd;
  text-decoration: none;
  transition: all 0.2s;
}
.product-card-link:hover { color: #0c3d6e; gap: 0.5rem; }
.product-card-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.product-card-link:hover svg { transform: translateX(3px); }

/* Filter Bar */

/* ==========================================================================
   PAGE BANNER (Products / News / etc.)
   ========================================================================== */
/* img.page-banner: ensure <img class="page-banner"> elements (used as actual
   <img> tags in products/news pages) render only from src, not CSS background */
img.page-banner {
  background-image: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  display: block !important;
  vertical-align: bottom !important;
  object-fit: cover !important;
  width: 100% !important;
  height: 300px !important;
  min-height: unset !important;
  padding: 0 !important;
  margin: 0 !important;
}
.page-banner {
  position: relative;
  background: url('../assets_new/images/tongyu-electronics-1.png') center center / cover no-repeat;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1,123,221,0.75) 0%, rgba(20,45,81,0.80) 100%);
}
.page-banner .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-banner .page-title {
  font-family: 'Georgia', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.page-banner .page-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb-section {
  background: #fff;
  padding: 0.9rem 0;
  border-bottom: 1px solid #eee;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #017bdd;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #0c3d6e; }
.breadcrumb-sep { color: #ccc; }
.breadcrumb-current { color: #666; }

/* ==========================================================================
   SECTION HEADER (used in Capabilities section)
   ========================================================================== */
.section-header-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header-wrap .section-title {
  font-family: 'Georgia', serif;
  font-size: 30px;
  font-weight: 700;
  color: #142D51;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.section-header-wrap .section-subtitle {
  font-size: 1.05rem;
  color: #555;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ==========================================================================
   MANUFACTURING CAPABILITIES — Dark Blue Background
   ========================================================================== */
.section-advantage-wrap-block {
  background: #142D51 !important;
  padding: 5rem 0;
}
.section-advantage-wrap-block .section-header-wrap .section-title {
  color: #fff;
}
.section-advantage-wrap-block .section-header-wrap .section-subtitle {
  color: rgba(255,255,255,0.72);
}
.section-advantage-wrap-block .ts-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}
.section-advantage-wrap-block .ts-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transform: translateY(-4px);
}
.section-advantage-wrap-block .ts-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4da6ff;
}
.section-advantage-wrap-block .ts-card-icon svg {
  width: 48px;
  height: 48px;
}
.section-advantage-wrap-block .ts-card h3 {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.section-advantage-wrap-block .ts-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.section-advantage-wrap-block .ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .section-advantage-wrap-block .ts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-search { margin-left: 0; }
  .section-advantage-wrap-block .ts-grid { grid-template-columns: 1fr; }
  .page-banner .page-title { font-size: 2rem; }
  .section-header-wrap .section-title { font-size: 1.6rem; }
}


/* ==========================================================================
   Header Actions Fix - ensures consistent nav across all pages
   ========================================================================== */

.header-actions {
  display: flex !important;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.search-box {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0 0.5rem;
  height: 36px;
}

.search-box .search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #333;
  width: 160px;
  padding: 0;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #666;
  border-radius: 4px;
  padding: 0;
  transition: color 0.2s;
}

.search-btn:hover {
  color: #017bdd;
}

.search-btn svg {
  width: 18px;
  height: 18px;
}

.language-switch {
  position: relative;
}

.current-lang {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.current-lang:hover {
  border-color: #017bdd;
  color: #017bdd;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: background 0.2s;
}

.hamburger:hover span {
  background: #017bdd;
}

/* Ensure header-actions displays correctly inside old page header structure */
.section-header-wrap-block .layout {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}

@media (max-width: 991px) {
  .nav {
    display: none !important;
  }
  .header-actions .search-btn,
  .header-actions .language-switch {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }
}

/* ==========================================================================
   CSS Variables for header styling
   ========================================================================== */
:root {
  --color-primary: #017bdd;
  --color-primary-light: #e8f4fc;
  --color-text-secondary: #333;
  --color-gray-border: #ddd;
  --space-4: 1rem;
  --font-size-sm: 13px;
  --font-weight-medium: 500;
  --transition-fast: 0.2s;
  --radius-full: 9999px;
  --radius-base: 4px;
}

/* ============================================
   统一所有页面的导航字体大小（强制覆盖）
   ============================================ */
.section-header-wrap-block .nav > li > a,
.section-header-wrap-block .nav-list li a,
.section-header-wrap-block ul.nav > li > a,
.section-header-wrap-block ul.nav-list > li > a {
  font-family: var(--bs-font-sans-serif, "Mulish", sans-serif) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #333 !important;
}

.section-header-wrap-block .nav > li,
.section-header-wrap-block .nav-list li,
.section-header-wrap-block ul.nav > li,
.section-header-wrap-block ul.nav-list > li {
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
}

/* 首页特定 */
.section-header-wrap-block .nav-list li a {
  font-size: 14px !important;
  font-weight: 600 !important;
}

/* 子页面特定（tycooler旧结构） */
.section-header-wrap-block ul.nav > li > a > em {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: inherit !important;
  opacity: 1 !important;
}

/* 响应式字体大小 */
@media screen and (max-width: 1440px) {
  .section-header-wrap-block .nav > li > a,
  .section-header-wrap-block .nav-list li a,
  .section-header-wrap-block ul.nav > li > a {
    font-size: 13px !important;
  }
}

/* ============================================
   强制覆盖 tycooler 内联样式中的 nav 字体和 hover
   ============================================ */

/* 强制 nav 链接颜色和 hover 效果（覆盖内联 style 中的 color:#333!important） */
.section-header-wrap-block .nav > li > a em,
.section-header-wrap-block .nav > li > a > em,
.section-header-wrap-block ul.nav > li > a em,
.section-header-wrap-block ul.nav > li > a > em {
  color: #333 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: color 0.3s !important;
  opacity: 1 !important;
}

/* hover 变主题色（最重要的效果） */
.section-header-wrap-block .nav > li:hover > a em,
.section-header-wrap-block .nav > li:hover > a > em,
.section-header-wrap-block ul.nav > li:hover > a em,
.section-header-wrap-block ul.nav > li:hover > a > em,
.section-header-wrap-block .nav > li:hover > a,
.section-header-wrap-block ul.nav > li:hover > a {
  color: #017bdd !important;
}

/* 首页 nav-list hover 效果 */
.section-header-wrap-block .nav-list > li:hover > a {
  color: #017bdd !important;
}
.section-header-wrap-block .nav-list > li:hover > a em {
  color: #017bdd !important;
}

/* Footer submit button gradient */
.section-block-demo79-footer .foot-inquiry-item .form-item.item-submit .btn-submit[btn-hover-bg-color=gradient]:not(:hover),
.form-footer-demo3-block .form-item.item-submit .btn-submit[btn-hover-bg-color=gradient]:not(:hover) {
    background-image: linear-gradient(to right, var(--bs-theme-color), #629c45) !important;
    background-color: var(--bs-theme-color);
}

/* ==========================================================================
   PRODUCT BTN-WRAP GRADIENT BUTTONS — RESET background TO CLEAR INLINE GRADIENT
   ========================================================================== */

/* 先用 background shorthand 完全清除 inline style，再用渐变覆盖 */
body .product-btn-wrap .btn[btn-hover-bg-color=gradient]:hover {
    background: linear-gradient(to right, #017bdd, #629c45) !important;
    color: #ffffff !important;
}
body .product-btn-wrap .btn[btn-hover-bg-color=gradient]:not(:hover) {
    background: linear-gradient(to right, #017bdd, #629c45) !important;
}

/* ==========================================================================
   PRODUCT GALLERY THUMBNAIL FIXES (2026-05-14)
   ========================================================================== */

/* Fix 1: Thumbs height must match main image (set by JS via --thumbs-vertical-height)
   The inline style="--thumbs-vertical-height:696px" is set by plugin-swiperThumbs.min.js.
   This overrides the inline height:100% so thumbs actually get the correct pixel height. */
/* FIX 1 kept as-is — Fix 2 now handles container height via height:auto instead */

/* Fix 2: Thumbs height = main image height (pure CSS matching original site)
   Original site Tongyucooler.com uses ONLY:
     .thumbs-slider { width: 20%; height: 100%; max-height: 500px; }
   No JS height setting, no CSS custom properties.
   The container height:100% makes it equal to .product-view's height,
   which equals the main-slider's rendered height.
   max-height:500px clips to ~3 visible thumbs with overflow:hidden. */
.section-productView-wrap-block .product-view {
  display: flex !important;
  justify-content: space-between;
  align-items: stretch;
}

.section-productView-wrap-block .product-view .main-slider {
  flex: 1;
  min-width: 0;
}

.section-productView-wrap-block .product-view .thumbs-slider.swiper-vertical {
  width: 20% !important;
  min-width: 0;
  height: 100% !important;
  max-height: 500px;
  overflow: hidden;
}

.section-productView-wrap-block .product-view .thumbs-slider.swiper-vertical > .swiper-wrapper {
  gap: 5px !important;
  flex-direction: column;
  flex-wrap: nowrap;
}

.section-productView-wrap-block .product-view .thumbs-slider.swiper-vertical .swiper-slide {
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  flex-shrink: 0;
  flex-grow: 0;
}

.section-productView-wrap-block .product-view .thumbs-slider.swiper-vertical .swiper-slide > a > img,
.section-productView-wrap-block .product-view .thumbs-slider.swiper-vertical .swiper-slide img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain;
}

/* Fix 3: Show thumbs navigation arrows (overrides [swiperthumbs] .swiper-buttons{display:none})
   Structure: .thumbs-slider > .swiper-buttons > .swiper-button.swiper-button-prev/next */
.section-productView-wrap-block .product-view .thumbs-slider > .swiper-buttons {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  pointer-events: none;
  height: 100% !important;
}

.section-productView-wrap-block .product-view .thumbs-slider > .swiper-buttons > .swiper-button {
  display: flex !important;
  width: 100% !important;
  height: 40px !important;
  background-color: rgba(0,0,0,0.5) !important;
  pointer-events: auto;
}

.section-productView-wrap-block .product-view .thumbs-slider > .swiper-buttons > .swiper-button::after {
  font-size: 14px !important;
  font-weight: 700;
  color: #fff !important;
}


/* Fix: Contact Us button hover - keep text white on hover
   The <a class="btn"> inherits link :hover color (green) from a{} rule.
   Force btn text to stay white on hover. */
.section-productView-wrap-block .product-view .btn:hover,
.section-productView-wrap-block .product-view a.btn:hover {
  color: var(--bs-mask-white) !important;
}


/* Fix: Contact Us button hover - text must stay white, bg stays theme color */
a.btn:hover {
  color: #ffffff !important;
}
.section-productView-wrap-block .product-view a.btn:hover,
.product-btn-wrap .btn:hover {
  color: #ffffff !important;
  background-color: var(--bs-theme-color) !important;
}
/* product-btn-wrap gradient buttons — removed, now handled above (2836-2847) */

/* Force h2 titles to 30px across all breakpoints */
@media (min-width: 1200px) {
    .cooperation-brand-section h2.section-title,
    .cooperation-brand-section .title-bar .title {
        font-size: 30px !important;
    }
}

/* RELATED PRODUCTS swiper arrows - use SVG instead of Line Awesome (not loaded on product pages) */
.section-relatedproduct-wrap-block .swiper-button-prev::before,
.section-relatedproduct-wrap-block .swiper-button-next::before {
  display: none;
}

.section-relatedproduct-wrap-block .swiper-button-prev,
.section-relatedproduct-wrap-block .swiper-button-next {
  background-color: rgba(0,0,0,0.25);
  border-color: transparent;
  align-items: center;
  justify-content: center;
}

.section-relatedproduct-wrap-block .swiper-button-prev::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(45deg);
  margin-left: 4px;
}

.section-relatedproduct-wrap-block .swiper-button-next::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-right: 2.5px solid #fff;
  border-top: 2.5px solid #fff;
  transform: rotate(45deg);
  margin-right: 4px;
}
