/* Products Section CSS */
.section-products {
    background-color: #f8fbff;
    padding: 80px 0;
}
.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf1f6;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #0b51da;
}
.product-card-badge {
    background: rgba(11, 81, 218, 0.1);
    color: #0b51da;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    align-self: flex-start;
}
.product-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.product-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}
.product-features {
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}
.product-features li {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}
.product-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0b51da;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
}
.product-tech-stack {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.product-tech-stack span {
    background: #f1f5fa;
    color: #333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}
.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0b51da;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    margin-top: auto;
}
.product-btn:hover {
    background: #0a46bd;
    color: #fff;
    box-shadow: 0 5px 15px rgba(11, 81, 218, 0.3);
}
.product-btn i {
    margin-left: 8px;
    font-size: 18px;
}
.product-btn.style-outline {
    background: transparent;
    color: #0b51da;
    border: 1px solid #0b51da;
}
.product-btn.style-outline:hover {
    background: #0b51da;
    color: #fff;
}
