* {
    margin: 0;
    padding-top: 200px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.container {
    width: 100%;
    background-image: linear-gradient(rgba(51,51,51,0.5), rgba(51,51,51,0.5)), url('../images/img1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.intro-box {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    min-height: 100vh;
    padding-top: 15%;
}
.intro-box h1 {
    color: aliceblue;
}

.product-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.product-heading {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.product-item {
    width: calc(25% - 20px);
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.product-item img {
    width: 100px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    object-fit: contain;
}

.product-item a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    display: block;
    margin-top: auto;
    transition: color 0.3s ease;
}

.product-item a:hover {
    color: #0056b3;
}

.product-item p {
    font-size: 16px;
    color: #333;
    margin-top: 5px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tablet */
@media screen and (max-width: 768px) {
    .product-item {
        flex: 1 1 calc(50% - 40px); /* 2 per row */
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .product-item {
        flex: 1 1 100%; /* Full width on small screens */
    }
}


.navbar-spacing {
    height: 110px;
    width: 100%;
}   
