/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 10 version
*/

/*
Theme Name: PEGASUS
Author: X
Description: PEGASUS PRECISION TOOLING
Version: 0.1
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --x-w-padding: 20px;
}

html {
    /* background-image: url("images/飞马_pages-to-jpg-0001.jpg");
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat; */
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Header */

.header {
    /* background: #fff; */
    /* border-bottom: 1px solid #e0e0e0; */
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 70px;
}

.header-container .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.header-container .logo img {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 8px 15px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
    font-size: 0.8rem;
}

.search-box::before {
    content: "🔍";
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 0.8rem;
}

.header-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 35px;
}

.header-nav a {
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    font-weight: bold;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: #ff6600;
}

.lang-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 2px 4px;
    background: #f5f5f5;
    border-radius: 4px;
}

.lang-selector span {
    cursor: pointer;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.lang-selector span.active {
    background-color: #ffffff;
    padding: 2px 6px;
    border-radius: 2px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(8px, 8px);
    -ms-transform: rotate(45deg) translate(8px, 8px);
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(7px, -7px);
    -ms-transform: rotate(-45deg) translate(7px, -7px);
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    -o-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--x-w-padding, 50px);
    width: 100%;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #ffffff;
}

.quick-links {
    /* background: rgba(0, 0, 0, 0.5); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px 20px;
    border-radius: 5px;
}

.quick-links .link-title {
    font-size: 0.75rem;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.quick-links a {
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    text-decoration: none;
    padding-right: 10px;
}

.quick-links a:hover {
    color: #ff6600;
}

.quick-links-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.quick-links-list li {
    list-style: none;
    width: 100%;
}

/* Main Content */
.main-content {
    /* max-width: 1400px; */
    margin: 0 auto;
    /* padding: 0 50px; */
}

/* Section Title */
.home-section.section-title {
    text-align: center;
    padding: 120px var(--x-w-padding, 20px) 40px;
}

.home-section.section-title h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000000;
}

.home-section.section-description {
    max-width: 800px;
    margin: 0 auto;
    color: #676767;
    font-size: 1rem;
    line-height: 1.8;
}

/* Features */
.features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.feature-item {
    text-align: center;
    width: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 2.5rem;
}

.feature-icon img {
    height: 100%;
    opacity: 0.65;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #676767;
}

/* Video Section */
.video-section {
    text-align: center;
    padding: 90px var(--x-w-padding, 20px);
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    /* background: #f5f5f5; */
    height: 0;
    padding-top: 56.25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Direct children video/iframe/img without poster */
.video-placeholder>video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
}

.video-placeholder>iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.video-placeholder>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
}

/* Video with poster styles */
.video-with-poster {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.video-with-poster .video-poster-image {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.video-with-poster:hover .video-poster-image {
    opacity: 0.9;
}

.video-with-poster .video-play-button {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    width: 80px !important;
    height: 80px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    -webkit-transition: -webkit-transform 0.3s ease !important;
    transition: -webkit-transform 0.3s ease !important;
    -o-transition: transform 0.3s ease !important;
    transition: transform 0.3s ease !important;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease !important;
    z-index: 10 !important;
    padding: 0 !important;
    outline: none !important;
    margin: 0 !important;
}

.video-with-poster .video-play-button:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.1) !important;
    -ms-transform: translate(-50%, -50%) scale(1.1) !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
}

.video-with-poster .video-play-button:active {
    -webkit-transform: translate(-50%, -50%) scale(0.95) !important;
    -ms-transform: translate(-50%, -50%) scale(0.95) !important;
    transform: translate(-50%, -50%) scale(0.95) !important;
}

.video-with-poster .video-play-button svg {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    -webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Video element after click */
.video-with-poster video {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.video-label {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 5px;
}

/* Stats Section */
.stats-section {
    padding: 50px var(--x-w-padding, 20px);
    max-width: 800px;
    margin: 0 auto;
}

.stats-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0px;
    color: #000000;
}

.stats-subtitle {
    color: #666;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 60px;
}

.stats-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 60px 0;
}

.stat-item {
    text-align: left;
    width: 33.33%;
    line-height: 1;
}

