body{
    background-color: #fff;
}
.social-icons {
    display: flex;
    gap: 6px;
}

.social-icons a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
    font-size: 12px;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons a:nth-child(1) { background-color: #3b5998; }
.social-icons a:nth-child(2) { background-color: #000; }
.social-icons a:nth-child(3) { background-color: #0077b5; }
.social-icons a:nth-child(4) { background-color: #25d366; }

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    color: #666;
}

.language-selector img {
    width: 16px;
}

.search-box {
    display: flex;
}

.search-box input {
    width: 150px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 3px 0 0 3px;
    font-size: 12px;
}

.search-box button {
    padding: 6px 12px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #000;
}

/* Banner */
.banner {
    height: 350px;
    background-image: url('https://images.unsplash.com/photo-1581092918484-8313e1f7e8e8?w=1600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.banner-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.breadcrumb a {
    color: #2850a0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #999;
}

/* Company Profile Section */
.company-profile {
    padding: 60px 0;
    background-color: #fff;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title {
    text-align: center;
    color: #2850a0;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.profile-content {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: justify;
}

.profile-content h4 {
    font-size: 18px;
    color: #333;
    margin: 30px 0 15px;
    font-weight: 600;
}

/* Company Images */
.company-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.company-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.company-image:hover img {
    transform: scale(1.05);
}

/* Service Advantages Section */
.service-advantages {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.section-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    background-color: #fff;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background-color: #2850a0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.advantage-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

/* Factory Tour Section */
.factory-tour {
    padding: 60px 0;
    background-color: #fff;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.equipment-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .banner{
        height: 360rem;
    }
    .banner-title{
        font-size: 28px;
    }
   .company-profile{
        padding: 30px 0;
    }
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .service-advantages,.factory-tour{
        padding: 30px 0;
    }
    .advantage-icon{
        width: 50px;
        height: 50px;
    }
    .advantage-icon img{ 
        width: 50px;
    }
    .equipment-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title{
        font-size: 28px;
    }
    .equipment-item img {
        height: auto;
    }
}