.bgcolornewalex
{
   background: linear-gradient(90deg, #083459, #42a8e1);
            color: #fff;
               padding-top: 120px;
    padding-bottom: 100px;
}


.product-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 15px;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(255,255,255,0.06);
            transition: 0.4s ease;
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 25px rgba(255,255,255,0.12);
        }

        .product-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
        }

        .icon-box {
            background: #1c1c1c;
            display: inline-block;
            padding: 8px 10px;
            border-radius: 8px;
            margin-bottom: 8px;
        }