/* Subpage Banner */
.page-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.banner-text-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #fff;
}

.banner-text-center h1 {
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

/* Page Content */
.page-content {
    padding: 80px 0;
    background: #f0f2f5;
}

/* Dev Intro Grid */
.dev-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.dev-intro-title {
    font-size: 32px;
    font-weight: 700;
    color: #1264B1;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
    text-align: left;
}

.dev-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

.dev-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.content-text p {
    margin-bottom: 20px;
}

.strategies-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.strategies-text {
    flex: 1;
}

.strategies-text .section-title {
    text-align: left;
    font-size: 32px;
    font-weight: 700;
    color: #1264B1;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

.strategies-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.strategies-image {
    flex: 0 0 500px;
}

.strategies-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .strategies-layout {
        flex-direction: column;
    }

    .strategies-image {
        flex: none;
        width: 100%;
        max-width: 500px;
    }
}

.content-with-image {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.content-with-image .content-text {
    flex: 1;
    text-align: left;
    margin: 0;
    max-width: none;
}

.content-with-image .content-image {
    flex: 0 0 550px;
}

.content-with-image .content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
    .content-with-image {
        flex-direction: column;
    }

    .content-with-image .content-image {
        flex: none;
        width: 100%;
        max-width: 550px;
    }
}

.page-image {
    margin-top: 50px;
    text-align: center;
}

.page-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Development Services Grid */
.dev-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 0;
}

.dev-service-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: 16px;
}

.dev-service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.dev-service-card ul {
    list-style: none;
    padding: 0;
}

.dev-service-card ul li {
    font-size: 14px;
    color: #666;
    padding: 10px 0;
    line-height: 1.6;
}

/* Technical Advantages */
.tech-advantages {
    padding: 80px 0;
    background: #f0f2f5;
    text-align: center;
}

.tech-adv-title {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    font-family: Arial, sans-serif;
    margin-bottom: 40px;
}

.tech-adv-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.tech-adv-list li {
    font-size: 18px;
    color: #333;
    padding: 12px 0;
    text-align: center;
}

.tech-adv-list li::before {
    content: '▸ ';
    color: #333;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f0f2f5;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: #1264B1;
    font-family: Arial, sans-serif;
    font-weight: 400;
}

/* Product Display Carousel */
.product-display-section {
    padding: 60px 0 80px;
    background: #f0f2f5;
    overflow: hidden;
}

.product-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.product-carousel-track {
    display: flex;
    width: max-content;
    animation: productScroll 20s linear infinite;
}

.product-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes productScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.product-carousel-item {
    text-align: center;
    flex-shrink: 0;
    width: 280px;
    margin: 0 15px;
}

.product-carousel-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-carousel-item p {
    font-size: 16px;
    color: #333;
    font-family: Arial, sans-serif;
}

/* EMS Slider */
.ems-slider {
    position: relative;
    padding: 80px 0;
    background: #fff;
    min-height: 500px;
}

.ems-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.6s;
}

.ems-slide.active {
    display: grid;
}

.ems-slide-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.ems-slide-content h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.ems-slide-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-discover {
    display: inline-block;
    padding: 12px 30px;
    background: #1264B1;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-discover:hover {
    background: #0d4a85;
    transform: translateY(-2px);
}

.ems-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.ems-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.ems-dot.active {
    background: #1264B1;
}

/* NPI Benefits */
.npi-benefits {
    padding: 60px 0;
    background: #f5f5f5;
}

.npi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.npi-col h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.npi-col ul {
    list-style: none;
    padding: 0;
}

.npi-col ul li {
    font-size: 16px;
    color: #555;
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
}

.npi-image {
    margin: 40px 0;
}

.npi-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.npi-col ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1264B1;
    font-size: 20px;
}

/* Supply Chain */
.pain-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.pain-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pain-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pain-dot {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background: #1264B1;
    border-radius: 50%;
    margin-top: 5px;
}

.pain-row p {
    font-size: 16px;
    color: #5E6A71;
    margin: 0;
}

.supply-services {
    padding: 80px 0;
    background: #fff;
}

.supply-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.supply-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.supply-item .supply-img,
.supply-item .supply-text {
    flex: 1;
}

.supply-grid .supply-item.reverse {
    flex-direction: row-reverse;
}

.supply-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.supply-item h3 {
    font-size: 30px;
    color: #1264B1;
    margin-bottom: 20px;
}

.supply-item p {
    font-size: 18px;
    color: #5E6A71;
    line-height: 1.8;
}

/* Connector Tabs */
.connector-tabs-section {
    padding: 80px 0;
    background: #fff;
}

.tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    font-family: Arial, sans-serif;
}

.tab-btn:hover {
    color: #1264B1;
}

