/*!
Theme Name: Airvice
Theme URI: https://bdevs.net/wp/airvice/
Author: theme_pure
Author URI: https://themeforest.net/user/theme_pure
Description: Airvice - AC Repair Services WordPress Theme
Version: 2.0.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: airvice
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

airvice is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathaairvice-page-contentn Neal https://necolas.github.io/normalize.css/
*/




/* Container Layout Fix */
.industries-grid-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Responsive Grid Breakpoints */
@media (max-width: 991px) {
    .industries-grid-wrapper { 
        grid-template-columns: repeat(2, 1fr) !important; 
    }
}
@media (max-width: 600px) {
    .industries-grid-wrapper { 
        grid-template-columns: 1fr !important; 
    }
}

/* Card Fixed Box & Gradient Overlay */
.industry-card {
    height: 380px !important;
    width: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 6px;
    display: flex !important;
    align-items: flex-end !important;
    padding: 25px !important;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Text Visibility & Alignment Fix */
.card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.card-content h3 {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.card-content p {
    color: #e2e8f0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 0 15px 0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.view-solutions-btn {
    color: #f59e0b !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.view-solutions-btn:hover {
    gap: 10px;
    color: #fbbf24 !important;
}