/*
Theme Name: Minim Child
Theme URI: https://themeforest.net/item/minim-minimal-agency-consultancy-wp-theme/20267937
Description: Child theme for the Minim theme
Author: AutomatedTeams
Author URI: https://automatedteams.com
Template: minim
Version: 1.0.0
*/

/* Import parent theme style */
@import url("../minim/style.css");

/* Solutions in Action Page Styles */
.solutions-hero {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 30px 30px;
    margin-bottom: 50px;
}

.solutions-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.solutions-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.industry-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.industry-tab {
    padding: 10px 20px;
    margin: 0 5px 10px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #eee;
}

.industry-tab.active, .industry-tab:hover {
    background-color: #f5f5f5;
    border-color: #ddd;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
/* Card Color Variants */
.real-estate-card {
    background: linear-gradient(135deg, #4285f4, #356ac3);
    color: white;
}

.finance-card {
    background: linear-gradient(135deg, #34a853, #2d8a46);
    color: white;
}

.politics-card {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
}

.marketing-card {
    background: linear-gradient(135deg, #ea4335, #c62828);
    color: white;
}

.card-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-tag {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: white;
}

.card-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    opacity: 0.8;
}

.card-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.view-details {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.view-details svg,
.view-details i {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.view-details:hover svg,
.view-details:hover i {
    transform: translateX(5px);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .solutions-hero h1 {
        font-size: 32px;
    }
    
    .solutions-hero p {
        font-size: 16px;
    }
}

/* Elementor Specific Styles */
.elementor-widget-tabs .elementor-tab-title {
    transition: all 0.3s ease;
}

.elementor-widget-tabs .elementor-tab-title.elementor-active {
    background-color: #f5f5f5;
}

.elementor-widget-tabs .elementor-tab-mobile-title {
    border-radius: 30px;
    padding: 10px 20px;
    margin: 5px 0;
}

.elementor-widget-tabs .elementor-tab-content {
    padding: 20px 0;
}

/* Fix for Elementor Card Display */
.elementor-widget-wrap .card {
    height: 100%;
}

/* Animation for Card Hover */
.elementor-element:hover .card {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
