/* Container */
.industry-tabs-container {
    display: flex;
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
    min-height: 100%;
}

/* Left menu */
.industry-menu {
    width: 30%;
    background: #FEDD62;
    border-left: 1px solid #777777B2;
    overflow-y: auto;
}

/* Scrollbar customization */
.industry-menu::-webkit-scrollbar {
    width: 6px;
}
.industry-menu::-webkit-scrollbar-track {
    background: #FEDD62;
    border-radius: 10px;
}
.industry-menu::-webkit-scrollbar-thumb {
    background: #EDB61E;
    border-radius: 10px;
}

/* List reset */
.industry-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* List item styling */
/* .industry-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    border-bottom: 1px solid #777777B2;
    transition: background 0.3s;
    height: 102px;
    padding: 0 15px;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}
 */
.industry-menu li {
    display: flex;
    align-items: center;
    justify-content: inherit;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    border-bottom: 1px solid #777777B2;
    transition: background 0.3s;
    height: 102px;
    padding: 0 40px;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}

/* Hover and active styles */
.industry-menu li:hover,
.industry-menu li.active {
    background: linear-gradient(0deg, #F4C516 0%, #F4C516 0.37%, #EDB61E 34.36%, #EDB61E 34.43%, #FAC112 68.99%, #FBD10A 86.31%, #FBD10A 86.31%, #EDB61E 100%);
}

/* Right image block */
.industry-image {
    width: 70%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image handling */
.industry-thumb {
    display: none;
    height: 100%;
    width: 100%;
}
.industry-thumb.active {
    display: block;
}
.industry-thumb img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

/* Tablet styles */
@media screen and (max-width: 1024px) {
    .industry-tabs-container {
        flex-direction: column;
    }

    .industry-menu,
    .industry-image {
        width: 100%;
        height: auto;
    }

    .industry-menu {
        border-left: none;
        border-top: 1px solid #ddd;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .industry-menu ul {
        display: flex;
        flex-direction: row;
        width: max-content;
    }

    .industry-menu li {
        flex: 0 0 auto;
        height: 60px;
        border-bottom: none;
        border-right: 1px solid #777777B2;
        padding: 0 20px;
        font-size: 18px;
        white-space: nowrap;
        text-align: center;
    }

    .industry-menu li:last-child {
        border-right: none;
    }

    .industry-menu::-webkit-scrollbar {
        height: 4px;
    }
}

/* Mobile styles */
@media screen and (max-width: 767px) {
    .industry-menu ul li {
        height: 50px;
        font-size: 16px;
        padding: 0 15px;
    }

    .industry-menu::-webkit-scrollbar {
        height: 3px;
    }
}
