/* Solutions Page Specific Styles */

/* Fix page header positioning to show h1 properly - increase padding even more */
.page-header {
    padding-top: 350px !important;
    padding-bottom: 80px !important;
}

.page-header h1 {
    font-size: 4rem !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 30px !important;
    text-align: center !important;
    position: relative !important;
    z-index: 2 !important;
    margin-top: 0 !important;
}

.page-header p {
    font-size: 1.4rem !important;
    color: rgba(255,255,255,0.95) !important;
    text-align: center !important;
    max-width: 700px !important;
    margin: 0 auto 50px !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Solutions Section */;
    color: rgba(255,255,255,0.95) !important;
    text-align: center !important;
    max-width: 700px !important;
    margin: 0 auto 50px !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Solutions Section */
.solutions-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

/* Solution Cards */
.solution-card {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.solution-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
}

.solution-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
}

.solution-icon i {
    color: white !important;
    font-size: 2.5rem !important;
    line-height: 1 !important;
    display: block !important;
    text-align: center !important;
    position: relative !important;
    z-index: 10 !important;
}

.solution-icon::before {
    display: none !important;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
}

.solution-card:hover .solution-icon i {
    color: white !important;
}

/* Fallback for Font Awesome - if icons don't load, show text */
.solution-icon[data-icon]::after {
    content: attr(data-icon);
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.solution-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50 !important;
    margin-bottom: 20px;
}

.solution-card p {
    color: #6c757d !important;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Ensure text doesn't change color on hover */
.solution-card:hover h3 {
    color: #2c3e50 !important;
}

.solution-card:hover p {
    color: #6c757d !important;
}

.solution-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.solution-features li {
    padding: 8px 0;
    color: #2c3e50;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.solution-features .fas.fa-check {
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
    min-width: 20px;
}

.solution-cta {
    background: #2c5aa0;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.solution-cta:hover {
    background: #1e3d6f;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: white;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: #4facfe;
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solution-card {
        padding: 40px 30px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .solution-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .solution-card,
    .benefit-card {
        padding: 30px 20px;
    }
    
    .solution-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}
