.ng-security-products {
font-family: Arial, sans-serif;
background: #f5f7fb;
padding: 40px 0;
} .ng-security-products .products {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
padding: 0 40px;
max-width: 1400px;
margin: 0 auto;
} .ng-security-products .product-card {
background: #fff;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 25px rgba(0,0,0,0.06);
transition: 0.3s ease;
display: flex;
flex-direction: column;
border: 1px solid #eef2f7;
will-change: transform;
}
.ng-security-products .product-card:hover {
transform: translateY(-4px);
box-shadow: 0 15px 35px rgba(31,111,178,0.12);
} .ng-security-products .product-img img {
width: 100%;
height: 220px;
object-fit: cover;
display: block;
} .ng-security-products .product-content {
padding: 22px;
flex: 1;
display: flex;
flex-direction: column;
} .ng-security-products .product-title {
font-size: 20px;
font-weight: 700;
color: #111827;
margin-bottom: 12px;
line-height: 1.3;
} .ng-security-products .product-desc {
font-size: 14px;
color: #6b7280;
margin-bottom: 18px;
line-height: 1.6;
} .ng-security-products .features {
list-style: none;
padding: 0;
margin: 0 0 20px 0;
flex: 1;
}
.ng-security-products .features li {
display: flex;
align-items: center;
gap: 10px;
padding: 7px 0;
font-size: 14px;
color: #374151;
} .ng-security-products .features i {
color: #1f6fb2;
font-size: 14px;
width: 18px;
text-align: center;
} .ng-security-products .price {
font-size: 28px;
font-weight: 800;
color: #1f6fb2;
margin-bottom: 18px;
line-height: 1;
} .ng-security-products .btn {
display: inline-flex;
justify-content: center;
align-items: center;
min-height: 46px;
padding: 12px 18px;
background: linear-gradient(135deg, #1f6fb2, #4da3e6);
color: #fff;
text-decoration: none;
border-radius: 10px;
font-size: 14px;
font-weight: 600;
transition: 0.25s ease;
}
.ng-security-products .btn:hover {
transform: translateY(-1px);
box-shadow: 0 8px 20px rgba(31,111,178,0.25);
} @media (max-width: 992px) {
.ng-security-products .products {
grid-template-columns: repeat(2, 1fr);
}
} @media (max-width: 640px) {
.ng-security-products .products {
grid-template-columns: 1fr;
padding: 0 20px;
}
}