﻿.product-card {
    transition: 0.3s ease;
    border-radius: 12px;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

.product-img {
    height: 200px;
    object-fit: contain;
    padding: 20px;
    background: #f8f9fa;
}

.product-list {
    padding-left: 18px;
}

    .product-list li {
        margin-bottom: 6px;
        font-size: 14px;
    }


/* ShriAiTech Brand Button */
.shriaitech-btn {
    background: linear-gradient(135deg, #1a73e8, #6f42c1);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .shriaitech-btn:hover {
        background: linear-gradient(135deg, #1557b0, #5936a2);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(111, 66, 193, 0.35);
        color: #fff;
    }

.shriaitech-title {
    background: linear-gradient(135deg, #1a73e8, #6f42c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}