body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-item {
    margin-bottom: 30px;
    width: calc(50% - 20px);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .product-item {
        width: calc(33.33% - 20px);
    }
}


/* Product Card Styles */

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5;
}


/* Product Overlay Styles */

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s, background-color 0.3s;
    border-radius: 8px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 15px;
}


/* Button Styles */

.btn-get-quotes {
    padding: 8px 16px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-get-quotes:hover {
    background-color: #fff;
    color: #ff6600;
    transform: scale(1.05);
}

.product-card {
    cursor: pointer;
}