/* Business Transformation Section Styles */
.business-transformation {
    padding: 4rem 0;
    background-color: #f8fafc;
    position: relative;
}

/* Enhanced Infor Expertise Section */
.infor-expertise-enhanced {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.infor-expertise-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.infor-section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 0.5rem;
}

.infor-section-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.infor-section-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: cogRotate 4s infinite linear;
}

@keyframes cogRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.infor-section-title {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1rem;
}

.infor-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.infor-expertise-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.expertise-item:nth-child(3) {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(2, 22, 66, 0.05), rgba(10, 42, 110, 0.03));
    border: 2px solid rgba(2, 22, 66, 0.1);
}

.expertise-item:nth-child(3)::before {
    height: 5px;
}

.expertise-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(2, 22, 66, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.expertise-item:hover::before {
    transform: scaleX(1);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(2, 22, 66, 0.2);
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(2, 22, 66, 0.3);
}

.expertise-icon i {
    font-size: 1.8rem;
    color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
}

.expertise-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.expertise-content p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Enhanced Section */
@media (max-width: 768px) {
    .infor-section-title {
        font-size: 1.2rem !important;
    }

    .infor-expertise-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .expertise-item:nth-child(3) {
        grid-column: 1;
    }

    .expertise-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .expertise-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .expertise-content h4 {
        font-size: 1.2rem;
    }

    .expertise-content p {
        font-size: 0.95rem;
    }
}

.business-transformation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    opacity: 0.3;
}

.business-transformation .section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 0.5rem;
}

.business-transformation .section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.business-transformation .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.business-transformation .section-header p {
    font-size: 13.6px;
    color: #4B5563;
    max-width: 800px;
    margin: 0.5rem auto 0;
}

.transformation-content {
    width: 100%; /* Full width to match other sections */
    margin: 0 auto;
    padding: 0; /* Remove padding to match other sections */
    background-color: transparent; /* Remove background to match other sections */
    border-radius: 0; /* Remove border radius */
    box-shadow: none; /* Remove shadow */
    border: none; /* Remove border */
}

.transformation-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #4B5563;
    font-size: 1.1rem;
    text-align: left; /* Change from justify to left for consistency */
    padding: 0 0.5rem; /* Add a small padding for readability */
}

.transformation-content p:last-child {
    margin-bottom: 0;
}

.transformation-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .business-transformation {
        padding: 3rem 0;
    }

    .business-transformation .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .business-transformation {
        padding: 2.5rem 0;
    }

    .business-transformation .section-header h2 {
        font-size: 1.6rem;
    }

    .business-transformation .section-header p {
        font-size: 1rem;
    }

    .transformation-content p {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .business-transformation {
        padding: 2rem 0;
    }

    .business-transformation .section-header h2 {
        font-size: 1.4rem;
    }

    .business-transformation .section-header p {
        font-size: 0.9rem;
    }

    .transformation-content p {
        font-size: 1rem;
    }
}