.stat-number {
    font-size: 6.2rem !important;
    font-weight: bold;
    color: #000000;
    margin-bottom: 0px;
    line-height: 1;
}

.stat-number span {
    font-size: 2.25rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #676767;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 0.89rem;
    color: #acacac;
    font-style: italic;
}

/* Products Section */
.products-section {
    padding: 40px var(--x-w-padding, 20px);
    overflow: hidden;
    margin-bottom: 50px;
}

.products-slider {
    height: 700px;
}

.products-header {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
}

.products-header .subtitle {
    color: #acacac;
    font-size: 1rem;
    margin-bottom: 5px;
}

.products-header .description {
    color: #999;
    font-size: 1rem;
}

.product-card {
    text-align: left;
    /* flex: 0 0 500px; */
    /* width: 500px; */
}

.product-image {
    width: 100%;
    height: 520px;
    background: #f0f0f0;
    margin-bottom: 25px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000000;
}

.product-card p {
    font-size: 0.875rem;
    color: #676767;
    line-height: 1.5;
}

/* Factory Section */
.factory-section {
    padding: 20px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.factory-header {
    text-align: center;
    margin-bottom: 50px;
}

.factory-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
}

.factory-header .subtitle {
    color: #acacac;
    font-size: 1rem;
}

.factory-image {
    width: 100%;
    height: 840px;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.factory-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.factory-caption-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: rgba(255, 255, 255, 7.8);
    background: -webkit-gradient(linear,
            left bottom, left top,
            color-stop(7%, rgba(255, 255, 255, 0.78)),
            color-stop(70%, rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(bottom,
            rgba(255, 255, 255, 0.78) 7%,
            rgba(255, 255, 255, 0) 70%);
    background: linear-gradient(0deg,
            rgba(255, 255, 255, 0.78) 7%,
            rgba(255, 255, 255, 0) 70%);
}

.factory-caption {
    text-align: center;
    font-size: 1.125rem;
    color: #000000;
    font-style: italic;
    margin-top: 30px;
    line-height: 1.6;
    position: absolute;
    bottom: 30px;
    width: 100%;
}

/* Core Technologies Section */
.core-tech-section {
    padding: 60px var(--x-w-padding, 20px);
}

.core-tech-header {
    text-align: center;
    margin-bottom: 10px;
}

.core-tech-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.core-tech-header .subtitle {
    color: #999;
    font-size: 1rem;
}

.core-tech-header .description {
    color: #999;
    font-size: 1rem;
}

.process-flow {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 50px var(--x-w-padding, 20px);
    border-radius: 12px;
    position: relative;
}

.process-flow-image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8px;
}

.process-flow-image img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

/* Technology Cards */
.tech-cards {
    display: -ms-grid;
    display: grid;
    gap: 90px;
    margin-bottom: 80px;
    max-width: 800px;
    margin: 0 auto;
}

.tech-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tech-card.reverse {
    direction: rtl;
}

.tech-card.reverse>* {
    direction: ltr;
}

.tech-card-image {
    width: 250px;
    height: 500px;
    background: #fff;
    overflow: hidden;
}

.tech-card-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tech-card-content {
    position: relative;
    width: 60%;
}

.tech-card-content h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
}

.tech-card-content .subtitle {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.tech-card-content ul {
    margin-bottom: 20px;
}

.tech-card-content ul li {
    font-size: 0.875rem;
    color: #676767;
    line-height: 1.6;
    position: relative;
}

.tech-card-content ul.right li:before {
    content: "•";
    position: absolute;
    right: -10px;
    color: #676767;
}

.tech-card-content .section-title {
    font-size: 0.9375rem;
    font-weight: bold;
    color: #000000;
}

.tech-card-content .key-achievements h4 {
    font-size: 1rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
}

.tech-card-content .key-achievements ul li {
    font-size: 0.875rem;
    color: #666;
}

/* Bottom Tech Icons */
.bottom-tech-icons {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 70px;
}

.tech-icon-card {
    text-align: center;
    padding: 40px 10px;
    border-radius: 12px;
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 3.125rem;
}

.tech-icon img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    opacity: 0.65;
}

.tech-icon-card h4 {
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
}

