body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.products-section {
    text-align: center;
    padding: 50px 20px;
    background: url('images/proff.jpg') no-repeat center center/cover;
    position: relative;
    color: Red;
}

.products-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.product-card {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card i {
    font-size: 40px;
    color: #a01417;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 16px;
    color: #555;
}


@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); 
    }};
