
    /* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
}

/* ==================== Hero Section ==================== */
.client-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.client-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.client-breadcrumb {
    padding: 30px 0 0;
    font-size: 14px;
}

.client-breadcrumb-item {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s;
}

.client-breadcrumb-item:hover {
    color: #E61E15;
}

.client-breadcrumb-separator {
    margin: 0 8px;
    color: #666666;
}

.client-breadcrumb-icon {
    color: #E61E15;
    margin-right: 4px;
}

.client-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 0 80px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .client-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.client-hero-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .client-hero-title {
        font-size: 28px;
    }
}

.client-hero-params {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.client-hero-params li {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.client-hero-params li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #E61E15;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.client-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.client-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #E61E15;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.client-btn-primary:hover {
    background-color: #e65c00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.client-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.client-btn-secondary:hover {
    background-color: #f5f5f5;
    border-color: #cccccc;
    color: #333333;
}

.client-hero-image {
    position: relative;
}

.client-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
    .client-hero-image img {
        height: 300px;
    }
}

/* ==================== Case Introduction Section ==================== */
.client-intro {
    background-color: #ffffff;
    padding: 80px 0 0;
}

.client-section-label {
    font-size: 14px;
    font-weight: 700;
    color: #E61E15;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.client-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .client-section-title {
        font-size: 28px;
    }
    .client-intro-text img{width:100%;height:auto;}
}

.client-intro-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.client-intro-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .client-intro-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .client-intro-images {
        grid-template-columns: 1fr;
    }
}

.client-intro-images img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-intro-images img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ==================== Advantages Section ==================== */
.client-advantages {
    background: url("../images/a6.png")center/cover;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.client-advantages .client-section-label {
    text-align: center;
}

.client-advantages .client-section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.client-advantage-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.client-advantage-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.client-advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.15);
    border-radius: 50%;
}

.client-advantage-icon i {
    font-size: 36px;
    color: #E61E15;
}

.client-advantage-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.client-advantage-text {
    font-size: 15px;
    color: #999999;
    line-height: 1.7;
}

/* ==================== Related Products Section ==================== */
.client-products {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.client-products .client-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.client-product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.client-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.client-product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.client-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.client-product-card:hover .client-product-image img {
    transform: scale(1.05);
}

.client-product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #E61E15;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
}

.client-product-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.client-product-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}
.client-product-title a{color: #333333;text-decoration:none;}
.client-product-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.client-product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.client-product-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999999;
}

.client-product-spec i {
    color: #E61E15;
    font-size: 14px;
}

.client-product-buttons {
    display: flex;
    gap: 12px;
}

.client-btn-outline {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #666666;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-btn-outline:hover {
    border-color: #E61E15;
    color: #E61E15;
    background: rgba(255, 102, 0, 0.05);
}

.client-btn-outline-orange {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #E61E15;
    border-radius: 8px;
    color: #E61E15;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-btn-outline-orange:hover {
    background: #E61E15;
    color: #ffffff;
}

/* ==================== Pagination ==================== */
.client-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 60px 0 20px;
}

.client-pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.client-pagination-dot:hover {
    background-color: #999999;
}

.client-pagination-dot.active {
    background-color: #E61E15;
    transform: scale(1.2);
}
