label {
    color: #000;
}
/*MAIN WRAPPER */
/* MAIN WRAPPER */
.industry-section {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

/* LEFT SIDEBAR */

.industry-left {
    width: 30%;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;

    /* Sticky behavior */
    position: sticky;
    top: 110px; /* adjust if header height changes */

    height: fit-content;
    align-self: flex-start;
}

.industry-title {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
}

.industry-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.industry-item {
    background: #ffffff;
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 50px;
    border: 1px solid #e3e3e3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.industry-item:hover {
    background: #eff6ff;
    border-color: #bcd2ff;
}

@media (max-width: 992px) {
    .industry-left {
        position: static;   /* disables sticky on mobile */
        top: auto;
        width: 100%;
    }

    .industry-right {
        width: 100%;
    }
}