.tab-btn.active {
    color: #1264B1;
    border-bottom-color: #1264B1;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-text h3 {
    font-size: 24px;
    color: #1264B1;
    margin-bottom: 20px;
}

.tab-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.tab-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Wiring Page */
.wiring-content {
    padding: 60px 0;
    background: #fff;
}

.wiring-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wiring-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.wiring-intro-text h2 {
    font-size: 30px;
    color: #1264B1;
    margin-bottom: 20px;
}

.wiring-intro-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.wiring-products {
    padding: 80px 0;
    background: #f5f5f5;
}

.wiring-product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.wiring-product-item.reverse {
    direction: rtl;
}

.wiring-product-item.reverse > * {
    direction: ltr;
}

.wiring-product-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.wiring-product-text h3 {
    font-size: 24px;
    color: #1264B1;
    margin-bottom: 15px;
}

.wiring-product-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Industrial Panels */
.panel-products {
    padding: 80px 0;
    background: #fff;
}

.panel-product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.panel-product-item.reverse {
    direction: rtl;
}

.panel-product-item.reverse > * {
    direction: ltr;
}

.panel-product-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.panel-product-text h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.panel-product-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.panel-product-text ul {
    list-style: none;
    padding: 0;
}

.panel-product-text ul li {
    font-size: 16px;
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.panel-product-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1264B1;
    font-size: 20px;
}

/* Box Build */
.boxbuild-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.boxbuild-intro img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.boxbuild-intro-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.boxbuild-services {
    padding: 80px 0;
    background: #f5f5f5;
}

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

.boxbuild-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.boxbuild-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.boxbuild-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1264B1;
    margin: 25px 25px 15px;
    text-align: center;
}

.boxbuild-item p {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    padding: 0 25px 30px;
    text-align: center;
}

/* Molded Parts */
.molded-materials {
    padding: 80px 0;
    background: #f5f5f5;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.materials-col ul {
    list-style: none;
    padding: 0;
}

.materials-col ul li {
    font-size: 16px;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.molded-quality {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.molded-quality img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.molded-quality-text h3 {
    font-size: 20px;
    color: #333;
    margin: 20px 0 15px;
}

.molded-quality-text ul {
    list-style: none;
    padding: 0;
}

.molded-quality-text ul li {
    font-size: 16px;
    color: #555;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.molded-quality-text ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #1264B1;
}

/* Metal Fabrication */
.metal-fab-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px 30px;
    margin-top: 50px;
    height: 500px;
}

.metal-fab-intro-left {
    display: contents;
}

.metal-fab-intro-left img:first-child {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.metal-fab-intro-left img:last-child {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.metal-fab-intro-right {
    grid-column: 2;
    grid-row: 1 / 3;
}

.metal-fab-intro-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 60px;
}

.process-card {
    text-align: left;
}

.process-card h3 {
    font-size: 30px;
    color: #1264B1;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.process-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.process-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.process-card-full {
    grid-column: 1 / -1;
    max-width: 50%;
}

.metal-services {
    padding: 60px 0;
    background: #fff;
}

.metal-services .content-text ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.metal-services .content-text ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.metal-services .content-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1264B1;
    font-size: 20px;
}

.metal-processes {
    padding: 80px 0;
    background: #f5f5f5;
}

.metal-process-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.metal-process-item.reverse {
    direction: rtl;
}

.metal-process-item.reverse > * {
    direction: ltr;
}

.metal-process-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.metal-process-text h3 {
    font-size: 30px;
    color: #1264B1;
    margin-bottom: 20px;
}

.metal-process-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.metal-stamping-section {
    padding: 80px 0;
    background: #fff;
}

.metal-stamping-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.metal-stamping-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.metal-stamping-text ul {
    list-style: none;
    padding: 0;
}

.metal-stamping-text ul li {
    font-size: 18px;
    color: #555;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.metal-stamping-text ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #1264B1;
    font-size: 20px;
}

/* Sustainability */
.esg-section {
    padding: 80px 0;
    background: #fff;
}

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

.esg-card {
    text-align: center;
    padding: 30px;
}

.esg-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.esg-card h3 {
    font-size: 22px;
    color: #1264B1;
    margin-bottom: 15px;
}

.esg-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.sustainability-slider {
    padding: 80px 0;
    background: #1a1a2e;
    position: relative;
    min-height: 500px;
}

.sustain-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    animation: fadeIn 0.6s;
}

.sustain-slide.active {
    display: grid;
}

.sustain-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.sustain-slide-content h3 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.sustain-slide-content p {
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
}

.sustain-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.sustain-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.sustain-dot.active {
    background: #1264B1;
}

.slider-footer-spacer {
    height: 80px;
    background: #fff;
}

