﻿/* Center the last item in the second row */
@media screen and (min-width: 992px) {
    .grid-why-choose-us {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-center-last {
        grid-column: 2 / 3;
    }
}

.why-choose-us-icon {
    font-size: 28px;
    color: currentColor;
    margin-right: 12px;
    flex-shrink: 0;
}

.industries-slider-controls {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.footer-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Mobile fallback */
@media (max-width: 767px) {
    .footer-featured-grid {
        grid-template-columns: 1fr;
    }
}

/*.split-left-arrow,
.split-right-arrow {
    position: relative;*/ /* override Webflow default */
    /*width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .split-left-arrow img,
    .split-right-arrow img {
        width: 16px;
        height: 16px;
    }*/

@media screen and (min-width: 1280px) {
    .split-industries-info {
        grid-column-gap: 50px;
        grid-row-gap: 10px;
        padding: 20px;
    }
}

/* Base state: collapsed */
.our-vision-info {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

/* Expanded state: active tab */
.w-tab-link.w--current .our-vision-info {
    max-height: 800px; /* large enough for content */
}

.our-vision-tabs {
    visibility: visible;
}

/* Base icon state: PLUS (+) */
.our-vision-wrap {
    position: relative;
}

/* Icon base */
.horizontal-line,
.vertical-line {
    transition: opacity 0.25s ease;
}

/* Default = PLUS (+) */
.vertical-line {
    opacity: 1;
}

/* Active tab = MINUS (−) */
.w-tab-link.w--current .vertical-line {
    opacity: 0;
}

