.solutions-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
}

.solutions-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-section .products-label {
    font-family: Source Han Sans CN, sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: #DDD6D6;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    margin: 0;
}

.solutions-section .products-title {
    font-family: Source Han Sans CN, sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #354059;
    position: relative;
    z-index: 2;
    margin: -30px 0 0 0;
    white-space: nowrap;
}

.solutions-section .section-header p {
    font-family: Source Han Sans CN, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #808797;
    max-width: 640px;
    margin: 48px auto 0;
    line-height: 1.8;
}

.solutions-sectionc .slider-container {
    position: relative;
    padding: 0 60px;
}

.solutions-section  .slider-track {
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
    overflow: hidden;
}

.solutions-section .cards-wrapper {
    display: flex;
    gap: 28px;
    width: fit-content;
}

.solutions-section .card {
    flex: 0 0 360px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    opacity: 0.5;
    transform: scale(0.92);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.solutions-section .card.is-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(28, 68, 138, 0.25);
}

.solutions-section .card:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 24px 60px rgba(28, 68, 138, 0.3);
}

.solutions-section .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.solutions-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solutions-section .card:hover .card-image img {
    transform: scale(1.08);
}

.solutions-section .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
}

.solutions-section .card-body {
    padding: 24px;
}

.solutions-section .card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1C448A;
    margin-bottom: 12px;
    line-height: 1.4;
}

.solutions-section .card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.solutions-section .card-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #1C448A, #2196f3);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.solutions-section .card.is-active .card-tag,
.solutions-section .card:hover .card-tag {
    opacity: 1;
    transform: translateY(0);
}

.solutions-section .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.solutions-section .nav-btn:hover:not(:disabled) {
    background: #1C448A;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.solutions-section .nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.solutions-section .nav-btn:hover:not(:disabled) svg path {
    stroke: white;
}

.solutions-section .nav-btn svg path {
    stroke: #1C448A;
    transition: stroke 0.3s ease;
}

.solutions-section .nav-prev { left: 0; }
.nav-next { right: 0; }

.solutions-section .slider-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.solutions-section .dots-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.solutions-section .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d5dd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solutions-section .dot.active {
    background: #1C448A;
    width: 32px;
    border-radius: 5px;
}

.solutions-section .dot:hover:not(.active) {
    background: #1C448A;
    opacity: 0.6;
}

.solutions-section .counter {
    font-size: 15px;
    color: #666;
    font-weight: 500;
    padding: 8px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

.solutions-section .counter .current {
    color: #1C448A;
    font-size: 20px;
    font-weight: 700;
}

.solutions-section .counter .separator {
    color: #999;
}

.solutions-section .progress-bar {
    width: 120px;
    height: 4px;
    background: #e8edf5;
    border-radius: 2px;
    overflow: hidden;
}

.solutions-section .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1C448A, #2196f3);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
    .solutions-section  .slider-container { padding: 0 20px; }
    .solutions-section  .card { flex: 0 0 280px; }
    .solutions-section  .products-title { font-size: 28px; }
}