.tech-icon-card p {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    text-align: center;
    -webkit-box-shadow: 0 -6px 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 -6px 6px 0 rgba(0, 0, 0, 0.1);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.contact-left h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #000000;
    text-align: left;
    line-height: 1.4;
}

.contact-right {
    text-align: left;
    padding: 30px 0;
    padding-left: 33.33%;
    line-height: 1.2;
}

.contact-right h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
}

.contact-right p {
    color: #676767;
    font-size: 1rem;
    margin-bottom: 20px;
}

.email-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #676767;
    border-top: 1px solid #aeaeae;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding-right: 10px;
    padding-top: 6px;
    padding-left: 6px;
}

.email-button:hover {
    color: #767676;
    border-color: #333;
}

/* Footer */
footer {
    padding: 80px 0;
    margin-top: 180px;
}

.footer-content {
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 120px;
}

.footer-logo {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
}

.footer-logo .logo-img {
    height: 7rem;
}

.footer-logo-text {
    padding-left: 10px;
}

.footer-logo-text .logo-img-s {
    height: 11px;
}

.social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    max-width: 800px;
    margin: 10px auto;
    padding: 0 20px;
}

.social-logo {
    width: 32px;
    height: 32px;
    padding: 2px;
    -o-object-fit: contain;
    object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.social-logo:hover {
    opacity: 0.6;
}

.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
    padding: 40px 0;
    /* padding-left: 25%; */
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.social-links a:hover {
    color: #ff6600;
}

.footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 2.6;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 0.75rem;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    width: 33.33%;
    font-weight: bold;
}

.footer-links a:hover {
    color: #ff6600;
}

.footer-info {
    text-align: left;
    color: #000000;
    font-size: 0.875rem;
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1.3;
    position: absolute;
    right: 0;
}

.footer-info strong {
    display: block;
    color: #000000;
    padding-top: 6px;
}

/* Products Slider */
.products-slider {
    padding-left: 25%;
    padding-right: 5%;
}

.products-slider .swiper-slide {
    width: 500px !important;
}

/* Factory Slider */
.factory-slider {
    height: 840px;
    padding: 0 20px;
}

/* media screen */
@media screen and (max-width: 1400px) {
    .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-info {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        padding: 10px 0;
        padding-top: 50px;
    }
}

@media screen and (max-width: 1200px) {
    .hero h1 {
        font-size: 3.125rem;
    }

    .quick-links-list li {
        width: auto !important;
    }

    .quick-links a {
        font-size: 1rem;
    }

    .quick-links {
        padding: 20px 0;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    /* Hide desktop navigation */
    .header-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: #ffffff;
        -webkit-transition: right 0.3s ease;
        -o-transition: right 0.3s ease;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
    }

    .header-nav ul li {
        border-bottom: 1px solid #e0e0e0;
    }

    .header-nav a {
        display: block;
        padding: 15px 10px;
        font-size: 1rem;
    }

    /* Show overlay */
    .mobile-menu-overlay {
        display: block;
        top: 70px;
        height: calc(100vh - 70px);
    }
}

