/* Unified Card Design */
        .industry-card {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: #151E2E;
            height: 350px;
            display: flex;
            flex-direction: column;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .industry-card:hover {
            border-color: #EF4444;
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
            background-color: #1F2937;
        }

        .industry-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
            filter: brightness(0.9);
        }

        .industry-card:hover .industry-img {
            transform: scale(1.1);
            filter: brightness(1);
        }

        .industry-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(to top, #0B1120 10%, rgba(11, 17, 32, 0.95) 60%, transparent 100%);
            z-index: 10;
        }

        /* INDUSTRY LIST ITEMS (Added Hover Effect) */
        .industry-list-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: #9CA3AF;
            font-weight: 500;
            opacity: 0.9;
            transition: all 0.3s ease;
            cursor: default;
        }

        .industry-list-item:hover {
            color: #EF4444;
            /* SCAD Red Highlight */
            padding-left: 6px;
            /* Subtle movement */
            opacity: 1;
        }

        .industry-icon {
            color: #EF4444;
            font-size: 0.6rem;
            transition: all 0.3s ease;
        }

        .industry-list-item:hover .industry-icon {
            transform: scale(1.2);
        }