.product-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #003865;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
    font-weight: 500;
}

.product-description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.product-card .contact-info {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

.product-card .contact-info div {
    margin-bottom: 5px;
}

.product-card .contact-info i {
    color: #003865;
    margin-right: 8px;
}

.product-card .card-footer-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.product-card .tag {
    background-color: #d5f5e3;
    color: #27ae60;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.product-card .techmart-logo {
    max-height: 25px;
}