@media screen and (max-width: 860px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .quick-links-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .quick-links-list li {
        width: 30% !important;
    }

    .contact-right {
        padding-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-overlay {
        display: block;
        top: 60px;
        height: calc(100vh - 60px);
    }

    .header-nav {
        top: 60px;
        height: calc(100vh - 60px);
    }

    body {
        font-size: 14px;
    }

    .header-container {
        height: 60px;
    }


    .stats-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .stat-item {
        width: auto;
    }

    .stat-number {
        font-size: 3.75rem;
    }



    .tech-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .tech-card-image {
        width: auto;
        height: 250px;
    }

    .tech-card-content {
        width: 100%;
    }

    .quick-links-list li {
        width: 50% !important;
    }

    .products-slider .swiper-slide {
        width: 100% !important;
    }

    .products-slider {
        padding: 0 20px;
    }

    .factory-slider {
        height: 500px;
    }

    .factory-image {
        height: 500px;
    }

    .factory-caption {
        font-size: 0.75rem;
        bottom: 40px;
    }

    .social-links {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .stats-content.mobile {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 90px;
    }

    .stats-content.mobile .stat-item:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .stats-title-container {
        margin-bottom: 60px;
    }

    .footer-links a {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 0.75rem;
    }

    .hero {
        height: 70vh;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .home-section.section-title {
        text-align: center;
        padding: 80px var(--x-w-padding, 20px) 40px;
    }

    .features {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 60px;
    }

    .products-slider .swiper-slide {
        width: 100% !important;
    }

    .products-slider {
        padding: 0;
    }

    .product-image {
        height: 450px;
    }

    .mobile-margin {
        margin-top: 40px !important;
    }

    .bottom-tech-icons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    footer {
        margin-top: 80px;
    }

    .footer-content {
        margin-top: 80px;
    }

    .footer-links a {
        width: 100%;
    }
}

/* ============================================
   Page template base styles
   ============================================ */

/* General container styles */
.main-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px var(--x-w-padding, 20px);
}

/* ============================================
   Article page (single.php)
   ============================================ */
.single article {
    margin-bottom: 40px;
}

.single .entry-header {
    margin-bottom: 30px;
}

.single .entry-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.3;
}

.single .entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.single .entry-meta span {
    margin-right: 20px;
}

.single .entry-meta a {
    color: #666;
    text-decoration: none;
}

.single .entry-meta a:hover {
    color: #000;
}

.single .post-thumbnail {
    margin-bottom: 30px;
}

.single .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.single .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.single .entry-content p {
    margin-bottom: 1.5em;
}

.single .entry-content h2,
.single .entry-content h3,
.single .entry-content h4 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: bold;
}

.single .entry-content h2 {
    font-size: 2rem;
}

.single .entry-content h3 {
    font-size: 1.5rem;
}

.single .entry-content h4 {
    font-size: 1.25rem;
}

.single .entry-content ul,
.single .entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.single .entry-content li {
    margin-bottom: 0.5em;
}

.single .entry-content a {
    color: #0066cc;
    text-decoration: underline;
}

.single .entry-content a:hover {
    color: #004499;
}

.single .entry-footer {
    margin-top: 40px;
    padding-top: 20px;
}

.single .tags-links {
    font-size: 0.9rem;
    color: #666;
}

.single .tags-links a {
    color: #0066cc;
    text-decoration: none;
    margin-left: 5px;
}

.single .tags-links a:hover {
    text-decoration: underline;
}

.single .post-navigation {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.single .post-navigation a {
    color: #0066cc;
    text-decoration: none;
}

.single .post-navigation a:hover {
    text-decoration: underline;
}

.single .page-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.single .page-links a {
    color: #0066cc;
    text-decoration: none;
    margin: 0 5px;
}

.single .page-links a:hover {
    text-decoration: underline;
}

/* ============================================
   Page template (page.php)
   ============================================ */
.page article {
    margin-bottom: 40px;
}

.page .entry-header {
    margin-bottom: 30px;
}

.page .entry-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.3;
}

.page .post-thumbnail {
    margin-bottom: 30px;
}

.page .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.page .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.page .entry-content p {
    margin-bottom: 1.5em;
}

.page .entry-content h2,
.page .entry-content h3,
.page .entry-content h4 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: bold;
}

.page .entry-content h2 {
    font-size: 2rem;
}

.page .entry-content h3 {
    font-size: 1.5rem;
}

.page .entry-content h4 {
    font-size: 1.25rem;
}

.page .entry-content ul,
.page .entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.page .entry-content li {
    margin-bottom: 0.5em;
}

.page .entry-content a {
    color: #0066cc;
    text-decoration: underline;
}

.page .entry-content a:hover {
    color: #004499;
}

.page .entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.page .edit-link a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.page .edit-link a:hover {
    color: #000;
    text-decoration: underline;
}

.page .page-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.page .page-links a {
    color: #0066cc;
    text-decoration: none;
    margin: 0 5px;
}

.page .page-links a:hover {
    text-decoration: underline;
}

/* ============================================
    Archive page (archive.php)
   ============================================ */
.archive .archive-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.archive .archive-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.archive .archive-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.archive .posts-list {
    margin-bottom: 40px;
}

