section[data-module="business-lead"] .cab-value-chain-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 20px 0px;
    font-family: "Poppins", Arial, sans-serif;
}

section[data-module="business-lead"] .cab-value-chain-section * {
    box-sizing: border-box;
}

section[data-module="business-lead"] .cab-value-chain-wrap {
    position: relative;
    width: 100%;
    max-width: 1600px;
    min-height: 320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    z-index: 2;
}

section[data-module="business-lead"] .cab-value-chain-item {
    position: relative;
    min-height: 200px;
  padding: 0 0px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(238, 48, 60, 0.45);
    cursor: pointer;
    transition:
        padding 0.45s ease,
        background 0.45s ease;
}

section[data-module="business-lead"] .cab-value-chain-item:first-child {
    border-left: none;
}

section[data-module="business-lead"] .cab-value-chain-card {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
    background: transparent;
    transition:
        background 0.45s ease,
        box-shadow 0.45s ease,
        transform 0.45s ease;
}

section[data-module="business-lead"] .cab-value-chain-title {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    color: #1f1f1f;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0px;
    transform: translateY(-50%);
    transition:
        top 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.45s ease,
        color 0.35s ease,
        background 0.35s ease;
    z-index: 2;
	padding: 0px 20px;
}

section[data-module="business-lead"] .cab-value-chain-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 73%;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

section[data-module="business-lead"] .cab-value-chain-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Open state */
section[data-module="business-lead"] .cab-value-chain-item.active .cab-value-chain-card,
section[data-module="business-lead"] .cab-value-chain-item:hover .cab-value-chain-card {
    background: #ffffff;
}

section[data-module="business-lead"] .cab-value-chain-item.active .cab-value-chain-title,
section[data-module="business-lead"] .cab-value-chain-item:hover .cab-value-chain-title {
    top: 0;
    transform: translateY(0);
    padding: 20px 20px 20px;
    color: #ffffff;
    background: #ee303c;
}

section[data-module="business-lead"] .cab-value-chain-item.active .cab-value-chain-image,
section[data-module="business-lead"] .cab-value-chain-item:hover .cab-value-chain-image {
    opacity: 1;
    transform: translateY(0);
}

/* Close default active when another item is hovered */
section[data-module="business-lead"] .cab-value-chain-wrap:hover .cab-value-chain-item.active:not(:hover) .cab-value-chain-card {
    background: transparent;
    box-shadow: none;
}

section[data-module="business-lead"] .cab-value-chain-wrap:hover .cab-value-chain-item.active:not(:hover) .cab-value-chain-title {
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    color: #1f1f1f;
    background: transparent;
}

section[data-module="business-lead"] .cab-value-chain-wrap:hover .cab-value-chain-item.active:not(:hover) .cab-value-chain-image {
    opacity: 0;
    transform: translateY(28px);
}

/* Laptop */
@media (max-width: 1400px) {
    section[data-module="business-lead"] .cab-value-chain-title {
        font-size: 20px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    section[data-module="business-lead"] .cab-value-chain-wrap {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: auto;
    }

    section[data-module="business-lead"] .cab-value-chain-item {
        min-height: 260px;
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(238, 48, 60, 0.25);
    }

    section[data-module="business-lead"] .cab-value-chain-card {
        height: 260px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    }

    section[data-module="business-lead"] .cab-value-chain-title {
        font-size: 22px;
        padding-left: 0;
    }

    section[data-module="business-lead"] .cab-value-chain-item.active .cab-value-chain-title,
    section[data-module="business-lead"] .cab-value-chain-item:hover .cab-value-chain-title,
    section[data-module="business-lead"] .cab-value-chain-wrap:hover .cab-value-chain-item.active:not(:hover) .cab-value-chain-title {
        top: 0;
        transform: translateY(0);
        padding: 18px 20px;
        color: #ffffff;
        background: #ee303c;
    }

    section[data-module="business-lead"] .cab-value-chain-item.active .cab-value-chain-image,
    section[data-module="business-lead"] .cab-value-chain-item:hover .cab-value-chain-image,
    section[data-module="business-lead"] .cab-value-chain-wrap:hover .cab-value-chain-item.active:not(:hover) .cab-value-chain-image {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 480px) {
    section[data-module="business-lead"] .cab-value-chain-section {
        padding: 0px 12px;
        overflow: hidden;
    }

    section[data-module="business-lead"] .cab-value-chain-wrap {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    section[data-module="business-lead"] .cab-value-chain-item {
        width: 100%;
        min-height: auto;
        padding: 0;
        border-right: none;
        border-bottom: none;
        display: block;
        cursor: default;
    }

    /* Last item full width */
    section[data-module="business-lead"] .cab-value-chain-item:nth-child(5) {
        grid-column: 1 / -1;
    }

    section[data-module="business-lead"] .cab-value-chain-card {
        width: 100%;
        height: 178px;
        min-height: 210px;
        border-radius: 12px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    }

    section[data-module="business-lead"] .cab-value-chain-title {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        transform: none;
        padding: 13px 12px;
        background: #ee303c;
        color: #ffffff;
        font-size: 14px;
        line-height: 1.2;
        font-weight: 500;
        z-index: 2;
    }

     section[data-module="business-lead"] .cab-value-chain-image {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		width: 100%;
		height: 160px;
		opacity: 1;
		transform: none;
		overflow: hidden;
	  }

    section[data-module="business-lead"] .cab-value-chain-item:nth-child(5) .cab-value-chain-image {
        height: 170px;
    }

    section[data-module="business-lead"] .cab-value-chain-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Disable desktop hover behavior on mobile */
    section[data-module="business-lead"] .cab-value-chain-wrap:hover .cab-value-chain-item.active:not(:hover) .cab-value-chain-title,
    section[data-module="business-lead"] .cab-value-chain-item.active .cab-value-chain-title,
    section[data-module="business-lead"] .cab-value-chain-item:hover .cab-value-chain-title {
        position: relative;
        top: auto;
        transform: none;
        padding: 13px 12px;
        color: #ffffff;
        background: #ee303c;
    }

    section[data-module="business-lead"] .cab-value-chain-wrap:hover .cab-value-chain-item.active:not(:hover) .cab-value-chain-image,
    section[data-module="business-lead"] .cab-value-chain-item.active .cab-value-chain-image,
    section[data-module="business-lead"] .cab-value-chain-item:hover .cab-value-chain-image {
        opacity: 1;
        transform: none;
    }

    section[data-module="business-lead"] .cab-value-chain-wrap:hover .cab-value-chain-item.active:not(:hover) .cab-value-chain-card,
    section[data-module="business-lead"] .cab-value-chain-item.active .cab-value-chain-card,
    section[data-module="business-lead"] .cab-value-chain-item:hover .cab-value-chain-card {
        background: #ffffff;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    }
}