.product-series {
    padding: 30px;
    background: #FFFFFF;
    margin-bottom: 30px;
    border-radius: 10px;
    height: 95%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-series:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.199);
}

.product-series:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* background: linear-gradient(to right, #1e3799, #0984e3); */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-series:hover:before {
    transform: scaleX(1);
}

.product-series-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2d3436;
    transition: color 0.3s ease;
}

.product-series:hover .product-series-title {
    color: #0984e3;
}

.product-series-desc {
    font-size: 14px;
    color: #636e72;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-list {
    margin: 0 0 10px 0;
    padding: 0;
    list-style: none;
}

.product-item {
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    background-color: #64a8da62;
    border-radius: 20px;
    padding-left: 3px;
}
/* .product-item:hover {
    background-color: #64a8da;
} */
.product-item {
    transition: all 0.3s ease;
    background-color: #ffffff;
    transform: scale(1);
    box-shadow: none;
}

.product-item:hover {
    color: #FFFFFF;
    background-color: #71c2fc;
    transform: scale(1.03);
    /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); */
}
.product-item:hover a{
    color: #FFFFFF;
}

.product-item:before {
    content: "•";
    color: #0984e3;
    margin-right: 8px;
    font-size: 18px;
}

.product-item a {
    color: #0984e3;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
    position: relative;
}

.product-item a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0984e3;
    transition: width 0.3s ease;
}

.product-item a:hover:after {
    width: 100%;
}

.learn-more-btn {
    background-color: #0984e3;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.learn-more-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.learn-more-btn:hover:before {
    width: 300px;
    height: 300px;
}

.learn-more-btn:hover {
    background-color: #1e3799;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.product-series:hover .product-image {
    transform: scale(1.05);
}

.col-md-4 {
    margin-bottom: 1rem;
    width: 50%!important;
}

.product_list {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.product_list .product_item {
    height: 90%;
    width: auto;
    position: absolute;
}

.product_list .product_item .product_cover {
    width: auto;
    height: 100%;
}   

        .products-header {
            background-color: #1671E2;
            transform: translateY(-1px);
            background: url(../images/banner_products.jpg) no-repeat center center;
            height: 400px;
            padding: 150px 0;
        }
    
        .products-header div {
            font-size: 45px;
            font-weight: 600;
        }