.archive .post-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.archive .post-item:last-child {
    border-bottom: none;
}

.archive .entry-header {
    margin-bottom: 15px;
}

.archive .entry-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.archive .entry-title a {
    color: #000;
    text-decoration: none;
}

.archive .entry-title a:hover {
    color: #0066cc;
}

.archive .entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.archive .entry-meta span {
    margin-right: 15px;
}

.archive .post-thumbnail {
    margin-bottom: 15px;
}

.archive .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.archive .post-thumbnail a {
    display: block;
}

.archive .entry-summary {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.archive .entry-footer {
    margin-top: 15px;
}

.archive .read-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.archive .read-more:hover {
    text-decoration: underline;
}

.archive .no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.1rem;
}

.archive .posts-navigation,
.archive .pagination {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.archive .pagination .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.archive .pagination .page-numbers {
    padding: 8px 15px;
    color: #666;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.archive .pagination .page-numbers:hover,
.archive .pagination .page-numbers.current {
    color: #fff;
    background-color: #0066cc;
    border-color: #0066cc;
}

/* ============================================
   Search page (search.php)
   ============================================ */
.search .search-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.search .search-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.search .search-title span {
    color: #0066cc;
}

.search .results-count {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.search .posts-list {
    margin-bottom: 40px;
}

.search .post-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.search .post-item:last-child {
    border-bottom: none;
}

.search .entry-header {
    margin-bottom: 15px;
}

.search .entry-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.search .entry-title a {
    color: #000;
    text-decoration: none;
}

.search .entry-title a:hover {
    color: #0066cc;
}

.search .entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.search .entry-meta span {
    margin-right: 15px;
}

.search .post-thumbnail {
    margin-bottom: 15px;
}

.search .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.search .post-thumbnail a {
    display: block;
}

.search .entry-summary {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.search .entry-footer {
    margin-top: 15px;
}

.search .read-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.search .read-more:hover {
    text-decoration: underline;
}

.search .no-results {
    text-align: center;
    padding: 60px 20px;
}

.search .no-results p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.search .pagination {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.search .pagination .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.search .pagination .page-numbers {
    padding: 8px 15px;
    color: #666;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.search .pagination .page-numbers:hover,
.search .pagination .page-numbers.current {
    color: #fff;
    background-color: #0066cc;
    border-color: #0066cc;
}

/* ============================================
   404 error page (404.php)
   ============================================ */
.error404 .error-404 {
    text-align: center;
    padding: 60px 20px;
}

.error404 .page-header {
    margin-bottom: 30px;
}

.error404 .page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.error404 .page-content {
    max-width: 600px;
    margin: 0 auto;
}

.error404 .page-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.error404 .helpful-links {
    margin-top: 40px;
    text-align: left;
}

.error404 .helpful-links h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.error404 .helpful-links ul {
    list-style: none;
    padding: 0;
}

.error404 .helpful-links li {
    margin-bottom: 10px;
}

.error404 .helpful-links a {
    color: #0066cc;
    text-decoration: none;
    font-size: 1rem;
}

.error404 .helpful-links a:hover {
    text-decoration: underline;
}

/* Search form styles */
.search-form {
    max-width: 500px;
    margin: 30px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.search-form input[type="search"] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: #0066cc;
}

.search-form input[type="submit"] {
    padding: 12px 30px;
    font-size: 1rem;
    color: #fff;
    background-color: #0066cc;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-form input[type="submit"]:hover {
    background-color: #004499;
}

/* Responsive design */
@media (max-width: 768px) {

    .single .entry-title,
    .page .entry-title,
    .archive .archive-title,
    .search .search-title {
        font-size: 2rem;
    }

    .single .entry-content,
    .page .entry-content {
        font-size: 1rem;
    }

    .archive .entry-title,
    .search .entry-title {
        font-size: 1.5rem;
    }

    .main-content .container {
        padding: 20px var(--x-w-padding, 20px);
    }

    .error404 .page-title {
        font-size: 2rem;
    }
}

.example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
    background: -o-linear-gradient(top, white, black);
    background: linear-gradient(to bottom, white, black);
}