/* Extracted Inline Styles from index.php */

/* Industry Solutions Styles */
.industry-solutions {
    background-color: white;
    padding: 60px 0;
    overflow: hidden;
}

.industry-slideshow {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.industry-cards {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.industry-cards::-webkit-scrollbar {
    display: none;
}

.industry-cards .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0 20px;
    min-width: max-content;
}

.industry-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(20, 66, 114, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    min-width: 180px;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(20, 66, 114, 0.3);
}

.industry-card.active {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-color: #144272;
    box-shadow: 0 4px 15px rgba(20, 66, 114, 0.2);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #144272 0%, #2C74B3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.industry-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2C74B3 0%, #FFD164 100%);
}

.industry-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #0a2647;
    margin: 0;
}

/* Container Wrapper Reason Section */
.container-wrapper.reason {
    margin-top: 60px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.container-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-content {
    text-align: center;
}

.reason-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 20px;
    line-height: 1.3;
}

.reason-subtitle {
    font-size: 1.2rem;
    color: #495057;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.reason-data {
    position: relative;
}

.reason-advantage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-advantage .item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid rgba(20, 66, 114, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.reason-advantage .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(20, 66, 114, 0.1);
    border-color: rgba(20, 66, 114, 0.2);
}

.item-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #144272 0%, #2C74B3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.reason-advantage .item:hover .item-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2C74B3 0%, #FFD164 100%);
}

.item-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 15px;
}

.item-text {
    font-size: 1rem;
    color: #495057;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .industry-cards .row {
        padding: 0 15px;
    }
    
    .industry-card {
        min-width: 150px;
        padding: 20px 15px;
    }
    
    .reason-title {
        font-size: 2rem;
    }
    
    .reason-advantage {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


