/* ================================================
   ManXing Theme CSS — Pixel-Perfect Design Match
   ================================================ */

/* --- CSS Variables --- */
:root {
  --mx-red: #e60012;
  --mx-dark: #0d1f35;
  --mx-navy: #0a1628;
  --mx-gray-bg: #f5f6f8;
  --mx-text: #333;
  --mx-text-light: #666;
  --mx-text-muted: #999;
  --mx-radius: 6px;
  --mx-shadow: 0 4px 20px rgba(0,0,0,.08);
  --mx-shadow-hover: 0 12px 36px rgba(0,0,0,.15);
}
.mx-container {    width: 92%;
    max-width: 1600px; margin: 0 auto; padding: 0 20px; }
    
.mx-container1{width: 100%;
    max-width: 100%;}
/* ================================================
   PAGE BANNER (all inner pages)
   ================================================ */
.mx-page-banner {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.mx-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;

}
.mx-page-banner .mx-container { position: relative; z-index: 2; }
.mx-page-banner h1 {
  font-size: 4.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);     font-family: "Roboto-Black";
}
.mx-breadcrumb {
  margin-top: 40px;
  font-size: .9rem;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mx-breadcrumb::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L2 12h3v8h6v-6h2v6h6v-8h3L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
  display: inline-block;
  opacity: .8;
}
.mx-breadcrumb a { color: #fff; text-decoration: none; }
.mx-breadcrumb a:hover { text-decoration: underline; }

/* ================================================
   BUTTONS
   ================================================ */
.mx-btn {
  display: inline-block;
  padding: 10px 38px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
  border: 1px solid transparent;
  line-height: 1.5; 
}
.mx-btn-red {  color: #fff; border-color:#d31632; background:#d31632; }
.mx-btn-red:hover { background: #d31632; border-color: #d31632; color: #fff; }
.mx-btn-outline-red { background: transparent; color:#d31632; border: 1px solid #d31632; }
.mx-btn-outline-red:hover { background:#d31632; color: #f6cdd2; }
.mx-btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.mx-btn-outline-white:hover { background: #fff; color: var(--mx-dark); }
.mx-btn-white { background: #fff; color: #d31632; }
.mx-btn-white:hover { background: #f0f0f0; }

/* ================================================
   SECTION HEADINGS
   ================================================ */
.mx-heading-center { text-align: center; margin-bottom: 100px; }
.mx-heading-center1{ margin-bottom: 60px;}
.mx-heading-center h2 {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
  position: relative;
  display: inline-block;
  font-family: "Roboto-Black";
}
.mx-heading-center h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--mx-red);
  margin: 12px auto 0;
}
.mx-heading-center h2.white { color: #fff; }
.mx-heading-center h2.white::after { background: #fff; }
.mx-heading-center h2.red { color: var(--mx-red); }
.mx-heading-center .sub {
  font-size: 1.2rem;
  color: var(--mx-text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.2;
}
/* Left heading with red bar */
.mx-heading-left {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px; margin-top: 30px;
}
.mx-heading-left h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--mx-dark);
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
      font-family: "Roboto-Black";
}
.mx-heading-left h2::before {
  content: '';
  width: 5px;
  height: 28px;
  background:#d31632;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ================================================
   HOMEPAGE — HERO BANNER
   ================================================ */
.mx-hero {
  position: relative;
  min-height: 960px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.mx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /*background: linear-gradient(135deg, rgba(10,22,40,.7) 0%, rgba(10,22,40,.3) 100%);*/
}
.mx-hero .mx-container { position: relative; z-index: 2; }
.mx-hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.2;
  max-width: 720px;
  text-transform: uppercase;
  margin: 0 0 30px;
  text-shadow: 0 3px 16px rgba(0,0,0,.3);
  font-family: "Roboto-Black";
}
.mx-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all .3s;
}
.mx-hero-btn:hover { background: #d31632; color: var(--mx-dark);border: 2px solid #d31632; color:#fff; }
.mx-hero-btn .arrow {
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all .3s;
}
.mx-hero-btn:hover .arrow { border-color:#fff; }

/* ================================================
   HOMEPAGE — ABOUT PREVIEW
   ================================================ */
.mx-about-preview {  background: #fff; padding-top:0; background-image: url('/static/images/about_bg.jpg'); background-repeat: no-repeat; background-position: center bottom; padding-bottom:150px;}
.mx-about-preview-wrap { display: flex; gap: 10px; align-items: center; }
.mx-about-left { flex: 1; }
.mx-about-right {  position: relative; right: -12%; }
.mx-about-right img { width: 100%; border-radius: 8px; display: block; }
.mx-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color:#d31632;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.mx-section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background:#d31632;
  border-radius: 50%;
}
.mx-section-heading {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--mx-dark);
  line-height: 1.35;
  margin: 0 0 40px;
  text-transform: uppercase;
  font-family: "Roboto-Black";
}
.mx-about-desc {
  font-size: 1.2rem;
  color: var(--mx-text-light);
  line-height: 1.5;
  margin-bottom: 38px;
}
.mx-btn-primary {
  background:#d31632;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}
.mx-btn-primary:hover { background: #c5000f; color: #fff; }
.mx-arrow { font-size: 1.2rem; }

/* ================================================
   HOMEPAGE — STATS ROW
   ================================================ */
.mx-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
 
}
.mx-stat-item {
  text-align: left;
  padding: 50px 20px;

}
.mx-stat-item:last-child { border-right: none; }
.mx-stat-label {
  font-size: 1.2rem;
  margin-bottom: 12px;
  text-transform: capitalize;
  border-bottom: 1px solid #959698;
  padding-bottom: 20px;
}
.mx-stat-num {
  font-size: 5rem;
  color:#d31632;
  line-height: 1;
  font-family: 'Impact', Arial, sans-serif;
}
.mx-stat-num sup {
  font-size: 1.5rem;
  vertical-align: super;
  margin-left: 2px;
}

/* ================================================
   HOMEPAGE — SOLUTION
   ================================================ */
.mx-solution-section { padding: 200px 0 100px; background-image: url('/static/images/solutionbg.jpg'); background-repeat: no-repeat; background-position: center bottom;  }
.mx-solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mx-solution-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.mx-solution-card:hover { transform: translateY(-5px); box-shadow: var(--mx-shadow-hover);   }
.mx-solution-num {
  padding: 16px 20px 0;
  font-size: 2.8rem;
  font-weight: 900;
  color:#fff;
  opacity: .85;
  line-height: 1;
  padding-left: 35px;
}
.mx-solution-img {
  height: 100px;
  margin: 12px 0;
  overflow: hidden;
  padding-left: 20px;
}
.mx-solution-img img {  object-fit: cover; }
.mx-solution-card h3 { font-size: 1.5rem; font-weight: 800; color:#fff; margin: 0; padding: 0 20px; font-family: "Roboto-Black"; }
.mx-solution-card p { font-size:1.2rem; color:#a9abb3; line-height: 1.2; padding: 15px 20px 20px; margin: 0; }

/* ================================================
   HOMEPAGE — OUR ADVANTAGES
   ================================================ */
.mx-advantages-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.mx-advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 55%;
  height: 100%;
  
  transform: skewX(-12deg);
}
.mx-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.mx-adv-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  /*box-shadow: var(--mx-shadow);*/
  max-height: 650px;
  transition: transform .3s, box-shadow .3s;
}
.mx-adv-card:hover { transform: translateY(-6px); 
/*box-shadow: var(--mx-shadow-hover); */
    
}
.mx-adv-card-img { height: 540px; overflow: hidden; }
.mx-adv-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mx-adv-card:hover .mx-adv-card-img img { transform: scale(1.06); }
.mx-adv-card-body {
  background: #fff;
  padding: 28px 35px 24px;
  position: relative;
  min-height: 280px;
    width: 88%;
    top: -200px;
    left: 5%; border-radius: 20px;
    box-shadow: var(--mx-shadow-hover);
}
.mx-adv-icon-badge {
  position: absolute;
  top: -28px;
  right:24px;
  width: 100px;
  height: 100px;
  background:#d31632;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(230,0,18,.3);
}
.mx-adv-icon-badge img { width: 50px; height: 50px; filter: brightness(0) invert(1); }
.mx-adv-icon-badge svg { width: 50px; height: 50px; fill: #fff; }
.mx-adv-card-body h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--mx-dark);
  margin: 10px 0 10px;
  line-height: 1.4;
  width: 65%;
  font-family: "Roboto-Black";
}
.mx-adv-card-body p { font-size: 1.2rem; color: var(--mx-text-light); line-height: 1.4; margin: 0; }

/* ================================================
   HOMEPAGE — OUR PRODUCT (dark bg)
   ================================================ */
   
   /* ===== SECTION ===== */
.product-showcase{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:
    linear-gradient(to bottom, rgba(7,20,48,.92), rgba(117,135,160,.45));
}

.product-showcase::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(9,18,42,.25);
    z-index:1;
}

.product-wrap{
    position:relative;
    z-index:2;
    width:92%;
    max-width:1600px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* ===== LEFT IMAGE ===== */
.product-left{
    flex:0 0 48%;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:650px;
}

.circle-ring{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.06);
}

.ring1{
    width:720px;
    height:720px;
    background:rgba(255,255,255,.03);
}

.ring2{
    width:610px;
    height:610px;
    background:rgba(255,255,255,.04);
}

.ring3{
    width:500px;
    height:500px;
    background:rgba(255,255,255,.05);
}

.main-circle{
    position:relative;
    width:540px;
    height:540px;
    border-radius:50%;
    overflow:hidden;
    border:3px solid rgba(255,255,255,.9);
    z-index:5;
    animation:fadeScale .7s ease;
}

.main-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.main-circle:hover img{
    transform:scale(1.05);
}

/* ===== RIGHT CONTENT ===== */
.product-right{
    flex:0 0 48%;
    color:#fff;
}

.big-title{
    position:absolute;
    top:-10px;
    left:52%;
    font-size:110px;
    line-height:1;
    font-weight:700;
    color:transparent;
    -webkit-text-stroke:1px rgba(255,255,255,.08);
    text-transform:uppercase;
    pointer-events:none;
}

.section-title{
    position:relative;
    font-family: "Roboto-Black";
    font-size:3.2rem;
    line-height:0.95;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:45px;
}

/* ===== TABS ===== */
.product-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:40px;
    border-bottom:1px solid rgba(255,255,255,.2);
    margin-bottom:50px;
}

.product-tab{
    position:relative;
    padding-bottom:20px;
    font-size:18px;
    color:rgba(255,255,255,.85);
    cursor:pointer;
    transition:.35s;
    font-weight:500;
    
}

.product-tab:hover{
    color:#fff;
     font-family: "Roboto-Black";
}

.product-tab.active{
    color:#fff;
    font-weight:700;
     font-family: "Roboto-Black";
}

.product-tab.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-1px;
    width:100%;
    height:4px;
    background:#e60b38;
}

/* ===== CONTENT ===== */
.product-content{
    display:none;
    animation:fadeUp .5s ease;
}

.product-content.active{
    display:block;
}

.product-content h3{
    font-size:24px;
    line-height:1.2;
    margin-bottom:28px;
    font-family: "Roboto-Black";
}

.product-content p{
    font-size:20px;
    line-height:1.5;
    color:rgba(255,255,255,.92);
    max-width:760px;
}

/* ===== BUTTON ===== */
.learn-btn{
    margin-top:45px;
    display:inline-flex;
    align-items:center;
    background:#e60b38;
    border-radius:60px;
    padding:5px 5px 5px 36px;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.35s;
}

.learn-btn:hover{
    transform:translateY(-3px);
}

.learn-btn span{
    width:46px;
    height:46px;
    margin-left:24px;
    border-radius:50%;
    background:#fff;
    color:#e60b38;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:bold;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeScale{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* ===== RESPONSIVE ===== */
@media(max-width:1400px){

    .big-title{
        font-size:90px;
    }

    .section-title{
        font-size:66px;
    }

    .main-circle{
        width:390px;
        height:390px;
    }

    .ring1{
        width:620px;
        height:620px;
    }

    .ring2{
        width:520px;
        height:520px;
    }

    .ring3{
        width:430px;
        height:430px;
    }

    .product-content h3{
        font-size:38px;
    }

    .product-content p{
        font-size:19px;
    }
}

@media(max-width:1100px){

    .product-wrap{
        flex-direction:column;
        gap:50px;
    }

    .product-left,
    .product-right{
        width:100%;
        flex:none;
    }

    .product-left{
        min-height:540px;
    }

    .product-right{
        text-align:center;
    }

    .product-tabs{
        justify-content:center;
    }

    .product-content p{
        margin:auto;
    }

    .big-title{
        left:50%;
        transform:translateX(-50%);
    }
}

@media(max-width:768px){

    .product-showcase{
        padding:70px 0;
    }

    .product-left{
        min-height:420px;
    }

    .main-circle{
        width:280px;
        height:280px;
    }

    .ring1{
        width:420px;
        height:420px;
    }

    .ring2{
        width:340px;
        height:340px;
    }

    .ring3{
        width:300px;
        height:300px;
    }

    .big-title{
        font-size:52px;
        top:10px;
    }

    .section-title{
        font-size:48px;
        margin-bottom:35px;
    }

    .product-tabs{
        gap:18px;
        margin-bottom:35px;
    }

    .product-tab{
        font-size:18px;
        padding-bottom:15px;
        width: 40%;
    }

    .product-content h3{
        font-size:24px;
    }

    .product-content p{
        font-size:18px;
        line-height:1.5;
    }

    .learn-btn{
        font-size:22px;
        padding-left:24px;
        font-family: "Roboto-Black";
    }

    .learn-btn span{
        width:48px;
        height:48px;
        margin-left:18px;
    }
}

.mx-products-section {
  padding: 80px 0;
  background: var(--mx-dark);
  color: #fff;
}
.mx-product-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.mx-ptab {
  padding: 8px 22px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 30px;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.mx-ptab:hover, .mx-ptab.active { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }
.mx-featured-product {
  display: flex;
  gap: 50px;
  align-items: center;
}
.mx-featured-product-img { flex: 0 0 520px; border-radius: 10px; overflow: hidden; }
.mx-featured-product-img img { width: 100%; display: block; }
.mx-featured-product-info { flex: 1; }
.mx-featured-product-info h3 { font-size: 1.6rem; font-weight: 800; margin: 0 0 8px; }
.mx-featured-product-info .subtitle { font-size: 1rem; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.mx-featured-product-info p { font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 28px; }

/* ================================================
   HOMEPAGE — OUR CASES
   ================================================ */
/* ── CASES SWIPER ── */
.mx-cases-section { padding: 80px 0 80px; background: #fff; }
.mx-cases-swiper-wrap { position: relative; padding: 0 64px; }
.mx-cases-swiper { overflow: hidden; border-radius: 14px; }
.mx-cases-swiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  opacity: .4;
  transition: opacity .4s;
  cursor: pointer;
}
.mx-cases-swiper .swiper-slide-active { opacity: 1; }
.mx-cases-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mx-case-caption {
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 22px;
  color: #1a1a1a;
  letter-spacing: .5px;    font-family: "Roboto-Black";
}
.mx-case-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 66px; height: 66px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; font-size: 1.1rem; font-weight: 700;
  transition: opacity .2s;
}
.mx-case-nav:hover { opacity: .85; }
.mx-case-nav-prev { left: 10%; background: #fff; border: 1px solid #d31632; color: #d31632; }
.mx-case-nav-next { right: 10%; background:#d31632; color: #fff; border: 1px solid #d31632; }

/* ================================================
   HOMEPAGE — SERVICE (dark bg, 2-col)
   ================================================ */
.mx-service-section {
    padding-top: 300px;
    padding-bottom: 200px;
  background-image: url(/static/images/serverbg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
  color: #fff;
}
.mx-service-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.mx-service-left { flex: 0 0 200px; }
.mx-service-left h2 {
  font-size: 2.6rem;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: initial;
  margin: 0;
  font-family: "Roboto-Black";
  font-size: 3.2rem;
}
.mx-svc-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mx-svc-card {
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  padding: 30px 40px;
  border: 1px solid rgba(255,255,255,.08);
  transition: background .25s;
}
.mx-svc-card:hover { background: rgba(211,22,50,0.95); }
.mx-svc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background:#d31632;
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 14px;
  float: left;
  font-family: "Roboto-Black";
}
.mx-svc-card h4 { font-size:24px; font-weight: 700; margin: 0 0 8px;     color: #333333; font-family: "Roboto-Black";float: left; margin-left:20px; margin-top:10px;}
.mx-svc-card p { font-size:18px; color: #333333; line-height: 1.6; margin: 0; clear: both;}
.mx-svc-card:hover h4{  color: #fff;}
.mx-svc-card:hover p{  color: #fff;}

/* ================================================
   HOMEPAGE — NEWS
   ================================================ */
/* ── NEWS SWIPER ── */
.mx-news-section {
  padding: 120px 0 100px;
  background: #f5f6f8;
  position: relative;
  overflow: hidden;
}
.mx-news-ghost {
  position: absolute; top: 50px; left: 50%;
  transform: translateX(-50%);
  font-size: 9rem; font-weight: 900;
  color: rgba(0,0,0,.05);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: .12em;
  line-height: 1; z-index: 0;
  user-select: none;
}
.mx-news-section .mx-container { position: relative; z-index: 1; }
.mx-news-heading-red {
  text-align: center;
  font-size: 3.2rem; font-weight: 900;
  color:#d31632;
  margin-bottom: 36px;
  letter-spacing: .06em; font-family: "Roboto-Black";
}
.mx-news-swiper { overflow: hidden; }
.mx-news-swiper .swiper-slide {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.mx-news-swiper .swiper-slide:hover { transform: translateY(-4px); box-shadow: 0 6px 22px rgba(0,0,0,.12); }
.mx-news-swiper .swiper-slide a { display: block; text-decoration: none; color: inherit; }
.mx-news-card-img { aspect-ratio: 16/9; overflow: hidden; min-height:250px; }
.mx-news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.mx-news-swiper .swiper-slide:hover .mx-news-card-img img { transform: scale(1.05); }
.mx-news-card-body { padding: 25px; }
.mx-news-card-body h4 {
  font-size:22px; font-weight: 700;
  color: var(--mx-dark);
  line-height: 1.45;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;     font-family: "Roboto-Black";
}
.mx-news-card-body p {
  font-size: 16px; color: #666;
  margin: 0 0 12px; line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mx-news-card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 10px;
  font-size: 16px;
}
.mx-news-card-footer .date { color: #999; }
.mx-news-card-footer .more { color:#d31632; font-weight: 700; font-family: "Roboto-Black";
} }
.mx-news-nav-row {
  display: flex; align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  position: relative; padding-top: 3%;
}
.mx-news-nav-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem;
  transition: all .2s;
  float: left; margin-left: 15px;
}
.mx-news-nav-row{ padding-left:50%; padding-top:2%;}
.mx-news-nav-btn.prev { background: #fff; color:#d31632; border: 2px solid #d31632; }
.mx-news-nav-btn.next { background:#d31632; color: #fff; border: 2px solid #d31632; }
.mx-news-nav-btn:hover { opacity: .85; }
.mx-news-learn-more {
  position: absolute; right: 20px;
  background:#d31632; color: #fff;
  padding: 15px 26px 15px 22px;
  border-radius: 30px;
  font-size:14px; 
  letter-spacing: 1px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.mx-news-learn-more:hover { background: #c4000f; color: #fff; }

/* ================================================
   RED CONTACT BAR (before footer, all pages)
   ================================================ */
.mx-contact-bar {
  background:#d31632;
  padding: 30px 0;
  color: #fff;
}
.mx-contact-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mx-contact-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.mx-contact-bar-item:last-child { border-right: none; }
.mx-contact-bar-icon {
  width: 70px;
  height: 70px;
  border: 2px solid #fff;
  background: #fdf3f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: #fdf3f5;
}
.mx-contact-bar-label { font-size:18px; font-weight: 700; font-family: "Roboto-Black"; }
.mx-contact-bar-val { font-size:18px; opacity: .9; text-align: center; }
.mx-contact-bar-val a { color: #fff; text-decoration: none; }

/* ================================================
   ABOUT PAGE
   ================================================ */
.mx-about-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e8e9ec;
  padding-left: 20%;
}
.mx-about-tab-btn {
  padding: 18px 46px;
  font-size: 20px;
      font-family: "Roboto-Black";
  color: var(--mx-text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.mx-about-tab-btn:hover { color: var(--mx-red); }
.mx-about-tab-btn.active { color: var(--mx-red); border-bottom-color: var(--mx-red); }
.mx-about-tab-panel { display: none; background:#f6f7f9; background-image: url(/static/images/mx-about-map.png);
    background-repeat: no-repeat;
    background-position: center 120px; padding-bottom:50px;}
.mx-about-tab-panel .mx-about-profile{background-image: url(/static/images/about_numbg.png);
    background-repeat: no-repeat;
    background-position: right top;}
    .mx-honors{background-image: url(/static/images/honorbg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom; background-size: 100% 100%;}
.mx-honors .mx-cert-section{ background:none;}
.mx-about-tab-panel.active { display: block; }
.mx-factory-feature{box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important; padding:45px;}
/* Profile */
.mx-profile-wrap { display: flex; gap: 60px; align-items: flex-start; padding: 60px 0 40px; }
.mx-profile-left { width:60%;}
.mx-profile-right { flex: 0 0 320px; text-align: right; padding-top:2%; }
.mx-profile-year {
  font-size: 7rem;
  font-weight: 900;
  color:#d8203b;
  line-height: 1;
  font-family: "Roboto-Black";     padding-left: 30%;
}
.mx-profile-year-label { font-size: 36px; color:#000000; font-weight: 600; margin-top: 20px;}
.mx-profile-left h3 { font-size: 2.6rem; font-weight: 900; color: var(--mx-dark); text-transform: uppercase; margin: 0 0 20px; font-family: "Roboto-Black"; }
.mx-profile-left p { font-size:18px; color: var(--mx-text-light); line-height: 1.8; margin-bottom: 16px; }
.mx-full-photo {     width: 92%;
    max-width: 1600px;
    overflow: hidden;
    margin: 0 auto; overflow: hidden;padding:20px; }
.mx-full-photo img { width: 100%; display: block; border-radius:10px; }
/* Team */
.mx-team-section { padding: 60px 0; }
.mx-team-wrap { display: flex; gap: 40px; align-items: flex-start; }
.mx-team-left {width:50%; margin-top:50px; }
.mx-team-photos { width:50%; }
.mx-team-photos img { width: 100%; height:auto;  border-radius: 6px; }
.mx-team-stats { display: flex; gap: 60px; margin: 30px 0; }
.mx-team-stat-num { font-size: 5rem; font-weight: 900; color:#d31632; line-height: 1; font-family: "Roboto-Black"; text-align:center; }
.mx-team-stat-num sup { font-size: 1rem; color:#d31632; margin-left:10px; }
.mx-team-stat-label { font-size:20px; color:#666666; margin-top: 6px; text-align:center; }
/* Cert */
.mx-cert-section { padding: 60px 0; background: var(--mx-gray-bg); }
.mx-cert-grid { width:100%; margin-top: 20px; }
.mx-cert-grid img { width:100%; height:auto; }
/* Factory */
.mx-factory-section { padding: 60px 0; }
.mx-factory-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 30px 0;
  padding: 30px 0;
margin-top: 30px; margin-bottom: 30px;
}
.mx-container h2{font-family: "Roboto-Black";font-size: 2.6rem;
    font-weight: 900;}
.mx-factory-feature h4 { font-size: .95rem; font-weight: 800; color: var(--mx-dark); margin: 0 0 8px; }
.mx-factory-feature h4 span { color:#d31632; font-size:20px; font-family: "Roboto-Black";}
.mx-factory-feature p { font-size:18px; color: var(--mx-text-light); line-height: 1.65; margin: 0; }
.mx-factory-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mx-factory-photos img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; }
/* Culture */
.max-about-culture{ background-image: url(/static/images/culturebg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;}
.mx-culture-section { padding: 100px 0;  }
.mx-culture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
}
.mx-culture-card {
  padding: 60px;
  border-radius: 10px;
  min-height: 120px;
}
.mx-culture-card span{ width:80px; height:80px; float:left; margin-right:10px;}
.mx-culture-card span img{ width:100%;}
.mx-culture-card.red { background:#cc0033; color: #fff; }
.mx-culture-card.white { background: #fff; color: var(--mx-dark); box-shadow: var(--mx-shadow); }
.mx-culture-card h4 { font-size:24px; font-weight: 800; margin: 0 0 8px; display: flex; align-items: center; gap: 10px; font-family: "Roboto-Black"; }
.mx-culture-card p { font-size:20px; opacity: .85; line-height: 1.4; margin: 0; }

/* ================================================
   SOLUTIONS PAGE
   ================================================ */
.mx-solutions-section { padding: 60px 0; }
.mx-sol-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.mx-hotline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mx-hotline-badge {
  width: 75px;
  height: 75px;

  display: flex;
  align-items: center;
  justify-content: center;

}
.mx-hotline-text { font-size: 20px; color:#d31632; }
.mx-hotline-num { font-size: 2rem; font-weight: 900; color:#d31632; font-family: "Roboto-Black"; }
.mx-sol-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.mx-sol-item {}
.mx-sol-item h3 { font-size: 1.15rem; font-weight: 800; color: var(--mx-dark); margin: 0 0 12px; }
.mx-sol-item p { font-size: .88rem; color: var(--mx-text-light); line-height: 1.7; margin: 0 0 16px; }
.mx-sol-item-img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.mx-sol-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.mx-sol-item:hover .mx-sol-item-img img { transform: scale(1.05); }

/* ================================================
   PRODUCT PAGE — Category Tabs & Grid
   ================================================ */
.mx-cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 0;
}
.mx-cat-tab {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  color: var(--mx-text-light);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  border: 2px solid #ddd;
  transition: all .2s;
}
.mx-cat-tab:hover { color: var(--mx-red); border-color: var(--mx-red); }
.mx-cat-tab.active { background: var(--mx-dark); color: #fff; border-color: var(--mx-dark); }
.mx-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mx-product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--mx-shadow);
  transition: transform .25s, box-shadow .25s;
}
.mx-product-card:hover { transform: translateY(-5px); box-shadow: var(--mx-shadow-hover); }
.mx-product-card a { text-decoration: none; display: block; }
.mx-product-card-img { height: 280px; overflow: hidden; }
.mx-product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mx-product-card:hover .mx-product-card-img img { transform: scale(1.06); }
.mx-product-card-body { padding: 40px; }
.mx-product-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--mx-dark); margin: 0 0 8px;     font-family: "Roboto-Black"; font-size:24px; }
.mx-product-card-body p {
  font-size: 16px;
  color: var(--mx-text-light);
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mx-product-card-actions { display: flex; gap: 10px; }

/* ================================================
   PROJECTS (CASE) PAGE
   ================================================ */
.mx-projects-section { padding: 60px 0; }
.mx-project-list { display: flex; flex-direction: column; gap: 36px; }
.mx-project-item {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #eee;
}
.mx-project-item:hover { box-shadow: var(--mx-shadow-hover); }
.mx-project-img { flex: 0 0 50%; max-height:480px; }
.mx-project-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 280px; }
.mx-project-body { flex: 1; padding: 36px 80px; display: flex; flex-direction: column; justify-content: center; }
.mx-project-body h3 { font-size: 30px; font-weight: 900; color: var(--mx-dark); margin: 0 0 16px; line-height: 1.4; font-family: "Roboto-Black"; }
.mx-project-body > p { font-size:18px; color: var(--mx-text-light); line-height: 1.75; margin: 0 0 20px; }
.mx-project-tags { display: flex; flex-direction: column; gap: 6px; margin-bottom: 40px; }
.mx-project-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--mx-text); font-size: 18px;
  color: #999999;
}
.mx-project-tag::before {
  content: '◆';
  color:#d31632;
  font-size: .6rem;
}
.mx-project-tag strong { font-weight:normal; color:#333; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.mx-contact-section { padding: 70px 0; }
.mx-contact-row { display: flex; gap: 0; align-items: stretch; }
.mx-contact-info {
  flex: 0 0 680px;
  background:#d31632;
  color: #fff;
  padding: 70px 70px;
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mx-contact-info h3 { font-size: 1.5rem; font-weight: 800; margin: 0 0 16px; font-family: "Roboto-Black"; }
.mx-contact-info-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 900;
}
.mx-contact-info-phone .contact_telnum{font-family: "Roboto-Black";}
.mx-contact-info-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size:22px;
  line-height: 1.6;
}
.mx-contact-info-detail .icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.mx-contact-info-detail strong { font-weight: 700; font-family: "Roboto-Black"; }
.mx-contact-form {
  flex: 1;
  padding: 60px;
  background: #fff;
  border: 1px solid #eee;
  border-left: none;
  border-radius: 0 8px 8px 0;
}
.mx-contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.mx-form-input {
  width: 100%;
  padding: 18px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size:18px;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
  background: #fff;
}
.mx-form-input:focus { border-color: var(--mx-red); }
.mx-form-textarea { width: 100%; min-height: 220px; resize: vertical; }

/* ================================================
   NEWS LIST PAGE
   ================================================ */
.mx-newslist-section { padding: 60px 0; }
.mx-news-featured {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--mx-shadow);
  margin-bottom: 50px;
}
.mx-news-featured-img { flex: 0 0 50%; height: 430px; overflow: hidden; }
.mx-news-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.mx-news-featured-body { flex: 1; padding: 36px 80px; display: flex; flex-direction: column; justify-content: center;  }
.mx-news-featured-date { font-size: 18px; color: #666666; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.mx-news-featured-body h3 { font-size: 28px; font-weight: 800; color:#333; margin: 0 0 16px; line-height: 1.4; font-family: "Roboto-Black";  }
.mx-news-featured-body p { font-size:18px; color:#666666; line-height: 1.5; margin: 0 0 20px; }
.mx-news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mx-newslist-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--mx-shadow);
  transition: transform .25s, box-shadow .25s;
}
.mx-newslist-card:hover { transform: translateY(-4px); box-shadow: var(--mx-shadow-hover); }
.mx-newslist-card a { text-decoration: none; display: block; }
.mx-newslist-card-img { height:280px; overflow: hidden; }
.mx-newslist-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.mx-newslist-card:hover .mx-newslist-card-img img { transform: scale(1.05); }
.mx-newslist-card-body { padding: 40px; }
.mx-newslist-card-body h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--mx-dark);
  margin: 0 0 10px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Roboto-Black";
}
.mx-newslist-card-body p {
  font-size: 18px;
  color: var(--mx-text-light);
  line-height: 1.6;
  margin: 0 0 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mx-newslist-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size:18px;
  color: var(--mx-text-muted);
}
.mx-newslist-card-footer .view-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color:#d31632;
  text-decoration: none;
  transition: color .2s;
}
.mx-newslist-card-footer .view-link:hover { color:#ec2946; font-family: "Roboto-Black";}
.mx-view-arrow {
  width: 24px;
  height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
}

/* ================================================
   NEWS SINGLE (DETAIL) PAGE
   ================================================ */
   .cas_deBoxOne{ margin-top:50px;}
.mx-single-section { padding: 50px 0; }
.mx-single-layout { display: flex; gap: 36px; align-items: flex-start; }
.mx-single-main { flex: 1; }
.mx-single-sidebar { flex: 0 0 300px; position: sticky; top: 100px; }
.mx-single-main h1 { font-size: 1.6rem; font-weight: 900; color: var(--mx-dark); line-height: 1.4; margin: 0 0 16px; }
.mx-single-meta { display: flex; gap: 20px; font-size: .82rem; color: var(--mx-text-muted); margin-bottom: 16px; align-items: center; }
.mx-single-share { display: flex; gap: 8px; margin-left: auto; }
.mx-single-share a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  font-size: .75rem;
  transition: background .2s;
}
.mx-single-share a:hover { background: var(--mx-red); color: #fff; }
.mx-single-content { font-size: .95rem; color: var(--mx-text); line-height: 1.9; }
.mx-single-content img { max-width: 100%; height: auto; border-radius: 6px; margin: 20px 0; }
.mx-single-content p { margin-bottom: 18px; }
.mx-single-prevnext {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 30px;
  border-top: 1px solid #eee;
  font-size: .88rem;
}
.mx-single-prevnext a { color: var(--mx-dark); text-decoration: none; font-weight: 600; }
.mx-single-prevnext a:hover { color: var(--mx-red); }
.mx-single-prevnext strong { color: var(--mx-dark); }
/* Sidebar */
.mx-sidebar-contact {
  background: var(--mx-red);
  color: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 20px;
}
.mx-sidebar-contact h4 { font-size: 1.1rem; font-weight: 900; text-transform: uppercase; margin: 0 0 20px; }
.mx-sidebar-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .88rem; }
.mx-sidebar-contact-item .icon { font-size: 1.2rem; margin-top: 2px; }
.mx-sidebar-contact-item strong { font-weight: 700; display: block; }
.mx-sidebar-form {
  background: var(--mx-red);
  border-radius: 8px;
  padding: 28px 24px;
}
.mx-sidebar-form h4 { font-size: 1.1rem; font-weight: 900; text-transform: uppercase; margin: 0 0 20px; color: #fff; }
.mx-sidebar-form input,
.mx-sidebar-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,.4);
  background: transparent;
  color: #fff;
  font-size: .88rem;
  outline: none;
  margin-bottom: 14px;
  box-sizing: border-box;
}
.mx-sidebar-form input::placeholder,
.mx-sidebar-form textarea::placeholder { color: rgba(255,255,255,.6); }
.mx-sidebar-form textarea { min-height: 80px; resize: vertical; }
.mx-sidebar-form button {
  background: #fff;
  color: var(--mx-red);
  border: 2px solid #fff;
  padding: 10px 30px;
  font-weight: 800;
  font-size: .9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s;
}
.mx-sidebar-form button:hover { background: transparent; color: #fff; }

/* ================================================
   SERVICES PAGE
   ================================================ */
.mx-svc-process-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin: 40px 0;
  position: relative;
}
.mx-svc-process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #ddd;
}
.mx-svc-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}
.mx-svc-process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--mx-red);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--mx-red);
}
.mx-svc-process-step span { font-size: .78rem; color: var(--mx-text-light); text-align: center; font-weight: 600; }
/* Service detail sections */
.mx-svc-detail { padding: 70px 0; }
.mx-svc-detail.dark { background: var(--mx-dark); color: #fff; }
.mx-svc-detail.gray { background: var(--mx-gray-bg); }
.mx-svc-detail-layout { display: flex; gap: 50px; align-items: flex-start; }
.mx-svc-detail-text { flex: 1; }
.mx-svc-detail-text h3 { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; margin: 0 0 16px; }
.mx-svc-detail-text p { font-size: .92rem; line-height: 1.85; margin-bottom: 20px; }
.mx-svc-detail-text ul { padding-left: 0; list-style: none; margin: 0 0 20px; }
.mx-svc-detail-text ul li { padding: 4px 0 4px 20px; position: relative; font-size: .9rem; }
.mx-svc-detail-text ul li::before { content: '✓'; position: absolute; left: 0; color: var(--mx-red); font-weight: 700; }
.mx-svc-detail-form { flex: 0 0 380px; background: #fff; border-radius: 8px; padding: 30px; box-shadow: var(--mx-shadow); }
.mx-svc-detail-form h4 { font-size: 1.1rem; font-weight: 900; margin: 0 0 20px; color: var(--mx-dark); }
.mx-svc-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.mx-svc-photos.col-4 { grid-template-columns: repeat(4, 1fr); }
.mx-svc-photos img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; }
/* Global Cooperation */
.mx-global-section { padding: 70px 0; position: relative; }
.mx-global-stats {
  position: relative;
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}
.mx-global-stat-card {
  background: var(--mx-red);
  color: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
}
.mx-global-stat-card .num { font-size: 3rem; font-weight: 900; line-height: 1; }
.mx-global-stat-card .label { font-size: .85rem; margin-top: 8px; opacity: .85; }


.mxfg-container{
    max-width:1600px;
    margin:0 auto;
    display:flex;
    gap:14px;
}

/* ===== left ===== */

.mxfg-left{
    width:50%;
}

.mxfg-photo{
    display:block;
    width:100%;
    height:100%;
    overflow:hidden;
    position:relative;
}

.mxfg-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.mxfg-photo:hover img{
    transform:scale(1.05);
}


/* ===== right ===== */

.mxfg-right{
    width:50%;
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.mxfg-small{
    width:calc(50% - 7px);
    overflow:hidden;
    position:relative;
}

.mxfg-small img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.mxfg-small:hover img{
    transform:scale(1.05);
}
/* ========================= */
/* MX WELDED SILO PAGE STYLE */
/* ========================= */

.mxws-page *{
    box-sizing:border-box;
}

.mxws-page{
    width:100%;
    overflow:hidden;
    font-family:Arial,sans-serif;
    color:#222;
    background:#fff;
}

.mxws-wrap{
    width:92%;
    max-width:1600px;
    margin:auto; 
    clear: both;
}
.mxws-wrap h1{ font-size:48px;     font-family: "Roboto-Black"; color:#fff; position:relative; text-align:center; margin-bottom:30px;}
/* hero */

.mxws-hero{
    position:relative;
    padding:200px 0 100px;
    overflow: hidden;
   
}

.mxws-hero-bg{
    position:absolute;
    inset:0;
    background:url('/static/images/hero-bg.jpg') no-repeat;
    min-height: 700px;

}

.mxws-top-box{
    position:relative;
    z-index:2;
   
    align-items:center;
    clear: both;
   
}

.mxws-top-left{
    position:relative;
    width: 48%;
    float: left;
}
.mxws-topright{ width:50%; float:right;}
.mxws-img-border{
    position:absolute;
    left:-20px;
    bottom:-20px;
    width:70%;
    height:70%;
    background:#ff002b;
    border-radius:14px;
}

.mxws-main-image{
    position:relative;
    z-index:2;
    border-radius:14px;
    overflow:hidden;
}

.mxws-main-image img{
    width:100%;
    display:block;
}

.mxws-top-right{
    flex:1;
    background:#fff;
    border-radius:18px;
    padding:40px 50px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.mxws-mini-title{
    display:inline-block;
    margin-bottom:12px;
    color:#fff;
    padding:8px 18px;
   
    font-size:30px;
    font-family: "Roboto-Black";
    border-bottom: 3px solid #e90110;
    margin-bottom: 30px;
}

.mxws-top-right h1{
    margin:0 0 20px;
    font-size:52px;
    line-height:1.1;
}

.mxws-top-right p{
    color:#666;
    line-height:1.5;
    font-size: 18px;
}

.mxws-info-list{
    margin:25px 0;
    padding:0;
    list-style:none;
    font-size: 18px;
}

.mxws-info-list li{
    margin-bottom:10px;
}

.mxws-btn-group{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    width: 30%;
}

.mxws-btn-primary,
.mxws-btn-white{
    height:52px;
    padding:0 30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
     width: 280px;
     font-family: "Roboto-Black";
}

.mxws-btn-primary{
    background:#d31632;
    color:#fff;
}

.mxws-btn-primary:hover{
    background:#ff002b;
}

.mxws-btn-white{
    border:2px solid #ddd;
    color:#ddd;
}
.mxws-btn-white1{
    border:2px solid #d31632;
    color:#d31632;
}
.mxws-btn-white:hover{
    border-color:#ff002b;
    color:#ff002b;
}

/* title */

.mxws-title-box{
    text-align:center;
    margin-bottom:55px;
}

.mxws-title-box h2{
    margin:0;
    font-size:44px;
    line-height:1.1;
    font-weight:900;
    font-family: "Roboto-Black";
    border-bottom: 0;
}
.mxws-title-box h2 span{ border-bottom:3px solid #000; padding-bottom:10px; }

.mxws-title-white h2{
    color:#fff;
    position: relative;
}

/* intro */



.mxws-intro-text{
    max-width:1200px;
    margin:0 auto 50px;
    text-align:left;
    color:#666;
    line-height:1.8;
    font-size: 18px;
}

.mxws-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.mxws-gallery-item{
    overflow:hidden;
}

.mxws-gallery-item img{
    width:100%;
    display:block;
    transition:.5s;
}

.mxws-gallery-item:hover img{
    transform:scale(1.08);
}

/* advantages */

.mxws-advantages{
    padding:80px 0 100px;
}

.mxws-adv-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.mxws-adv-card{
    border:1px solid #eee;
    padding:35px;
    border-radius:12px;
    transition:.3s;
}

.mxws-adv-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    border:1px solid #d31632;
}

.mxws-adv-num{
    width:70px;
    height:70px;
    border-radius:50%;
    color:#d31632;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:20px;
    font-size: 30px;
    background: url(/static/images/mxws-adv-num.jpg) no-repeat;font-family: "Roboto-Black";
}

.mxws-adv-card h3{
    margin:0 0 15px;
    font-size:22px; font-family: "Roboto-Black"; 
}

.mxws-adv-card p{
    color:#666;
    line-height:1.5;
    font-size: 18px;
}

/* banner */

.mxws-banner{
    position:relative;
    padding:80px 0;
    background:url('/static/images/EPCbannerbg.jpg') center/cover no-repeat;
}

.mxws-banner-overlay{
    position:absolute;
    inset:0;
    
}

.mxws-banner-content{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.mxws-banner-content h2{
    color:#fff;
    font-size:42px;
    margin:0 0 15px;
    font-family: "Roboto-Black";
}

.mxws-banner-content p{
    color:#ddd;
    font-size: 20px;
}
.mxws-banner-left{ width:55%; padding-left:5%;}
.mxws-banner-left p{ font-size:18px;}

/* industry */

.mxws-industry{
    padding:100px 0;
}

.mxws-solution-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.mxws-solution-item{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.mxws-solution-item img{
    width:100%;
    height:340px;
    object-fit:cover;
}

.mxws-solution-content{
    padding:40px;
}

.mxws-solution-content h3{
    margin:0 0 15px;
    font-size: 26px;
    font-family: "Roboto-Black";
}

.mxws-solution-content p{
    color:#666;
    line-height:1.5;
    font-size: 16px;
}

.mxws-solution-content a{
    display:inline-block;
    margin-top:20px;
    color:#d31632;
    text-decoration:none;
    border: 1px solid #d31632;
    padding:10px 40px;
    border-radius: 30px;
    font-size: 18px;
    
}
.mxws-solution-content a:hover{ background:#d31632; color:#fff;}

/* cases */

.mxws-cases{
    position:relative;
    padding:100px 0;
}

.mxws-cases-bg{
    position:absolute;
    inset:0;
    background:url('/static/images/case-bg.jpg')  no-repeat;
}

.mxws-cases-bg::after{
    content:"";
    position:absolute;
    inset:0;
}

.mxws-case-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.mxws-case-item{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.mxws-case-item img{
    width:100%;
    height:340px;
    object-fit:cover;
}

.mxws-case-content{
    padding:40px;
}

.mxws-case-content h3{
    margin:0 0 20px;
    font-size: 24px;
    font-family: "Roboto-Black";
}

.mxws-case-content p{
    color:#666;
}

.mxws-case-content a{
    display:inline-block;
    margin-top:15px;
    color:#d31632;
    text-decoration:none;
    border: 1px solid #d31632;
    padding: 10px 40px;
    border-radius: 30px; font-size: 18px;
}
.mxws-case-content a:hover{ background:#d31632; color:#fff;}
/* related */

.mxws-related{
    padding:60px 0;
    padding-top: 0;
}

.mxws-related-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.mxws-related-item{
    text-align:center;
    border:1px solid #eee;
   
    transition:.3s;
    padding-bottom: 50px;
}

.mxws-related-item:hover{
    transform:translateY(-5px);
}

.mxws-related-item img{
    width:100%;
    height:280px;
    object-fit:cover;
   
}

.mxws-related-item h3{
    margin:40px 0 30px;
    font-size:20px;
   
}

.mxws-related-item a{
    color:#d31632;
    text-decoration:none;
    border: 1px solid #d31632;
    padding: 10px 40px;
    border-radius: 50px;
        font-family: "Roboto-Black";
    
    
}
.mxws-related-item a:hover{ background:#d31632; color:#fff;}
/* feature */

.mxws-feature{
    padding:20px 0 100px;
}

.mxws-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.mxws-feature-item{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.mxws-feature-item img{
    width:100%;
    height:300px;
    object-fit:cover;
}
.mx-adv-product{ width:90px; height:90px; position:absolute; top: -50px; left:35%;}
.mx-adv-product img{ width:100%; height:auto;}
.mxws-feature-text{
    padding:45px;
    position: relative;
}

.mxws-feature-text h3{
    margin:0 0 15px;
    font-size:22px;
    font-family: "Roboto-Black";
    margin-top: 20px;
}

.mxws-feature-text p{
    color:#666;
    line-height:1.6;
    font-size: 18px;
}
.vid_liBoxOne{ padding-top:50px;}

/* process */

.mxws-process{
    padding:30px 0 100px;
}

.mxws-process-line{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:20px;
}

.mxws-process-item{
    text-align:center;
    position:relative;
}

.mxws-process-icon{
    width:155px;
    height:155px;
    border-radius:50%;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#ff002b;
}
.mxws-process-icon i::after{content: "";
    display: block;
    position: absolute;
    left: 90%;
    top: 40%;
    width: 76px;
    height: 16px;
    background: url(/static/images/server_xin.jpg) no-repeat;
}
.mxws-process-icon i.fa-headset1::after {
	display: none;
}

.mxws-process-item span{
    font-weight:700;
    font-family: "Roboto-Black";
    font-size: 20px;
    display: block;
    margin-top: 20px;
}
.mx-honors-text{font-size:20px;color:#666;line-height:1.5;margin-bottom:20px; position: absolute; width:50%;}
.mx-factory-text{font-size:20px;color:#666;line-height:1.5;width: 1300px;margin: 0 auto;}
/* ===== responsive ===== */

@media(max-width:991px){

    .mxfg-container{
        flex-direction:column;
    }

    .mxfg-left,
    .mxfg-right{
        width:100%;
    }

    .mxfg-photo{
        height:500px;
    }

    .mxfg-small{
        height:240px;
    }

}



@media(max-width:560px){

    .mxfg-small{
        width:100%;
        height:220px;
    }

}
/* ================================================
   RESPONSIVE
   ================================================ */
 
@media (max-width: 1024px) {
     .mxws-feature-grid,
    .mxws-related-grid{
        grid-template-columns:repeat(2,1fr);
    }
  .mx-about-preview-wrap { flex-direction: column; }
  .mx-about-right { flex: none; }
  .mx-solution-grid { grid-template-columns: repeat(2, 1fr); }
  .mx-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .mx-featured-product { flex-direction: column; }
  .mx-featured-product-img { flex: none; width: 100%; }
  .mx-service-layout { flex-direction: column; }
  .mx-service-left { flex: none; }
  .mx-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .mx-news-grid { grid-template-columns: repeat(2, 1fr); }
  .mx-sol-list { grid-template-columns: repeat(2, 1fr); }
  .mx-product-grid { grid-template-columns: repeat(2, 1fr); }
  .mx-project-item { flex-direction: column; }
  .mx-project-img { flex: none; }
  .mx-contact-row { flex-direction: column; }
  .mx-contact-info { flex: none; border-radius: 8px 8px 0 0; }
  .mx-contact-form { border-radius: 0 0 8px 8px; border-left: 1px solid #eee; }
  .mx-single-layout { flex-direction: column; }
  .mx-single-sidebar { flex: none; width: 100%; position: static; }
  .mx-news-featured { flex-direction: column; }
  .mx-news-featured-img { flex: none; height: 240px; }
  .mx-profile-wrap { flex-direction: column; }
  .mx-profile-right { flex: none; }
  .mx-team-wrap { flex-direction: column; }
  .mx-team-photos { flex: none; width: 100%; }
  .mx-svc-detail-layout { flex-direction: column; }
  .mx-svc-detail-form { flex: none; width: 100%; }
}

@media(max-width:992px){

    .mxws-top-box,
    .mxws-banner-content{
        flex-direction:column;
    }

    .mxws-gallery,
    .mxws-adv-grid,
    .mxws-solution-grid,
    .mxws-case-grid,
    .mxws-process-line{
        grid-template-columns:repeat(2,1fr);
    }

}
@media (max-width: 768px) {
    .mxws-process-icon i::after{ display:none;}
    .mx-contact-info-phone .contact_telnum{ font-size:1.4rem;}
    .mx-contact-info-phone img{ width:80%;}
    .mx-contact-info-detail{ font-size:18px;}
    .mx-contact-info{ padding:30px;}
    .mx-contact-form{ padding:30px;}
    .mx-news-featured-body h3{font-size: 24px; line-height:1.5rem;}
    .mx-newslist-section1{ margin-top:50px;}
    .mx-project-img{max-height:280px;}
    .mx-project-img img{max-height:280px;}
    .mx-project-body h3{font-size: 1.5rem;}
    .mx-sol-header{gap: 0px;}
    .mx-news-featured-body{padding: 36px 30px;}
    .mx-hotline-num{font-size: 1.6rem;}
    .mx-hotline-badge img{ width:80%; height:auto;}
    .mx-newslist-section{padding-top:0;}
   .subPage_banner1 .title{ font-size:2rem;}
    .mxws-feature{ padding-bottom:20px;}
    .mxws-banner-left{ width:100}
    .mx-product-card-actions{ display:block;}
    .mx-btn-red{ margin-top:10px;}
    .mx-btn{ width:100%; text-align:center;}
    .mx-cert-section{ padding:0;}
    .mx-culture-section{padding: 50px 0;}
    .mx-honors-text{ width:100%; display:none;}
.mx-factory-text{width: 100%;}
    .mx-container h2{font-size:2rem;}
    .mxws-topright{ width:100%;}
    .mxws-wrap h1{font-size:36px;}
    .mxws-btn-group{ width:100%;}
    .mxws-top-left{width:100%;}
    .mxws-hero{padding-top:0;}
    .mx-about-preview-wrap{ padding-top:30px;}
    .mx-adv-card-img{ height:340px;}
    .mx-container{ width:100%;}
    .mx-adv-card{ max-height:450px;}
    .mx-adv-card-body p{ line-height:1.4;}
    .mx-adv-card-body h4{line-height:1.2;}
    .mx-section-heading{ font-size:24px;}
    .section-title{ font-size:1.6rem;}
    .mx-cases-section{padding: 50px 0 50px;}
    .mx-about-right{ display:none;}
    .mx-about-preview{padding-bottom:50px;}
    .mx-solution-section{ background:#0c1b3a; padding: 50px 0;}
    .mx-service-section{ background-size:100% 100%; padding-top:50px; padding-bottom:50px;}
    .mx-service-layout{gap: 40px;}
    .mx-service-left h2{ font-size:2rem;}
    .learn-btn{ margin-top:10px;}
    .mx-team-stat-num{font-size:3rem;}
    .mx-news-section{padding: 50px 0 50px;}
    .mx-news-nav-row{ padding-left:0;padding-top: 30px;}
    .mx-profile-left h3{ font-size:2rem;}
    .mx-profile-right{ display:none;}
    .mx-team-left{ width:100%; margin-top:0;}
    .mx-team-section{padding: 30px 0;}
 .mxfg-wrap{ padding:60px 15px; }
 .mx-full-photo{ display:none;}
    .mxfg-container{ gap:10px;}
    .mx-news-heading-red{font-size:2rem;}
    .mx-profile-left{ width:100%}
    .mx-profile-wrap{ padding-top:0;}
    .mx-about-tabs{padding-left:0;}
    .mxfg-right{gap:10px;}
    .mxfg-photo{ height:320px;}
    .mxfg-small{ width:calc(50% - 5px); height:170px;}
    .mx-heading-center{margin-bottom: 30px;}
  .mx-page-banner { min-height: 240px; }
  .mx-solution-num{ float:left;}
  .mx-solution-img{ margin:0; padding-left:0;}
  .mx-advantages-section{padding: 50px 0;}
  .mx-solution-img img{ width:30%;}
  .mx-page-banner h1 { font-size: 2rem; letter-spacing: 2px; }
  .mx-hero { min-height: 400px; }
  .mx-hero-title { font-size: 2rem; }
  .mx-stats-row { grid-template-columns: repeat(2, 1fr); }
  .mx-stat-num { font-size: 2.8rem; }
  .mx-stat-item { padding: 30px 15px; }
  .mx-solution-grid { grid-template-columns: 1fr; }
  .mx-adv-grid { grid-template-columns: 1fr; }
  .mx-svc-grid { grid-template-columns: 1fr; }
  .mx-news-grid { grid-template-columns: 1fr; }
  .mx-product-tabs { gap: 4px; }
  .mx-ptab { padding: 6px 14px; font-size: .8rem; }
  .mx-cases-grid { grid-template-columns: 1fr; }
  .mx-contact-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .mx-sol-list { grid-template-columns: 1fr; }
  .mx-product-grid { grid-template-columns: 1fr; }
  .mx-news-list-grid { grid-template-columns: 1fr; }
  .mx-factory-features { grid-template-columns: 1fr; }
  .mx-factory-photos { grid-template-columns: 1fr; }
  .mx-culture-grid { grid-template-columns: 1fr; }
  .mx-heading-center h2 { font-size: 2rem; }
  .mx-about-tab-btn { padding: 12px 16px; font-size: .82rem; }
  .mx-svc-process-row { flex-wrap: wrap; }
  .mx-svc-process-row::before { display: none; }
  .mx-svc-photos { grid-template-columns: repeat(2, 1fr); }
  .mx-svc-photos.col-4 { grid-template-columns: repeat(2, 1fr); }
  .mx-project-body { padding: 24px; }
  .mx-contact-form .form-row { grid-template-columns: 1fr; }
  
.mxws-top-right{ padding:35px 25px;}
.mxws-top-right h1{ font-size:38px;}
.mxws-title-box h2{font-size:32px;}
.mxws-banner-content h2{ font-size:34px; font-family: "Roboto-Black";}
    .mxws-gallery,
    .mxws-adv-grid,
    .mxws-solution-grid,
    .mxws-case-grid,
    .mxws-feature-grid,
    .mxws-related-grid,
    .mxws-process-line{
        grid-template-columns:1fr;
    }
     .mxws-process-line{ grid-template-columns:repeat(2,1fr);}
}

/* ================================================
   FOOTER — New design (3-col: Product | Solutions | Inquiry)
   ================================================ */
.mx-footer {
  background-color: #0d1f35;
  background-image: url('/static/images/Industrial_footbg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0 0;
}
.mx-footer::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,20,40,.88);
  pointer-events: none;
}
.mx-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.55fr 1.4fr;
  gap: 56px;
  position: relative; z-index: 1;
}
.mx-footer-col-title {
  font-size: 24px; 
  color: #fff; margin-bottom: 22px; font-family: "Roboto-Black";
}
/* Product links */
.mx-footer-links { list-style: none; padding: 0; margin: 0; }
.mx-footer-links li { margin-bottom: 9px; }
.mx-footer-links a {
  color: rgba(255,255,255,.65);
  text-decoration: underline;
  font-size:18px;
  transition: color .2s;
  line-height: 30px;
}
.mx-footer-links a:hover { color: var(--mx-red); }
/* Solutions 2×2 grid */
.mx-footer-sol-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.mx-footer-sol-item {
  position: relative; 
  overflow: hidden; 
}
.mx-footer-sol-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mx-footer-sol-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: #fff; font-size:18px; 
  padding: 20px 8px 8px; text-align: center;
}
/* Inquiry form */
.mx-footer-form-desc {
  color: rgba(255,255,255,.6); font-size:18px;
  margin-bottom: 16px; line-height: 1.6;
}
.mx-footer-form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 10px;
}
.mx-footer-input {
  width: 100%; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22); color: #fff;
  padding: 13px 13px; font-size:18px;
  border-radius: 3px; box-sizing: border-box; outline: none;
}
.mx-footer-input::placeholder { color: rgba(255,255,255,.45); }
.mx-footer-textarea {
  width: 100%; height: 88px; resize: vertical;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22); color: #fff;
  padding: 9px 13px; font-size: .85rem;
  border-radius: 3px; box-sizing: border-box;
  margin-bottom: 14px; display: block; outline: none;
}
.mx-footer-textarea::placeholder { color: rgba(255,255,255,.45); }
.mx-footer-submit {
  background: var(--mx-red); color: #fff; border: none;
  border-radius: 30px; padding: 11px 32px;
  font-size: .85rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
}
.mx-footer-submit:hover { background: #c4000f; }
/* Bottom bar */
.mx-footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 44px; padding: 18px 0;
  position: relative; z-index: 1;
}
.mx-footer-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  font-size: 16px; color: rgba(255,255,255,.45);
}
.mx-footer-bar-inner a { color: rgba(255,255,255,.45); margin-left: 18px; transition: color .2s; }
.mx-footer-bar-inner a:hover { color: var(--mx-red); }

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .mx-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mx-cases-swiper-wrap { padding: 0 48px; }
}
@media (max-width: 768px) {
  .mx-footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .mx-news-ghost { display: none; }
  .mx-news-learn-more { position: static; margin-left:20px;}
  .mx-news-nav-row { flex-wrap: wrap; gap: 8px; }
  .mx-cases-swiper-wrap { padding: 0 40px; }
}
