@import url("fonts.css");
@import url("variables.css");

/* Products Section Styling */
.products-section {
}

.products-banner {
    padding: 3rem 0;
    background-color: var(--smart-orange);

}

.products-image-banner {
    background-image: url('../images/products/1.jpg');
    height: 300px;
    object-fit: cover;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.products-title {
    font-size: 74px;
    font-weight: 700;
    color: var(--white); /* Dark blue */
    margin-bottom: 1rem;
}

.products-description {
    font-size: 22px;
    font-weight: 400;
    color: var(--smart-blue);
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.6;
}

.industry-icons h2 {
    font-size: 2.5rem;
    color: var(--smart-blue);
    margin-bottom: 2rem;
}

.industry-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    cursor: pointer;
}

.industry-icon img {
    width: 239px;
    height: 239px;
    object-fit: contain;
    background-color: var(--smart-blue); /* Dark blue background for icons */
    border-radius: 50%;
    /* padding: 10px; */
}

.industry-icon p {
    font-size: 1rem;
    color: var(--smart-blue);
    margin: 0;
}

.product-grid {
    background-color: var(--smart-blue); /* Dark blue background for product grid */
    padding: 2rem 0;
}

.product-card {
    padding: 1rem;
    border-radius: 8px;
}

.product-card img {
    max-height: 350px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.product-label {
    font-size: 1.1rem;
    color: var(--smart-blue);
    font-weight: bold;
    margin: 0;
    background: var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 40%;
    margin: -33px auto;
    z-index: 110;
    position: relative;
}

.bg-orange {
    background-color: var(--smart-orange);
}

.quote-form h2 {
    font-size: 2rem;
    font-weight: bold;
}

.quote-form .form-control {
    background-color: var(--white);
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-form .btn-primary {
    background-color: var(--smart-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
}

.quote-form .btn-primary:hover {
    background-color: var(--smart-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-title {
        font-size: 2rem;
    }

    .products-description {
        font-size: 1rem;
    }

    .industry-icons h2 {
        font-size: 1.2rem;
    }

    .industry-icon {
        min-width: 100px;
    }

    .industry-icon img {
        width: 60px;
        height: 60px;
    }

    .product-card img {
        max-height: 150px;
    }

    .product-label {
        font-size: 1rem;
    }

    .quote-form h2 {
        font-size: 1.5rem;
    }

    .quote-form .form-control, .quote-form .btn-primary {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-title {
        font-size: 1.5rem;
    }

    .products-description {
        font-size: 0.9rem;
    }

    .industry-icons h2 {
        font-size: 1rem;
    }

    .industry-icon {
        min-width: 80px;
    }

    .industry-icon img {
        width: 50px;
        height: 50px;
    }

    .product-card img {
        max-height: 120px;
    }

    .product-label {
        font-size: 0.9rem;
    }

    .quote-form h2 {
        font-size: 1.2rem;
    }

    .quote-form .form-control, .quote-form .btn-primary {
        font-size: 0.8rem;
    }
}