.slider-footer-spacer {
    height: 80px;
    background: #fff;
}



/* Contact Accordion */
.contact-offices {
    padding: 80px 0;
    background: #fff;
}

.accordion-section {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    font-family: Arial, sans-serif;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: #1264B1;
}

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    color: #1264B1;
    width: 30px;
    text-align: center;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-body.active {
    max-height: 2000px;
    padding-bottom: 40px;
}

/* Office Cards */
.office-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.office-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e8ecef;
}

.office-card h3 {
    font-size: 22px;
    color: #1264B1;
    margin-bottom: 20px;
    font-weight: 600;
}

.office-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.office-card p strong {
    color: #333;
    font-weight: 600;
}

.office-card img {
    display: none;
}

/* Corruption Watch Form */
.corruption-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
}

.form-left,
.form-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #1264B1;
}

.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    resize: vertical;
    transition: border-color 0.3s;
}

.form-textarea:focus {
    outline: none;
    border-color: #1264B1;
}

.required-mark {
    color: #e74c3c;
    font-size: 16px;
    position: absolute;
    right: -20px;
    top: 12px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1264B1;
}

.btn-submit {
    display: inline-block;
    padding: 12px 40px;
    background: #fff;
    color: #1264B1;
    border: 2px solid #1264B1;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-submit:hover {
    background: #1264B1;
    color: #fff;
}

.privacy-agreement {
    font-size: 14px;
    color: #666;
}

.privacy-agreement label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.privacy-agreement input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1264B1;
}

.privacy-agreement a {
    color: #1264B1;
    text-decoration: underline;
}

/* Contact Maps */
.contact-maps {
    padding: 0 0 80px;
    background: #fff;
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.map-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-placeholder {
    position: relative;
    height: 400px;
    background: #e8ecef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.map-label {
    font-size: 20px;
    font-weight: 700;
    color: #1264B1;
    margin-bottom: 15px;
    text-align: center;
}

.map-address {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

/* About Us */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-intro-text h2 {
    text-align: left !important;
}

.about-intro-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.about-pillars {
    padding: 80px 0;
    background: #f5f5f5;
}

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

.pillar-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.pillar-card h3 {
    font-size: 22px;
    color: #38A59A;
    margin-bottom: 20px;
}

.pillar-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.about-supply-chain {
    padding: 80px 0;
    background: #fff;
}

.supply-chain-title {
    margin-bottom: 60px;
}

.supply-chain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    justify-items: center;
}

.supply-chain-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.supply-chain-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.supply-chain-item h3 {
    font-size: 20px;
    color: #1264B1;
    text-align: center;
}

/* About Values */
.about-values {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.values-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.about-values .container {
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
}

.value-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.value-item h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Career */
.career-benefits {
    padding: 80px 0;
    background: #fff;
}

.career-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-bottom: 0;
}

.career-benefit-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.career-benefit-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e0e0e0;
}

.career-benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0099CC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.career-benefit-icon svg {
    width: 40px;
    height: 40px;
}

.career-benefit-item h3 {
    font-size: 14px;
    color: #00687B;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
}

.career-benefit-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Equal Opportunity Section */
.career-equal-opportunity {
    padding: 80px 0;
    background: #f5f5f5;
}

.equal-opportunity-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.equal-opportunity-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.equal-opportunity-text a {
    color: #1264B1;
    text-decoration: none;
}

.equal-opportunity-text a:hover {
    text-decoration: underline;
}

.equal-opportunity-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.career-positions {
    padding: 80px 0;
    background: #f5f5f5;
}

.career-departments {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.career-department {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.career-department h3 {
    font-size: 24px;
    color: #1264B1;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1264B1;
}

.career-position {
    margin-bottom: 20px;
}

.career-position h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.career-position p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.career-position p strong {
    color: #333;
    font-weight: 600;
}

.career-position ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.career-position ul li {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.career-position ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1264B1;
    font-size: 18px;
}

/* News */
.news-featured {
    padding: 60px 0;
    background: #fff;
}

.news-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-featured-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.news-featured-content {
    padding: 25px;
}

.news-featured-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.news-date {
    font-size: 13px;
    color: #808080;
    margin-bottom: 15px;
}

.news-featured-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-read-more {
    color: #1264B1;
    font-size: 14px;
    font-weight: 600;
}

.news-list {
    padding: 80px 0;
    background: #f5f5f5;
}

.news-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.news-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1264B1;
}

.news-timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.news-date-badge {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    background: #fff;
    padding: 15px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1;
}

.news-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1264B1;
}

.news-year {
    display: block;
    font-size: 14px;
    color: #808080;
}

