/* Industry Cards Specific Styles */
.industry-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.industry-card h4 {
    color: #00146d;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.industry-icon {
    color: #00146d;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.features-wrapper {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #333333;
}

.feature-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.feature-item i {
    margin-right: 0.75rem;
    color: #00146d;
    font-size: 1.1rem;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* Hover Effects */
.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .industry-card {
        padding: 2rem;
    }
    
    .industry-card h4 {
        font-size: 1.25rem;
    }
    
    .feature-item {
        padding: 0.5rem;
    }
}