/* manufacture_en.css - English version smart manufacturing page styles */

/* Page specific styles */
.hero-bg {
    background-image: url('../images/manufacturebj.webp');
}

/* Language switch styles */
.language-switch {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.language-switch a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.language-switch a:hover {
    color: #60a5fa;
}

.language-switch span {
    color: rgba(255, 255, 255, 0.5);
    padding: 0 5px;
}

.language-switch .active {
    color: #60a5fa;
    font-weight: bold;
}

@media (max-width: 768px) {
    .language-switch {
        margin-top: 10px;
    }
}

/* Tech innovation image styles */
.tech-innovation-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Dual image container */
.dual-image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dual-image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Tech innovation section */
.tech-innovation-section {
    background: white;
    padding: 64px 0;
}
