/*
Theme Name: hpchairstheme
Theme URI: https://hpchairs.com/
Author: Self
Author URI: https://hpchairs.com/
Description: hpchairsthemeL.
Version: 1.0
*/

/* General Styles for Industries Section */
.industries-area {
    padding-top: 60px;
    padding-bottom: 60px;
}

.industry-item {
    margin-bottom: 30px;
    text-align: center;
}

.industry-img {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Make the image circular */
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-text {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.industry-item:hover .industry-img {
    transform: scale(1.1); /* Slight zoom effect on hover */
    transition: transform 0.3s ease;
}

.industry-item:hover .industry-text {
    color: #007bff; /* Change text color on hover */
}

.industry-link {
    text-decoration: none;
    display: block;
}








/* Banner Section */
.banner-area {
    padding-top: 90px;
    background-color: #f9f9f9;
}

.banner-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-img-wrap:hover img {
    transform: scale(1.05);
}

.banner-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-img-wrap:hover .banner-text {
    opacity: 1;
}

/* Make Sure Banner Image is Responsive */
@media (max-width: 1024px) {
    .col-lg-3, .col-lg-6 {
        width: 100% !important;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .col-lg-3, .col-lg-6 {
        width: 100%;
        margin-bottom: 20px;
    }

    .banner-text {
        font-size: 16px;
    }
}

/* Center Banner Size Adjustment */
.banner-center {
    height: 100%;
}

@media (min-width: 1024px) {
    .banner-center img {
        height: 100%;
    }
}


.product-image {
    width: 300px;          /* Set the desired width */
    height: 300px;         /* Set the desired height */
    object-fit: cover;     /* Ensures the image fills the box while maintaining aspect ratio */
    border-radius: 8px;    /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
    display: block;        /* Removes extra space below images */
}