.news-timeline-content {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.news-timeline-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.news-timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* News View Articles */
.news-view-articles {
    padding: 80px 0 60px;
    background: #fff;
}

.news-view-title {
    font-size: 32px;
    font-weight: 700;
    color: #1264B1;
    font-family: Arial, sans-serif;
    margin-bottom: 40px;
    text-align: left;
}

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

.news-featured-card-3 {
    display: block;
    text-decoration: none;
    transition: transform 0.3s;
}

.news-featured-card-3:hover {
    transform: translateY(-4px);
}

.news-featured-card-3 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.news-featured-card-3-title {
    font-size: 15px;
    color: #1264B1;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    font-weight: 600;
}

.news-featured-card-3-title:hover {
    text-decoration: underline;
}

/* News List Section */
.news-list-section {
    padding: 60px 0 80px;
    background: #fff;
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-list-item-card {
    display: flex;
    gap: 20px;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: opacity 0.3s;
}

.news-list-item-card:hover {
    opacity: 0.8;
}

.news-list-thumb {
    flex-shrink: 0;
    width: 160px;
    height: 110px;
    overflow: hidden;
    border-radius: 6px;
}

.news-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-list-info h4 {
    font-size: 15px;
    color: #333;
    font-family: Arial, sans-serif;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 700;
}

.news-list-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-date {
    font-size: 12px;
    color: #aaa;
    font-family: Arial, sans-serif;
}

/* News Detail */
.news-detail-section {
    padding: 80px 0;
    background: #fff;
}

.news-detail-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.news-detail-title {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    margin-bottom: 20px;
}

.news-detail-meta {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: #888;
    font-family: Arial, sans-serif;
}

.news-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-detail-body {
    max-width: 900px;
}

.news-detail-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 40px 0 20px;
    font-family: Arial, sans-serif;
}

.news-detail-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 30px 0 15px;
    font-family: Arial, sans-serif;
}

.news-detail-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.news-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.news-detail-body ul,
.news-detail-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.news-detail-body li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.news-detail-body blockquote {
    border-left: 4px solid #1264B1;
    padding: 15px 20px;
    margin: 25px 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

.news-detail-body blockquote p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.news-detail-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.news-detail-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-detail-share span {
    font-size: 14px;
    color: #888;
}

.news-detail-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f2f5;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.news-detail-share a:hover {
    background: #1264B1;
    color: #fff;
}

.news-detail-back {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 30px;
    background: #1264B1;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.news-detail-back:hover {
    background: #0d4a85;
}

@media (max-width: 1024px) {
    .news-detail-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .news-detail-title {
        font-size: 20px;
    }

    .news-detail-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .dev-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ems-slide,
    .ems-slide.active,
    .sustain-slide,
    .sustain-slide.active {
        grid-template-columns: 1fr;
    }
    
    .npi-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-points {
        grid-template-columns: 1fr;
    }
    
    .wiring-intro,
    .wiring-product-item,
    .wiring-product-item.reverse,
    .panel-product-item,
    .panel-product-item.reverse,
    .boxbuild-intro,
    .molded-quality,
    .metal-process-item,
    .metal-process-item.reverse,
    .metal-stamping-content,
    .metal-fab-intro-grid,
    .about-intro,
    .tab-grid {
        grid-template-columns: 1fr;
    }

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

    .process-card-full {
        max-width: 100%;
    }

    .supply-item,
    .supply-item.reverse {
        flex-direction: column;
    }
    
    .wiring-product-item.reverse,
    .panel-product-item.reverse,
    .metal-process-item.reverse {
        direction: ltr;
    }
    
    .boxbuild-grid,
    .materials-grid,
    .esg-grid,
    .pillars-grid,
    .supply-chain-grid,
    .career-departments {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .career-benefit-item:nth-child(3)::after {
        display: none;
    }

    .equal-opportunity-layout {
        grid-template-columns: 1fr;
    }

    .office-grid,
    .news-featured-grid,
    .news-featured-grid-3 {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .banner-text-center h1 {
        font-size: 32px;
    }
    
    .dev-services-grid,
    .boxbuild-grid,
    .materials-grid,
    .esg-grid,
    .pillars-grid,
    .supply-chain-grid,
    .career-benefits-grid,
    .career-departments {
        grid-template-columns: 1fr;
    }

    .career-benefit-item::after {
        display: none !important;
    }
}
    
    .contact-banner-content {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
    }

    .contact-banner-text h1 {
        font-size: 28px;
    }

    .contact-banner-icons {
        flex-direction: row;
    }

    .contact-icon {
        font-size: 32px;
    }

    .corruption-form {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .maps-grid {
        grid-template-columns: 1fr;
    }
    
    .news-timeline::before {
        left: 20px;
    }
    
    .news-date-badge {
        width: 60px;
    }
}
